-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdb_utils.py
467 lines (423 loc) · 15 KB
/
db_utils.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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
import json
from unidecode import unidecode
import pandas as pd
UNMODIFIED = 0
INSERT = 1
UPDATE = 2
def normalize_entity_name(entity_name):
return unidecode(entity_name.lower().strip())
class NotOne(ValueError):
pass
class DBUtils:
# TODO create bulk inserts for every create? what type should they return?
def __init__(self, cursor):
self.cursor = cursor
self.counts = {
"tags_inserted": 0,
"tags_updated": 0,
"entities_inserted": 0,
"datasets_inserted": 0,
"datasets_updated": 0,
"namespaces_inserted": 0,
"namespaces_updated": 0,
"variables_inserted": 0,
"variables_updated": 0,
"sources_inserted": 0,
"sources_updated": 0,
}
self.entity_id_by_normalised_name = {}
def get_counts(self):
return self.counts
def get_entity_cache(self):
return self.entity_id_by_normalised_name
def fetch_one_or_none(self, *args, **kwargs):
self.cursor.execute(*args, **kwargs)
rows = self.cursor.fetchall()
if len(rows) > 1:
raise NotOne("Expected 1 or 0 rows but received %d" % (len(rows)))
elif len(rows) == 1:
return rows[0]
else:
return None
def fetch_one(self, *args, **kwargs):
result = self.fetch_one_or_none(*args, **kwargs)
if result is None:
raise NotOne("Expected 1 row but received 0")
else:
return result
def fetch_many(self, *args, **kwargs):
self.cursor.execute(*args, **kwargs)
return self.cursor.fetchall()
def insert_one(self, *args, **kwargs):
self.cursor.execute(*args, **kwargs)
return self.cursor.lastrowid
def upsert_one(self, *args, **kwargs):
self.cursor.execute(*args, **kwargs)
if self.cursor.rowcount == 0:
return UNMODIFIED
if self.cursor.rowcount == 1:
return INSERT
if self.cursor.rowcount == 2:
return UPDATE
return None
def upsert_many(self, query, tuples):
self.cursor.executemany(query, tuples)
def execute_until_empty(self, *args, **kwargs):
first = True
while first or self.cursor.rowcount > 0:
first = False
self.cursor.execute(*args, **kwargs)
def __fetch_parent_tag(self, name):
(tag_id,) = self.fetch_one(
"""
SELECT id FROM tags
WHERE name = %s
AND isBulkImport = TRUE
AND parentId IS NULL
LIMIT 1
""",
[name],
)
return tag_id
def upsert_parent_tag(self, name):
try:
return self.__fetch_parent_tag(name)
except NotOne:
self.upsert_one(
"""
INSERT INTO tags (name, createdAt, updatedAt, isBulkImport)
VALUES (%s, NOW(), NOW(), TRUE)
""",
[name],
)
self.counts["tags_inserted"] += 1
return self.__fetch_parent_tag(name)
def upsert_tag(self, name, parent_id):
operation = self.upsert_one(
"""
INSERT INTO
tags (name, parentId, createdAt, updatedAt, isBulkImport)
VALUES
(%s, %s, NOW(), NOW(), TRUE)
ON DUPLICATE KEY UPDATE
updatedAt = VALUES(updatedAt),
isBulkImport = VALUES(isBulkImport)
""",
[name, parent_id],
)
if operation == INSERT:
self.counts["tags_inserted"] += 1
elif operation == UPDATE:
self.counts["tags_updated"] += 1
(tag_id,) = self.fetch_one(
"""
SELECT id FROM tags
WHERE name = %s
AND parentId = %s
""",
[name, parent_id],
)
return tag_id
def associate_dataset_tag(self, dataset_id, tag_id):
self.upsert_one(
"""
INSERT INTO dataset_tags
(datasetId, tagId)
VALUES
(%s, %s)
ON DUPLICATE KEY UPDATE
tagId = VALUES(tagId)
""",
[dataset_id, tag_id],
)
# ON DUPLICATE here only avoids error, it intentionally updates nothing
def upsert_dataset(
self,
name,
namespace,
user_id,
tag_id=None,
description="This is a dataset imported by the automated fetcher",
):
operation = self.upsert_one(
"""
INSERT INTO datasets
(name, description, namespace, createdAt, createdByUserId, updatedAt, metadataEditedAt, metadataEditedByUserId, dataEditedAt, dataEditedByUserId)
VALUES
(%s, %s, %s, NOW(), %s, NOW(), NOW(), %s, NOW(), %s)
ON DUPLICATE KEY UPDATE
name = VALUES(name),
description = VALUES(description),
namespace = VALUES(namespace),
updatedAt = VALUES(updatedAt),
metadataEditedAt = VALUES(metadataEditedAt),
metadataEditedByUserId = VALUES(metadataEditedByUserId),
dataEditedAt = VALUES(dataEditedAt),
dataEditedByUserId = VALUES(dataEditedByUserId)
""",
[name, description, namespace, user_id, user_id, user_id],
)
(dataset_id,) = self.fetch_one(
"""
SELECT id FROM datasets
WHERE name = %s
AND namespace = %s
""",
[name, namespace],
)
if operation == INSERT:
self.counts["datasets_inserted"] += 1
if operation == UPDATE:
self.counts["datasets_updated"] += 1
if tag_id is not None:
self.associate_dataset_tag(dataset_id, tag_id)
return dataset_id
def upsert_namespace(self, name, description):
operation = self.upsert_one(
"""
INSERT INTO namespaces
(name, description)
VALUES
(%s, %s)
ON DUPLICATE KEY UPDATE
name = VALUES(name),
description = VALUES(description)
""",
[name, description],
)
(namespace_id,) = self.fetch_one(
"""
SELECT id FROM namespaces
WHERE name = %s
""",
[name],
)
if operation == INSERT:
self.counts["namespaces_inserted"] += 1
if operation == UPDATE:
self.counts["namespaces_updated"] += 1
return namespace_id
def upsert_source(self, name, description, dataset_id):
# There is no UNIQUE key constraint we can rely on to prevent duplicates
# so we have to do a SELECT before INSERT...
desc_json = json.loads(description)
query = """
SELECT id FROM sources
WHERE name = %(name)s
AND IF(%(dataPublishedBy)s IS NULL, description->>"$.dataPublishedBy" IS NULL OR description->>"$.dataPublishedBy" = 'null', description->"$.dataPublishedBy" = %(dataPublishedBy)s)
AND IF(%(dataPublisherSource)s IS NULL, description->>"$.dataPublisherSource" IS NULL OR description->>"$.dataPublisherSource" = 'null', description->"$.dataPublisherSource" = %(dataPublisherSource)s)
AND IF(%(additionalInfo)s IS NULL, description->>"$.additionalInfo" IS NULL OR description->>"$.additionalInfo" = 'null', description->"$.additionalInfo" = %(additionalInfo)s)
"""
if pd.isnull(dataset_id):
query += "AND datasetId IS NULL"
else:
query += f"AND datasetId = {dataset_id}"
row = self.fetch_one_or_none(
query,
{
"name": name,
"dataPublishedBy": desc_json.get("dataPublishedBy"),
"dataPublisherSource": desc_json.get("dataPublisherSource"),
"additionalInfo": desc_json.get("additionalInfo"),
},
)
if row is None:
if pd.isnull(dataset_id):
self.upsert_one(
"""
INSERT INTO sources (name, description, createdAt, updatedAt)
VALUES (%s, %s, NOW(), NOW())
""",
[name, description],
)
else:
self.upsert_one(
"""
INSERT INTO sources (name, description, datasetId, createdAt, updatedAt)
VALUES (%s, %s, %s, NOW(), NOW())
""",
[name, description, dataset_id],
)
self.counts["sources_inserted"] += 1
row = self.fetch_one(
query,
{
"name": name,
"dataPublishedBy": desc_json.get("dataPublishedBy"),
"dataPublisherSource": desc_json.get("dataPublisherSource"),
"additionalInfo": desc_json.get("additionalInfo"),
},
)
else:
self.cursor.execute(
"""
UPDATE sources
SET updatedAt = NOW(),
description = %(description)s
WHERE id = %(id)s
""",
{"description": description, "id": row[0]},
)
self.counts["sources_updated"] += 1
return row[0]
def upsert_variable(
self,
name,
code,
unit,
short_unit,
source_id,
dataset_id,
description=None,
timespan="",
coverage="",
display=None,
original_metadata=None,
):
if display is None or display == "":
display = {}
if original_metadata is None or original_metadata == "":
original_metadata = {}
if not isinstance(display, str):
display = json.dumps(display)
if not isinstance(original_metadata, str):
original_metadata = json.dumps(original_metadata)
operation = self.upsert_one(
"""
INSERT INTO variables (
name, code, description, unit, shortUnit, timespan, coverage,
display, originalMetadata, sourceId, datasetId, createdAt,
updatedAt
)
VALUES
(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, NOW(), NOW())
ON DUPLICATE KEY UPDATE
name = VALUES(name),
code = VALUES(code),
description = VALUES(description),
unit = VALUES(unit),
shortUnit = VALUES(shortUnit),
timespan = VALUES(timespan),
coverage = VALUES(coverage),
display = VALUES(display),
originalMetadata = VALUES(originalMetadata),
datasetId = VALUES(datasetId),
sourceId = VALUES(sourceId),
datasetId = VALUES(datasetId),
updatedAt = VALUES(updatedAt)
""",
[
name,
code,
description,
unit,
short_unit,
timespan,
coverage,
display,
original_metadata,
source_id,
dataset_id,
],
)
if operation == INSERT:
self.counts["variables_inserted"] += 1
elif operation == UPDATE:
self.counts["variables_updated"] += 1
(var_id,) = self.fetch_one(
"""
SELECT id FROM variables
WHERE (name = %s OR code = %s)
AND datasetId = %s
AND sourceId = %s
""",
[name, code, dataset_id, source_id],
)
return var_id
def touch_variable(self, var_id):
self.cursor.execute(
"""
UPDATE variables
SET updatedAt = NOW()
WHERE id = %s
""",
[var_id],
)
self.counts["variables_updated"] += self.cursor.rowcount
def note_import(self, import_type, import_notes, import_state):
self.upsert_one(
"""
INSERT INTO importer_importhistory (import_type, import_time, import_notes, import_state)
VALUES (%s, NOW(), %s, %s)
""",
[import_type, import_notes, import_state],
)
def __get_cached_entity_id(self, name):
normalised_name = normalize_entity_name(name)
if normalised_name in self.entity_id_by_normalised_name:
return self.entity_id_by_normalised_name[normalised_name]
else:
return None
def get_or_create_entity(self, name):
# Serve from cache if available
entity_id = self.__get_cached_entity_id(name)
if entity_id is not None:
return entity_id
# Populate cache from database
self.prefill_entity_cache([name])
entity_id = self.__get_cached_entity_id(name)
if entity_id is not None:
return entity_id
# If still not in cache, it's a new entity and we have to insert it
else:
self.upsert_one(
"""
INSERT INTO entities
(name, displayName, validated, createdAt, updatedAt)
VALUES
(%s, '', FALSE, NOW(), NOW())
""",
[name],
)
self.counts["entities_inserted"] += 1
(entity_id,) = self.fetch_one(
"""
SELECT id FROM entities
WHERE name = %s
""",
[name],
)
# Cache the newly created entity
self.entity_id_by_normalised_name[normalize_entity_name(name)] = entity_id
return entity_id
def prefill_entity_cache(self, names):
rows = self.fetch_many(
"""
SELECT
LOWER(country_name),
LOWER(entities.name),
entities.id AS id
FROM entities
LEFT JOIN
country_name_tool_countrydata
ON country_name_tool_countrydata.owid_name = entities.name
LEFT JOIN
country_name_tool_countryname
ON country_name_tool_countryname.owid_country = country_name_tool_countrydata.id
WHERE
LOWER(country_name) IN %(country_names)s
OR LOWER(entities.name) IN %(country_names)s
ORDER BY entities.id ASC
""",
{"country_names": [normalize_entity_name(x) for x in names]},
)
# Merge the two dicts
self.entity_id_by_normalised_name.update(
{
# entityName → entityId
**dict((row[1], row[2]) for row in rows if row[1]),
# country_tool_name → entityId
# the country tool name should take precedence
**dict((row[0], row[2]) for row in rows if row[0]),
}
)