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 316352 : os_id_key(versionhead *n)
77 : {
78 245250 : return (int) BATatoms[TYPE_int].atomHash(&n->ov->b->id);
79 : }
80 :
81 : static inline void
82 23305706 : lock_reader(objectset* os)
83 : {
84 23305706 : MT_rwlock_rdlock(&os->rw_lock);
85 1085123 : }
86 :
87 : static inline void
88 23377503 : unlock_reader(objectset* os)
89 : {
90 23377503 : MT_rwlock_rdunlock(&os->rw_lock);
91 4039957 : }
92 :
93 : static inline void
94 580021 : lock_writer(objectset* os)
95 : {
96 580021 : MT_rwlock_wrlock(&os->rw_lock);
97 : }
98 :
99 : static inline void
100 580021 : unlock_writer(objectset* os)
101 : {
102 580021 : MT_rwlock_wrunlock(&os->rw_lock);
103 130 : }
104 :
105 20258584 : static bte os_atmc_get_state(objectversion *ov) {
106 20258584 : bte state = (bte) ATOMIC_GET(&ov->state);
107 20258584 : return state;
108 : }
109 :
110 64568 : static void os_atmc_set_state(objectversion *ov, bte state) {
111 64568 : ATOMIC_SET(&ov->state, state);
112 0 : }
113 :
114 : static versionhead *
115 432683 : find_id(objectset *os, sqlid id)
116 : {
117 432683 : if (os) {
118 432683 : lock_reader(os);
119 432683 : if (os->id_map) {
120 401915 : int key = (int) BATatoms[TYPE_int].atomHash(&id);
121 401915 : sql_hash_e *he = os->id_map->buckets[key&(os->id_map->size-1)];
122 :
123 1336481 : for (; he; he = he->chain) {
124 1109319 : versionhead *n = he->value;
125 :
126 1109319 : if (n && n->ov->b->id == id) {
127 174753 : unlock_reader(os);
128 174753 : return n;
129 : }
130 : }
131 227162 : unlock_reader(os);
132 227162 : return NULL;
133 : }
134 :
135 92892 : for (versionhead *n = os->id_based_h; n; n = n->next) {
136 64666 : objectversion *ov = n->ov;
137 :
138 : /* check if ids match */
139 64666 : if (id == ov->b->id) {
140 2542 : unlock_reader(os);
141 2542 : return n;
142 : }
143 : }
144 28226 : 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 29588 : hash_delete(sql_hash *h, void *data)
153 : {
154 29588 : int key = h->key(data);
155 29588 : sql_hash_e *e, *p = h->buckets[key&(h->size-1)];
156 :
157 29588 : e = p;
158 45940 : for (; p && p->value != data ; p = p->chain)
159 16352 : e = p;
160 29588 : if (p && p->value == data) {
161 29588 : if (p == e)
162 25286 : h->buckets[key&(h->size-1)] = p->chain;
163 : else
164 4302 : e->chain = p->chain;
165 29588 : if (!h->sa)
166 29588 : _DELETE(p);
167 : }
168 29588 : h->entries--;
169 29588 : }
170 :
171 : static void
172 484465 : node_destroy(objectset *os, sqlstore *store, versionhead *n)
173 : {
174 484465 : if (!os->sa)
175 484465 : _DELETE(n);
176 484465 : (void)store;
177 484465 : }
178 :
179 : static versionhead *
180 15534 : os_remove_name_based_chain(objectset *os, objectversion* ov)
181 : {
182 15534 : lock_writer(os);
183 15534 : versionhead *n = ov->name_based_head;
184 15534 : versionhead *p = os->name_based_h;
185 15534 : if (p != n)
186 1152710 : while (p && p->next != n)
187 : p = p->next;
188 15534 : assert(p==n||(p && p->next == n));
189 15534 : if (p == n) {
190 1334 : os->name_based_h = n->next;
191 1334 : if (os->name_based_h) // i.e. non-empty os
192 815 : os->name_based_h->prev = NULL;
193 : p = NULL;
194 14200 : } else if ( p != NULL) {
195 14200 : p->next = n->next;
196 14200 : if (p->next) // node in the middle
197 5407 : p->next->prev = p;
198 : }
199 15534 : if (n == os->name_based_t)
200 9312 : os->name_based_t = p;
201 :
202 15534 : if (os->name_map && n)
203 14510 : hash_delete(os->name_map, n);
204 :
205 15534 : os->name_based_cnt--;
206 15534 : unlock_writer(os);
207 :
208 15534 : bte state = os_atmc_get_state(ov);
209 15534 : state |= name_based_versionhead_owner;
210 15534 : os_atmc_set_state(ov, state);
211 15534 : return p;
212 : }
213 :
214 : static versionhead *
215 15605 : os_remove_id_based_chain(objectset *os, objectversion* ov)
216 : {
217 15605 : lock_writer(os);
218 15605 : versionhead *n = ov->id_based_head;
219 15605 : versionhead *p = os->id_based_h;
220 :
221 15605 : if (p != n)
222 1160046 : while (p && p->next != n)
223 : p = p->next;
224 15605 : assert(p==n||(p && p->next == n));
225 15605 : if (p == n) {
226 1334 : os->id_based_h = n->next;
227 1334 : if (os->id_based_h) // i.e. non-empty os
228 815 : os->id_based_h->prev = NULL;
229 : p = NULL;
230 14271 : } else if ( p != NULL) {
231 14271 : p->next = n->next;
232 14271 : if (p->next) // node in the middle
233 5478 : p->next->prev = p;
234 : }
235 15605 : if (n == os->id_based_t)
236 9312 : os->id_based_t = p;
237 :
238 15605 : if (os->id_map && n)
239 15078 : hash_delete(os->id_map, n);
240 :
241 15605 : os->name_based_cnt--;
242 15605 : unlock_writer(os);
243 :
244 15605 : bte state = os_atmc_get_state(ov);
245 15605 : state |= id_based_versionhead_owner;
246 15605 : os_atmc_set_state(ov, state);
247 15605 : return p;
248 : }
249 :
250 : static versionhead *
251 509663 : node_create(allocator *sa, objectversion *ov)
252 : {
253 509663 : versionhead *n = SA_NEW(sa, versionhead );
254 :
255 509663 : if (n == NULL)
256 : return NULL;
257 509663 : *n = (versionhead ) {
258 : .ov = ov,
259 : };
260 509663 : return n;
261 : }
262 :
263 : static inline int
264 307625 : os_name_key(versionhead *n)
265 : {
266 307625 : return hash_key(n->ov->b->name);
267 : }
268 :
269 : static objectset *
270 254796 : os_append_node_name(objectset *os, versionhead *n)
271 : {
272 254796 : lock_writer(os);
273 254796 : if ((!os->name_map || os->name_map->size*16 < os->name_based_cnt) && os->name_based_cnt > HASH_MIN_SIZE) {
274 3647 : hash_destroy(os->name_map);
275 3647 : os->name_map = hash_new(os->sa, os->name_based_cnt, (fkeyvalue)& os_name_key);
276 3647 : if (os->name_map == NULL) {
277 0 : unlock_writer(os);
278 0 : return NULL;
279 : }
280 :
281 67152 : for (versionhead *n = os->name_based_h; n; n = n->next ) {
282 63505 : int key = os_name_key(n);
283 :
284 63505 : if (hash_add(os->name_map, key, n) == NULL) {
285 0 : unlock_writer(os);
286 0 : return NULL;
287 : }
288 : }
289 : }
290 :
291 254796 : if (os->name_map) {
292 229610 : int key = os->name_map->key(n);
293 :
294 229610 : if (hash_add(os->name_map, key, n) == NULL) {
295 0 : unlock_writer(os);
296 0 : return NULL;
297 : }
298 : }
299 :
300 254796 : if (os->name_based_t) {
301 246813 : os->name_based_t->next = n;
302 : } else {
303 7983 : os->name_based_h = n;
304 : }
305 254796 : n->prev = os->name_based_t; // aka the double linked list.
306 254796 : os->name_based_t = n;
307 254796 : os->name_based_cnt++;
308 254796 : unlock_writer(os);
309 254796 : return os;
310 : }
311 :
312 : static objectset *
313 254796 : os_append_name(objectset *os, objectversion *ov)
314 : {
315 254796 : versionhead *n = node_create(os->sa, ov);
316 :
317 254796 : if (n == NULL)
318 : return NULL;
319 :
320 254796 : ov->name_based_head = n;
321 254796 : 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 3741 : os_append_id_map(objectset *os)
331 : {
332 3741 : if (os->id_map)
333 432 : hash_destroy(os->id_map);
334 3741 : os->id_map = hash_new(os->sa, os->id_based_cnt, (fkeyvalue)&os_id_key);
335 3741 : if (os->id_map == NULL)
336 : return ;
337 74843 : for (versionhead *n = os->id_based_h; n; n = n->next ) {
338 71102 : int key = os_id_key(n);
339 :
340 71102 : 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 254867 : os_append_node_id(objectset *os, versionhead *n)
350 : {
351 254867 : lock_writer(os);
352 254867 : if ((!os->id_map || os->id_map->size*16 < os->id_based_cnt) && os->id_based_cnt > HASH_MIN_SIZE)
353 3741 : os_append_id_map(os); /* on failure just fall back to slow method */
354 :
355 254867 : if (os->id_map) {
356 230172 : int key = os->id_map->key(n);
357 230172 : 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 254867 : if (os->id_based_t) {
365 246884 : os->id_based_t->next = n;
366 : } else {
367 7983 : os->id_based_h = n;
368 : }
369 254867 : n->prev = os->id_based_t; // aka the double linked list.
370 254867 : os->id_based_t = n;
371 254867 : os->id_based_cnt++;
372 254867 : unlock_writer(os);
373 254867 : return os;
374 : }
375 :
376 : static objectset *
377 254867 : os_append_id(objectset *os, objectversion *ov)
378 : {
379 254867 : versionhead *n = node_create(os->sa, ov);
380 :
381 254867 : if (n == NULL)
382 : return NULL;
383 254867 : ov->id_based_head = n;
384 254867 : 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 261780 : objectversion_destroy(sqlstore *store, objectset* os, objectversion *ov)
396 : {
397 :
398 261780 : bte state = os_atmc_get_state(ov);
399 :
400 261780 : if (state & name_based_versionhead_owner) {
401 15534 : node_destroy(ov->os, store, ov->name_based_head);
402 : }
403 :
404 261780 : if (state & id_based_versionhead_owner) {
405 15605 : node_destroy(ov->os, store, ov->id_based_head);
406 : }
407 :
408 261780 : if (os->destroy && ov->b)
409 236969 : os->destroy(store, ov->b);
410 :
411 261780 : if (os->temporary && (state & deleted || state & under_destruction || state & rollbacked))
412 168 : os_destroy(os, store); // TODO transaction_layer_revamp: embed into refcounting subproject : reference is already dropped by os_cleanup
413 261780 : _DELETE(ov);
414 261780 : }
415 :
416 : static void
417 6097 : _os_rollback(objectversion *ov, sqlstore *store)
418 : {
419 6097 : assert(ov->ts >= TRANSACTION_ID_BASE);
420 :
421 6097 : bte state = os_atmc_get_state(ov);
422 6097 : if (state & rollbacked) {
423 : return;
424 : }
425 :
426 5597 : state |= rollbacked;
427 5597 : os_atmc_set_state(ov, state);
428 :
429 5597 : 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 5597 : lock_reader(ov->os);
436 5597 : objectversion* name_based_older = ov->name_based_older;
437 5597 : unlock_reader(ov->os);
438 :
439 5597 : if (name_based_older && !((state_older= os_atmc_get_state(name_based_older)) & rollbacked)) {
440 760 : 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 265 : ATOMIC_BASE_TYPE expected_deleted = deleted;
445 265 : if (state_older == active || (state_older == deleted && ATOMIC_CAS(&name_based_older->state, &expected_deleted, block_destruction))) {
446 265 : ov->name_based_head->ov = name_based_older;
447 265 : name_based_older->name_based_newer=NULL;
448 265 : 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 4837 : else if (!name_based_older) {
457 : // this is a terminal node. i.e. this objectversion does not have name based committed history
458 4837 : if (ov->name_based_head) // The opposite can happen during an early conflict in os_add or os_del.
459 4831 : 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 5597 : lock_reader(ov->os);
467 5597 : objectversion* id_based_older = ov->id_based_older;
468 5597 : unlock_reader(ov->os);
469 5597 : if (id_based_older && !((state_older= os_atmc_get_state(id_based_older)) & rollbacked)) {
470 270 : 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 265 : ATOMIC_BASE_TYPE expected_deleted = deleted;
475 265 : if (state_older == active || (state_older == deleted && ATOMIC_CAS(&id_based_older->state, &expected_deleted, block_destruction))) {
476 265 : ov->id_based_head->ov = id_based_older;
477 265 : id_based_older->id_based_newer=NULL;
478 265 : 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 4874 : else if (!id_based_older) {
486 : // this is a terminal node. i.e. this objectversion does not have id based committed history
487 4874 : os_remove_id_based_chain(ov->os, ov);
488 : }
489 :
490 5597 : 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 5597 : 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 5597 : os_rollback(objectversion *ov, sqlstore *store)
501 : {
502 5597 : _os_rollback(ov, store);
503 :
504 5597 : return LOG_OK;
505 : }
506 :
507 : static void
508 24811 : ov_destroy_obj_recursive(sqlstore* store, objectversion *ov)
509 : {
510 24811 : if (ov->id_based_older && ov->id_based_older == ov->name_based_older) {
511 14223 : ov_destroy_obj_recursive(store, ov->id_based_older);
512 : }
513 24811 : if (ov->os->destroy && ov->b) {
514 24811 : ov->os->destroy(store, ov->b);
515 24811 : ov->b = NULL;
516 : }
517 24811 : }
518 :
519 : static inline void
520 10782 : try_to_mark_deleted_for_destruction(sqlstore* store, objectversion *ov)
521 : {
522 10782 : ATOMIC_BASE_TYPE expected_deleted = deleted;
523 10782 : if (ATOMIC_CAS(&ov->state, &expected_deleted, under_destruction)) {
524 :
525 10782 : if (!ov->name_based_newer || (os_atmc_get_state(ov->name_based_newer) & rollbacked)) {
526 10703 : os_remove_name_based_chain(ov->os, ov);
527 : }
528 : else {
529 79 : lock_writer(ov->os);
530 79 : ov->name_based_newer->name_based_older = NULL;
531 79 : unlock_writer(ov->os);
532 : }
533 :
534 10782 : if (!ov->id_based_newer || (os_atmc_get_state(ov->id_based_newer) & rollbacked)) {
535 10731 : 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 10782 : ov->ts = store_get_timestamp(store)+1;
544 10782 : if (!ov->os->nested)
545 10588 : ov_destroy_obj_recursive(store, ov);
546 : }
547 10782 : }
548 :
549 : static void
550 29029 : objectversion_destroy_recursive(sqlstore* store, objectversion *ov)
551 : {
552 29029 : if (ov->id_based_older && ov->id_based_older == ov->name_based_older) {
553 14417 : objectversion_destroy_recursive(store, ov->id_based_older);
554 : }
555 29029 : objectversion_destroy(store, ov->os, ov);
556 29029 : }
557 :
558 : static int
559 301363 : os_cleanup(sqlstore* store, objectversion *ov, ulng oldest)
560 : {
561 301363 : if (os_atmc_get_state(ov) & under_destruction) {
562 14745 : if (ov->ts < oldest) {
563 : // This one is ready to be freed
564 10782 : objectversion_destroy_recursive(store, ov);
565 10782 : return LOG_ERR;
566 : }
567 :
568 : // not yet old enough to be safely removed. Try later.
569 : return LOG_OK;
570 : }
571 :
572 286618 : if (os_atmc_get_state(ov) & rollbacked) {
573 17752 : if (ov->ts < oldest) {
574 : // This one is ready to be freed
575 5597 : if (ov->name_based_older && ov->name_based_older->name_based_newer == ov)
576 495 : ov->name_based_older->name_based_newer=NULL;
577 5597 : if (ov->id_based_older && ov->id_based_older->id_based_newer == ov)
578 458 : ov->id_based_older->id_based_newer=NULL;
579 5597 : objectversion_destroy(store, ov->os, ov);
580 5597 : return LOG_ERR;
581 : }
582 :
583 12155 : 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 5597 : ov->ts = store_get_timestamp(store)+1;
588 : }
589 :
590 : // not yet old enough to be safely removed. Try later.
591 12155 : return LOG_OK;
592 : }
593 :
594 268866 : if (os_atmc_get_state(ov) == deleted) {
595 10866 : if (ov->ts <= oldest) {
596 : // the oldest relevant state is deleted so lets try to mark it as destroyed
597 10782 : try_to_mark_deleted_for_destruction(store, ov);
598 10782 : 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 258000 : assert(os_atmc_get_state(ov) != deleted && os_atmc_get_state(ov) != under_destruction && os_atmc_get_state(ov) != rollbacked);
607 258000 : 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 265956 : 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 258000 : if (ov->id_based_older && ov->id_based_older == ov->name_based_older) {
614 : // Destroy everything older then the oldest possibly relevant objectversion.
615 3830 : objectversion_destroy_recursive(store, ov->id_based_older);
616 3830 : ov->id_based_older = NULL;
617 : }
618 :
619 : return LOG_ERR;
620 : }
621 :
622 : static int
623 301370 : tc_gc_objectversion(sql_store store, sql_change *change, ulng oldest)
624 : {
625 : // assert(!change->handled);
626 301370 : objectversion *ov = (objectversion*)change->data;
627 :
628 301370 : if (oldest >= TRANSACTION_ID_BASE)
629 : return 0;
630 301363 : int res = os_cleanup( (sqlstore*) store, ov, oldest);
631 301363 : change->handled = (res)?true:false;
632 301363 : return res>=0?LOG_OK:LOG_ERR;
633 : }
634 :
635 : static int
636 274386 : tc_commit_objectversion(sql_trans *tr, sql_change *change, ulng commit_ts, ulng oldest)
637 : {
638 274386 : objectversion *ov = (objectversion*)change->data;
639 274386 : if (commit_ts) {
640 268789 : assert(ov->ts == tr->tid);
641 268789 : ov->ts = commit_ts;
642 268789 : change->committed = commit_ts < TRANSACTION_ID_BASE ? true: false;
643 268789 : (void)oldest;
644 268789 : if (!tr->parent)
645 268782 : change->obj->new = 0;
646 268789 : if (!ov->os->temporary)
647 264396 : ATOMIC_INC(&tr->cat->schema_version);
648 : } else {
649 5597 : os_rollback(ov, tr->store);
650 : }
651 :
652 274386 : return LOG_OK;
653 : }
654 :
655 : objectset *
656 58335 : os_new(allocator *sa, destroy_fptr destroy, bool temporary, bool unique, bool concurrent, bool nested, sql_store store)
657 : {
658 58335 : assert(!sa);
659 58335 : objectset *os = SA_NEW(sa, objectset);
660 58335 : if (os) {
661 58335 : *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 58335 : os->destroy = destroy;
672 58335 : MT_rwlock_init(&os->rw_lock, "sa_readers_lock");
673 58335 : MT_lock_init(&os->lock, "single_writer_lock");
674 : }
675 :
676 58335 : return os;
677 : }
678 :
679 : objectset *
680 4632 : os_dup(objectset *os)
681 : {
682 4632 : ATOMIC_INC(&os->refcnt);
683 4632 : return os;
684 : }
685 :
686 : void
687 61869 : os_destroy(objectset *os, sql_store store)
688 : {
689 61869 : if (ATOMIC_DEC(&os->refcnt) > 0)
690 : return;
691 57237 : MT_lock_destroy(&os->lock);
692 57237 : MT_rwlock_destroy(&os->rw_lock);
693 57237 : versionhead* n=os->id_based_h;
694 283900 : while(n) {
695 226663 : objectversion *ov = n->ov;
696 453817 : while(ov) {
697 227154 : objectversion *older = ov->id_based_older;
698 227154 : objectversion_destroy(store, os, ov);
699 227154 : ov = older;
700 : }
701 226663 : versionhead* hn =n->next;
702 226663 : node_destroy(os, store, n);
703 226663 : n = hn;
704 : }
705 :
706 57237 : n=os->name_based_h;
707 283900 : while(n) {
708 226663 : versionhead* hn =n->next;
709 226663 : node_destroy(os, store, n);
710 226663 : n = hn;
711 : }
712 :
713 57237 : if (os->id_map)
714 3113 : hash_destroy(os->id_map);
715 :
716 57237 : if (os->name_map)
717 3087 : hash_destroy(os->name_map);
718 :
719 57237 : if (!os->sa)
720 57237 : _DELETE(os);
721 : }
722 :
723 : static versionhead *
724 16636036 : find_name(objectset *os, const char *name)
725 : {
726 16636036 : lock_reader(os);
727 16715510 : if (os->name_map) {
728 13267318 : int key = hash_key(name);
729 13267318 : sql_hash_e *he = os->name_map->buckets[key&(os->name_map->size-1)];
730 :
731 65404925 : for (; he; he = he->chain) {
732 65041109 : versionhead *n = he->value;
733 :
734 65041109 : if (n && n->ov->b->name && strcmp(n->ov->b->name, name) == 0) {
735 12903502 : unlock_reader(os);
736 12903502 : return n;
737 : }
738 : }
739 363816 : unlock_reader(os);
740 363816 : return NULL;
741 : }
742 :
743 4128377 : for (versionhead *n = os->name_based_h; n; n = n->next) {
744 3828246 : objectversion *ov = n->ov;
745 :
746 : /* check if names match */
747 3828246 : if (name[0] == ov->b->name[0] && strcmp(name, ov->b->name) == 0) {
748 3148061 : unlock_reader(os);
749 3148061 : return n;
750 : }
751 : }
752 :
753 300131 : unlock_reader(os);
754 300131 : return NULL;
755 : }
756 :
757 : static objectversion*
758 17661993 : get_valid_object_name(sql_trans *tr, objectversion *ov)
759 : {
760 17664683 : while(ov) {
761 17664652 : if (ov->ts == tr->tid || (tr->parent && tr_version_of_parent(tr, ov->ts)) || ov->ts < tr->ts)
762 17655046 : return ov;
763 : else {
764 9600 : lock_reader(ov->os);
765 167 : objectversion* name_based_older = ov->name_based_older;
766 167 : unlock_reader(ov->os);
767 167 : ov = name_based_older;
768 : }
769 : }
770 : return ov;
771 : }
772 :
773 : static objectversion*
774 499538 : get_valid_object_id(sql_trans *tr, objectversion *ov)
775 : {
776 499707 : while(ov) {
777 499592 : if (ov->ts == tr->tid || (tr->parent && tr_version_of_parent(tr, ov->ts)) || ov->ts < tr->ts)
778 499423 : return ov;
779 : else {
780 169 : lock_reader(ov->os);
781 169 : objectversion* id_based_older = ov->id_based_older;
782 169 : unlock_reader(ov->os);
783 169 : ov = id_based_older;
784 : }
785 : }
786 : return ov;
787 : }
788 :
789 : static int
790 263120 : os_add_name_based(objectset *os, struct sql_trans *tr, const char *name, objectversion *ov) {
791 263120 : versionhead *name_based_node = NULL;
792 263120 : if (ov->id_based_older && strcmp(ov->id_based_older->b->name, name) == 0)
793 8229 : name_based_node = ov->id_based_older->name_based_head;
794 254891 : 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 78504 : 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 86733 : if (name_based_node) {
799 8324 : objectversion *co = name_based_node->ov;
800 8324 : objectversion *oo = get_valid_object_name(tr, co);
801 8324 : if (co != oo) { /* conflict ? */
802 6 : TRC_WARNING(SQL_STORE, "%s" "if (co != oo) { /* conflict ? */", __func__);
803 6 : return -3;
804 : }
805 :
806 8318 : assert(ov != oo); // Time loops are not allowed
807 :
808 8318 : bte state = os_atmc_get_state(oo);
809 8318 : if (state != active) {
810 : // This can only happen if the parent oo was a committed deleted at some point.
811 122 : 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 122 : ATOMIC_BASE_TYPE expected_deleted = deleted;
816 122 : 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 8196 : assert(!(state == active && oo->ts == ov->ts && !(os_atmc_get_state(ov) & deleted)));
824 :
825 8318 : lock_writer(os);
826 8318 : ov->name_based_head = oo->name_based_head;
827 8318 : ov->name_based_older = oo;
828 :
829 8318 : name_based_node->ov = ov;
830 8318 : if (oo) {
831 8318 : oo->name_based_newer = ov;
832 : // if the parent was originally deleted, we restore it to that state.
833 8318 : os_atmc_set_state(oo, state);
834 : }
835 8318 : unlock_writer(os);
836 8318 : return 0;
837 : } else { /* new */
838 254796 : if (os_append_name(os, ov) == NULL)
839 : return -1; // MALLOC_FAIL
840 : return 0;
841 : }
842 : }
843 :
844 : static int
845 263130 : os_add_id_based(objectset *os, struct sql_trans *tr, sqlid id, objectversion *ov) {
846 263130 : versionhead *id_based_node;
847 :
848 263130 : id_based_node = find_id(os, id);
849 :
850 263130 : if (id_based_node) {
851 8263 : objectversion *co = id_based_node->ov;
852 8263 : objectversion *oo = get_valid_object_id(tr, co);
853 8263 : if (co != oo) { /* conflict ? */
854 10 : TRC_WARNING(SQL_STORE, "%s" "if (co != oo) { /* conflict ? */", __func__);
855 10 : return -3;
856 : }
857 :
858 8253 : assert(ov != oo); // Time loops are not allowed
859 :
860 8253 : bte state = os_atmc_get_state(oo);
861 8253 : 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 8253 : lock_writer(os);
875 8253 : ov->id_based_head = oo->id_based_head;
876 8253 : ov->id_based_older = oo;
877 :
878 8253 : id_based_node->ov = ov;
879 8253 : if (oo) {
880 8253 : oo->id_based_newer = ov;
881 : // if the parent was originally deleted, we restore it to that state.
882 8253 : os_atmc_set_state(oo, state);
883 : }
884 8253 : unlock_writer(os);
885 8253 : return 0;
886 : } else { /* new */
887 254867 : 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 263131 : os_add_(objectset *os, struct sql_trans *tr, const char *name, sql_base *b)
896 : {
897 263131 : int res = 0;
898 263131 : objectversion *ov = SA_NEW(os->sa, objectversion);
899 :
900 263131 : *ov = (objectversion) {
901 263131 : .ts = tr->tid,
902 : .b = b,
903 : .os = os,
904 : };
905 :
906 263131 : 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 263130 : 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 263120 : 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 263114 : if (os->temporary) (void) os_dup(os); // TODO transaction_layer_revamp: embed into refcounting subproject
927 263114 : trans_add(tr, b, ov, &tc_gc_objectversion, &tc_commit_objectversion, NULL);
928 263114 : return res;
929 : }
930 :
931 : int
932 263131 : os_add(objectset *os, struct sql_trans *tr, const char *name, sql_base *b)
933 : {
934 263131 : MT_lock_set(&os->lock);
935 263131 : int res = os_add_(os, tr, name, b);
936 263131 : MT_lock_unset(&os->lock);
937 263131 : return res;
938 : }
939 :
940 : static int
941 11259 : os_del_name_based(objectset *os, struct sql_trans *tr, const char *name, objectversion *ov) {
942 11259 : versionhead *name_based_node = NULL;
943 11259 : if (ov->id_based_older && strcmp(ov->id_based_older->b->name, name) == 0)
944 11259 : 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 11259 : if (name_based_node) {
949 11259 : objectversion *co = name_based_node->ov;
950 11259 : objectversion *oo = get_valid_object_name(tr, co);
951 11259 : ov->name_based_head = oo->name_based_head;
952 11259 : if (co != oo) { /* conflict ? */
953 0 : TRC_WARNING(SQL_STORE, "%s: " "if (co != oo) { /* conflict ? */", __func__);
954 0 : return -3;
955 : }
956 11259 : ov->name_based_older = oo;
957 :
958 11259 : lock_writer(os);
959 11259 : if (oo) {
960 11259 : oo->name_based_newer = ov;
961 11259 : assert(os_atmc_get_state(oo) == active);
962 : }
963 11259 : name_based_node->ov = ov;
964 11259 : unlock_writer(os);
965 11259 : return 0;
966 : } else {
967 : /* missing */
968 0 : return -1;
969 : }
970 : }
971 :
972 : static int
973 11261 : os_del_id_based(objectset *os, struct sql_trans *tr, sqlid id, objectversion *ov) {
974 :
975 11261 : versionhead *id_based_node;
976 :
977 11261 : 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 11261 : id_based_node = find_id(os, id);
981 :
982 11261 : if (id_based_node) {
983 11261 : objectversion *co = id_based_node->ov;
984 11261 : objectversion *oo = get_valid_object_id(tr, co);
985 11261 : ov->id_based_head = oo->id_based_head;
986 11261 : if (co != oo) { /* conflict ? */
987 2 : TRC_WARNING(SQL_STORE, "%s" "if (co != oo) { /* conflict ? */", __func__);
988 2 : return -3;
989 : }
990 11259 : ov->id_based_older = oo;
991 :
992 11259 : lock_writer(os);
993 11259 : if (oo) {
994 11259 : oo->id_based_newer = ov;
995 11259 : assert(os_atmc_get_state(oo) == active);
996 : }
997 11259 : id_based_node->ov = ov;
998 11259 : unlock_writer(os);
999 11259 : return 0;
1000 : } else {
1001 : /* missing */
1002 : return -1;
1003 : }
1004 : }
1005 :
1006 : static int
1007 11261 : os_del_(objectset *os, struct sql_trans *tr, const char *name, sql_base *b)
1008 : {
1009 11261 : int res = 0;
1010 11261 : objectversion *ov = SA_NEW(os->sa, objectversion);
1011 :
1012 11261 : *ov = (objectversion) {
1013 11261 : .ts = tr->tid,
1014 : .b = b,
1015 : .os = os,
1016 : };
1017 11261 : os_atmc_set_state(ov, deleted);
1018 :
1019 11261 : 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 11259 : 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 11259 : if (os->temporary) (void) os_dup(os); // TODO transaction_layer_revamp: embed into refcounting subproject
1032 11259 : trans_add(tr, b, ov, &tc_gc_objectversion, &tc_commit_objectversion, NULL);
1033 11259 : return res;
1034 : }
1035 :
1036 : int
1037 11261 : os_del(objectset *os, sql_trans *tr, const char *name, sql_base *b)
1038 : {
1039 11261 : MT_lock_set(&os->lock);
1040 11261 : int res = os_del_(os, tr, name, b);
1041 11261 : MT_lock_unset(&os->lock);
1042 11261 : return res;
1043 : }
1044 :
1045 : int
1046 315 : os_size(objectset *os, struct sql_trans *tr)
1047 : {
1048 315 : int cnt = 0;
1049 315 : if (os) {
1050 315 : lock_reader(os);
1051 324 : 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 315 : unlock_reader(os);
1057 : }
1058 315 : 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 16564796 : os_find_name(objectset *os, struct sql_trans *tr, const char *name)
1081 : {
1082 16564796 : if (!os)
1083 : return NULL;
1084 :
1085 16564794 : assert(os->unique);
1086 16564794 : versionhead *n = find_name(os, name);
1087 :
1088 16675879 : if (n) {
1089 16090282 : objectversion *ov = get_valid_object_name(tr, n->ov);
1090 16075720 : if (ov && os_atmc_get_state(ov) == active)
1091 16075616 : return ov->b;
1092 : }
1093 : return NULL;
1094 : }
1095 :
1096 : sql_base *
1097 154747 : os_find_id(objectset *os, struct sql_trans *tr, sqlid id)
1098 : {
1099 154747 : if (!os)
1100 : return NULL;
1101 154747 : versionhead *n = find_id(os, id);
1102 :
1103 154747 : if (n) {
1104 154226 : objectversion *ov = get_valid_object_id(tr, n->ov);
1105 154226 : if (ov && os_atmc_get_state(ov) == active)
1106 154222 : return ov->b;
1107 : }
1108 : return NULL;
1109 : }
1110 :
1111 : void
1112 2205184 : os_iterator(struct os_iter *oi, struct objectset *os, struct sql_trans *tr, const char *name /*optional*/)
1113 : {
1114 2205184 : *oi = (struct os_iter) {
1115 : .os = os,
1116 : .tr = tr,
1117 : .name = name,
1118 : };
1119 :
1120 2205184 : lock_reader(os);
1121 2206374 : if (name && os->name_map) {
1122 1021045 : int key = hash_key(name);
1123 1021045 : oi->n = (void*)os->name_map->buckets[key&(os->name_map->size-1)];
1124 : } else
1125 1185329 : oi->n = os->name_based_h;
1126 2206374 : unlock_reader(os);
1127 2206481 : }
1128 :
1129 : sql_base *
1130 4010525 : oi_next(struct os_iter *oi)
1131 : {
1132 4010525 : sql_base *b = NULL;
1133 :
1134 4010525 : if (oi->name) {
1135 2925649 : lock_reader(oi->os); /* intentionally outside of while loop */
1136 2925649 : if (oi->os->name_map) {
1137 2565093 : sql_hash_e *he = (void*)oi->n;
1138 :
1139 6351046 : for (; he && !b; he = he->chain) {
1140 3785953 : versionhead *n = he->value;
1141 :
1142 3785953 : if (n->ov->b->name && strcmp(n->ov->b->name, oi->name) == 0) {
1143 1549249 : objectversion *ov = n->ov;
1144 :
1145 1549249 : ov = get_valid_object_name(oi->tr, ov);
1146 1549249 : if (ov && os_atmc_get_state(ov) == active)
1147 1549059 : b = ov->b;
1148 : }
1149 : }
1150 2565093 : oi->n = (void*)he;
1151 : } else {
1152 360556 : versionhead *n = oi->n;
1153 :
1154 406543 : while (n && !b) {
1155 :
1156 45987 : if (n->ov->b->name && strcmp(n->ov->b->name, oi->name) == 0) {
1157 11970 : objectversion *ov = n->ov;
1158 :
1159 11970 : n = oi->n = n->next;
1160 11970 : ov = get_valid_object_name(oi->tr, ov);
1161 11970 : if (ov && os_atmc_get_state(ov) == active)
1162 11970 : b = ov->b;
1163 : } else {
1164 34017 : n = oi->n = n->next;
1165 : }
1166 : }
1167 : }
1168 2925649 : unlock_reader(oi->os);
1169 : } else {
1170 1084876 : versionhead *n = oi->n;
1171 :
1172 1084876 : lock_reader(oi->os); /* intentionally outside of while loop */
1173 2495787 : while (n && !b) {
1174 325469 : objectversion *ov = n->ov;
1175 325469 : n = oi->n = n->next;
1176 :
1177 325469 : ov = get_valid_object_id(oi->tr, ov);
1178 325788 : if (ov && os_atmc_get_state(ov) == active)
1179 301346 : b = ov->b;
1180 : }
1181 1085442 : unlock_reader(oi->os);
1182 : }
1183 4011416 : return b;
1184 : }
1185 :
1186 : bool
1187 3545 : os_obj_intransaction(objectset *os, struct sql_trans *tr, sql_base *b)
1188 : {
1189 3545 : versionhead *n = find_id(os, b->id);
1190 :
1191 3545 : if (n) {
1192 3545 : objectversion *ov = n->ov;
1193 :
1194 3545 : 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 171418 : os_has_changes(objectset *os, struct sql_trans *tr)
1203 : {
1204 171418 : versionhead *n = os->id_based_t;
1205 :
1206 171418 : if (n) {
1207 167152 : objectversion *ov = n->ov;
1208 :
1209 167152 : 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 : }
|