2023-12-21 22:17:40 +08:00
|
|
|
// Copyright (C) MongoDB, Inc. 2017-present.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
// not use this file except in compliance with the License. You may obtain
|
|
|
|
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
// Package readconcern defines read concerns for MongoDB operations.
|
2024-10-12 16:28:53 +08:00
|
|
|
//
|
|
|
|
// For more information about MongoDB read concerns, see
|
|
|
|
// https://www.mongodb.com/docs/manual/reference/read-concern/
|
2023-12-21 22:17:40 +08:00
|
|
|
package readconcern // import "go.mongodb.org/mongo-driver/mongo/readconcern"
|
|
|
|
|
|
|
|
import (
|
2024-10-12 16:28:53 +08:00
|
|
|
"errors"
|
|
|
|
|
2023-12-21 22:17:40 +08:00
|
|
|
"go.mongodb.org/mongo-driver/bson/bsontype"
|
|
|
|
"go.mongodb.org/mongo-driver/x/bsonx/bsoncore"
|
|
|
|
)
|
|
|
|
|
2024-10-12 16:28:53 +08:00
|
|
|
// A ReadConcern defines a MongoDB read concern, which allows you to control the consistency and
|
|
|
|
// isolation properties of the data read from replica sets and replica set shards.
|
|
|
|
//
|
|
|
|
// For more information about MongoDB read concerns, see
|
|
|
|
// https://www.mongodb.com/docs/manual/reference/read-concern/
|
2023-12-21 22:17:40 +08:00
|
|
|
type ReadConcern struct {
|
2024-10-12 16:28:53 +08:00
|
|
|
Level string
|
2023-12-21 22:17:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Option is an option to provide when creating a ReadConcern.
|
2024-10-12 16:28:53 +08:00
|
|
|
//
|
|
|
|
// Deprecated: Use the ReadConcern literal declaration instead. For example:
|
|
|
|
//
|
|
|
|
// &readconcern.ReadConcern{Level: "local"}
|
2023-12-21 22:17:40 +08:00
|
|
|
type Option func(concern *ReadConcern)
|
|
|
|
|
|
|
|
// Level creates an option that sets the level of a ReadConcern.
|
2024-10-12 16:28:53 +08:00
|
|
|
//
|
|
|
|
// Deprecated: Use the ReadConcern literal declaration instead. For example:
|
|
|
|
//
|
|
|
|
// &readconcern.ReadConcern{Level: "local"}
|
2023-12-21 22:17:40 +08:00
|
|
|
func Level(level string) Option {
|
|
|
|
return func(concern *ReadConcern) {
|
2024-10-12 16:28:53 +08:00
|
|
|
concern.Level = level
|
2023-12-21 22:17:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-12 16:28:53 +08:00
|
|
|
// Local returns a ReadConcern that requests data from the instance with no guarantee that the data
|
|
|
|
// has been written to a majority of the replica set members (i.e. may be rolled back).
|
|
|
|
//
|
|
|
|
// For more information about read concern "local", see
|
|
|
|
// https://www.mongodb.com/docs/manual/reference/read-concern-local/
|
2023-12-21 22:17:40 +08:00
|
|
|
func Local() *ReadConcern {
|
|
|
|
return New(Level("local"))
|
|
|
|
}
|
|
|
|
|
2024-10-12 16:28:53 +08:00
|
|
|
// Majority returns a ReadConcern that requests data that has been acknowledged by a majority of the
|
|
|
|
// replica set members (i.e. the documents read are durable and guaranteed not to roll back).
|
|
|
|
//
|
|
|
|
// For more information about read concern "majority", see
|
|
|
|
// https://www.mongodb.com/docs/manual/reference/read-concern-majority/
|
2023-12-21 22:17:40 +08:00
|
|
|
func Majority() *ReadConcern {
|
|
|
|
return New(Level("majority"))
|
|
|
|
}
|
|
|
|
|
2024-10-12 16:28:53 +08:00
|
|
|
// Linearizable returns a ReadConcern that requests data that reflects all successful
|
|
|
|
// majority-acknowledged writes that completed prior to the start of the read operation.
|
|
|
|
//
|
|
|
|
// For more information about read concern "linearizable", see
|
|
|
|
// https://www.mongodb.com/docs/manual/reference/read-concern-linearizable/
|
2023-12-21 22:17:40 +08:00
|
|
|
func Linearizable() *ReadConcern {
|
|
|
|
return New(Level("linearizable"))
|
|
|
|
}
|
|
|
|
|
2024-10-12 16:28:53 +08:00
|
|
|
// Available returns a ReadConcern that requests data from an instance with no guarantee that the
|
|
|
|
// data has been written to a majority of the replica set members (i.e. may be rolled back).
|
|
|
|
//
|
|
|
|
// For more information about read concern "available", see
|
|
|
|
// https://www.mongodb.com/docs/manual/reference/read-concern-available/
|
2023-12-21 22:17:40 +08:00
|
|
|
func Available() *ReadConcern {
|
|
|
|
return New(Level("available"))
|
|
|
|
}
|
|
|
|
|
2024-10-12 16:28:53 +08:00
|
|
|
// Snapshot returns a ReadConcern that requests majority-committed data as it appears across shards
|
|
|
|
// from a specific single point in time in the recent past.
|
|
|
|
//
|
|
|
|
// For more information about read concern "snapshot", see
|
|
|
|
// https://www.mongodb.com/docs/manual/reference/read-concern-snapshot/
|
2023-12-21 22:17:40 +08:00
|
|
|
func Snapshot() *ReadConcern {
|
|
|
|
return New(Level("snapshot"))
|
|
|
|
}
|
|
|
|
|
|
|
|
// New constructs a new read concern from the given string.
|
2024-10-12 16:28:53 +08:00
|
|
|
//
|
|
|
|
// Deprecated: Use the ReadConcern literal declaration instead. For example:
|
|
|
|
//
|
|
|
|
// &readconcern.ReadConcern{Level: "local"}
|
2023-12-21 22:17:40 +08:00
|
|
|
func New(options ...Option) *ReadConcern {
|
|
|
|
concern := &ReadConcern{}
|
|
|
|
|
|
|
|
for _, option := range options {
|
|
|
|
option(concern)
|
|
|
|
}
|
|
|
|
|
|
|
|
return concern
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalBSONValue implements the bson.ValueMarshaler interface.
|
2024-10-12 16:28:53 +08:00
|
|
|
//
|
|
|
|
// Deprecated: Marshaling a ReadConcern to BSON will not be supported in Go Driver 2.0.
|
2023-12-21 22:17:40 +08:00
|
|
|
func (rc *ReadConcern) MarshalBSONValue() (bsontype.Type, []byte, error) {
|
2024-10-12 16:28:53 +08:00
|
|
|
if rc == nil {
|
|
|
|
return 0, nil, errors.New("cannot marshal nil ReadConcern")
|
|
|
|
}
|
|
|
|
|
2023-12-21 22:17:40 +08:00
|
|
|
var elems []byte
|
|
|
|
|
2024-10-12 16:28:53 +08:00
|
|
|
if len(rc.Level) > 0 {
|
|
|
|
elems = bsoncore.AppendStringElement(elems, "level", rc.Level)
|
2023-12-21 22:17:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return bsontype.EmbeddedDocument, bsoncore.BuildDocument(nil, elems), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetLevel returns the read concern level.
|
2024-10-12 16:28:53 +08:00
|
|
|
//
|
|
|
|
// Deprecated: Use the ReadConcern.Level field instead.
|
2023-12-21 22:17:40 +08:00
|
|
|
func (rc *ReadConcern) GetLevel() string {
|
2024-10-12 16:28:53 +08:00
|
|
|
return rc.Level
|
2023-12-21 22:17:40 +08:00
|
|
|
}
|