-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathoptions.go
210 lines (177 loc) · 5.1 KB
/
options.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
// This source file is part of the EdgeDB open source project.
//
// Copyright EdgeDB Inc. and the EdgeDB authors.
//
// 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
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package gel
import (
"github.com/geldata/gel-go/gelcfg"
gel "github.com/geldata/gel-go/internal/client"
)
// WithTxOptions returns a shallow copy of the client
// with the TxOptions set to opts.
func (c Client) WithTxOptions(
opts gelcfg.TxOptions,
) *Client { // nolint:gocritic
if !opts.IsValid() {
panic("TxOptions not created with NewTxOptions() are not valid")
}
c.pool.TxOpts = opts
return &c
}
// WithRetryOptions returns a shallow copy of the client
// with the RetryOptions set to opts.
func (c Client) WithRetryOptions( // nolint:gocritic
opts gelcfg.RetryOptions,
) *Client {
if !opts.IsValid() {
panic("RetryOptions not created with NewRetryOptions() are not valid")
}
c.pool.RetryOpts = opts
return &c
}
func (c *Client) copyPool() {
pool := *c.pool
c.pool = &pool
}
// WithConfig returns a shallow copy of the client
// with configuration values set to cfg.
// Equivalent to using the edgeql configure session command.
// For available configuration parameters refer to the [Config documentation].
//
// [Config documentation]: https://docs.geldata.com/reference/stdlib/cfg#ref-std-cfg
func (c Client) WithConfig( // nolint:gocritic
cfg map[string]interface{},
) *Client {
state := gel.CopyState(c.pool.State)
var config map[string]interface{}
if c, ok := state["config"]; ok {
config = c.(map[string]interface{})
} else {
config = make(map[string]interface{}, len(cfg))
}
for k, v := range cfg {
config[k] = v
}
state["config"] = config
c.copyPool()
c.pool.State = state
return &c
}
// WithoutConfig returns a shallow copy of the client
// with keys unset from the configuration.
func (c Client) WithoutConfig(key ...string) *Client { // nolint:gocritic
state := gel.CopyState(c.pool.State)
if c, ok := state["config"]; ok {
config := c.(map[string]interface{})
for _, k := range key {
delete(config, k)
}
}
c.copyPool()
c.pool.State = state
return &c
}
// WithModuleAliases returns a shallow copy of the client
// with module name aliases set to aliases.
func (c Client) WithModuleAliases( // nolint:gocritic
aliases ...gelcfg.ModuleAlias,
) *Client {
state := gel.CopyState(c.pool.State)
var a []interface{}
if b, ok := state["aliases"]; ok {
a = b.([]interface{})
}
for i := 0; i < len(aliases); i++ {
a = append(a, []interface{}{aliases[i].Alias, aliases[i].Module})
}
state["aliases"] = a
c.copyPool()
c.pool.State = state
return &c
}
// WithoutModuleAliases returns a shallow copy of the client
// with aliases unset.
func (c Client) WithoutModuleAliases( // nolint:gocritic
aliases ...string,
) *Client {
state := gel.CopyState(c.pool.State)
if a, ok := state["aliases"]; ok {
blacklist := make(map[string]struct{}, len(aliases))
for _, name := range aliases {
blacklist[name] = struct{}{}
}
var without []interface{}
for _, p := range a.([]interface{}) {
pair := p.([]interface{})
key := pair[0].(string)
if _, ok := blacklist[key]; !ok {
without = append(without, []interface{}{key, pair[1]})
}
}
state["aliases"] = without
}
c.copyPool()
c.pool.State = state
return &c
}
// WithGlobals sets values for global variables for the returned client.
func (c Client) WithGlobals( // nolint:gocritic
globals map[string]interface{},
) *Client {
state := gel.CopyState(c.pool.State)
var g map[string]interface{}
if x, ok := state["globals"]; ok {
g = x.(map[string]interface{})
} else {
g = make(map[string]interface{}, len(globals))
}
for k, v := range globals {
g[k] = v
}
state["globals"] = g
c.copyPool()
c.pool.State = state
return &c
}
// WithoutGlobals unsets values for global variables for the returned client.
func (c Client) WithoutGlobals(globals ...string) *Client { // nolint:gocritic
state := gel.CopyState(c.pool.State)
if c, ok := state["globals"]; ok {
config := c.(map[string]interface{})
for _, k := range globals {
delete(config, k)
}
}
c.copyPool()
c.pool.State = state
return &c
}
// WithWarningHandler sets the warning handler for the returned client. If
// warningHandler is nil gelcfg.LogWarnings is used.
func (c Client) WithWarningHandler( // nolint:gocritic
warningHandler gelcfg.WarningHandler,
) *Client {
if warningHandler == nil {
warningHandler = gelcfg.LogWarnings
}
c.warningHandler = warningHandler
return &c
}
// WithQueryOptions sets the [gelcfg.QueryOptions] for the returned Client.
func (c Client) WithQueryOptions(
options gelcfg.QueryOptions,
) *Client { // nolint:gocritic
c.queryOptions = options
return &c
}