Line data Source code
1 : /*
2 : * SPDX-License-Identifier: MPL-2.0
3 : *
4 : * This Source Code Form is subject to the terms of the Mozilla Public
5 : * License, v. 2.0. If a copy of the MPL was not distributed with this
6 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 : *
8 : * Copyright 2024 MonetDB Foundation;
9 : * Copyright August 2008 - 2023 MonetDB B.V.;
10 : * Copyright 1997 - July 2008 CWI.
11 : */
12 :
13 : #include "monetdb_config.h"
14 : #include "sql_catalog.h"
15 : #include "sql_storage.h"
16 :
17 : #include "gdk_atoms.h"
18 :
19 : struct versionhead ;
20 :
21 : #define active (0)
22 : #define under_destruction (1<<1)
23 : #define block_destruction (1<<2)
24 : #define deleted (1<<3)
25 : #define rollbacked (1<<4)
26 :
27 : /* This objectversion owns its associated versionhead.
28 : * When this objectversion gets destroyed,
29 : * the cleanup procedure should also destroy the associated (name|id) based versionhead.*/
30 : #define name_based_versionhead_owner (1<<5)
31 : #define id_based_versionhead_owner (1<<6)
32 :
33 : typedef struct objectversion {
34 : ulng ts;
35 : ATOMIC_TYPE state;
36 : sql_base *b; // base of underlying sql object
37 : struct objectset* os;
38 : struct objectversion *name_based_older;
39 : struct objectversion *name_based_newer;
40 : struct versionhead *name_based_head;
41 :
42 : struct objectversion *id_based_older;
43 : struct objectversion *id_based_newer;
44 : struct versionhead *id_based_head;
45 : } objectversion;
46 :
47 : typedef struct versionhead {
48 : struct versionhead * prev;
49 : struct versionhead * next;
50 : objectversion* ov;
51 : } versionhead ;
52 :
53 : typedef struct objectset {
54 : ATOMIC_TYPE refcnt;
55 : allocator *sa;
56 : destroy_fptr destroy;
57 : MT_RWLock rw_lock; /*readers-writer lock to protect the links (chains) in the objectversion chain.*/
58 : MT_Lock lock; /* global objectset lock for os_add/del */
59 : versionhead *name_based_h;
60 : versionhead *name_based_t;
61 : versionhead *id_based_h;
62 : versionhead *id_based_t;
63 : int name_based_cnt;
64 : int id_based_cnt;
65 : struct sql_hash *name_map;
66 : struct sql_hash *id_map;
67 : bool
68 : temporary:1,
69 : unique:1, /* names are unique */
70 : concurrent:1, /* concurrent inserts are allowed */
71 : nested:1;
72 : sql_store store;
73 : } objectset;
74 :
75 : static int
76 331915 : os_id_key(versionhead *n)
77 : {
78 256756 : return (int) BATatoms[TYPE_int].atomHash(&n->ov->b->id);
79 : }
80 :
81 : static inline void
82 23591559 : lock_reader(objectset* os)
83 : {
84 23591559 : MT_rwlock_rdlock(&os->rw_lock);
85 1251568 : }
86 :
87 : static inline void
88 23593883 : unlock_reader(objectset* os)
89 : {
90 23593883 : MT_rwlock_rdunlock(&os->rw_lock);
91 4258331 : }
92 :
93 : static inline void
94 609031 : lock_writer(objectset* os)
95 : {
96 609031 : MT_rwlock_wrlock(&os->rw_lock);
97 : }
98 :
99 : static inline void
100 609031 : unlock_writer(objectset* os)
101 : {
102 609031 : MT_rwlock_wrunlock(&os->rw_lock);
103 250 : }
104 :
105 20344987 : static bte os_atmc_get_state(objectversion *ov) {
106 20344987 : bte state = (bte) ATOMIC_GET(&ov->state);
107 20344987 : return state;
108 : }
109 :
110 68156 : static void os_atmc_set_state(objectversion *ov, bte state) {
111 68156 : ATOMIC_SET(&ov->state, state);
112 0 : }
113 :
114 : static versionhead *
115 447452 : find_id(objectset *os, sqlid id)
116 : {
117 447452 : if (os) {
118 447452 : lock_reader(os);
119 447452 : if (os->id_map) {
120 415119 : int key = (int) BATatoms[TYPE_int].atomHash(&id);
121 415119 : sql_hash_e *he = os->id_map->buckets[key&(os->id_map->size-1)];
122 :
123 1403273 : for (; he; he = he->chain) {
124 1165024 : versionhead *n = he->value;
125 :
126 1165024 : if (n && n->ov->b->id == id) {
127 176870 : unlock_reader(os);
128 176870 : return n;
129 : }
130 : }
131 238249 : unlock_reader(os);
132 238249 : return NULL;
133 : }
134 :
135 97856 : for (versionhead *n = os->id_based_h; n; n = n->next) {
136 68104 : objectversion *ov = n->ov;
137 :
138 : /* check if ids match */
139 68104 : if (id == ov->b->id) {
140 2581 : unlock_reader(os);
141 2581 : return n;
142 : }
143 : }
144 29752 : unlock_reader(os);
145 : }
146 :
147 : return NULL;
148 : }
149 :
150 : // TODO copy of static function from sql_list.c. Needs to be made external
151 : static void
152 29916 : hash_delete(sql_hash *h, void *data)
153 : {
154 29916 : int key = h->key(data);
155 29916 : sql_hash_e *e, *p = h->buckets[key&(h->size-1)];
156 :
157 29916 : e = p;
158 46786 : for (; p && p->value != data ; p = p->chain)
159 16870 : e = p;
160 29916 : if (p && p->value == data) {
161 29916 : if (p == e)
162 25420 : h->buckets[key&(h->size-1)] = p->chain;
163 : else
164 4496 : e->chain = p->chain;
165 29916 : if (!h->sa)
166 29916 : _DELETE(p);
167 : }
168 29916 : h->entries--;
169 29916 : }
170 :
171 : static void
172 533619 : node_destroy(objectset *os, sqlstore *store, versionhead *n)
173 : {
174 533619 : if (!os->sa)
175 533619 : _DELETE(n);
176 533619 : (void)store;
177 533619 : }
178 :
179 : static versionhead *
180 15677 : os_remove_name_based_chain(objectset *os, objectversion* ov)
181 : {
182 15677 : lock_writer(os);
183 15677 : versionhead *n = ov->name_based_head;
184 15677 : versionhead *p = os->name_based_h;
185 15677 : if (p != n)
186 1175112 : while (p && p->next != n)
187 : p = p->next;
188 15677 : assert(p==n||(p && p->next == n));
189 15677 : if (p == n) {
190 1349 : os->name_based_h = n->next;
191 1349 : if (os->name_based_h) // i.e. non-empty os
192 814 : os->name_based_h->prev = NULL;
193 : p = NULL;
194 14328 : } else if ( p != NULL) {
195 14328 : p->next = n->next;
196 14328 : if (p->next) // node in the middle
197 5511 : p->next->prev = p;
198 : }
199 15677 : if (n == os->name_based_t)
200 9352 : os->name_based_t = p;
201 :
202 15677 : if (os->name_map && n)
203 14614 : hash_delete(os->name_map, n);
204 :
205 15677 : os->name_based_cnt--;
206 15677 : unlock_writer(os);
207 :
208 15677 : bte state = os_atmc_get_state(ov);
209 15677 : state |= name_based_versionhead_owner;
210 15677 : os_atmc_set_state(ov, state);
211 15677 : return p;
212 : }
213 :
214 : static versionhead *
215 15868 : os_remove_id_based_chain(objectset *os, objectversion* ov)
216 : {
217 15868 : lock_writer(os);
218 15868 : versionhead *n = ov->id_based_head;
219 15868 : versionhead *p = os->id_based_h;
220 :
221 15868 : if (p != n)
222 1189494 : while (p && p->next != n)
223 : p = p->next;
224 15868 : assert(p==n||(p && p->next == n));
225 15868 : if (p == n) {
226 1349 : os->id_based_h = n->next;
227 1349 : if (os->id_based_h) // i.e. non-empty os
228 814 : os->id_based_h->prev = NULL;
229 : p = NULL;
230 14519 : } else if ( p != NULL) {
231 14519 : p->next = n->next;
232 14519 : if (p->next) // node in the middle
233 5701 : p->next->prev = p;
234 : }
235 15868 : if (n == os->id_based_t)
236 9353 : os->id_based_t = p;
237 :
238 15868 : if (os->id_map && n)
239 15302 : hash_delete(os->id_map, n);
240 :
241 15868 : os->name_based_cnt--;
242 15868 : unlock_writer(os);
243 :
244 15868 : bte state = os_atmc_get_state(ov);
245 15868 : state |= id_based_versionhead_owner;
246 15868 : os_atmc_set_state(ov, state);
247 15868 : return p;
248 : }
249 :
250 : static versionhead *
251 534769 : node_create(allocator *sa, objectversion *ov)
252 : {
253 534769 : versionhead *n = SA_NEW(sa, versionhead );
254 :
255 534769 : if (n == NULL)
256 : return NULL;
257 534769 : *n = (versionhead ) {
258 : .ov = ov,
259 : };
260 534769 : return n;
261 : }
262 :
263 : static inline int
264 321930 : os_name_key(versionhead *n)
265 : {
266 321930 : return hash_key(n->ov->b->name);
267 : }
268 :
269 : static objectset *
270 267289 : os_append_node_name(objectset *os, versionhead *n)
271 : {
272 267289 : lock_writer(os);
273 267289 : if ((!os->name_map || os->name_map->size*16 < os->name_based_cnt) && os->name_based_cnt > HASH_MIN_SIZE) {
274 3858 : hash_destroy(os->name_map);
275 3858 : os->name_map = hash_new(os->sa, os->name_based_cnt, (fkeyvalue)& os_name_key);
276 3858 : if (os->name_map == NULL) {
277 0 : unlock_writer(os);
278 0 : return NULL;
279 : }
280 :
281 70402 : for (versionhead *n = os->name_based_h; n; n = n->next ) {
282 66544 : int key = os_name_key(n);
283 :
284 66544 : if (hash_add(os->name_map, key, n) == NULL) {
285 0 : unlock_writer(os);
286 0 : return NULL;
287 : }
288 : }
289 : }
290 :
291 267289 : if (os->name_map) {
292 240772 : int key = os->name_map->key(n);
293 :
294 240772 : if (hash_add(os->name_map, key, n) == NULL) {
295 0 : unlock_writer(os);
296 0 : return NULL;
297 : }
298 : }
299 :
300 267289 : if (os->name_based_t) {
301 258975 : os->name_based_t->next = n;
302 : } else {
303 8314 : os->name_based_h = n;
304 : }
305 267289 : n->prev = os->name_based_t; // aka the double linked list.
306 267289 : os->name_based_t = n;
307 267289 : os->name_based_cnt++;
308 267289 : unlock_writer(os);
309 267289 : return os;
310 : }
311 :
312 : static objectset *
313 267289 : os_append_name(objectset *os, objectversion *ov)
314 : {
315 267289 : versionhead *n = node_create(os->sa, ov);
316 :
317 267289 : if (n == NULL)
318 : return NULL;
319 :
320 267289 : ov->name_based_head = n;
321 267289 : if (!(os = os_append_node_name(os, n))){
322 0 : _DELETE(n);
323 0 : return NULL;
324 : }
325 :
326 : return os;
327 : }
328 :
329 : static void
330 3960 : os_append_id_map(objectset *os)
331 : {
332 3960 : if (os->id_map)
333 456 : hash_destroy(os->id_map);
334 3960 : os->id_map = hash_new(os->sa, os->id_based_cnt, (fkeyvalue)&os_id_key);
335 3960 : if (os->id_map == NULL)
336 : return ;
337 79119 : for (versionhead *n = os->id_based_h; n; n = n->next ) {
338 75159 : int key = os_id_key(n);
339 :
340 75159 : if (hash_add(os->id_map, key, n) == NULL) {
341 0 : hash_destroy(os->id_map);
342 0 : os->id_map = NULL;
343 0 : return ;
344 : }
345 : }
346 : }
347 :
348 : static objectset *
349 267480 : os_append_node_id(objectset *os, versionhead *n)
350 : {
351 267480 : lock_writer(os);
352 267480 : if ((!os->id_map || os->id_map->size*16 < os->id_based_cnt) && os->id_based_cnt > HASH_MIN_SIZE)
353 3960 : os_append_id_map(os); /* on failure just fall back to slow method */
354 :
355 267480 : if (os->id_map) {
356 241454 : int key = os->id_map->key(n);
357 241454 : if (hash_add(os->id_map, key, n) == NULL) {
358 0 : hash_destroy(os->id_map);
359 0 : os->id_map = NULL;
360 : /* fall back to slow search */
361 : }
362 : }
363 :
364 267480 : if (os->id_based_t) {
365 259166 : os->id_based_t->next = n;
366 : } else {
367 8314 : os->id_based_h = n;
368 : }
369 267480 : n->prev = os->id_based_t; // aka the double linked list.
370 267480 : os->id_based_t = n;
371 267480 : os->id_based_cnt++;
372 267480 : unlock_writer(os);
373 267480 : return os;
374 : }
375 :
376 : static objectset *
377 267480 : os_append_id(objectset *os, objectversion *ov)
378 : {
379 267480 : versionhead *n = node_create(os->sa, ov);
380 :
381 267480 : if (n == NULL)
382 : return NULL;
383 267480 : ov->id_based_head = n;
384 267480 : if (!(os = os_append_node_id(os, n))){
385 0 : _DELETE(n);
386 0 : return NULL;
387 : }
388 :
389 : return os;
390 : }
391 :
392 : static versionhead * find_name(objectset *os, const char *name);
393 :
394 : static void
395 288046 : objectversion_destroy(sqlstore *store, objectset* os, objectversion *ov)
396 : {
397 :
398 288046 : bte state = os_atmc_get_state(ov);
399 :
400 288046 : if (state & name_based_versionhead_owner) {
401 15677 : node_destroy(ov->os, store, ov->name_based_head);
402 : }
403 :
404 288046 : if (state & id_based_versionhead_owner) {
405 15868 : node_destroy(ov->os, store, ov->id_based_head);
406 : }
407 :
408 288046 : if (os->destroy && ov->b)
409 262788 : os->destroy(store, ov->b);
410 :
411 288046 : if (os->temporary && (state & deleted || state & under_destruction || state & rollbacked))
412 200 : os_destroy(os, store); // TODO transaction_layer_revamp: embed into refcounting subproject : reference is already dropped by os_cleanup
413 288046 : _DELETE(ov);
414 288046 : }
415 :
416 : static void
417 6131 : _os_rollback(objectversion *ov, sqlstore *store)
418 : {
419 6131 : assert(ov->ts >= TRANSACTION_ID_BASE);
420 :
421 6131 : bte state = os_atmc_get_state(ov);
422 6131 : if (state & rollbacked) {
423 : return;
424 : }
425 :
426 5631 : state |= rollbacked;
427 5631 : os_atmc_set_state(ov, state);
428 :
429 5631 : bte state_older;
430 :
431 : /*
432 : * We have to use the readers-writer lock here,
433 : * since the pointer containing the address of the older objectversion might be concurrently overwritten if the older itself has just been put in the under_destruction state .
434 : */
435 5631 : lock_reader(ov->os);
436 5631 : objectversion* name_based_older = ov->name_based_older;
437 5631 : unlock_reader(ov->os);
438 :
439 5631 : if (name_based_older && !((state_older= os_atmc_get_state(name_based_older)) & rollbacked)) {
440 761 : if (ov->ts != name_based_older->ts) {
441 : // older is last committed state or belongs to parent transaction.
442 : // In any case, we restore versionhead pointer to that.
443 :
444 266 : ATOMIC_BASE_TYPE expected_deleted = deleted;
445 266 : if (state_older == active || (state_older == deleted && ATOMIC_CAS(&name_based_older->state, &expected_deleted, block_destruction))) {
446 266 : ov->name_based_head->ov = name_based_older;
447 266 : name_based_older->name_based_newer=NULL;
448 266 : if (state_older != active && expected_deleted == deleted)
449 0 : os_atmc_set_state(name_based_older, deleted); //Restore the deleted older back to its deleted state.
450 : }
451 : }
452 : else {
453 495 : _os_rollback(name_based_older, store);
454 : }
455 : }
456 4870 : else if (!name_based_older) {
457 : // this is a terminal node. i.e. this objectversion does not have name based committed history
458 4870 : if (ov->name_based_head) // The opposite can happen during an early conflict in os_add or os_del.
459 4864 : os_remove_name_based_chain(ov->os, ov);
460 : }
461 :
462 : /*
463 : * We have to use the readers-writer lock here,
464 : * since the pointer containing the address of the older objectversion might be concurrently overwritten if the older itself has just been put in the under_destruction state .
465 : */
466 5631 : lock_reader(ov->os);
467 5631 : objectversion* id_based_older = ov->id_based_older;
468 5631 : unlock_reader(ov->os);
469 5631 : if (id_based_older && !((state_older= os_atmc_get_state(id_based_older)) & rollbacked)) {
470 271 : if (ov->ts != id_based_older->ts) {
471 : // older is last committed state or belongs to parent transaction.
472 : // In any case, we restore versionhead pointer to that.
473 :
474 266 : ATOMIC_BASE_TYPE expected_deleted = deleted;
475 266 : if (state_older == active || (state_older == deleted && ATOMIC_CAS(&id_based_older->state, &expected_deleted, block_destruction))) {
476 266 : ov->id_based_head->ov = id_based_older;
477 266 : id_based_older->id_based_newer=NULL;
478 266 : if (state_older != active && expected_deleted == deleted)
479 0 : os_atmc_set_state(id_based_older, deleted); //Restore the deleted older back to its deleted state.
480 : }
481 : }
482 5 : else if (id_based_older != name_based_older)
483 5 : _os_rollback(id_based_older, store);
484 : }
485 4907 : else if (!id_based_older) {
486 : // this is a terminal node. i.e. this objectversion does not have id based committed history
487 4907 : os_remove_id_based_chain(ov->os, ov);
488 : }
489 :
490 5631 : if (ov->name_based_newer && !(os_atmc_get_state(ov->name_based_newer) & rollbacked)) {
491 0 : _os_rollback(ov->name_based_newer, store);
492 : }
493 :
494 5631 : if (ov->id_based_newer && ov->id_based_newer != ov->name_based_newer && !(os_atmc_get_state(ov->id_based_newer) & rollbacked)) {
495 0 : _os_rollback(ov->id_based_newer, store);
496 : }
497 : }
498 :
499 : static int
500 5631 : os_rollback(objectversion *ov, sqlstore *store)
501 : {
502 5631 : _os_rollback(ov, store);
503 :
504 5631 : return LOG_OK;
505 : }
506 :
507 : static void
508 25258 : ov_destroy_obj_recursive(sqlstore* store, objectversion *ov)
509 : {
510 25258 : if (ov->id_based_older && ov->id_based_older == ov->name_based_older) {
511 14442 : ov_destroy_obj_recursive(store, ov->id_based_older);
512 : }
513 25258 : if (ov->os->destroy && ov->b) {
514 25258 : ov->os->destroy(store, ov->b);
515 25258 : ov->b = NULL;
516 : }
517 25258 : }
518 :
519 : static inline void
520 11012 : try_to_mark_deleted_for_destruction(sqlstore* store, objectversion *ov)
521 : {
522 11012 : ATOMIC_BASE_TYPE expected_deleted = deleted;
523 11012 : if (ATOMIC_CAS(&ov->state, &expected_deleted, under_destruction)) {
524 :
525 11012 : if (!ov->name_based_newer || (os_atmc_get_state(ov->name_based_newer) & rollbacked)) {
526 10813 : os_remove_name_based_chain(ov->os, ov);
527 : }
528 : else {
529 199 : lock_writer(ov->os);
530 199 : ov->name_based_newer->name_based_older = NULL;
531 199 : unlock_writer(ov->os);
532 : }
533 :
534 11012 : if (!ov->id_based_newer || (os_atmc_get_state(ov->id_based_newer) & rollbacked)) {
535 10961 : os_remove_id_based_chain(ov->os, ov);
536 : }
537 : else {
538 51 : lock_writer(ov->os);
539 51 : ov->id_based_newer->id_based_older = NULL;
540 51 : unlock_writer(ov->os);
541 : }
542 :
543 11012 : ov->ts = store_get_timestamp(store)+1;
544 11012 : if (!ov->os->nested)
545 10816 : ov_destroy_obj_recursive(store, ov);
546 : }
547 11012 : }
548 :
549 : static void
550 30887 : objectversion_destroy_recursive(sqlstore* store, objectversion *ov)
551 : {
552 30887 : if (ov->id_based_older && ov->id_based_older == ov->name_based_older) {
553 14638 : objectversion_destroy_recursive(store, ov->id_based_older);
554 : }
555 30887 : objectversion_destroy(store, ov->os, ov);
556 30887 : }
557 :
558 : static int
559 315891 : os_cleanup(sqlstore* store, objectversion *ov, ulng oldest)
560 : {
561 315891 : if (os_atmc_get_state(ov) & under_destruction) {
562 15095 : if (ov->ts < oldest) {
563 : // This one is ready to be freed
564 11012 : objectversion_destroy_recursive(store, ov);
565 11012 : return LOG_ERR;
566 : }
567 :
568 : // not yet old enough to be safely removed. Try later.
569 : return LOG_OK;
570 : }
571 :
572 300796 : if (os_atmc_get_state(ov) & rollbacked) {
573 17710 : if (ov->ts < oldest) {
574 : // This one is ready to be freed
575 5631 : if (ov->name_based_older && ov->name_based_older->name_based_newer == ov)
576 495 : ov->name_based_older->name_based_newer=NULL;
577 5631 : if (ov->id_based_older && ov->id_based_older->id_based_newer == ov)
578 458 : ov->id_based_older->id_based_newer=NULL;
579 5631 : objectversion_destroy(store, ov->os, ov);
580 5631 : return LOG_ERR;
581 : }
582 :
583 12079 : if (ov->ts > TRANSACTION_ID_BASE) {
584 : /* We mark it with the latest possible starttime and reinsert it into the cleanup list.
585 : * This will cause a safe eventual destruction of this rollbacked ov.
586 : */
587 5631 : ov->ts = store_get_timestamp(store)+1;
588 : }
589 :
590 : // not yet old enough to be safely removed. Try later.
591 12079 : return LOG_OK;
592 : }
593 :
594 283086 : if (os_atmc_get_state(ov) == deleted) {
595 11108 : if (ov->ts <= oldest) {
596 : // the oldest relevant state is deleted so lets try to mark it as destroyed
597 11012 : try_to_mark_deleted_for_destruction(store, ov);
598 11012 : return LOG_OK+1;
599 : }
600 :
601 : // Keep it inplace on the cleanup list, either because it is now marked for destruction or
602 : // we want to retry marking it for destruction later.
603 : return LOG_OK;
604 : }
605 :
606 271978 : assert(os_atmc_get_state(ov) != deleted && os_atmc_get_state(ov) != under_destruction && os_atmc_get_state(ov) != rollbacked);
607 271978 : if (ov->os->temporary) os_destroy(ov->os, store); // TODO transaction_layer_revamp: embed into refcounting subproject: (old) live versions should drop their reference to the os
608 :
609 281332 : while (ov->id_based_older && ov->id_based_older == ov->name_based_older && ov->ts >= oldest) {
610 : ov = ov->id_based_older;
611 : }
612 :
613 271978 : if (ov->id_based_older && ov->id_based_older == ov->name_based_older) {
614 : // Destroy everything older then the oldest possibly relevant objectversion.
615 5237 : objectversion_destroy_recursive(store, ov->id_based_older);
616 5237 : ov->id_based_older = NULL;
617 : }
618 :
619 : return LOG_ERR;
620 : }
621 :
622 : static int
623 315898 : tc_gc_objectversion(sql_store store, sql_change *change, ulng oldest)
624 : {
625 : // assert(!change->handled);
626 315898 : objectversion *ov = (objectversion*)change->data;
627 :
628 315898 : if (oldest >= TRANSACTION_ID_BASE)
629 : return 0;
630 315891 : int res = os_cleanup( (sqlstore*) store, ov, oldest);
631 315891 : change->handled = (res)?true:false;
632 315891 : return res>=0?LOG_OK:LOG_ERR;
633 : }
634 :
635 : static int
636 288628 : tc_commit_objectversion(sql_trans *tr, sql_change *change, ulng commit_ts, ulng oldest)
637 : {
638 288628 : objectversion *ov = (objectversion*)change->data;
639 288628 : if (commit_ts) {
640 282997 : assert(ov->ts == tr->tid);
641 282997 : ov->ts = commit_ts;
642 282997 : change->committed = commit_ts < TRANSACTION_ID_BASE ? true: false;
643 282997 : (void)oldest;
644 282997 : if (!tr->parent)
645 282990 : change->obj->new = 0;
646 282997 : if (!ov->os->temporary)
647 278522 : ATOMIC_INC(&tr->cat->schema_version);
648 : } else {
649 5631 : os_rollback(ov, tr->store);
650 : }
651 :
652 288628 : return LOG_OK;
653 : }
654 :
655 : objectset *
656 59643 : os_new(allocator *sa, destroy_fptr destroy, bool temporary, bool unique, bool concurrent, bool nested, sql_store store)
657 : {
658 59643 : assert(!sa);
659 59643 : objectset *os = SA_NEW(sa, objectset);
660 59643 : if (os) {
661 59643 : *os = (objectset) {
662 : .refcnt = ATOMIC_VAR_INIT(1),
663 : .sa = sa,
664 : .destroy = destroy,
665 : .temporary = temporary,
666 : .unique = unique,
667 : .concurrent = concurrent,
668 : .nested = nested,
669 : .store = store
670 : };
671 59643 : os->destroy = destroy;
672 59643 : MT_rwlock_init(&os->rw_lock, "sa_readers_lock");
673 59643 : MT_lock_init(&os->lock, "single_writer_lock");
674 : }
675 :
676 59643 : return os;
677 : }
678 :
679 : objectset *
680 4746 : os_dup(objectset *os)
681 : {
682 4746 : ATOMIC_INC(&os->refcnt);
683 4746 : return os;
684 : }
685 :
686 : void
687 64331 : os_destroy(objectset *os, sql_store store)
688 : {
689 64331 : if (ATOMIC_DEC(&os->refcnt) > 0)
690 : return;
691 59585 : MT_lock_destroy(&os->lock);
692 59585 : MT_rwlock_destroy(&os->rw_lock);
693 59585 : versionhead* n=os->id_based_h;
694 310622 : while(n) {
695 251037 : objectversion *ov = n->ov;
696 502565 : while(ov) {
697 251528 : objectversion *older = ov->id_based_older;
698 251528 : objectversion_destroy(store, os, ov);
699 251528 : ov = older;
700 : }
701 251037 : versionhead* hn =n->next;
702 251037 : node_destroy(os, store, n);
703 251037 : n = hn;
704 : }
705 :
706 59585 : n=os->name_based_h;
707 310622 : while(n) {
708 251037 : versionhead* hn =n->next;
709 251037 : node_destroy(os, store, n);
710 251037 : n = hn;
711 : }
712 :
713 59585 : if (os->id_map)
714 3494 : hash_destroy(os->id_map);
715 :
716 59585 : if (os->name_map)
717 3468 : hash_destroy(os->name_map);
718 :
719 59585 : if (!os->sa)
720 59585 : _DELETE(os);
721 : }
722 :
723 : static versionhead *
724 16595807 : find_name(objectset *os, const char *name)
725 : {
726 16595807 : lock_reader(os);
727 16598103 : if (os->name_map) {
728 13092253 : int key = hash_key(name);
729 13092253 : sql_hash_e *he = os->name_map->buckets[key&(os->name_map->size-1)];
730 :
731 72032179 : for (; he; he = he->chain) {
732 71664599 : versionhead *n = he->value;
733 :
734 71664599 : if (n && n->ov->b->name && strcmp(n->ov->b->name, name) == 0) {
735 12724673 : unlock_reader(os);
736 12724673 : return n;
737 : }
738 : }
739 367580 : unlock_reader(os);
740 367580 : return NULL;
741 : }
742 :
743 4193024 : for (versionhead *n = os->name_based_h; n; n = n->next) {
744 3891515 : objectversion *ov = n->ov;
745 :
746 : /* check if names match */
747 3891515 : if (name[0] == ov->b->name[0] && strcmp(name, ov->b->name) == 0) {
748 3204341 : unlock_reader(os);
749 3204341 : return n;
750 : }
751 : }
752 :
753 301509 : unlock_reader(os);
754 301509 : return NULL;
755 : }
756 :
757 : static objectversion*
758 17542649 : get_valid_object_name(sql_trans *tr, objectversion *ov)
759 : {
760 17542700 : while(ov) {
761 17542668 : if (ov->ts == tr->tid || (tr->parent && tr_version_of_parent(tr, ov->ts)) || ov->ts < tr->ts)
762 17542510 : return ov;
763 : else {
764 158 : lock_reader(ov->os);
765 168 : objectversion* name_based_older = ov->name_based_older;
766 168 : unlock_reader(ov->os);
767 168 : ov = name_based_older;
768 : }
769 : }
770 : return ov;
771 : }
772 :
773 : static objectversion*
774 580161 : get_valid_object_id(sql_trans *tr, objectversion *ov)
775 : {
776 580343 : while(ov) {
777 580223 : if (ov->ts == tr->tid || (tr->parent && tr_version_of_parent(tr, ov->ts)) || ov->ts < tr->ts)
778 580041 : return ov;
779 : else {
780 182 : lock_reader(ov->os);
781 182 : objectversion* id_based_older = ov->id_based_older;
782 182 : unlock_reader(ov->os);
783 182 : ov = id_based_older;
784 : }
785 : }
786 : return ov;
787 : }
788 :
789 : static int
790 277132 : os_add_name_based(objectset *os, struct sql_trans *tr, const char *name, objectversion *ov) {
791 277132 : versionhead *name_based_node = NULL;
792 277132 : if (ov->id_based_older && strcmp(ov->id_based_older->b->name, name) == 0)
793 9628 : name_based_node = ov->id_based_older->name_based_head;
794 267504 : else if (os->unique) // Previous name based objectversion is of a different id, so now we do have to perform an extensive look up
795 82345 : name_based_node = find_name(os, name);
796 : // else names are not unique and each id based version head maps to its own name based version head.
797 :
798 91973 : if (name_based_node) {
799 9843 : objectversion *co = name_based_node->ov;
800 9843 : objectversion *oo = get_valid_object_name(tr, co);
801 9843 : if (co != oo) { /* conflict ? */
802 6 : TRC_WARNING(SQL_STORE, "%s" "if (co != oo) { /* conflict ? */", __func__);
803 6 : return -3;
804 : }
805 :
806 9837 : assert(ov != oo); // Time loops are not allowed
807 :
808 9837 : bte state = os_atmc_get_state(oo);
809 9837 : if (state != active) {
810 : // This can only happen if the parent oo was a committed deleted at some point.
811 242 : assert(state == deleted || state == under_destruction || state == block_destruction);
812 : /* Since our parent oo is committed deleted objectversion, we might have a conflict with
813 : * another transaction that tries to clean up oo or also wants to add a new objectversion.
814 : */
815 242 : ATOMIC_BASE_TYPE expected_deleted = deleted;
816 242 : if (!ATOMIC_CAS(&oo->state, &expected_deleted, block_destruction)) {
817 0 : TRC_WARNING(SQL_STORE, "%s: " "if (!ATOMIC_CAS(&oo->state, &expected_deleted, block_destruction)) { /*conflict with cleaner or write-write conflict*/ ", __func__);
818 0 : return -3; /*conflict with cleaner or write-write conflict*/
819 : }
820 : }
821 :
822 : /* new object with same name within transaction, should have a delete in between */
823 9595 : assert(!(state == active && oo->ts == ov->ts && !(os_atmc_get_state(ov) & deleted)));
824 :
825 9837 : lock_writer(os);
826 9837 : ov->name_based_head = oo->name_based_head;
827 9837 : ov->name_based_older = oo;
828 :
829 9837 : name_based_node->ov = ov;
830 9837 : if (oo) {
831 9837 : oo->name_based_newer = ov;
832 : // if the parent was originally deleted, we restore it to that state.
833 9837 : os_atmc_set_state(oo, state);
834 : }
835 9837 : unlock_writer(os);
836 9837 : return 0;
837 : } else { /* new */
838 267289 : if (os_append_name(os, ov) == NULL)
839 : return -1; // MALLOC_FAIL
840 : return 0;
841 : }
842 : }
843 :
844 : static int
845 277142 : os_add_id_based(objectset *os, struct sql_trans *tr, sqlid id, objectversion *ov) {
846 277142 : versionhead *id_based_node;
847 :
848 277142 : id_based_node = find_id(os, id);
849 :
850 277142 : if (id_based_node) {
851 9662 : objectversion *co = id_based_node->ov;
852 9662 : objectversion *oo = get_valid_object_id(tr, co);
853 9662 : if (co != oo) { /* conflict ? */
854 10 : TRC_WARNING(SQL_STORE, "%s" "if (co != oo) { /* conflict ? */", __func__);
855 10 : return -3;
856 : }
857 :
858 9652 : assert(ov != oo); // Time loops are not allowed
859 :
860 9652 : bte state = os_atmc_get_state(oo);
861 9652 : if (state != active) {
862 : // This can only happen if the parent oo was a committed deleted at some point.
863 57 : assert(state == deleted || state == under_destruction || state == block_destruction);
864 : /* Since our parent oo is committed deleted objectversion, we might have a conflict with
865 : * another transaction that tries to clean up oo or also wants to add a new objectversion.
866 : */
867 57 : ATOMIC_BASE_TYPE expected_deleted = deleted;
868 57 : if (!ATOMIC_CAS(&oo->state, &expected_deleted, block_destruction)) {
869 0 : TRC_WARNING(SQL_STORE, "%s" "if (!ATOMIC_CAS(&oo->state, &expected_deleted, block_destruction)) { /*conflict with cleaner or write-write conflict*/", __func__);
870 0 : return -3; /*conflict with cleaner or write-write conflict*/
871 : }
872 : }
873 :
874 9652 : lock_writer(os);
875 9652 : ov->id_based_head = oo->id_based_head;
876 9652 : ov->id_based_older = oo;
877 :
878 9652 : id_based_node->ov = ov;
879 9652 : if (oo) {
880 9652 : oo->id_based_newer = ov;
881 : // if the parent was originally deleted, we restore it to that state.
882 9652 : os_atmc_set_state(oo, state);
883 : }
884 9652 : unlock_writer(os);
885 9652 : return 0;
886 : } else { /* new */
887 267480 : if (os_append_id(os, ov) == NULL)
888 : return -1; // MALLOC_FAIL
889 :
890 : return 0;
891 : }
892 : }
893 :
894 : static int /*ok, error (name existed) and conflict (added before) */
895 277143 : os_add_(objectset *os, struct sql_trans *tr, const char *name, sql_base *b)
896 : {
897 277143 : int res = 0;
898 277143 : objectversion *ov = SA_NEW(os->sa, objectversion);
899 :
900 277143 : *ov = (objectversion) {
901 277143 : .ts = tr->tid,
902 : .b = b,
903 : .os = os,
904 : };
905 :
906 277143 : if (!os->concurrent && os_has_changes(os, tr)) { /* for object sets without concurrent support, conflict if concurrent changes are there */
907 1 : if (os->destroy)
908 1 : os->destroy(os->store, ov->b);
909 1 : _DELETE(ov);
910 1 : TRC_WARNING(SQL_STORE, "%s" "if (!os->concurrent && os_has_changes(os, tr)) { /* for object sets without concurrent support, conflict if concurrent changes are there */", __func__);
911 1 : return -3; /* conflict */
912 : }
913 :
914 277142 : if ((res = os_add_id_based(os, tr, b->id, ov))) {
915 10 : if (os->destroy)
916 10 : os->destroy(os->store, ov->b);
917 10 : _DELETE(ov);
918 10 : return res;
919 : }
920 :
921 277132 : if ((res = os_add_name_based(os, tr, name, ov))) {
922 6 : trans_add(tr, b, ov, &tc_gc_objectversion, &tc_commit_objectversion, NULL);
923 6 : return res;
924 : }
925 :
926 277126 : if (os->temporary) (void) os_dup(os); // TODO transaction_layer_revamp: embed into refcounting subproject
927 277126 : trans_add(tr, b, ov, &tc_gc_objectversion, &tc_commit_objectversion, NULL);
928 277126 : return res;
929 : }
930 :
931 : int
932 277143 : os_add(objectset *os, struct sql_trans *tr, const char *name, sql_base *b)
933 : {
934 277143 : MT_lock_set(&os->lock);
935 277143 : int res = os_add_(os, tr, name, b);
936 277143 : MT_lock_unset(&os->lock);
937 277143 : return res;
938 : }
939 :
940 : static int
941 11489 : os_del_name_based(objectset *os, struct sql_trans *tr, const char *name, objectversion *ov) {
942 11489 : versionhead *name_based_node = NULL;
943 11489 : if (ov->id_based_older && strcmp(ov->id_based_older->b->name, name) == 0)
944 11489 : name_based_node = ov->id_based_older->name_based_head;
945 0 : else if (os->unique) // Previous name based objectversion is of a different id, so now we do have to perform an extensive look up
946 0 : name_based_node = find_name(os, name);
947 :
948 11489 : if (name_based_node) {
949 11489 : objectversion *co = name_based_node->ov;
950 11489 : objectversion *oo = get_valid_object_name(tr, co);
951 11489 : ov->name_based_head = oo->name_based_head;
952 11489 : if (co != oo) { /* conflict ? */
953 0 : TRC_WARNING(SQL_STORE, "%s: " "if (co != oo) { /* conflict ? */", __func__);
954 0 : return -3;
955 : }
956 11489 : ov->name_based_older = oo;
957 :
958 11489 : lock_writer(os);
959 11489 : if (oo) {
960 11489 : oo->name_based_newer = ov;
961 11489 : assert(os_atmc_get_state(oo) == active);
962 : }
963 11489 : name_based_node->ov = ov;
964 11489 : unlock_writer(os);
965 11489 : return 0;
966 : } else {
967 : /* missing */
968 0 : return -1;
969 : }
970 : }
971 :
972 : static int
973 11491 : os_del_id_based(objectset *os, struct sql_trans *tr, sqlid id, objectversion *ov) {
974 :
975 11491 : versionhead *id_based_node;
976 :
977 11491 : if (ov->name_based_older && ov->name_based_older->b->id == id)
978 0 : id_based_node = ov->name_based_older->id_based_head;
979 : else // Previous id based objectversion is of a different name, so now we do have to perform an extensive look up
980 11491 : id_based_node = find_id(os, id);
981 :
982 11491 : if (id_based_node) {
983 11491 : objectversion *co = id_based_node->ov;
984 11491 : objectversion *oo = get_valid_object_id(tr, co);
985 11491 : ov->id_based_head = oo->id_based_head;
986 11491 : if (co != oo) { /* conflict ? */
987 2 : TRC_WARNING(SQL_STORE, "%s" "if (co != oo) { /* conflict ? */", __func__);
988 2 : return -3;
989 : }
990 11489 : ov->id_based_older = oo;
991 :
992 11489 : lock_writer(os);
993 11489 : if (oo) {
994 11489 : oo->id_based_newer = ov;
995 11489 : assert(os_atmc_get_state(oo) == active);
996 : }
997 11489 : id_based_node->ov = ov;
998 11489 : unlock_writer(os);
999 11489 : return 0;
1000 : } else {
1001 : /* missing */
1002 : return -1;
1003 : }
1004 : }
1005 :
1006 : static int
1007 11491 : os_del_(objectset *os, struct sql_trans *tr, const char *name, sql_base *b)
1008 : {
1009 11491 : int res = 0;
1010 11491 : objectversion *ov = SA_NEW(os->sa, objectversion);
1011 :
1012 11491 : *ov = (objectversion) {
1013 11491 : .ts = tr->tid,
1014 : .b = b,
1015 : .os = os,
1016 : };
1017 11491 : os_atmc_set_state(ov, deleted);
1018 :
1019 11491 : if ((res = os_del_id_based(os, tr, b->id, ov))) {
1020 2 : if (os->destroy)
1021 2 : os->destroy(os->store, ov->b);
1022 2 : _DELETE(ov);
1023 2 : return res;
1024 : }
1025 :
1026 11489 : if ((res = os_del_name_based(os, tr, name, ov))) {
1027 0 : trans_add(tr, b, ov, &tc_gc_objectversion, &tc_commit_objectversion, NULL);
1028 0 : return res;
1029 : }
1030 :
1031 11489 : if (os->temporary) (void) os_dup(os); // TODO transaction_layer_revamp: embed into refcounting subproject
1032 11489 : trans_add(tr, b, ov, &tc_gc_objectversion, &tc_commit_objectversion, NULL);
1033 11489 : return res;
1034 : }
1035 :
1036 : int
1037 11491 : os_del(objectset *os, sql_trans *tr, const char *name, sql_base *b)
1038 : {
1039 11491 : MT_lock_set(&os->lock);
1040 11491 : int res = os_del_(os, tr, name, b);
1041 11491 : MT_lock_unset(&os->lock);
1042 11491 : return res;
1043 : }
1044 :
1045 : int
1046 323 : os_size(objectset *os, struct sql_trans *tr)
1047 : {
1048 323 : int cnt = 0;
1049 323 : if (os) {
1050 323 : lock_reader(os);
1051 332 : for(versionhead *n = os->name_based_h; n; n=n->next) {
1052 9 : objectversion *ov = n->ov;
1053 9 : if ((ov=get_valid_object_name(tr, ov)) && os_atmc_get_state(ov) == active)
1054 6 : cnt++;
1055 : }
1056 323 : unlock_reader(os);
1057 : }
1058 323 : return cnt;
1059 : }
1060 :
1061 : int
1062 0 : os_empty(objectset *os, struct sql_trans *tr)
1063 : {
1064 0 : return os_size(os, tr)==0;
1065 : }
1066 :
1067 : int
1068 0 : os_remove(objectset *os, sql_trans *tr, const char *name)
1069 : {
1070 0 : (void) os;
1071 0 : (void) tr;
1072 0 : (void) name;
1073 : // TODO remove entire versionhead corresponding to this name.
1074 :
1075 : // TODO assert os->unique?s
1076 0 : return LOG_OK;
1077 : }
1078 :
1079 : sql_base *
1080 16516293 : os_find_name(objectset *os, struct sql_trans *tr, const char *name)
1081 : {
1082 16516293 : if (!os)
1083 : return NULL;
1084 :
1085 16516291 : assert(os->unique);
1086 16516291 : versionhead *n = find_name(os, name);
1087 :
1088 16512040 : if (n) {
1089 15925083 : objectversion *ov = get_valid_object_name(tr, n->ov);
1090 15923670 : if (ov && os_atmc_get_state(ov) == active)
1091 15923325 : return ov->b;
1092 : }
1093 : return NULL;
1094 : }
1095 :
1096 : sql_base *
1097 155275 : os_find_id(objectset *os, struct sql_trans *tr, sqlid id)
1098 : {
1099 155275 : if (!os)
1100 : return NULL;
1101 155275 : versionhead *n = find_id(os, id);
1102 :
1103 155275 : if (n) {
1104 154754 : objectversion *ov = get_valid_object_id(tr, n->ov);
1105 154754 : if (ov && os_atmc_get_state(ov) == active)
1106 154750 : return ov->b;
1107 : }
1108 : return NULL;
1109 : }
1110 :
1111 : void
1112 2308119 : os_iterator(struct os_iter *oi, struct objectset *os, struct sql_trans *tr, const char *name /*optional*/)
1113 : {
1114 2308119 : *oi = (struct os_iter) {
1115 : .os = os,
1116 : .tr = tr,
1117 : .name = name,
1118 : };
1119 :
1120 2308119 : lock_reader(os);
1121 2308130 : if (name && os->name_map) {
1122 1033005 : int key = hash_key(name);
1123 1033005 : oi->n = (void*)os->name_map->buckets[key&(os->name_map->size-1)];
1124 : } else
1125 1275125 : oi->n = os->name_based_h;
1126 2308130 : unlock_reader(os);
1127 2308129 : }
1128 :
1129 : sql_base *
1130 4228256 : oi_next(struct os_iter *oi)
1131 : {
1132 4228256 : sql_base *b = NULL;
1133 :
1134 4228256 : if (oi->name) {
1135 2976696 : lock_reader(oi->os); /* intentionally outside of while loop */
1136 2976696 : if (oi->os->name_map) {
1137 2610532 : sql_hash_e *he = (void*)oi->n;
1138 :
1139 6467309 : for (; he && !b; he = he->chain) {
1140 3856777 : versionhead *n = he->value;
1141 :
1142 3856777 : if (n->ov->b->name && strcmp(n->ov->b->name, oi->name) == 0) {
1143 1584000 : objectversion *ov = n->ov;
1144 :
1145 1584000 : ov = get_valid_object_name(oi->tr, ov);
1146 1584000 : if (ov && os_atmc_get_state(ov) == active)
1147 1582610 : b = ov->b;
1148 : }
1149 : }
1150 2610532 : oi->n = (void*)he;
1151 : } else {
1152 366164 : versionhead *n = oi->n;
1153 :
1154 411026 : while (n && !b) {
1155 :
1156 44862 : if (n->ov->b->name && strcmp(n->ov->b->name, oi->name) == 0) {
1157 13320 : objectversion *ov = n->ov;
1158 :
1159 13320 : n = oi->n = n->next;
1160 13320 : ov = get_valid_object_name(oi->tr, ov);
1161 13320 : if (ov && os_atmc_get_state(ov) == active)
1162 13320 : b = ov->b;
1163 : } else {
1164 31542 : n = oi->n = n->next;
1165 : }
1166 : }
1167 : }
1168 2976696 : unlock_reader(oi->os);
1169 : } else {
1170 1251560 : versionhead *n = oi->n;
1171 :
1172 1251560 : lock_reader(oi->os); /* intentionally outside of while loop */
1173 2907382 : while (n && !b) {
1174 404255 : objectversion *ov = n->ov;
1175 404255 : n = oi->n = n->next;
1176 :
1177 404255 : ov = get_valid_object_id(oi->tr, ov);
1178 404254 : if (ov && os_atmc_get_state(ov) == active)
1179 382770 : b = ov->b;
1180 : }
1181 1251567 : unlock_reader(oi->os);
1182 : }
1183 4228256 : return b;
1184 : }
1185 :
1186 : bool
1187 3544 : os_obj_intransaction(objectset *os, struct sql_trans *tr, sql_base *b)
1188 : {
1189 3544 : versionhead *n = find_id(os, b->id);
1190 :
1191 3544 : if (n) {
1192 3544 : objectversion *ov = n->ov;
1193 :
1194 3544 : if (ov && os_atmc_get_state(ov) == active && ov->ts == tr->tid)
1195 : return true;
1196 : }
1197 : return false;
1198 : }
1199 :
1200 : /* return true if this object set has changes pending for an other transaction */
1201 : bool
1202 179851 : os_has_changes(objectset *os, struct sql_trans *tr)
1203 : {
1204 179851 : versionhead *n = os->id_based_t;
1205 :
1206 179851 : if (n) {
1207 175451 : objectversion *ov = n->ov;
1208 :
1209 175451 : if (ov && os_atmc_get_state(ov) == active && ov->ts != tr->tid && ov->ts > TRANSACTION_ID_BASE)
1210 : return true;
1211 : }
1212 : return false;
1213 : }
|