-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHelpersDataWrapEntryBlob.jl
More file actions
304 lines (278 loc) · 7.42 KB
/
HelpersDataWrapEntryBlob.jl
File metadata and controls
304 lines (278 loc) · 7.42 KB
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
##==============================================================================
## Data CRUD interface
##==============================================================================
# NOTE this is the convenience wrappers for entry and blob.
"""
Get the blob entry and blob for the specified blobstore or dfg retured as a tuple.
Related
[`getBlobEntry`](@ref)
$(METHODLIST)
"""
function getData end
"""
Add both a BlobEntry and Blob to a distributed factor graph or BlobStore.
Related
[`addBlobEntry!`](@ref)
$(METHODLIST)
"""
function addData! end
"""
Update a blob entry or blob to the blob store or dfg.
Related
[`updateBlobEntry!`](@ref)
$(METHODLIST)
"""
function updateData! end
"""
Delete a blob entry and blob from the blob store or dfg.
Related
[`deleteBlobEntry!`](@ref)
$(METHODLIST)
"""
function deleteData! end
# construction helper from existing BlobEntry for user overriding via kwargs
function BlobEntry(
entry::BlobEntry;
id::Union{UUID, Nothing} = entry.id,
blobId::Union{UUID, Nothing} = entry.blobId,
originId::UUID = entry.originId,
label::Symbol = entry.label,
blobstore::Symbol = entry.blobstore,
hash::String = entry.hash,
size::Union{String, Int, Nothing} = entry.size,
origin::String = entry.origin,
description::String = entry.description,
mimeType::String = entry.mimeType,
metadata::String = entry.metadata,
timestamp::ZonedDateTime = entry.timestamp,
createdTimestamp = entry.createdTimestamp,
lastUpdatedTimestamp = entry.lastUpdatedTimestamp,
_version::String = entry._version,
)
return BlobEntry(;
id,
blobId,
originId,
label,
blobstore,
hash,
origin,
size = string(size),
description,
mimeType,
metadata,
timestamp,
createdTimestamp,
lastUpdatedTimestamp,
_version,
)
end
function getData(
dfg::AbstractDFG,
vlabel::Symbol,
key::Union{Symbol, UUID, <:AbstractString, Regex};
hashfunction = sha256,
checkhash::Bool = true,
getlast::Bool = true,
)
_getblobentr(g, v, k) = getBlobEntries(g, v, k)
_getblobentr(g, v, k::UUID) = [getBlobEntry(g, v, k);]
de_ = _getblobentr(dfg, vlabel, key)
lbls = (s -> s.label).(de_)
idx = sortperm(lbls; rev = getlast)
_first(s) = s
_first(s::AbstractVector) = 0 < length(s) ? s[1] : nothing
de = _first(de_[idx])
if isnothing(de)
@error "Could not find in $vlabel the key $key"
return nothing
end
db = getBlob(dfg, de)
checkhash && assertHash(de, db; hashfunction = hashfunction)
return de => db
end
# This is the normal one
function getData(
dfg::AbstractDFG,
blobstore::AbstractBlobStore,
label::Symbol,
key::Symbol;
hashfunction = sha256,
checkhash::Bool = true,
getlast::Bool = true,
)
de = getBlobEntry(dfg, label, key)
db = getBlob(blobstore, de)
checkhash && assertHash(de, db; hashfunction)
return de => db
end
#FIXME Should `addData!`` not return entry=>blob pair?
function addData!(
dfg::AbstractDFG,
label::Symbol,
entry::BlobEntry,
blob::Vector{UInt8};
hashfunction = sha256,
checkhash::Bool = false,
)
checkhash && assertHash(entry, blob; hashfunction)
blobId = addBlob!(dfg, entry, blob) |> UUID
newEntry = BlobEntry(entry; blobId) #, size=length(blob))
return addBlobEntry!(dfg, label, newEntry)
end
function addData!(
dfg::AbstractDFG,
blobstore::AbstractBlobStore,
label::Symbol,
entry::BlobEntry,
blob::Vector{UInt8};
hashfunction = sha256,
checkhash::Bool = false,
)
checkhash && assertHash(entry, blob; hashfunction)
blobId = addBlob!(blobstore, entry, blob) |> UUID
newEntry = BlobEntry(entry; blobId) #, size=length(blob))
return addBlobEntry!(dfg, label, newEntry)
end
function addData!(
dfg::AbstractDFG,
blobstorekey::Symbol,
vLbl::Symbol,
bLbl::Symbol,
blob::Vector{UInt8},
timestamp = now(localzone());
kwargs...,
)
return addData!(
dfg,
getBlobStore(dfg, blobstorekey),
vLbl,
bLbl,
blob,
timestamp;
kwargs...,
)
end
function addData!(
dfg::AbstractDFG,
blobstore::AbstractBlobStore,
vLbl::Symbol,
bLbl::Symbol,
blob::Vector{UInt8},
timestamp = now(localzone());
description = "",
metadata = "",
mimeType::String = "application/octet-stream",
id::Union{UUID, Nothing} = nothing,
blobId::Union{UUID, Nothing} = nothing, #only assign if blobstore issued you an id
originId::UUID = uuid4(),
hashfunction = sha256,
)
#
entry = BlobEntry(;
id,
blobId,
originId,
label = bLbl,
blobstore = getLabel(blobstore),
hash = string(bytes2hex(hashfunction(blob))),
origin = buildSourceString(dfg, vLbl),
description,
mimeType,
metadata,
timestamp,
)
return addData!(dfg, blobstore, vLbl, entry, blob; hashfunction)
end
function addData!(
dfg::AbstractDFG,
blobstore::AbstractBlobStore{T},
vLbl::Symbol,
blobLabel::Symbol,
blob::T,
timestamp = now(localzone());
description = "",
metadata = "",
mimeType::String = "application/octet-stream",
origin = buildSourceString(dfg, vLbl),
# hashfunction = sha256,
) where {T}
#
# checkhash && assertHash(entry, blob; hashfunction)
blobId = addBlob!(blobstore, blob)
entry = BlobEntry(;
blobId,
originId = blobId,
label = blobLabel,
blobstore = getLabel(blobstore),
# hash = string(bytes2hex(hashfunction(blob))),
hash = "",
origin,
description,
mimeType,
metadata,
timestamp,
)
addBlobEntry!(dfg, vLbl, entry)
return entry => blob
end
function updateData!(
dfg::AbstractDFG,
label::Symbol,
entry::BlobEntry,
blob::Vector{UInt8};
hashfunction = sha256,
checkhash::Bool = true,
)
checkhash && assertHash(entry, blob; hashfunction)
# order of ops with unknown new blobId not tested
de = updateBlobEntry!(dfg, label, entry)
db = updateBlob!(dfg, de, blob)
return de => db
end
function updateData!(
dfg::AbstractDFG,
blobstore::AbstractBlobStore,
label::Symbol,
entry::BlobEntry,
blob::Vector{UInt8};
hashfunction = sha256,
)
# Recalculate the hash - NOTE Assuming that this is going to be a BlobEntry. TBD.
# order of operations with unknown new blobId not tested
newEntry = BlobEntry(
entry; # and kwargs to override new values
blobstore = getLabel(blobstore),
hash = string(bytes2hex(hashfunction(blob))),
origin = buildSourceString(dfg, label),
_version = string(_getDFGVersion()),
)
de = updateBlobEntry!(dfg, label, newEntry)
db = updateBlob!(blobstore, de, blob)
return de => db
end
function deleteData!(dfg::AbstractDFG, vLbl::Symbol, bLbl::Symbol)
de = getBlobEntry(dfg, vLbl, bLbl)
deleteBlobEntry!(dfg, vLbl, bLbl)
deleteBlob!(dfg, de)
return 2
end
function deleteData!(
dfg::AbstractDFG,
blobstore::AbstractBlobStore,
vLbl::Symbol,
entry::BlobEntry,
)
return deleteData!(dfg, blobstore, vLbl, entry.label)
end
function deleteData!(
dfg::AbstractDFG,
blobstore::AbstractBlobStore,
vLbl::Symbol,
bLbl::Symbol,
)
de = getBlobEntry(dfg, vLbl, bLbl)
deleteBlobEntry!(dfg, vLbl, bLbl)
deleteBlob!(blobstore, de)
return 2
end