Documentation
¶
Overview ¶
Package coal provides a mini ORM for mongoDB.
Index ¶
- Variables
- func A(m Model, field string) string
- func C(m Model) string
- func Contains(list []ID, id ID) bool
- func F(m Model, field string) string
- func Includes(all, subset []ID) bool
- func IsHex(str string) bool
- func L(m Model, flag string, force bool) string
- func R(m Model, field string) string
- func Require(m Model, flags ...string)
- func Sort(fields ...string) bson.D
- func T(t time.Time) *time.Time
- func ToD(model Model) bson.D
- func ToM(model Model) bson.M
- type Base
- type Catalog
- func (c *Catalog) Add(models ...Model)
- func (c *Catalog) AddIndex(model Model, unique bool, expiry time.Duration, fields ...string)
- func (c *Catalog) AddPartialIndex(model Model, unique bool, expiry time.Duration, fields []string, filter bson.M)
- func (c *Catalog) All() map[Model][]Index
- func (c *Catalog) EnsureIndexes(store *Store) error
- func (c *Catalog) Find(pluralName string) Model
- func (c *Catalog) FindIndexes(pluralName string) []Index
- func (c *Catalog) VisualizeDOT(title string) string
- func (c *Catalog) VisualizePDF(title string) ([]byte, error)
- type Collection
- func (c *Collection) AggregateAll(ctx context.Context, slicePtr interface{}, pipeline interface{}, ...) error
- func (c *Collection) AggregateIter(ctx context.Context, pipeline interface{}, ...) error
- func (c *Collection) BulkWrite(ctx context.Context, models []mongo.WriteModel, ...) (*mongo.BulkWriteResult, error)
- func (c *Collection) CountDocuments(ctx context.Context, filter interface{}, opts ...*options.CountOptions) (int64, error)
- func (c *Collection) DeleteMany(ctx context.Context, filter interface{}, opts ...*options.DeleteOptions) (*mongo.DeleteResult, error)
- func (c *Collection) DeleteOne(ctx context.Context, filter interface{}, opts ...*options.DeleteOptions) (*mongo.DeleteResult, error)
- func (c *Collection) Distinct(ctx context.Context, fieldName string, filter interface{}, ...) ([]interface{}, error)
- func (c *Collection) EstimatedDocumentCount(ctx context.Context, opts ...*options.EstimatedDocumentCountOptions) (int64, error)
- func (c *Collection) FindAll(ctx context.Context, slicePtr interface{}, filter interface{}, ...) error
- func (c *Collection) FindIter(ctx context.Context, filter interface{}, ...) error
- func (c *Collection) FindOne(ctx context.Context, filter interface{}, opts ...*options.FindOneOptions) lungo.ISingleResult
- func (c *Collection) FindOneAndDelete(ctx context.Context, filter interface{}, ...) lungo.ISingleResult
- func (c *Collection) FindOneAndReplace(ctx context.Context, filter interface{}, replacement interface{}, ...) lungo.ISingleResult
- func (c *Collection) FindOneAndUpdate(ctx context.Context, filter interface{}, update interface{}, ...) lungo.ISingleResult
- func (c *Collection) InsertMany(ctx context.Context, documents []interface{}, ...) (*mongo.InsertManyResult, error)
- func (c *Collection) InsertOne(ctx context.Context, document interface{}, opts ...*options.InsertOneOptions) (*mongo.InsertOneResult, error)
- func (c *Collection) ReplaceOne(ctx context.Context, filter interface{}, replacement interface{}, ...) (*mongo.UpdateResult, error)
- func (c *Collection) UpdateMany(ctx context.Context, filter interface{}, update interface{}, ...) (*mongo.UpdateResult, error)
- func (c *Collection) UpdateOne(ctx context.Context, filter interface{}, update interface{}, ...) (*mongo.UpdateResult, error)
- type Event
- type Field
- type HasMany
- type HasOne
- type ID
- type Index
- type Map
- type Meta
- type Model
- type Receiver
- type Store
- func Connect(uri string) (*Store, error)
- func MustConnect(uri string) *Store
- func MustOpen(store lungo.Store, defaultDB string, reporter func(error)) *Store
- func NewStore(client lungo.IClient, defaultDB string) *Store
- func Open(store lungo.Store, defaultDB string, reporter func(error)) (*Store, error)
- type Stream
- type Tester
- func (t *Tester) Clean()
- func (t *Tester) Count(model Model, query ...bson.M) int
- func (t *Tester) Delete(model Model)
- func (t *Tester) Fetch(model Model, id ID) Model
- func (t *Tester) FindAll(model Model, query ...bson.M) interface{}
- func (t *Tester) FindLast(model Model, query ...bson.M) Model
- func (t *Tester) Save(model Model) Model
- func (t *Tester) Update(model Model) Model
- type Tracer
Constants ¶
This section is empty.
Variables ¶
var ErrInvalidated = errors.New("invalidated")
ErrInvalidated may be returned to the receiver if the underlying collection has been invalidated due to a drop or rename of the collection or database.
var ErrStop = errors.New("stop")
ErrStop may be returned by a receiver to stop the stream.
Functions ¶
func A ¶
A is a short-hand function to extract the attribute JSON key of a model field.
Note: A will panic if no field has been found.
func Contains ¶ added in v0.15.0
Contains returns true if a list of object ids contains the specified id.
func F ¶
F is a short-hand function to extract the database BSON field name of a model field. Additionally, it supports the "-" prefix for retrieving sort keys.
Note: F will panic if no field has been found.
func Includes ¶ added in v0.15.1
Includes returns true if a list of object ids includes another list of object ids.
func IsHex ¶ added in v0.20.0
IsHex will assess whether the provided string is a valid hex encoded object id.
func L ¶ added in v0.19.0
L is a short-hand function to lookup a flagged field of a model.
Note: L will panic if multiple flagged fields have been found or force is requested and no flagged field has been found.
func R ¶ added in v0.11.2
R is a short-hand function to extract the relationship name of a model field.
Note: R will panic if no field has been found.
func Require ¶ added in v0.19.0
Require will check if the specified flags are set on the specified model and panic if one is missing.
func Sort ¶ added in v0.20.0
Sort is a helper function to compute a sort object based on a list of fields with dash prefixes for descending sorting.
Types ¶
type Base ¶
type Base struct {
DocID ID `json:"-" bson:"_id"`
// contains filtered or unexported fields
}
Base is the base for every coal model.
type Catalog ¶ added in v0.8.8
type Catalog struct {
// contains filtered or unexported fields
}
A Catalog provides a central mechanism for registering models and indexes.
func NewCatalog ¶ added in v0.8.8
NewCatalog will create a new catalog.
func (*Catalog) AddIndex ¶ added in v0.25.4
AddIndex will add an index to the internal index list. Fields that are prefixed with a dash will result in an descending index. See the MongoDB documentation for more details.
func (*Catalog) AddPartialIndex ¶ added in v0.25.4
func (c *Catalog) AddPartialIndex(model Model, unique bool, expiry time.Duration, fields []string, filter bson.M)
AddPartialIndex is similar to Add except that it adds a partial index.
func (*Catalog) EnsureIndexes ¶ added in v0.25.4
EnsureIndexes will ensure that the added indexes exist. It may fail early if some of the indexes are already existing and do not match the supplied index.
func (*Catalog) FindIndexes ¶ added in v0.25.4
FindIndexes will return the indexes for the specified plural name.
func (*Catalog) VisualizeDOT ¶ added in v0.25.4
VisualizeDOT emits a string in DOT format which when rendered with graphviz visualizes the models and their relationships.
fdp -Tpdf models.dot > models.pdf
type Collection ¶ added in v0.26.0
type Collection struct {
// contains filtered or unexported fields
}
Collection wraps a collection to automatically push tracing spans for run queries.
func (*Collection) AggregateAll ¶ added in v0.26.0
func (c *Collection) AggregateAll(ctx context.Context, slicePtr interface{}, pipeline interface{}, opts ...*options.AggregateOptions) error
AggregateAll wraps the native Aggregate collection method and decodes all documents to the provided slice.
func (*Collection) AggregateIter ¶ added in v0.26.0
func (c *Collection) AggregateIter(ctx context.Context, pipeline interface{}, fn func(func(interface{}) error) error, opts ...*options.AggregateOptions) error
AggregateIter wraps the native Aggregate collection method and calls the provided callback with the decode method until an error is returned or the cursor has been exhausted.
func (*Collection) BulkWrite ¶ added in v0.26.0
func (c *Collection) BulkWrite(ctx context.Context, models []mongo.WriteModel, opts ...*options.BulkWriteOptions) (*mongo.BulkWriteResult, error)
BulkWrite wraps the native BulkWrite collection method.
func (*Collection) CountDocuments ¶ added in v0.26.0
func (c *Collection) CountDocuments(ctx context.Context, filter interface{}, opts ...*options.CountOptions) (int64, error)
CountDocuments wraps the native CountDocuments collection method.
func (*Collection) DeleteMany ¶ added in v0.26.0
func (c *Collection) DeleteMany(ctx context.Context, filter interface{}, opts ...*options.DeleteOptions) (*mongo.DeleteResult, error)
DeleteMany wraps the native DeleteMany collection method.
func (*Collection) DeleteOne ¶ added in v0.26.0
func (c *Collection) DeleteOne(ctx context.Context, filter interface{}, opts ...*options.DeleteOptions) (*mongo.DeleteResult, error)
DeleteOne wraps the native DeleteOne collection method.
func (*Collection) Distinct ¶ added in v0.26.0
func (c *Collection) Distinct(ctx context.Context, fieldName string, filter interface{}, opts ...*options.DistinctOptions) ([]interface{}, error)
Distinct wraps the native Distinct collection method.
func (*Collection) EstimatedDocumentCount ¶ added in v0.26.0
func (c *Collection) EstimatedDocumentCount(ctx context.Context, opts ...*options.EstimatedDocumentCountOptions) (int64, error)
EstimatedDocumentCount wraps the native EstimatedDocumentCount collection method.
func (*Collection) FindAll ¶ added in v0.26.0
func (c *Collection) FindAll(ctx context.Context, slicePtr interface{}, filter interface{}, opts ...*options.FindOptions) error
FindAll wraps the native Find collection method and decodes all documents to the provided slice.
func (*Collection) FindIter ¶ added in v0.26.0
func (c *Collection) FindIter(ctx context.Context, filter interface{}, fn func(func(interface{}) error) error, opts ...*options.FindOptions) error
FindIter wraps the native Find collection method and calls the provided callback with the decode method until an error is returned or the cursor has been exhausted.
func (*Collection) FindOne ¶ added in v0.26.0
func (c *Collection) FindOne(ctx context.Context, filter interface{}, opts ...*options.FindOneOptions) lungo.ISingleResult
FindOne wraps the native FindOne collection method.
func (*Collection) FindOneAndDelete ¶ added in v0.26.0
func (c *Collection) FindOneAndDelete(ctx context.Context, filter interface{}, opts ...*options.FindOneAndDeleteOptions) lungo.ISingleResult
FindOneAndDelete wraps the native FindOneAndDelete collection method.
func (*Collection) FindOneAndReplace ¶ added in v0.26.0
func (c *Collection) FindOneAndReplace(ctx context.Context, filter interface{}, replacement interface{}, opts ...*options.FindOneAndReplaceOptions) lungo.ISingleResult
FindOneAndReplace wraps the native FindOneAndReplace collection method.
func (*Collection) FindOneAndUpdate ¶ added in v0.26.0
func (c *Collection) FindOneAndUpdate(ctx context.Context, filter interface{}, update interface{}, opts ...*options.FindOneAndUpdateOptions) lungo.ISingleResult
FindOneAndUpdate wraps the native FindOneAndUpdate collection method.
func (*Collection) InsertMany ¶ added in v0.26.0
func (c *Collection) InsertMany(ctx context.Context, documents []interface{}, opts ...*options.InsertManyOptions) (*mongo.InsertManyResult, error)
InsertMany wraps the native InsertMany collection method.
func (*Collection) InsertOne ¶ added in v0.26.0
func (c *Collection) InsertOne(ctx context.Context, document interface{}, opts ...*options.InsertOneOptions) (*mongo.InsertOneResult, error)
InsertOne wraps the native InsertOne collection method.
func (*Collection) ReplaceOne ¶ added in v0.26.0
func (c *Collection) ReplaceOne(ctx context.Context, filter interface{}, replacement interface{}, opts ...*options.ReplaceOptions) (*mongo.UpdateResult, error)
ReplaceOne wraps the native ReplaceOne collection method.
func (*Collection) UpdateMany ¶ added in v0.26.0
func (c *Collection) UpdateMany(ctx context.Context, filter interface{}, update interface{}, opts ...*options.UpdateOptions) (*mongo.UpdateResult, error)
UpdateMany wraps the native UpdateMany collection method.
func (*Collection) UpdateOne ¶ added in v0.26.0
func (c *Collection) UpdateOne(ctx context.Context, filter interface{}, update interface{}, opts ...*options.UpdateOptions) (*mongo.UpdateResult, error)
UpdateOne wraps the native UpdateOne collection method.
type Event ¶ added in v0.17.1
type Event string
Event defines the event type.
const ( // Opened is emitted when the stream has been opened the first time. If the // receiver returns without and error it will not be emitted again in favor // of the resumed event. Opened Event = "opened" // Resumed is emitted after the stream has been resumed. Resumed Event = "resumed" // Created is emitted when a document has been created. Created Event = "created" // Updated is emitted when a document has been updated. Updated Event = "updated" // Deleted is emitted when a document has been deleted. Deleted Event = "deleted" // Errored is emitted when the underlying stream or the receiver returned an // error. Errored Event = "errored" // Stopped is emitted when the stream has been stopped Stopped Event = "stopped" )
type Field ¶
type Field struct {
// The struct field name e.g. "TireSize".
Name string
// The struct field type and kind.
Type reflect.Type
Kind reflect.Kind
// The JSON object key name e.g. "tire-size".
JSONKey string
// The BSON document field e.g. "tire_size".
BSONField string
// The custom flags.
Flags []string
// Whether the field is a pointer and thus optional.
Optional bool
// The relationship status.
ToOne bool
ToMany bool
HasOne bool
HasMany bool
// The relationship information.
RelName string
RelType string
RelInverse string
// contains filtered or unexported fields
}
A Field contains the meta information about a single field of a model.
type HasMany ¶
type HasMany struct{}
The HasMany type denotes a has-many relationship in a model declaration.
type HasOne ¶ added in v0.8.3
type HasOne struct{}
The HasOne type denotes a has-one relationship in a model declaration.
Has-one relationships requires that the referencing side is ensuring that the reference is unique. In fire this should be done using a uniqueness validator and a unique index on the collection.
type ID ¶ added in v0.20.0
ID is short-hand type for the object id.
func MustFromHex ¶ added in v0.20.0
MustFromHex will convert the provided string to a object id and panic if the string is not a valid object id.
func N ¶ added in v0.14.0
func N() *ID
N is a short-hand function to get a typed nil object id pointer.
type Index ¶ added in v0.25.4
Index is an index registered with a catalog.
func (*Index) Compile ¶ added in v0.25.4
func (i *Index) Compile() mongo.IndexModel
Compile will compile the index to a mongo.IndexModel.
type Map ¶ added in v0.22.0
type Map map[string]interface{}
Map represents a simple BSON map. In contrast to bson.M it provides methods to marshal and unmarshal concrete types to and from the map.
func MustMap ¶ added in v0.22.0
func MustMap(from interface{}) Map
MustMap will marshal the specified object to a map and panic on any error.
func (*Map) Marshal ¶ added in v0.22.0
Marshal will encode the type pointed by val and store the result.
func (*Map) MustMarshal ¶ added in v0.22.0
func (m *Map) MustMarshal(from interface{})
MustMarshal will marshal and panic on error.
func (*Map) MustUnmarshal ¶ added in v0.22.0
func (m *Map) MustUnmarshal(to interface{})
MustUnmarshal will unmarshal and panic on error.
type Meta ¶
type Meta struct {
// The struct type name e.g. "models.CarWheel".
Name string
// The plural resource name e.g. "car-wheels".
PluralName string
// The collection name e.g. "car_wheels".
Collection string
// The struct fields.
Fields map[string]*Field
// The struct fields ordered.
OrderedFields []*Field
// The database fields.
DatabaseFields map[string]*Field
// The attributes.
Attributes map[string]*Field
// The relationships.
Relationships map[string]*Field
// The flagged fields.
FlaggedFields map[string][]*Field
// contains filtered or unexported fields
}
Meta stores extracted meta data from a model.
func GetMeta ¶ added in v0.20.0
GetMeta returns the Meta structure for the passed Model.
Note: This method panics if the passed Model has invalid fields and tags.
type Model ¶
type Model interface {
ID() ID
Meta() *Meta
MustGet(string) interface{}
MustSet(string, interface{})
// contains filtered or unexported methods
}
Model is the main interface implemented by every coal model embedding Base.
type Store ¶
type Store struct {
// The session used by the store.
Client lungo.IClient
// The default db used by the store.
DefaultDB string
// contains filtered or unexported fields
}
A Store manages the usage of a database client.
func Connect ¶ added in v0.24.0
Connect will connect to the specified database and return a new store.
func MustConnect ¶ added in v0.24.0
MustConnect will connect to the passed database and return a new store. It will panic if the initial connection failed.
func MustOpen ¶ added in v0.24.0
MustOpen will open the database using the specified store or if missing a new in memory database. It will panic if the operation failed.
func Open ¶ added in v0.24.0
Open will open the database at the specified path or if missing a new in memory database.
func (*Store) C ¶ added in v0.20.0
func (s *Store) C(model Model) lungo.ICollection
C will return the collection associated to the specified model.
type Stream ¶ added in v0.17.1
type Stream struct {
// contains filtered or unexported fields
}
Stream simplifies the handling of change streams to receive changes to documents.
func OpenStream ¶ added in v0.19.2
OpenStream will open a stream and continuously forward events to the specified receiver until the stream is closed. If a token is present it will be used to resume the stream.
The stream automatically resumes on errors using an internally stored resume token. Applications that need more control should store the token externally and reopen the stream manually to resume from a specific position.
func Reconcile ¶ added in v0.20.0
func Reconcile(store *Store, model Model, created, updated func(Model), deleted func(ID), reporter func(error)) *Stream
Reconcile uses a stream to reconcile changes to a collection. It will automatically load existing models once the underlying stream has been opened. After that it will yield all changes to the collection until the returned stream has been closed.
type Tester ¶ added in v0.17.1
type Tester struct {
// The store to use for cleaning the database.
Store *Store
// The registered models.
Models []Model
}
Tester provides facilities to work with coal models in tests.
func (*Tester) Clean ¶ added in v0.17.1
func (t *Tester) Clean()
Clean will remove the collections of models that have been registered and reset the header map.