1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
15 "git.arvados.org/arvados.git/sdk/go/arvados"
16 "git.arvados.org/arvados.git/sdk/go/httpserver"
19 //go:generate go run generate.go
21 // CollectionList is used as a template to auto-generate List()
22 // methods for other types; see generate.go.
24 func (conn *Conn) generated_CollectionList(ctx context.Context, options arvados.ListOptions) (arvados.CollectionList, error) {
26 var merged arvados.CollectionList
27 var needSort atomic.Value
29 err := conn.splitListRequest(ctx, options, func(ctx context.Context, _ string, backend arvados.API, options arvados.ListOptions) ([]string, error) {
30 cl, err := backend.CollectionList(ctx, options)
36 if len(merged.Items) == 0 {
38 } else if len(cl.Items) > 0 {
39 merged.Items = append(merged.Items, cl.Items...)
42 uuids := make([]string, 0, len(cl.Items))
43 for _, item := range cl.Items {
44 uuids = append(uuids, item.UUID)
48 if needSort.Load().(bool) {
49 // Apply the default/implied order, "modified_at desc"
50 sort.Slice(merged.Items, func(i, j int) bool {
51 mi, mj := merged.Items[i].ModifiedAt, merged.Items[j].ModifiedAt
55 if merged.Items == nil {
56 // Return empty results as [], not null
57 // (https://github.com/golang/go/issues/27589 might be
58 // a better solution in the future)
59 merged.Items = []arvados.Collection{}
64 // Call fn on one or more local/remote backends if opts indicates a
65 // federation-wide list query, i.e.:
67 // * There is at least one filter of the form
68 // ["uuid","in",[a,b,c,...]] or ["uuid","=",a]
70 // * One or more of the supplied UUIDs (a,b,c,...) has a non-local
73 // * There are no other filters
75 // (If opts doesn't indicate a federation-wide list query, fn is just
76 // called once with the local backend.)
78 // fn is called more than once only if the query meets the following
87 // * Each filter is either "uuid = ..." or "uuid in [...]".
89 // * The maximum possible response size (total number of objects that
90 // could potentially be matched by all of the specified filters)
91 // exceeds the local cluster's response page size limit.
93 // If the query involves multiple backends but doesn't meet these
94 // restrictions, an error is returned without calling fn.
96 // Thus, the caller can assume that either:
98 // * splitListRequest() returns an error, or
100 // * fn is called exactly once, or
102 // * fn is called more than once, with options that satisfy the above
105 // Each call to fn indicates a single (local or remote) backend and a
106 // corresponding options argument suitable for sending to that
108 func (conn *Conn) splitListRequest(ctx context.Context, opts arvados.ListOptions, fn func(context.Context, string, arvados.API, arvados.ListOptions) ([]string, error)) error {
110 var matchAllFilters map[string]bool
111 for _, f := range opts.Filters {
112 matchThisFilter := map[string]bool{}
113 if f.Attr != "uuid" {
117 if f.Operator == "=" {
118 if uuid, ok := f.Operand.(string); ok {
119 matchThisFilter[uuid] = true
121 return httpErrorf(http.StatusBadRequest, "invalid operand type %T for filter %q", f.Operand, f)
123 } else if f.Operator == "in" {
124 if operand, ok := f.Operand.([]interface{}); ok {
125 // skip any elements that aren't
126 // strings (thus can't match a UUID,
127 // thus can't affect the response).
128 for _, v := range operand {
129 if uuid, ok := v.(string); ok {
130 matchThisFilter[uuid] = true
133 } else if strings, ok := f.Operand.([]string); ok {
134 for _, uuid := range strings {
135 matchThisFilter[uuid] = true
138 return httpErrorf(http.StatusBadRequest, "invalid operand type %T in filter %q", f.Operand, f)
145 if matchAllFilters == nil {
146 matchAllFilters = matchThisFilter
148 // Reduce matchAllFilters to the intersection
149 // of matchAllFilters ∩ matchThisFilter.
150 for uuid := range matchAllFilters {
151 if !matchThisFilter[uuid] {
152 delete(matchAllFilters, uuid)
158 if matchAllFilters == nil {
159 // Not filtering by UUID at all; just query the local
161 _, err := fn(ctx, conn.cluster.ClusterID, conn.local, opts)
165 // Collate UUIDs in matchAllFilters by remote cluster ID --
166 // e.g., todoByRemote["aaaaa"]["aaaaa-4zz18-000000000000000"]
167 // will be true -- and count the total number of UUIDs we're
168 // filtering on, so we can compare it to our max page size
171 todoByRemote := map[string]map[string]bool{}
172 for uuid := range matchAllFilters {
174 // Cannot match anything, just drop it
176 if todoByRemote[uuid[:5]] == nil {
177 todoByRemote[uuid[:5]] = map[string]bool{}
179 todoByRemote[uuid[:5]][uuid] = true
184 if len(todoByRemote) == 0 {
187 if len(todoByRemote) == 1 && todoByRemote[conn.cluster.ClusterID] != nil {
188 // All UUIDs are local, so proxy a single request. The
189 // generic case has some limitations (see below) which
190 // we don't want to impose on local requests.
191 _, err := fn(ctx, conn.cluster.ClusterID, conn.local, opts)
195 return httpErrorf(http.StatusBadRequest, "cannot execute federated list query: each filter must be either 'uuid = ...' or 'uuid in [...]'")
197 if opts.Count != "none" {
198 return httpErrorf(http.StatusBadRequest, "cannot execute federated list query unless count==\"none\"")
200 if opts.Limit >= 0 || opts.Offset != 0 || len(opts.Order) > 0 {
201 return httpErrorf(http.StatusBadRequest, "cannot execute federated list query with limit, offset, or order parameter")
203 if max := conn.cluster.API.MaxItemsPerResponse; nUUIDs > max {
204 return httpErrorf(http.StatusBadRequest, "cannot execute federated list query because number of UUIDs (%d) exceeds page size limit %d", nUUIDs, max)
207 ctx, cancel := context.WithCancel(ctx)
209 errs := make(chan error, len(todoByRemote))
210 for clusterID, todo := range todoByRemote {
211 go func(clusterID string, todo map[string]bool) {
212 // This goroutine sends exactly one value to
214 batch := make([]string, 0, len(todo))
215 for uuid := range todo {
216 batch = append(batch, uuid)
219 var backend arvados.API
220 if clusterID == conn.cluster.ClusterID {
222 } else if backend = conn.remotes[clusterID]; backend == nil {
223 errs <- httpErrorf(http.StatusNotFound, "cannot execute federated list query: no proxy available for cluster %q", clusterID)
227 if remoteOpts.Select != nil {
228 // We always need to select UUIDs to
229 // use the response, even if our
231 remoteOpts.Select = append([]string{"uuid"}, remoteOpts.Select...)
234 if len(batch) > len(todo) {
235 // Reduce batch to just the todo's
237 for uuid := range todo {
238 batch = append(batch, uuid)
241 remoteOpts.Filters = []arvados.Filter{{"uuid", "in", batch}}
243 done, err := fn(ctx, clusterID, backend, remoteOpts)
245 errs <- httpErrorf(http.StatusBadGateway, err.Error())
249 for _, uuid := range done {
250 if _, ok := todo[uuid]; ok {
256 // Zero items == no more
257 // results exist, no need to
260 } else if !progress {
261 errs <- httpErrorf(http.StatusBadGateway, "cannot make progress in federated list query: cluster %q returned %d items but none had the requested UUIDs", clusterID, len(done))
269 // Wait for all goroutines to return, then return the first
270 // non-nil error, if any.
272 for range todoByRemote {
273 if err := <-errs; err != nil && firstErr == nil {
275 // Signal to any remaining fn() calls that
276 // further effort is futile.
283 func httpErrorf(code int, format string, args ...interface{}) error {
284 return httpserver.ErrorWithStatus(fmt.Errorf(format, args...), code)