-
Notifications
You must be signed in to change notification settings - Fork 4
/
lookups.py
414 lines (344 loc) · 13.7 KB
/
lookups.py
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
import collections.abc
import dacite
import dataclasses
import datetime
import functools
import logging
import urllib.parse
import ccc.oci
import ci.util
import cnudie.retrieve
import cnudie.retrieve_async
import cnudie.util
import delivery.client
import oci.client
import oci.client_async
import ocm
import ctx_util
import deliverydb_cache.model as dcm
import deliverydb_cache.util as dcu
import paths
import util
logger = logging.getLogger(__name__)
def semver_sanitised_oci_client(
cfg_factory=None,
) -> oci.client.Client:
if not cfg_factory:
cfg_factory = ctx_util.cfg_factory()
return ccc.oci.oci_client(
cfg_factory=cfg_factory,
tag_preprocessing_callback=cnudie.util.sanitise_version,
tag_postprocessing_callback=cnudie.util.desanitise_version,
)
def semver_sanitised_oci_client_async(
cfg_factory=None,
) -> oci.client_async.Client:
if not cfg_factory:
cfg_factory = ctx_util.cfg_factory()
return ccc.oci.oci_client_async(
cfg_factory=cfg_factory,
tag_preprocessing_callback=cnudie.util.sanitise_version,
tag_postprocessing_callback=cnudie.util.desanitise_version,
)
@functools.cache
def init_ocm_repository_lookup() -> cnudie.retrieve.OcmRepositoryLookup:
if features_cfg_path := paths.features_cfg_path():
features_cfg_raw = ci.util.parse_yaml_file(features_cfg_path)
ocm_repo_mappings_raw = features_cfg_raw.get('ocmRepoMappings', tuple())
else:
ocm_repo_mappings_raw = tuple()
ocm_repo_mappings = tuple(
dacite.from_dict(
data_class=cnudie.retrieve.OcmRepositoryMappingEntry,
data=raw_mapping,
) for raw_mapping in ocm_repo_mappings_raw
)
def ocm_repository_lookup(component: ocm.ComponentIdentity, /):
for mapping in ocm_repo_mappings:
if not mapping.prefix:
yield mapping.repository
continue
component_name = cnudie.util.to_component_name(component)
if component_name.startswith(mapping.prefix):
yield mapping.repository
return ocm_repository_lookup
def db_cache_component_descriptor_lookup_async(
db_url: str,
ocm_repository_lookup: cnudie.retrieve.OcmRepositoryLookup=None,
encoding_format: dcm.EncodingFormat=dcm.EncodingFormat.PICKLE,
ttl_seconds: int=0,
keep_at_least_seconds: int=0,
max_size_octets: int=0,
) -> cnudie.retrieve_async.ComponentDescriptorLookupById:
'''
Used to lookup referenced component descriptors in the database cache. In case of a cache miss,
the required component descriptor can be added to the cache by using the writeback function.
@param db_url:
url of the database containing the cache relation
@param ocm_repository_lookup:
lookup for OCM repositories
@param encoding_format:
format used to store the serialised component descriptor (this will have an impact on
(de-)serialisation efficiency and storage size
@param ttl_seconds:
the maximum allowed time a cache item is valid in seconds
@param keep_at_least_seconds:
the minimum time a cache item should be kept
@param max_size_octets:
the maximum size of an individual cache entry, if the result exceeds this limit, it is not
persistet in the database cache
'''
# late import to not require it in extensions which don't use async lookup
import deliverydb.cache
import deliverydb.model
if ttl_seconds and ttl_seconds < keep_at_least_seconds:
raise ValueError(
'If time-to-live (`ttl_seconds`) and `keep_at_least_seconds` are both specified, '
'`ttl_seconds` must be greater or equal than `keep_at_least_seconds`.'
)
async def writeback(
component_id: ocm.ComponentIdentity,
component_descriptor: ocm.ComponentDescriptor,
start: datetime.datetime,
):
descriptor = dcm.CachedComponentDescriptor(
encoding_format=encoding_format,
component_name=component_id.name,
component_version=component_id.version,
ocm_repository=component_descriptor.component.current_ocm_repo,
)
value = dcu.serialise_cache_value(
value=util.dict_serialisation(dataclasses.asdict(component_descriptor)),
encoding_format=encoding_format,
)
if max_size_octets > 0 and len(value) > max_size_octets:
# don't store result in cache if it exceeds max size for an individual cache entry
return
now = datetime.datetime.now(datetime.timezone.utc)
cache_entry = deliverydb.model.DBCache(
id=descriptor.id,
descriptor=util.dict_serialisation(dataclasses.asdict(descriptor)),
delete_after=now + datetime.timedelta(seconds=ttl_seconds) if ttl_seconds else None,
keep_until=now + datetime.timedelta(seconds=keep_at_least_seconds),
costs=int((now - start).total_seconds() * 1000),
size=len(value),
value=value,
)
db_session = await deliverydb.sqlalchemy_session(db_url)
try:
await deliverydb.cache.add_or_update_cache_entry(
db_session=db_session,
cache_entry=cache_entry,
)
except Exception:
raise
finally:
await db_session.close()
async def lookup(
component_id: cnudie.util.ComponentId,
ctx_repo: ocm.OcmRepository | str=None,
ocm_repository_lookup: cnudie.retrieve.OcmRepositoryLookup=ocm_repository_lookup,
):
component_id = cnudie.util.to_component_id(component_id)
if ctx_repo:
ocm_repos = (ctx_repo, )
else:
ocm_repos = cnudie.retrieve.iter_ocm_repositories(
component_id,
ocm_repository_lookup,
)
db_session = await deliverydb.sqlalchemy_session(db_url)
try:
for ocm_repo in ocm_repos:
if isinstance(ocm_repo, str):
ocm_repo = ocm.OciOcmRepository(
baseUrl=ocm_repo,
)
if not isinstance(ocm_repo, ocm.OciOcmRepository):
raise NotImplementedError(ocm_repo)
descriptor = dcm.CachedComponentDescriptor(
encoding_format=encoding_format,
component_name=component_id.name,
component_version=component_id.version,
ocm_repository=ocm_repo,
)
if value := await deliverydb.cache.find_cached_value(
db_session=db_session,
id=descriptor.id,
):
return ocm.ComponentDescriptor.from_dict(
component_descriptor_dict=dcu.deserialise_cache_value(
value=value,
encoding_format=encoding_format,
),
)
except Exception:
raise
finally:
await db_session.close()
# component descriptor not found in lookup
start = datetime.datetime.now(tz=datetime.timezone.utc)
return cnudie.retrieve_async.WriteBack(functools.partial(writeback, start=start))
return lookup
def init_component_descriptor_lookup(
ocm_repository_lookup: cnudie.retrieve.OcmRepositoryLookup=None,
cache_dir: str=None,
delivery_client: delivery.client.DeliveryServiceClient=None,
oci_client: oci.client.Client=None,
default_absent_ok: bool=False,
) -> cnudie.retrieve.ComponentDescriptorLookupById:
'''
convenience function to create a composite component descriptor lookup consisting of:
- in-memory cache lookup
- file-system cache lookup (if `cache_dir` is specified)
- delivery-client lookup (if `delivery_client` is specified)
- oci-client lookup
'''
if not ocm_repository_lookup:
ocm_repository_lookup = init_ocm_repository_lookup()
if not oci_client:
oci_client = semver_sanitised_oci_client()
lookups = [cnudie.retrieve.in_memory_cache_component_descriptor_lookup(
ocm_repository_lookup=ocm_repository_lookup,
)]
if cache_dir:
lookups.append(cnudie.retrieve.file_system_cache_component_descriptor_lookup(
ocm_repository_lookup=ocm_repository_lookup,
cache_dir=cache_dir,
))
if delivery_client:
lookups.append(cnudie.retrieve.delivery_service_component_descriptor_lookup(
ocm_repository_lookup=ocm_repository_lookup,
delivery_client=delivery_client,
))
lookups.append(cnudie.retrieve.oci_component_descriptor_lookup(
ocm_repository_lookup=ocm_repository_lookup,
oci_client=oci_client,
))
return cnudie.retrieve.composite_component_descriptor_lookup(
lookups=lookups,
ocm_repository_lookup=ocm_repository_lookup,
default_absent_ok=default_absent_ok,
)
def init_component_descriptor_lookup_async(
ocm_repository_lookup: cnudie.retrieve.OcmRepositoryLookup=None,
cache_dir: str=None,
db_url: str=None,
delivery_client: delivery.client.DeliveryServiceClient=None,
oci_client: oci.client_async.Client=None,
default_absent_ok: bool=False,
) -> cnudie.retrieve_async.ComponentDescriptorLookupById:
'''
convenience function to create a composite component descriptor lookup consisting of:
- in-memory cache lookup
- file-system cache lookup (if `cache_dir` is specified)
- database (persistent) cache lookup (if `db_url` is specified)
- delivery-client lookup (if `delivery_client` is specified)
- oci-client lookup
'''
if not ocm_repository_lookup:
ocm_repository_lookup = init_ocm_repository_lookup()
if not oci_client:
oci_client = semver_sanitised_oci_client_async()
lookups = [cnudie.retrieve_async.in_memory_cache_component_descriptor_lookup(
ocm_repository_lookup=ocm_repository_lookup,
)]
if cache_dir:
lookups.append(cnudie.retrieve_async.file_system_cache_component_descriptor_lookup(
ocm_repository_lookup=ocm_repository_lookup,
cache_dir=cache_dir,
))
if db_url:
lookups.append(db_cache_component_descriptor_lookup_async(
db_url=db_url,
ocm_repository_lookup=ocm_repository_lookup,
))
if delivery_client:
lookups.append(cnudie.retrieve_async.delivery_service_component_descriptor_lookup(
ocm_repository_lookup=ocm_repository_lookup,
delivery_client=delivery_client,
))
lookups.append(cnudie.retrieve_async.oci_component_descriptor_lookup(
ocm_repository_lookup=ocm_repository_lookup,
oci_client=oci_client,
))
return cnudie.retrieve_async.composite_component_descriptor_lookup(
lookups=lookups,
ocm_repository_lookup=ocm_repository_lookup,
default_absent_ok=default_absent_ok,
)
def init_version_lookup(
ocm_repository_lookup: cnudie.retrieve.OcmRepositoryLookup=None,
oci_client: oci.client.Client=None,
default_absent_ok: bool=False,
) -> cnudie.retrieve.VersionLookupByComponent:
if not ocm_repository_lookup:
ocm_repository_lookup = init_ocm_repository_lookup()
if not oci_client:
oci_client = semver_sanitised_oci_client()
return cnudie.retrieve.version_lookup(
ocm_repository_lookup=ocm_repository_lookup,
oci_client=oci_client,
default_absent_ok=default_absent_ok,
)
def init_version_lookup_async(
ocm_repository_lookup: cnudie.retrieve.OcmRepositoryLookup=None,
oci_client: oci.client_async.Client=None,
default_absent_ok: bool=False,
) -> cnudie.retrieve_async.VersionLookupByComponent:
if not ocm_repository_lookup:
ocm_repository_lookup = init_ocm_repository_lookup()
if not oci_client:
oci_client = semver_sanitised_oci_client_async()
return cnudie.retrieve_async.version_lookup(
ocm_repository_lookup=ocm_repository_lookup,
oci_client=oci_client,
default_absent_ok=default_absent_ok,
)
def github_api_lookup(
cfg_factory=None,
) -> 'collections.abc.Callable[[str], github3.github.GitHub]': # avoid import
'''
creates a github-api-lookup. ideally, this lookup should be created at application launch, and
passed to consumers.
'''
if not cfg_factory:
cfg_factory = ctx_util.cfg_factory()
def github_api_lookup(
repo_url: str,
/,
absent_ok: bool=False,
) -> 'github3.github.GitHub | None': # avoid import
'''
returns an initialised and authenticated apiclient object suitable for
the passed repository URL
The implementation currently delegates lookup to `ccc.github.github_api`. Consistently using
this wrapper will however allow for later decoupling.
raises ValueError if no configuration (credentials) is found for the given repository url
unless absent_ok is set to a truthy value, in which case None is returned instead.
'''
import ccc.github
try:
return ccc.github.github_api(
repo_url=repo_url,
cfg_factory=cfg_factory,
)
except:
if not absent_ok:
raise
else:
return None
return github_api_lookup
def github_repo_lookup(
github_api_lookup,
):
def github_repo_lookup(
repo_url: str, /,
):
if not '://' in repo_url:
repo_url = f'x://{repo_url}'
parsed = urllib.parse.urlparse(repo_url)
org, repo = parsed.path.strip('/').split('/')[:2]
gh_api = github_api_lookup(repo_url)
return gh_api.repository(org, repo)
return github_repo_lookup