forked from sourcenetwork/defradb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP PR FIXUP - Convert deleted fetcher to multi fetcher
- Loading branch information
1 parent
f03a867
commit 3d757ec
Showing
3 changed files
with
105 additions
and
101 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
// Copyright 2024 Democratized Data Foundation | ||
// | ||
// Use of this software is governed by the Business Source License | ||
// included in the file licenses/BSL.txt. | ||
// | ||
// As of the Change Date specified in that file, in accordance with | ||
// the Business Source License, use of this software will be governed | ||
// by the Apache License, Version 2.0, included in the file | ||
// licenses/APL.txt. | ||
|
||
package fetcher | ||
|
||
import ( | ||
"errors" | ||
|
||
"github.com/sourcenetwork/immutable" | ||
) | ||
|
||
// multi is a fetcher that orchastrates the fetching of documents via multiple child fetchers. | ||
// | ||
// The documents are yielded ordered by docID independently of which child fetcher they are sourced from. | ||
type multi struct { | ||
children []fetcherDocID | ||
|
||
currentFetcherIndex int | ||
} | ||
|
||
var _ fetcher = (*multi)(nil) | ||
|
||
func newMultiFetcher( | ||
children []fetcher, | ||
) *multi { | ||
fetcherDocIDs := make([]fetcherDocID, len(children)) | ||
|
||
for i, fetcher := range children { | ||
fetcherDocIDs[i] = fetcherDocID{ | ||
fetcher: fetcher, | ||
} | ||
} | ||
|
||
return &multi{ | ||
children: fetcherDocIDs, | ||
} | ||
} | ||
|
||
type fetcherDocID struct { | ||
fetcher fetcher | ||
docID immutable.Option[string] | ||
} | ||
|
||
func (f *multi) NextDoc() (immutable.Option[string], error) { | ||
selectedFetcherIndex := -1 | ||
var selectedDocID immutable.Option[string] | ||
|
||
for i, child := range f.children { | ||
if !child.docID.HasValue() { | ||
docID, err := child.fetcher.NextDoc() | ||
if err != nil { | ||
return immutable.None[string](), err | ||
} | ||
child.docID = docID | ||
} | ||
|
||
if !selectedDocID.HasValue() || (child.docID.HasValue() && child.docID.Value() < selectedDocID.Value()) { | ||
selectedFetcherIndex = i | ||
selectedDocID = child.docID | ||
} | ||
} | ||
|
||
f.currentFetcherIndex = selectedFetcherIndex | ||
return selectedDocID, nil | ||
} | ||
|
||
func (f *multi) GetFields() (immutable.Option[EncodedDocument], error) { | ||
doc, err := f.children[f.currentFetcherIndex].fetcher.GetFields() | ||
if err != nil { | ||
return immutable.None[EncodedDocument](), err | ||
} | ||
|
||
f.children[f.currentFetcherIndex].docID = immutable.None[string]() | ||
|
||
return doc, nil | ||
} | ||
|
||
func (f *multi) Close() error { | ||
errs := []error{} | ||
for _, child := range f.children { | ||
err := child.fetcher.Close() | ||
if err != nil { | ||
errs = append(errs, err) | ||
} | ||
} | ||
|
||
if len(errs) != 0 { | ||
return errors.Join(errs...) | ||
} | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters