-
Notifications
You must be signed in to change notification settings - Fork 32
/
log_io.go
261 lines (209 loc) · 6.25 KB
/
log_io.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
package ipfslog // import "berty.tech/go-ipfs-log"
import (
"context"
"fmt"
"time"
coreiface "github.com/ipfs/kubo/core/coreiface"
"berty.tech/go-ipfs-log/iface"
"berty.tech/go-ipfs-log/entry/sorting"
"github.com/ipfs/go-cid"
"berty.tech/go-ipfs-log/entry"
"berty.tech/go-ipfs-log/errmsg"
// "berty.tech/go-ipfs-log/io"
)
type FetchOptions struct {
Length *int
Exclude []iface.IPFSLogEntry
ShouldExclude iface.ExcludeFunc
ProgressChan chan iface.IPFSLogEntry
Timeout time.Duration
Concurrency int
SortFn iface.EntrySortFn
}
func toMultihash(ctx context.Context, services coreiface.CoreAPI, log *IPFSLog) (cid.Cid, error) {
if log.heads.Len() == 0 {
return cid.Undef, errmsg.ErrEmptyLogSerialization
}
return log.io.Write(ctx, services, log.ToJSONLog(), nil)
}
func fromMultihash(ctx context.Context, services coreiface.CoreAPI, hash cid.Cid, options *FetchOptions, io iface.IO) (*Snapshot, error) {
result, err := io.Read(ctx, services, hash)
if err != nil {
return nil, errmsg.ErrCBOROperationFailed.Wrap(err)
}
logHeads, err := io.DecodeRawJSONLog(result)
if err != nil {
return nil, errmsg.ErrCBOROperationFailed.Wrap(err)
}
// Use user provided sorting function or the default one
sortFn := sorting.NoZeroes(sorting.LastWriteWins)
if options.SortFn != nil {
sortFn = options.SortFn
}
entries := entry.FetchAll(ctx, services, logHeads.Heads, &iface.FetchOptions{
Length: options.Length,
ShouldExclude: options.ShouldExclude,
Exclude: options.Exclude,
Concurrency: options.Concurrency,
Timeout: options.Timeout,
ProgressChan: options.ProgressChan,
IO: io,
})
if options.Length != nil && *options.Length > -1 {
sorting.Sort(sortFn, entries, false)
entries = entrySlice(entries, -*options.Length)
}
var heads []cid.Cid
for _, e := range entries {
for _, h := range logHeads.Heads {
if h.String() == e.GetHash().String() {
heads = append(heads, e.GetHash())
}
}
}
return &Snapshot{
ID: logHeads.ID,
Values: entries,
Heads: heads,
}, nil
}
func fromEntryHash(ctx context.Context, services coreiface.CoreAPI, hashes []cid.Cid, options *FetchOptions, io iface.IO) ([]iface.IPFSLogEntry, error) {
if services == nil {
return nil, errmsg.ErrIPFSNotDefined
}
if options == nil {
return nil, errmsg.ErrFetchOptionsNotDefined
}
// Fetch given length, return size at least the given input entries
length := -1
if options.Length != nil && *options.Length > -1 {
length = maxInt(*options.Length, 1)
}
all := entry.FetchParallel(ctx, services, hashes, &iface.FetchOptions{
Length: options.Length,
Exclude: options.Exclude,
ShouldExclude: options.ShouldExclude,
ProgressChan: options.ProgressChan,
Timeout: options.Timeout,
Concurrency: options.Concurrency,
IO: io,
})
sortFn := sorting.NoZeroes(sorting.LastWriteWins)
if options.SortFn != nil {
sortFn = options.SortFn
}
entries := all
if length > -1 {
sorting.Sort(sortFn, entries, false)
entries = entrySlice(all, -length)
}
return entries, nil
}
func fromJSON(ctx context.Context, services coreiface.CoreAPI, jsonLog *iface.JSONLog, options *iface.FetchOptions) (*Snapshot, error) {
if services == nil {
return nil, errmsg.ErrIPFSNotDefined
}
if options == nil {
return nil, errmsg.ErrFetchOptionsNotDefined
}
if options.IO == nil {
return nil, errmsg.ErrLogOptionsNotDefined.Wrap(fmt.Errorf("missing IO field in fetch options"))
}
entries := entry.FetchParallel(ctx, services, jsonLog.Heads, &iface.FetchOptions{
Length: options.Length,
ProgressChan: options.ProgressChan,
Concurrency: options.Concurrency,
Timeout: options.Timeout,
IO: options.IO,
})
sorting.Sort(sorting.Compare, entries, false)
return &Snapshot{
ID: jsonLog.ID,
Heads: jsonLog.Heads,
Values: entries,
}, nil
}
func fromEntry(ctx context.Context, services coreiface.CoreAPI, sourceEntries []iface.IPFSLogEntry, options *iface.FetchOptions) (*Snapshot, error) {
if services == nil {
return nil, errmsg.ErrIPFSNotDefined
}
if options == nil {
return nil, errmsg.ErrFetchOptionsNotDefined
}
// Fetch given length, return size at least the given input entries
length := -1
if options.Length != nil && *options.Length > -1 {
length = maxInt(*options.Length, len(sourceEntries))
}
// Make sure we pass hashes instead of objects to the fetcher function
var hashes []cid.Cid
for _, e := range sourceEntries {
hashes = append(hashes, e.GetHash())
}
// Fetch the entries
entries := entry.FetchParallel(ctx, services, hashes, &iface.FetchOptions{
Length: &length,
Exclude: options.Exclude,
ProgressChan: options.ProgressChan,
Timeout: options.Timeout,
Concurrency: options.Concurrency,
IO: options.IO,
})
// Combine the fetches with the source entries and take only uniques
combined := append(sourceEntries, entries...)
combined = append(combined, options.Exclude...)
uniques := entry.NewOrderedMapFromEntries(combined).Slice()
sorting.Sort(sorting.Compare, uniques, false)
// Cap the result at the right size by taking the last n entries
var sliced []iface.IPFSLogEntry
if length > -1 {
sliced = entrySlice(uniques, -length)
} else {
sliced = uniques
}
missingSourceEntries := entry.Difference(sliced, sourceEntries)
result := append(missingSourceEntries, entrySliceRange(sliced, len(missingSourceEntries), len(sliced))...)
return &Snapshot{
ID: result[len(result)-1].GetLogID(),
Values: result,
}, nil
}
func entrySlice(entries []iface.IPFSLogEntry, index int) []iface.IPFSLogEntry {
if len(entries) == 0 || index >= len(entries) {
return []iface.IPFSLogEntry{}
}
if index == 0 || (index < 0 && -index >= len(entries)) {
return entries
}
if index > 0 {
return entries[index:]
}
return entries[(len(entries) + index):]
}
func entrySliceRange(entries []iface.IPFSLogEntry, from int, to int) []iface.IPFSLogEntry {
if len(entries) == 0 {
return nil
}
if from < 0 {
from = len(entries) + from
if from < 0 {
from = 0
}
}
if to < 0 {
to = len(entries) + to
}
if from >= len(entries) {
return nil
}
if to > len(entries) {
to = len(entries)
}
if from >= to {
return nil
}
if from == to {
return entries
}
return entries[from:to]
}