You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mongox-go-driver/mongox/database/count.go

38 lines
880 B

package database
5 years ago
import (
4 years ago
"go.mongodb.org/mongo-driver/mongo/options"
4 years ago
"github.com/mainnika/mongox-go-driver/v2/mongox/query"
5 years ago
)
// Count function counts documents in the database by query
// target is used only to get collection by tag so it'd be better to use nil ptr here
func (d *Database) Count(target interface{}, filters ...interface{}) (result int64, err error) {
composed, err := query.Compose(filters...)
if err != nil {
11 months ago
return -1, err
}
11 months ago
collection, err := d.GetCollectionOf(target)
if err != nil {
return -1, err
}
ctx := query.WithContext(d.Context(), composed)
5 years ago
11 months ago
m := composed.M()
opts := options.Count()
5 years ago
opts.Limit = composed.Limiter()
opts.Skip = composed.Skipper()
11 months ago
defer func() { _ = composed.OnClose().Invoke(ctx, target) }()
11 months ago
result, err = collection.CountDocuments(ctx, m, opts)
if err != nil {
return -1, err
}
5 years ago
11 months ago
return result, nil
5 years ago
}