forked from mongodb/mongo-go-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
find_one_and_replace.go
153 lines (131 loc) · 4.6 KB
/
find_one_and_replace.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
// 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 driver
import (
"context"
"time"
"go.mongodb.org/mongo-driver/bson/bsoncodec"
"go.mongodb.org/mongo-driver/mongo/options"
"go.mongodb.org/mongo-driver/mongo/writeconcern"
"go.mongodb.org/mongo-driver/x/bsonx"
"go.mongodb.org/mongo-driver/x/mongo/driver/session"
"go.mongodb.org/mongo-driver/x/mongo/driver/topology"
"go.mongodb.org/mongo-driver/x/mongo/driver/uuid"
"go.mongodb.org/mongo-driver/x/network/command"
"go.mongodb.org/mongo-driver/x/network/description"
"go.mongodb.org/mongo-driver/x/network/result"
)
// FindOneAndReplace handles the full cycle dispatch and execution of a FindOneAndReplace command against the provided
// topology.
func FindOneAndReplace(
ctx context.Context,
cmd command.FindOneAndReplace,
topo *topology.Topology,
selector description.ServerSelector,
clientID uuid.UUID,
pool *session.Pool,
retryWrite bool,
registry *bsoncodec.Registry,
opts ...*options.FindOneAndReplaceOptions,
) (result.FindAndModify, error) {
ss, err := topo.SelectServer(ctx, selector)
if err != nil {
return result.FindAndModify{}, err
}
// If no explicit session and deployment supports sessions, start implicit session.
if cmd.Session == nil && topo.SupportsSessions() {
cmd.Session, err = session.NewClientSession(pool, clientID, session.Implicit)
if err != nil {
return result.FindAndModify{}, err
}
defer cmd.Session.EndSession()
}
ro := options.MergeFindOneAndReplaceOptions(opts...)
if ro.BypassDocumentValidation != nil {
cmd.Opts = append(cmd.Opts, bsonx.Elem{"byapssDocumentValidation", bsonx.Boolean(*ro.BypassDocumentValidation)})
}
if ro.Collation != nil {
if ss.Description().WireVersion.Max < 5 {
return result.FindAndModify{}, ErrCollation
}
collDoc, err := bsonx.ReadDoc(ro.Collation.ToDocument())
if err != nil {
return result.FindAndModify{}, err
}
cmd.Opts = append(cmd.Opts, bsonx.Elem{"collation", bsonx.Document(collDoc)})
}
if ro.MaxTime != nil {
cmd.Opts = append(cmd.Opts, bsonx.Elem{"maxTimeMS", bsonx.Int64(int64(*ro.MaxTime / time.Millisecond))})
}
if ro.Projection != nil {
maxElem, err := interfaceToElement("fields", ro.Projection, registry)
if err != nil {
return result.FindAndModify{}, err
}
cmd.Opts = append(cmd.Opts, maxElem)
}
if ro.ReturnDocument != nil {
cmd.Opts = append(cmd.Opts, bsonx.Elem{"new", bsonx.Boolean(*ro.ReturnDocument == options.After)})
}
if ro.Sort != nil {
sortElem, err := interfaceToElement("sort", ro.Sort, registry)
if err != nil {
return result.FindAndModify{}, err
}
cmd.Opts = append(cmd.Opts, sortElem)
}
if ro.Upsert != nil {
cmd.Opts = append(cmd.Opts, bsonx.Elem{"upsert", bsonx.Boolean(*ro.Upsert)})
}
// Execute in a single trip if retry writes not supported, or retry not enabled
if !retrySupported(topo, ss.Description(), cmd.Session, cmd.WriteConcern) || !retryWrite {
if cmd.Session != nil {
cmd.Session.RetryWrite = false // explicitly set to false to prevent encoding transaction number
}
return findOneAndReplace(ctx, cmd, ss, nil)
}
cmd.Session.RetryWrite = retryWrite
cmd.Session.IncrementTxnNumber()
res, originalErr := findOneAndReplace(ctx, cmd, ss, nil)
// Retry if appropriate
if cerr, ok := originalErr.(command.Error); (ok && cerr.Retryable()) ||
(res.WriteConcernError != nil && command.IsWriteConcernErrorRetryable(res.WriteConcernError)) {
ss, err := topo.SelectServer(ctx, selector)
// Return original error if server selection fails or new server does not support retryable writes
if err != nil || !retrySupported(topo, ss.Description(), cmd.Session, cmd.WriteConcern) {
return res, originalErr
}
return findOneAndReplace(ctx, cmd, ss, cerr)
}
return res, originalErr
}
func findOneAndReplace(
ctx context.Context,
cmd command.FindOneAndReplace,
ss *topology.SelectedServer,
oldErr error,
) (result.FindAndModify, error) {
desc := ss.Description()
conn, err := ss.Connection(ctx)
if err != nil {
if oldErr != nil {
return result.FindAndModify{}, oldErr
}
return result.FindAndModify{}, err
}
if !writeconcern.AckWrite(cmd.WriteConcern) {
go func() {
defer func() { _ = recover() }()
defer conn.Close()
_, _ = cmd.RoundTrip(ctx, desc, conn)
}()
return result.FindAndModify{}, command.ErrUnacknowledgedWrite
}
defer conn.Close()
res, err := cmd.RoundTrip(ctx, desc, conn)
ss.ProcessWriteConcernError(res.WriteConcernError)
return res, err
}