LCOV - code coverage report
Current view: top level - gdk - gdk_logger.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 1552 2127 73.0 %
Date: 2024-11-12 19:36:54 Functions: 77 78 98.7 %

          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 "gdk.h"
      15             : #include "gdk_private.h"
      16             : #include "gdk_logger.h"
      17             : #include "gdk_logger_internals.h"
      18             : #include "mutils.h"
      19             : #include <string.h>
      20             : 
      21             : static gdk_return log_add_bat(logger *lg, BAT *b, log_id id, int tid);
      22             : static gdk_return log_del_bat(logger *lg, log_bid bid);
      23             : /*
      24             :  * The logger uses a directory to store its log files. One master log
      25             :  * file stores information about the version of the logger and the
      26             :  * type mapping it uses. This file is a simple ascii file with the
      27             :  * following format:
      28             :  *  {6DIGIT-VERSION\n[id,type_name\n]*}
      29             :  * The transaction log files have a binary format.
      30             :  */
      31             : 
      32             : #define LOG_START       0
      33             : #define LOG_END         1
      34             : #define LOG_UPDATE_CONST        2
      35             : #define LOG_UPDATE_BULK 3
      36             : #define LOG_UPDATE      4
      37             : #define LOG_CREATE      5
      38             : #define LOG_DESTROY     6
      39             : #define LOG_SEQ         7
      40             : #define LOG_CLEAR       8       /* DEPRECATED */
      41             : #define LOG_BAT_GROUP   9
      42             : 
      43             : #ifdef NATIVE_WIN32
      44             : #define getfilepos _ftelli64
      45             : #else
      46             : #ifdef HAVE_FSEEKO
      47             : #define getfilepos ftello
      48             : #else
      49             : #define getfilepos ftell
      50             : #endif
      51             : #endif
      52             : 
      53             : #define BATSIZE 0
      54             : 
      55             : #define LOG_DISABLED(lg) ((lg)->debug&128 || (lg)->inmemory || (lg)->flushnow)
      56             : 
      57             : static const char *log_commands[] = {
      58             :         "LOG_START",
      59             :         "LOG_END",
      60             :         "LOG_UPDATE_CONST",
      61             :         "LOG_UPDATE_BULK",
      62             :         "LOG_UPDATE",
      63             :         "LOG_CREATE",
      64             :         "LOG_DESTROY",
      65             :         "LOG_SEQ",
      66             :         "",                   /* LOG_CLEAR IS DEPRECATED */
      67             :         "LOG_BAT_GROUP",
      68             : };
      69             : 
      70             : typedef struct logaction {
      71             :         int type;               /* type of change */
      72             :         lng nr;
      73             :         int tt;
      74             :         lng id;
      75             :         lng offset;
      76             :         log_id cid;             /* id of object */
      77             :         BAT *b;                 /* temporary bat with changes */
      78             :         BAT *uid;               /* temporary bat with bun positions to update */
      79             : } logaction;
      80             : 
      81             : /* during the recover process a number of transactions could be active */
      82             : typedef struct trans {
      83             :         int tid;                /* transaction id */
      84             :         int sz;                 /* sz of the changes array */
      85             :         int nr;                 /* nr of changes */
      86             : 
      87             :         logaction *changes;
      88             : 
      89             :         struct trans *tr;
      90             : } trans;
      91             : 
      92             : typedef struct logformat_t {
      93             :         bte flag;
      94             :         int id;
      95             : } logformat;
      96             : 
      97             : typedef enum { LOG_OK, LOG_EOF, LOG_ERR } log_return;
      98             : 
      99             : static gdk_return bm_commit(logger *lg, logged_range *pending, uint32_t *updated, BUN maxupdated);
     100             : static gdk_return tr_grow(trans *tr);
     101             : 
     102             : #define log_lock(lg)    MT_lock_set(&(lg)->lock)
     103             : #define log_unlock(lg)  MT_lock_unset(&(lg)->lock)
     104             : 
     105             : static inline bte
     106      931953 : find_type(logger *lg, int tpe)
     107             : {
     108      931953 :         assert(tpe >= 0 && tpe < MAXATOMS);
     109      931953 :         return lg->type_id[tpe];
     110             : }
     111             : 
     112             : static inline int
     113      550411 : find_type_nr(logger *lg, bte tpe)
     114             : {
     115      550411 :         int nr = lg->type_nr[tpe < 0 ? 256 + tpe : tpe];
     116      550411 :         if (nr == 255)
     117           0 :                 return -1;
     118             :         return nr;
     119             : }
     120             : 
     121             : static BUN
     122      422120 : log_find(BAT *b, BAT *d, int val)
     123             : {
     124      422120 :         BUN p;
     125             : 
     126      422120 :         assert(b->ttype == TYPE_int);
     127      422120 :         assert(d->ttype == TYPE_oid);
     128      422120 :         BATiter bi = bat_iterator(b);
     129      422120 :         if (BAThash(b) == GDK_SUCCEED) {
     130      422120 :                 MT_rwlock_rdlock(&b->thashlock);
     131      688335 :                 HASHloop_int(bi, b->thash, p, &val) {
     132      184903 :                         oid pos = p;
     133      184903 :                         if (BUNfnd(d, &pos) == BUN_NONE) {
     134      184903 :                                 MT_rwlock_rdunlock(&b->thashlock);
     135      184903 :                                 bat_iterator_end(&bi);
     136      184903 :                                 return p;
     137             :                         }
     138             :                 }
     139      237217 :                 MT_rwlock_rdunlock(&b->thashlock);
     140             :         } else {                /* unlikely: BAThash failed */
     141           0 :                 int *t = (int *) bi.base;
     142             : 
     143           0 :                 for (p = 0; p < bi.count; p++) {
     144           0 :                         if (t[p] == val) {
     145           0 :                                 oid pos = p;
     146           0 :                                 if (BUNfnd(d, &pos) == BUN_NONE) {
     147           0 :                                         bat_iterator_end(&bi);
     148           0 :                                         return p;
     149             :                                 }
     150             :                         }
     151             :                 }
     152             :         }
     153      237217 :         bat_iterator_end(&bi);
     154      237217 :         return BUN_NONE;
     155             : }
     156             : 
     157             : static log_bid
     158      649905 : internal_find_bat(logger *lg, log_id id, int tid)
     159             : {
     160      649905 :         BUN p;
     161             : 
     162      649905 :         if (BAThash(lg->catalog_id) == GDK_SUCCEED) {
     163      649905 :                 BATiter cni = bat_iterator(lg->catalog_id);
     164      649905 :                 MT_rwlock_rdlock(&cni.b->thashlock);
     165      649905 :                 if (tid < 0) {
     166      395788 :                         HASHloop_int(cni, cni.b->thash, p, &id) {
     167      204819 :                                 oid pos = p;
     168      204819 :                                 if (BUNfnd(lg->dcatalog, &pos) == BUN_NONE) {
     169      204819 :                                         MT_rwlock_rdunlock(&cni.b->thashlock);
     170      204819 :                                         bat_iterator_end(&cni);
     171      204819 :                                         return *(log_bid *) Tloc(lg->catalog_bid, p);
     172             :                                 }
     173             :                         }
     174             :                 } else {
     175      364376 :                         BUN cp = BUN_NONE;
     176     3359141 :                         HASHloop_int(cni, cni.b->thash, p, &id) {
     177     2936994 :                                 lng lid = *(lng *) Tloc(lg->catalog_lid, p);
     178     2936994 :                                 if (lid != lng_nil && lid <= tid) {
     179             :                                         break;
     180             :                                 }
     181             :                                 cp = p;
     182             :                         }
     183      364376 :                         if (cp != BUN_NONE) {
     184      364128 :                                 MT_rwlock_rdunlock(&cni.b->thashlock);
     185      364128 :                                 bat_iterator_end(&cni);
     186      364128 :                                 return *(log_bid *) Tloc(lg->catalog_bid, cp);
     187             :                         }
     188             :                 }
     189       80958 :                 MT_rwlock_rdunlock(&cni.b->thashlock);
     190       80958 :                 bat_iterator_end(&cni);
     191       80958 :                 return 0;       /* not found */
     192             :         }
     193             :         return -1;              /* error creating hash */
     194             : }
     195             : 
     196             : static inline void
     197       13052 : logbat_destroy(BAT *b)
     198             : {
     199       16190 :         BBPreclaim(b);
     200        3427 : }
     201             : 
     202             : static BAT *
     203       13283 : logbat_new(int tt, BUN size, role_t role)
     204             : {
     205       13283 :         BAT *nb = COLnew(0, tt, size, role);
     206             : 
     207       13283 :         if (nb) {
     208       13283 :                 BBP_pid(nb->batCacheid) = 0;
     209       13283 :                 if (role == PERSISTENT) {
     210        8397 :                         BATmode(nb, false);
     211        8397 :                         nb = BATsetaccess(nb, BAT_READ);
     212             :                 }
     213             :         } else {
     214           0 :                 TRC_CRITICAL(GDK, "creating new BAT[%s]#" BUNFMT " failed\n", ATOMname(tt), size);
     215             :         }
     216       13283 :         return nb;
     217             : }
     218             : 
     219             : static bool
     220      763260 : log_read_format(logger *lg, logformat *data)
     221             : {
     222      763260 :         assert(!lg->inmemory);
     223      763260 :         if (mnstr_read(lg->input_log, &data->flag, 1, 1) == 1) {
     224      751030 :                 if (mnstr_readInt(lg->input_log, &data->id) == 1)
     225             :                         return true;
     226             :                 /* could only read part, so complain */
     227           0 :                 TRC_CRITICAL(GDK, "read failed\n");
     228             :         }
     229             :         return false;
     230             : }
     231             : 
     232             : static gdk_return
     233      757886 : log_write_format(logger *lg, logformat *data)
     234             : {
     235      757886 :         assert(data->id || data->flag);
     236      757886 :         assert(!lg->inmemory);
     237      757886 :         assert(mnstr_errnr(lg->current->output_log) == MNSTR_NO__ERROR);
     238     1515772 :         if (mnstr_errnr(lg->current->output_log) == MNSTR_NO__ERROR &&
     239     1515772 :             mnstr_write(lg->current->output_log, &data->flag, 1, 1) == 1 &&
     240      757886 :             mnstr_writeInt(lg->current->output_log, data->id))
     241             :                 return GDK_SUCCEED;
     242           0 :         TRC_CRITICAL(GDK, "write failed\n");
     243           0 :         return GDK_FAIL;
     244             : }
     245             : 
     246             : static log_return
     247        2766 : log_read_seq(logger *lg, logformat *l)
     248             : {
     249        2766 :         int seq = l->id;
     250        2766 :         lng val;
     251        2766 :         BUN p;
     252             : 
     253        2766 :         assert(!lg->inmemory);
     254        2766 :         if (mnstr_readLng(lg->input_log, &val) != 1) {
     255           0 :                 TRC_CRITICAL(GDK, "read failed\n");
     256           0 :                 return LOG_EOF;
     257             :         }
     258        2766 :         if (lg->flushing)
     259             :                 return LOG_OK;
     260             : 
     261          60 :         if ((p = log_find(lg->seqs_id, lg->dseqs, seq)) != BUN_NONE &&
     262          59 :             p >= lg->seqs_id->batInserted) {
     263          39 :                 assert(lg->seqs_val->hseqbase == 0);
     264          39 :                 if (BUNreplace(lg->seqs_val, p, &val, true) != GDK_SUCCEED) {
     265           0 :                         TRC_CRITICAL(GDK, "replace of %s_seqs_val failed\n", lg->fn);
     266           0 :                         return LOG_ERR;
     267             :                 }
     268             :         } else {
     269          20 :                 if (p != BUN_NONE) {
     270          20 :                         oid pos = p;
     271          20 :                         if (BUNappend(lg->dseqs, &pos, true) != GDK_SUCCEED) {
     272           0 :                                 TRC_CRITICAL(GDK, "append to %s_dseqs failed\n", lg->fn);
     273           0 :                                 return LOG_ERR;
     274             :                         }
     275             :                 }
     276          42 :                 if (BUNappend(lg->seqs_id, &seq, true) != GDK_SUCCEED ||
     277          21 :                     BUNappend(lg->seqs_val, &val, true) != GDK_SUCCEED) {
     278           0 :                         TRC_CRITICAL(GDK, "append to %s_seqs_val/id failed\n", lg->fn);
     279           0 :                         return LOG_ERR;
     280             :                 }
     281             :         }
     282             :         return LOG_OK;
     283             : }
     284             : 
     285             : #if 0
     286             : static gdk_return
     287             : log_write_id(logger *lg, int id)
     288             : {
     289             :         assert(!lg->inmemory);
     290             :         assert(id >= 0);
     291             :         assert(mnstr_errnr(lg->current->output_log) == MNSTR_NO__ERROR);
     292             :         if (mnstr_errnr(lg->current->output_log) == MNSTR_NO__ERROR &&
     293             :             mnstr_writeInt(lg->current->output_log, id))
     294             :                 return GDK_SUCCEED;
     295             :         TRC_CRITICAL(GDK, "write failed\n");
     296             :         return GDK_FAIL;
     297             : }
     298             : 
     299             : static log_return
     300             : log_read_id(logger *lg, log_id *id)
     301             : {
     302             :         assert(!lg->inmemory);
     303             :         if (mnstr_readInt(lg->input_log, id) != 1) {
     304             :                 TRC_CRITICAL(GDK, "read failed\n");
     305             :                 return LOG_EOF;
     306             :         }
     307             :         return LOG_OK;
     308             : }
     309             : #endif
     310             : 
     311             : static log_return
     312       19089 : string_reader(logger *lg, BAT *b, lng nr)
     313             : {
     314       19089 :         size_t sz = 0;
     315       19089 :         lng SZ = 0;
     316       19089 :         log_return res = LOG_OK;
     317             : 
     318       38261 :         while (nr && res == LOG_OK) {
     319       19172 :                 if (mnstr_readLng(lg->input_log, &SZ) != 1) {
     320           0 :                         TRC_CRITICAL(GDK, "read failed\n");
     321           0 :                         return LOG_EOF;
     322             :                 }
     323       19172 :                 sz = (size_t) SZ;
     324       19172 :                 char *buf = lg->rbuf;
     325       19172 :                 if (lg->rbufsize < sz) {
     326           2 :                         if (!(buf = GDKrealloc(lg->rbuf, sz))) {
     327           0 :                                 TRC_CRITICAL(GDK, "couldn't grow string buffer\n");
     328           0 :                                 return LOG_ERR;
     329             :                         }
     330           2 :                         lg->rbuf = buf;
     331           2 :                         lg->rbufsize = sz;
     332             :                 }
     333             : 
     334       19172 :                 if (mnstr_read(lg->input_log, buf, sz, 1) != 1) {
     335           0 :                         TRC_CRITICAL(GDK, "read failed\n");
     336           0 :                         return LOG_EOF;
     337             :                 }
     338             :                 /* handle strings */
     339             :                 char *t = buf;
     340             :                 /* chunked */
     341             : #define CHUNK_SIZE 1024
     342             :                 char *strings[CHUNK_SIZE];
     343             :                 int cur = 0;
     344             : 
     345       92938 :                 for (; nr > 0 && res == LOG_OK && t < (buf + sz); nr--) {
     346       73766 :                         strings[cur++] = t;
     347       73766 :                         if (cur == CHUNK_SIZE &&
     348           4 :                             b &&
     349           4 :                             BUNappendmulti(b, strings, cur, true) != GDK_SUCCEED) {
     350           0 :                                 TRC_CRITICAL(GDK, "append to string bat failed\n");
     351           0 :                                 res = LOG_ERR;
     352             :                         }
     353       73766 :                         if (cur == CHUNK_SIZE)
     354          33 :                                 cur = 0;
     355             :                         /* find next */
     356     5576990 :                         while (*t)
     357     5503224 :                                 t++;
     358       73766 :                         t++;
     359             :                 }
     360       19172 :                 if (cur &&
     361         294 :                     b &&
     362         294 :                     BUNappendmulti(b, strings, cur, true) != GDK_SUCCEED) {
     363           0 :                         TRC_CRITICAL(GDK, "append to string bat failed\n");
     364           0 :                         res = LOG_ERR;
     365             :                 }
     366             :         }
     367             :         return res;
     368             : }
     369             : 
     370             : 
     371             : struct offset {
     372             :         lng os;           /* offset within source BAT in logfile */
     373             :         lng nr;           /* number of values to be copied */
     374             :         lng od;           /* offset within destination BAT in database */
     375             : };
     376             : 
     377             : static log_return
     378      392383 : log_read_updates(logger *lg, trans *tr, logformat *l, log_id id, BAT **cands)
     379             : {
     380      392383 :         log_return res = LOG_OK;
     381      392383 :         lng nr, pnr;
     382      392383 :         bte type_id = -1;
     383      392383 :         int tpe;
     384             : 
     385      392383 :         assert(!lg->inmemory);
     386      392383 :         TRC_DEBUG(WAL, "found %d %s", id, l->flag == LOG_UPDATE ? "update" : "update_buld");
     387             : 
     388      784766 :         if (mnstr_readLng(lg->input_log, &nr) != 1 ||
     389      392383 :             mnstr_read(lg->input_log, &type_id, 1, 1) != 1) {
     390           0 :                 TRC_CRITICAL(GDK, "read failed\n");
     391           0 :                 return LOG_EOF;
     392             :         }
     393             : 
     394      392383 :         pnr = nr;
     395      392383 :         tpe = find_type_nr(lg, type_id);
     396      392383 :         if (tpe >= 0) {
     397      392383 :                 BAT *uid = NULL;
     398      392383 :                 BAT *r = NULL;
     399      392383 :                 void *(*rt)(ptr, size_t *, stream *, size_t) = BATatoms[tpe].atomRead;
     400      392383 :                 lng offset;
     401             : 
     402      392383 :                 assert(nr <= (lng) BUN_MAX);
     403      392383 :                 if (!lg->flushing && l->flag == LOG_UPDATE) {
     404           0 :                         uid = COLnew(0, TYPE_oid, (BUN) nr, PERSISTENT);
     405           0 :                         if (uid == NULL) {
     406           0 :                                 TRC_CRITICAL(GDK, "creating bat failed\n");
     407       28300 :                                 return LOG_ERR;
     408             :                         }
     409             :                 }
     410             : 
     411      392383 :                 if (l->flag == LOG_UPDATE_CONST) {
     412      123198 :                         if (mnstr_readLng(lg->input_log, &offset) != 1) {
     413           0 :                                 TRC_CRITICAL(GDK, "read failed\n");
     414           0 :                                 return LOG_EOF;
     415             :                         }
     416      123198 :                         if (cands) {
     417             :                                 /* This const range actually represents a segment of candidates corresponding to updated bat entries */
     418             : 
     419       28300 :                                 if (BATcount(*cands) == 0 || lg->flushing) {
     420             :                                         /* when flushing, we only need the offset and count of the last segment of inserts. */
     421       28300 :                                         assert((*cands)->ttype == TYPE_void);
     422       28300 :                                         BATtseqbase(*cands, (oid) offset);
     423       28300 :                                         BATsetcount(*cands, (BUN) nr);
     424           0 :                                 } else if (!lg->flushing) {
     425           0 :                                         assert(BATcount(*cands) > 0);
     426           0 :                                         BAT *dense = BATdense(0, (oid) offset, (BUN) nr);
     427           0 :                                         BAT *newcands = NULL;
     428           0 :                                         if (!dense) {
     429           0 :                                                 TRC_CRITICAL(GDK, "creating bat failed\n");
     430           0 :                                                 res = LOG_ERR;
     431           0 :                                         } else if ((*cands)->ttype == TYPE_void) {
     432           0 :                                                 if ((newcands = BATmergecand(*cands, dense))) {
     433           0 :                                                         BBPreclaim(*cands);
     434           0 :                                                         *cands = newcands;
     435             :                                                 } else {
     436           0 :                                                         TRC_CRITICAL(GDK, "creating bat failed\n");
     437           0 :                                                         res = LOG_ERR;
     438             :                                                 }
     439             :                                         } else {
     440           0 :                                                 assert((*cands)->ttype == TYPE_oid);
     441           0 :                                                 assert(BATcount(*cands) > 0);
     442           0 :                                                 if (BATappend(*cands, dense, NULL, true) != GDK_SUCCEED) {
     443           0 :                                                         TRC_CRITICAL(GDK, "appending to bat failed\n");
     444           0 :                                                         res = LOG_ERR;
     445             :                                                 }
     446             :                                         }
     447           0 :                                         BBPreclaim(dense);
     448             :                                 }
     449             : 
     450             :                                 /* We have to read the value to update the read cursor */
     451       28300 :                                 size_t tlen = lg->rbufsize;
     452       28300 :                                 void *t = rt(lg->rbuf, &tlen, lg->input_log, 1);
     453       28300 :                                 if (t == NULL) {
     454           0 :                                         TRC_CRITICAL(GDK, "read failed\n");
     455           0 :                                         res = LOG_EOF;
     456             :                                 }
     457       28300 :                                 return res;
     458             :                         }
     459             :                 }
     460             : 
     461      364083 :                 if (!lg->flushing) {
     462        1258 :                         r = COLnew(0, tpe, (BUN) nr, PERSISTENT);
     463        1258 :                         if (r == NULL) {
     464           0 :                                 if (uid)
     465           0 :                                         BBPreclaim(uid);
     466           0 :                                 return LOG_ERR;
     467             :                         }
     468             :                 }
     469             : 
     470      364083 :                 if (l->flag == LOG_UPDATE_CONST) {
     471       94898 :                         size_t tlen = lg->rbufsize;
     472       94898 :                         void *t = rt(lg->rbuf, &tlen, lg->input_log, 1);
     473       94898 :                         if (t == NULL) {
     474           0 :                                 TRC_CRITICAL(GDK, "read failed\n");
     475           0 :                                 res = LOG_EOF;
     476             :                         } else {
     477       94898 :                                 lg->rbuf = t;
     478       94898 :                                 lg->rbufsize = tlen;
     479       94898 :                                 if (r) {
     480        8108 :                                         for (BUN p = 0; p < (BUN) nr; p++) {
     481        7864 :                                                 if (BUNappend(r, t, true) != GDK_SUCCEED) {
     482           0 :                                                         TRC_CRITICAL(GDK, "append to bat failed\n");
     483           0 :                                                         res = LOG_ERR;
     484             :                                                 }
     485             :                                         }
     486             :                                 }
     487             :                         }
     488      269185 :                 } else if (l->flag == LOG_UPDATE_BULK) {
     489      269167 :                         if (mnstr_readLng(lg->input_log, &offset) != 1) {
     490           0 :                                 if (r)
     491           0 :                                         BBPreclaim(r);
     492           0 :                                 TRC_CRITICAL(GDK, "read failed\n");
     493           0 :                                 return LOG_EOF;
     494             :                         }
     495      269167 :                         if (tpe == TYPE_msk) {
     496           0 :                                 if (r) {
     497           0 :                                         if (mnstr_readIntArray(lg->input_log, Tloc(r, 0), (size_t) ((nr + 31) / 32)))
     498           0 :                                                 BATsetcount(r, (BUN) nr);
     499             :                                         else {
     500           0 :                                                 TRC_CRITICAL(GDK, "read failed\n");
     501           0 :                                                 res = LOG_EOF;
     502             :                                         }
     503             :                                 } else {
     504           0 :                                         size_t tlen = lg->rbufsize / sizeof(int);
     505           0 :                                         size_t cnt = 0, snr = (size_t) nr;
     506           0 :                                         snr = (snr + 31) / 32;
     507           0 :                                         assert(tlen);
     508           0 :                                         for (; res == LOG_OK && snr > 0; snr -= cnt) {
     509           0 :                                                 cnt = snr > tlen ? tlen : snr;
     510           0 :                                                 if (!mnstr_readIntArray(lg->input_log, lg->rbuf, cnt)) {
     511           0 :                                                         TRC_CRITICAL(GDK, "read failed\n");
     512           0 :                                                         res = LOG_EOF;
     513             :                                                 }
     514             :                                         }
     515             :                                 }
     516             :                         } else {
     517      269167 :                                 if (!ATOMvarsized(tpe)) {
     518      249496 :                                         size_t cnt = 0, snr = (size_t) nr;
     519      249496 :                                         size_t tlen = lg->rbufsize / ATOMsize(tpe), ntlen = lg->rbufsize;
     520      249496 :                                         assert(tlen);
     521             :                                         /* read in chunks of max
     522             :                                          * BUFSIZE/width rows */
     523      511661 :                                         for (; res == LOG_OK && snr > 0; snr -= cnt) {
     524      262165 :                                                 cnt = snr > tlen ? tlen : snr;
     525      262165 :                                                 void *t = rt(lg->rbuf, &ntlen, lg->input_log, cnt);
     526             : 
     527      262165 :                                                 if (t == NULL) {
     528             :                                                         res = LOG_EOF;
     529             :                                                         break;
     530             :                                                 }
     531      262165 :                                                 assert(t == lg->rbuf);
     532      262165 :                                                 if (r && BUNappendmulti(r, t, cnt, true) != GDK_SUCCEED) {
     533           0 :                                                         TRC_CRITICAL(GDK, "append to bat failed\n");
     534           0 :                                                         res = LOG_ERR;
     535             :                                                 }
     536             :                                         }
     537       19671 :                                 } else if (tpe == TYPE_str) {
     538             :                                         /* efficient string */
     539       19083 :                                         res = string_reader(lg, r, nr);
     540             :                                 } else {
     541        1218 :                                         for (; res == LOG_OK && nr > 0; nr--) {
     542         630 :                                                 size_t tlen = lg->rbufsize;
     543         630 :                                                 void *t = rt(lg->rbuf, &tlen, lg->input_log, 1);
     544             : 
     545         630 :                                                 if (t == NULL) {
     546             :                                                         /* see if failure was due to
     547             :                                                          * malloc or something less
     548             :                                                          * serious (in the current
     549             :                                                          * context) */
     550           0 :                                                         if (strstr(GDKerrbuf, "alloc") == NULL)
     551             :                                                                 res = LOG_EOF;
     552             :                                                         else
     553           0 :                                                                 res = LOG_ERR;
     554           0 :                                                         TRC_CRITICAL(GDK, "read failed\n");
     555             :                                                 } else {
     556         630 :                                                         lg->rbuf = t;
     557         630 :                                                         lg->rbufsize = tlen;
     558         630 :                                                         if (r && BUNappend(r, t, true) != GDK_SUCCEED) {
     559           0 :                                                                 TRC_CRITICAL(GDK, "append to bat failed\n");
     560           0 :                                                                 res = LOG_ERR;
     561             :                                                         }
     562             :                                                 }
     563             :                                         }
     564             :                                 }
     565             :                         }
     566             :                 } else {
     567          18 :                         void *(*rh)(ptr, size_t *, stream *, size_t) = BATatoms[TYPE_oid].atomRead;
     568          18 :                         void *hv = ATOMnil(TYPE_oid);
     569          18 :                         offset = 0;
     570             : 
     571          18 :                         if (hv == NULL) {
     572           0 :                                 TRC_CRITICAL(GDK, "read failed\n");
     573           0 :                                 res = LOG_EOF;
     574             :                         }
     575        1071 :                         for (; res == LOG_OK && nr > 0; nr--) {
     576        1053 :                                 size_t hlen = sizeof(oid);
     577        1053 :                                 void *h = rh(hv, &hlen, lg->input_log, 1);
     578        1053 :                                 assert(hlen == sizeof(oid));
     579        1053 :                                 assert(h == hv);
     580        1053 :                                 if ((uid && BUNappend(uid, h, true) != GDK_SUCCEED)) {
     581           0 :                                         TRC_CRITICAL(GDK, "append to bat failed\n");
     582           0 :                                         res = LOG_ERR;
     583             :                                 }
     584             :                         }
     585          18 :                         nr = pnr;
     586          18 :                         if (tpe == TYPE_msk) {
     587           0 :                                 if (r) {
     588           0 :                                         if (mnstr_readIntArray(lg->input_log, Tloc(r, 0), (size_t) ((nr + 31) / 32)))
     589           0 :                                                 BATsetcount(r, (BUN) nr);
     590             :                                         else {
     591           0 :                                                 TRC_CRITICAL(GDK, "read failed\n");
     592           0 :                                                 res = LOG_EOF;
     593             :                                         }
     594             :                                 } else {
     595           0 :                                         for (lng i = 0; i < nr; i += 32) {
     596           0 :                                                 int v;
     597           0 :                                                 switch (mnstr_readInt(lg->input_log, &v)) {
     598           0 :                                                 case 1:
     599           0 :                                                         continue;
     600             :                                                 case 0:
     601             :                                                         res = LOG_EOF;
     602             :                                                         break;
     603             :                                                 default:
     604             :                                                         res = LOG_ERR;
     605             :                                                         break;
     606             :                                                 }
     607           0 :                                                 TRC_CRITICAL(GDK, "read failed\n");
     608           0 :                                                 break;
     609             :                                         }
     610             :                                 }
     611          18 :                         } else if (tpe == TYPE_str) {
     612             :                                 /* efficient string */
     613           6 :                                 res = string_reader(lg, r, nr);
     614             :                         } else {
     615          58 :                                 for (; res == LOG_OK && nr > 0; nr--) {
     616          46 :                                         size_t tlen = lg->rbufsize;
     617          46 :                                         void *t = rt(lg->rbuf, &tlen, lg->input_log, 1);
     618             : 
     619          46 :                                         if (t == NULL) {
     620           0 :                                                 if (strstr(GDKerrbuf, "malloc") == NULL)
     621             :                                                         res = LOG_EOF;
     622             :                                                 else
     623           0 :                                                         res = LOG_ERR;
     624           0 :                                                 TRC_CRITICAL(GDK, "read failed\n");
     625             :                                         } else {
     626          46 :                                                 lg->rbuf = t;
     627          46 :                                                 lg->rbufsize = tlen;
     628          46 :                                                 if ((r && BUNappend(r, t, true) != GDK_SUCCEED)) {
     629           0 :                                                         TRC_CRITICAL(GDK, "append to bat failed\n");
     630           0 :                                                         res = LOG_ERR;
     631             :                                                 }
     632             :                                         }
     633             :                                 }
     634             :                         }
     635          18 :                         GDKfree(hv);
     636             :                 }
     637             : 
     638      364083 :                 if (res == LOG_OK) {
     639      364083 :                         if (tr_grow(tr) == GDK_SUCCEED) {
     640      364083 :                                 tr->changes[tr->nr].type = l->flag;
     641      364083 :                                 if (l->flag == LOG_UPDATE_BULK && offset == -1) {
     642      139365 :                                         assert(cands);  /* bat r is part of a group of bats logged together. */
     643      139365 :                                         struct canditer ci;
     644      139365 :                                         canditer_init(&ci, NULL, *cands);
     645      139365 :                                         const oid first = canditer_peek(&ci);
     646      139365 :                                         const oid last = canditer_last(&ci);
     647      139365 :                                         offset = (lng) first;
     648      139365 :                                         pnr = (lng) (last - first) + 1;
     649      139365 :                                         if (!lg->flushing) {
     650         911 :                                                 assert(uid == NULL);
     651         911 :                                                 uid = *cands;
     652         911 :                                                 BBPfix((*cands)->batCacheid);
     653         911 :                                                 tr->changes[tr->nr].type = LOG_UPDATE;
     654             :                                         }
     655             :                                 }
     656      364083 :                                 if (l->flag == LOG_UPDATE_CONST) {
     657       94898 :                                         assert(!cands); /* TODO: This might change in the future. */
     658       94898 :                                         tr->changes[tr->nr].type = LOG_UPDATE_BULK;
     659             :                                 }
     660      364083 :                                 tr->changes[tr->nr].nr = pnr;
     661      364083 :                                 tr->changes[tr->nr].tt = tpe;
     662      364083 :                                 tr->changes[tr->nr].cid = id;
     663      364083 :                                 tr->changes[tr->nr].offset = offset;
     664      364083 :                                 tr->changes[tr->nr].b = r;
     665      364083 :                                 tr->changes[tr->nr].uid = uid;
     666      364083 :                                 tr->nr++;
     667             :                         } else {
     668           0 :                                 TRC_CRITICAL(GDK, "memory allocation failed\n");
     669           0 :                                 res = LOG_ERR;
     670             :                         }
     671             :                 }
     672      364083 :                 if (res != LOG_OK) {
     673           0 :                         if (r)
     674           0 :                                 BBPreclaim(r);
     675           0 :                         if (cands && uid)
     676           0 :                                 BBPunfix((*cands)->batCacheid);
     677           0 :                         else if (uid)
     678           0 :                                 BBPreclaim(uid);
     679             :                 }
     680             :         } else {
     681             :                 /* bat missing ERROR or ignore ? currently error. */
     682           0 :                 TRC_CRITICAL(GDK, "unknown type\n");
     683           0 :                 res = LOG_ERR;
     684             :         }
     685             :         return res;
     686             : }
     687             : 
     688             : 
     689             : static gdk_return
     690      576800 : la_bat_update_count(logger *lg, log_id id, lng cnt, int tid)
     691             : {
     692      576800 :         BATiter cni = bat_iterator_nolock(lg->catalog_id);
     693             : 
     694      576800 :         if (BAThash(lg->catalog_id) == GDK_SUCCEED) {
     695      576800 :                 MT_rwlock_rdlock(&cni.b->thashlock);
     696      576800 :                 BUN p, cp = BUN_NONE;
     697             : 
     698     3950206 :                 HASHloop_int(cni, cni.b->thash, p, &id) {
     699     3151064 :                         lng lid = *(lng *) Tloc(lg->catalog_lid, p);
     700             : 
     701     3151064 :                         if (lid != lng_nil && lid <= tid)
     702             :                                 break;
     703             :                         cp = p;
     704             :                 }
     705      576800 :                 if (cp != BUN_NONE) {
     706      576600 :                         lng ocnt = *(lng *) Tloc(lg->catalog_cnt, cp);
     707      576600 :                         assert(lg->catalog_cnt->hseqbase == 0);
     708      576600 :                         if (ocnt < cnt && BUNreplace(lg->catalog_cnt, cp, &cnt, false) != GDK_SUCCEED) {
     709           0 :                                 MT_rwlock_rdunlock(&cni.b->thashlock);
     710           0 :                                 return GDK_FAIL;
     711             :                         }
     712             :                 }
     713      576800 :                 MT_rwlock_rdunlock(&cni.b->thashlock);
     714      576800 :                 return GDK_SUCCEED;
     715             :         }
     716             :         return GDK_FAIL;
     717             : }
     718             : 
     719             : static gdk_return
     720      364083 : la_bat_updates(logger *lg, logaction *la, int tid)
     721             : {
     722      364083 :         log_bid bid = internal_find_bat(lg, la->cid, tid);
     723      364083 :         BAT *b = NULL;
     724             : 
     725      364083 :         if (bid < 0)
     726             :                 return GDK_FAIL;
     727      364083 :         if (!bid) {
     728             :                 /* object already gone, nothing needed */
     729             :                 return GDK_SUCCEED;
     730             :         }
     731             : 
     732      364080 :         if (!lg->flushing) {
     733        1258 :                 b = BATdescriptor(bid);
     734        1258 :                 if (b == NULL)
     735             :                         return GDK_FAIL;
     736             :         }
     737      364080 :         BUN cnt = 0;
     738      364080 :         if (la->type == LOG_UPDATE_BULK) {
     739      363151 :                 if (!lg->flushing) {
     740         347 :                         cnt = BATcount(b);
     741         347 :                         int is_msk = (b->ttype == TYPE_msk);
     742             :                         /* handle offset 0 ie clear */
     743         347 :                         if ( /* DISABLES CODE */ (0) && la->offset == 0 && cnt)
     744             :                                 BATclear(b, true);
     745             :                         /* handle offset */
     746         347 :                         if (cnt <= (BUN) la->offset) {
     747         222 :                                 msk t = 1;
     748         222 :                                 if (cnt < (BUN) la->offset) {     /* insert nils */
     749           0 :                                         const void *tv = (is_msk) ? &t : ATOMnilptr(b->ttype);
     750           0 :                                         lng i, d = la->offset - BATcount(b);
     751           0 :                                         for (i = 0; i < d; i++) {
     752           0 :                                                 if (BUNappend(b, tv, true) != GDK_SUCCEED) {
     753           0 :                                                         logbat_destroy(b);
     754           0 :                                                         return GDK_FAIL;
     755             :                                                 }
     756             :                                         }
     757             :                                 }
     758         222 :                                 if (BATcount(b) == (BUN) la->offset && BATappend(b, la->b, NULL, true) != GDK_SUCCEED) {
     759           0 :                                         logbat_destroy(b);
     760           0 :                                         return GDK_FAIL;
     761             :                                 }
     762             :                         } else {
     763         125 :                                 BATiter vi = bat_iterator(la->b);
     764         125 :                                 BUN p, q;
     765             : 
     766        2159 :                                 for (p = 0, q = (BUN) la->offset; p < (BUN) la->nr; p++, q++) {
     767        2153 :                                         const void *t = BUNtail(vi, p);
     768             : 
     769        2034 :                                         if (q < cnt) {
     770        2033 :                                                 if (b->tnosorted == q)
     771           7 :                                                         b->tnosorted = 0;
     772        2033 :                                                 if (b->tnorevsorted == q)
     773           7 :                                                         b->tnorevsorted = 0;
     774        2033 :                                                 if (b->tnokey[0] == q ||
     775        2026 :                                                     b->tnokey[1] == q) {
     776           7 :                                                         b->tnokey[0] = 0;
     777           7 :                                                         b->tnokey[1] = 0;
     778             :                                                 }
     779        2033 :                                                 b->tkey = false;
     780        2033 :                                                 b->tsorted = false;
     781        2033 :                                                 b->tkey = false;
     782        2033 :                                                 if (BUNreplace(b, q, t, true) != GDK_SUCCEED) {
     783           0 :                                                         logbat_destroy(b);
     784           0 :                                                         bat_iterator_end(&vi);
     785           0 :                                                         return GDK_FAIL;
     786             :                                                 }
     787             :                                         } else {
     788           1 :                                                 if (BUNappend(b, t, true) != GDK_SUCCEED) {
     789           0 :                                                         logbat_destroy(b);
     790           0 :                                                         bat_iterator_end(&vi);
     791           0 :                                                         return GDK_FAIL;
     792             :                                                 }
     793             :                                         }
     794             :                                 }
     795         125 :                                 bat_iterator_end(&vi);
     796             :                         }
     797             :                 }
     798         929 :         } else if (la->type == LOG_UPDATE) {
     799         929 :                 if (!lg->flushing && BATupdate(b, la->uid, la->b, true) != GDK_SUCCEED) {
     800             :                         return GDK_FAIL;
     801             :                 }
     802             :         }
     803      364080 :         cnt = (BUN) (la->offset + la->nr);
     804      364080 :         if (la_bat_update_count(lg, la->cid, cnt, tid) != GDK_SUCCEED) {
     805           0 :                 if (b)
     806           0 :                         logbat_destroy(b);
     807           0 :                 return GDK_FAIL;
     808             :         }
     809      364080 :         if (b)
     810        1258 :                 logbat_destroy(b);
     811             :         return GDK_SUCCEED;
     812             : }
     813             : 
     814             : static log_return
     815        9325 : log_read_destroy(logger *lg, trans *tr, log_id id)
     816             : {
     817        9325 :         (void) lg;
     818        9325 :         assert(!lg->inmemory);
     819        9325 :         if (tr_grow(tr) == GDK_SUCCEED) {
     820        9325 :                 tr->changes[tr->nr].type = LOG_DESTROY;
     821        9325 :                 tr->changes[tr->nr].cid = id;
     822        9325 :                 tr->nr++;
     823        9325 :                 return LOG_OK;
     824             :         }
     825           0 :         TRC_CRITICAL(GDK, "memory allocation failed\n");
     826           0 :         return LOG_ERR;
     827             : }
     828             : 
     829             : static gdk_return
     830          40 : la_bat_destroy(logger *lg, logaction *la, int tid)
     831             : {
     832          40 :         log_bid bid = internal_find_bat(lg, la->cid, tid);
     833             : 
     834          40 :         if (bid < 0)
     835             :                 return GDK_FAIL;
     836          40 :         if (!bid) {
     837             : #ifndef NDEBUG
     838           0 :                 GDKwarning("failed to find bid for object %d\n", la->cid);
     839             : #endif
     840           0 :                 return GDK_SUCCEED;
     841             :         }
     842          40 :         if (bid && log_del_bat(lg, bid) != GDK_SUCCEED)
     843             :                 return GDK_FAIL;
     844             :         return GDK_SUCCEED;
     845             : }
     846             : 
     847             : static log_return
     848      158028 : log_read_create(logger *lg, trans *tr, log_id id)
     849             : {
     850      158028 :         bte tt;
     851      158028 :         int tpe;
     852             : 
     853      158028 :         assert(!lg->inmemory);
     854      158028 :         TRC_DEBUG(WAL, "create %d", id);
     855             : 
     856      158028 :         if (mnstr_read(lg->input_log, &tt, 1, 1) != 1) {
     857           0 :                 TRC_CRITICAL(GDK, "read failed\n");
     858           0 :                 return LOG_EOF;
     859             :         }
     860             : 
     861      158028 :         tpe = find_type_nr(lg, tt);
     862             :         /* read create */
     863      158028 :         if (tr_grow(tr) == GDK_SUCCEED) {
     864      158028 :                 tr->changes[tr->nr].type = LOG_CREATE;
     865      158028 :                 tr->changes[tr->nr].tt = tpe;
     866      158028 :                 tr->changes[tr->nr].cid = id;
     867      158028 :                 tr->nr++;
     868      158028 :                 return LOG_OK;
     869             :         }
     870           0 :         TRC_CRITICAL(GDK, "memory allocation failed\n");
     871           0 :         return LOG_ERR;
     872             : }
     873             : 
     874             : static gdk_return
     875         253 : la_bat_create(logger *lg, logaction *la, int tid)
     876             : {
     877         253 :         BAT *b;
     878             : 
     879             :         /* formerly head column type, should be void */
     880         253 :         if ((b = COLnew(0, la->tt, BATSIZE, PERSISTENT)) == NULL)
     881             :                 return GDK_FAIL;
     882             : 
     883         253 :         if (la->tt < 0)
     884           0 :                 BATtseqbase(b, 0);
     885             : 
     886         506 :         if ((b = BATsetaccess(b, BAT_READ)) == NULL ||
     887         253 :             log_add_bat(lg, b, la->cid, tid) != GDK_SUCCEED) {
     888           0 :                 logbat_destroy(b);
     889           0 :                 return GDK_FAIL;
     890             :         }
     891         253 :         logbat_destroy(b);
     892         253 :         return GDK_SUCCEED;
     893             : }
     894             : 
     895             : static gdk_return
     896         233 : log_write_new_types(logger *lg, FILE *fp)
     897             : {
     898         233 :         bte id = 0;
     899             : 
     900             :         /* write types and insert into bats */
     901         233 :         memset(lg->type_id, -1, sizeof(lg->type_id));
     902         233 :         memset(lg->type_nr, 255, sizeof(lg->type_nr));
     903             :         /* first the fixed sized types */
     904        7220 :         for (int i = 0; i < GDKatomcnt; i++) {
     905        6987 :                 if (ATOMvarsized(i))
     906        1862 :                         continue;
     907        5125 :                 lg->type_id[i] = id;
     908        5125 :                 lg->type_nr[id] = i;
     909        5125 :                 if (fprintf(fp, "%d,%s\n", id, BATatoms[i].name) < 0)
     910             :                         return GDK_FAIL;
     911        5125 :                 id++;
     912             :         }
     913             :         /* second the var sized types */
     914             :         id = -127;              /* start after nil */
     915        7220 :         for (int i = 0; i < GDKatomcnt; i++) {
     916        6987 :                 if (!ATOMvarsized(i))
     917        5125 :                         continue;
     918        1862 :                 lg->type_id[i] = id;
     919        1862 :                 lg->type_nr[256 + id] = i;
     920        1862 :                 if (fprintf(fp, "%d,%s\n", id, BATatoms[i].name) < 0)
     921             :                         return GDK_FAIL;
     922        1862 :                 id++;
     923             :         }
     924             :         return GDK_SUCCEED;
     925             : }
     926             : 
     927             : #define TR_SIZE         1024
     928             : 
     929             : static trans *
     930       56697 : tr_create(trans *tr, int tid)
     931             : {
     932       56697 :         trans *ntr = GDKmalloc(sizeof(trans));
     933             : 
     934       56697 :         if (ntr == NULL)
     935             :                 return NULL;
     936       56697 :         ntr->tid = tid;
     937       56697 :         ntr->sz = TR_SIZE;
     938       56697 :         ntr->nr = 0;
     939       56697 :         ntr->changes = GDKmalloc(sizeof(logaction) * TR_SIZE);
     940       56697 :         if (ntr->changes == NULL) {
     941           0 :                 GDKfree(ntr);
     942           0 :                 return NULL;
     943             :         }
     944       56697 :         ntr->tr = tr;
     945       56697 :         return ntr;
     946             : }
     947             : 
     948             : static gdk_return
     949      531436 : la_apply(logger *lg, logaction *c, int tid)
     950             : {
     951      531436 :         gdk_return ret = GDK_SUCCEED;
     952             : 
     953      531436 :         switch (c->type) {
     954      364083 :         case LOG_UPDATE_BULK:
     955             :         case LOG_UPDATE:
     956      364083 :                 ret = la_bat_updates(lg, c, tid);
     957      364083 :                 break;
     958      158028 :         case LOG_CREATE:
     959      158028 :                 if (!lg->flushing)
     960         253 :                         ret = la_bat_create(lg, c, tid);
     961             :                 break;
     962        9325 :         case LOG_DESTROY:
     963        9325 :                 if (!lg->flushing)
     964          40 :                         ret = la_bat_destroy(lg, c, tid);
     965             :                 break;
     966             :         default:
     967           0 :                 MT_UNREACHABLE();
     968             :         }
     969      531436 :         return ret;
     970             : }
     971             : 
     972             : static void
     973      531436 : la_destroy(logaction *c)
     974             : {
     975      531436 :         if ((c->type == LOG_UPDATE || c->type == LOG_UPDATE_BULK) && c->b)
     976        1258 :                 logbat_destroy(c->b);
     977      531436 :         if (c->type == LOG_UPDATE && c->uid)
     978         911 :                 logbat_destroy(c->uid);
     979      531436 : }
     980             : 
     981             : static gdk_return
     982      531436 : tr_grow(trans *tr)
     983             : {
     984      531436 :         if (tr->nr == tr->sz) {
     985           8 :                 logaction *changes;
     986           8 :                 tr->sz <<= 1;
     987           8 :                 changes = GDKrealloc(tr->changes, tr->sz * sizeof(logaction));
     988           8 :                 if (changes == NULL)
     989             :                         return GDK_FAIL;
     990           8 :                 tr->changes = changes;
     991             :         }
     992             :         /* cleanup the next */
     993      531436 :         tr->changes[tr->nr].b = NULL;
     994      531436 :         return GDK_SUCCEED;
     995             : }
     996             : 
     997             : static trans *
     998       56697 : tr_destroy(trans *tr)
     999             : {
    1000       56697 :         trans *r = tr->tr;
    1001             : 
    1002       56697 :         GDKfree(tr->changes);
    1003       56697 :         GDKfree(tr);
    1004       56697 :         return r;
    1005             : }
    1006             : 
    1007             : static trans *
    1008           0 : tr_abort_(logger *lg, trans *tr, int s)
    1009             : {
    1010           0 :         int i;
    1011             : 
    1012           0 :         (void) lg;
    1013             : 
    1014           0 :         TRC_DEBUG(WAL, "abort");
    1015             : 
    1016           0 :         for (i = s; i < tr->nr; i++)
    1017           0 :                 la_destroy(&tr->changes[i]);
    1018           0 :         return tr_destroy(tr);
    1019             : }
    1020             : 
    1021             : static trans *
    1022           0 : tr_abort(logger *lg, trans *tr)
    1023             : {
    1024           0 :         return tr_abort_(lg, tr, 0);
    1025             : }
    1026             : 
    1027             : static trans *
    1028       56697 : tr_commit(logger *lg, trans *tr)
    1029             : {
    1030       56697 :         int i;
    1031             : 
    1032       56697 :         TRC_DEBUG(WAL, "commit");
    1033             : 
    1034      588133 :         for (i = 0; i < tr->nr; i++) {
    1035      531436 :                 if (la_apply(lg, &tr->changes[i], tr->tid) != GDK_SUCCEED) {
    1036           0 :                         TRC_CRITICAL(GDK, "aborting transaction\n");
    1037           0 :                         do {
    1038           0 :                                 tr = tr_abort_(lg, tr, i);
    1039           0 :                         } while (tr != NULL);
    1040             :                         return (trans *) -1;
    1041             :                 }
    1042      531436 :                 la_destroy(&tr->changes[i]);
    1043             :         }
    1044       56697 :         lg->saved_tid = tr->tid;
    1045       56697 :         return tr_destroy(tr);
    1046             : }
    1047             : 
    1048             : static gdk_return
    1049         102 : log_read_types_file(logger *lg, FILE *fp, int version)
    1050             : {
    1051         102 :         int id = 0;
    1052         102 :         char atom_name[IDLENGTH];
    1053         102 :         bool seen_geom = false;
    1054             : 
    1055             :         /* scanf should use IDLENGTH somehow */
    1056        3128 :         while (fscanf(fp, "%d,%63s\n", &id, atom_name) == 2) {
    1057        3026 :                 if (version < 52303 && strcmp(atom_name, "BAT") == 0)
    1058           8 :                         continue;
    1059        3018 :                 int i = ATOMindex(atom_name);
    1060             : 
    1061        3018 :                 if (id < -127 || id > 127 || i < 0) {
    1062           0 :                         GDKerror("unknown type in log file '%s'\n", atom_name);
    1063           0 :                         return GDK_FAIL;
    1064             :                 }
    1065        3018 :                 seen_geom |= strcmp(atom_name, "mbr") == 0 || strcmp(atom_name, "wkb") == 0;
    1066        3018 :                 lg->type_id[i] = (int8_t) id;
    1067        3018 :                 lg->type_nr[id < 0 ? 256 + id : id] = i;
    1068             :         }
    1069             : #ifdef HAVE_GEOM
    1070         102 :         if (!seen_geom && ATOMindex("mbr") > 0) {
    1071           0 :                 GDKerror("incompatible database: server supports GEOM, but database does not\n");
    1072           0 :                 return GDK_FAIL;
    1073             :         }
    1074             : #endif
    1075             :         (void) seen_geom;
    1076             :         return GDK_SUCCEED;
    1077             : }
    1078             : 
    1079             : 
    1080             : gdk_return
    1081         233 : log_create_types_file(logger *lg, const char *filename)
    1082             : {
    1083         233 :         FILE *fp;
    1084             : 
    1085         233 :         if ((fp = MT_fopen(filename, "w")) == NULL) {
    1086           0 :                 GDKerror("cannot create log file %s\n", filename);
    1087           0 :                 return GDK_FAIL;
    1088             :         }
    1089         233 :         if (fprintf(fp, "%06d\n\n", lg->version) < 0) {
    1090           0 :                 fclose(fp);
    1091           0 :                 GDKerror("writing log file %s failed", filename);
    1092           0 :                 if (MT_remove(filename) < 0)
    1093           0 :                         GDKsyserror("remove %s failed\n", filename);
    1094           0 :                 return GDK_FAIL;
    1095             :         }
    1096             : 
    1097         233 :         if (log_write_new_types(lg, fp) != GDK_SUCCEED) {
    1098           0 :                 fclose(fp);
    1099           0 :                 GDKerror("writing log file %s failed", filename);
    1100           0 :                 if (MT_remove(filename) < 0)
    1101           0 :                         GDKsyserror("remove %s failed\n", filename);
    1102           0 :                 return GDK_FAIL;
    1103             :         }
    1104         233 :         if (fflush(fp) < 0 || (!(ATOMIC_GET(&GDKdebug) & NOSYNCMASK)
    1105             : #if defined(_MSC_VER)
    1106             :                                && _commit(_fileno(fp)) < 0
    1107             : #elif defined(HAVE_FDATASYNC)
    1108           0 :                                && fdatasync(fileno(fp)) < 0
    1109             : #elif defined(HAVE_FSYNC)
    1110             :                                && fsync(fileno(fp)) < 0
    1111             : #endif
    1112             :             )) {
    1113           0 :                 GDKsyserror("flushing log file %s failed", filename);
    1114           0 :                 fclose(fp);
    1115           0 :                 if (MT_remove(filename) < 0)
    1116           0 :                         GDKsyserror("remove %s failed\n", filename);
    1117           0 :                 return GDK_FAIL;
    1118             :         }
    1119         233 :         if (fclose(fp) < 0) {
    1120           0 :                 GDKsyserror("closing log file %s failed", filename);
    1121           0 :                 if (MT_remove(filename) < 0)
    1122           0 :                         GDKsyserror("remove %s failed\n", filename);
    1123           0 :                 return GDK_FAIL;
    1124             :         }
    1125             :         return GDK_SUCCEED;
    1126             : }
    1127             : 
    1128             : #define rotation_lock(lg)       MT_lock_set(&(lg)->rotation_lock)
    1129             : #define rotation_unlock(lg)     MT_lock_unset(&(lg)->rotation_lock)
    1130             : #define rotation_trylock(lg, ms) MT_lock_trytime(&(lg)->rotation_lock, ms)
    1131             : 
    1132             : static gdk_return
    1133       12479 : log_open_output(logger *lg)
    1134             : {
    1135       12479 :         logged_range *new_range = (logged_range *) GDKmalloc(sizeof(logged_range));
    1136             : 
    1137       12479 :         if (!new_range) {
    1138           0 :                 TRC_CRITICAL(GDK, "allocation failure\n");
    1139           0 :                 return GDK_FAIL;
    1140             :         }
    1141       24957 :         if (!LOG_DISABLED(lg)) {
    1142       12478 :                 char id[32];
    1143       12478 :                 char *filename;
    1144             : 
    1145       12478 :                 if (snprintf(id, sizeof(id), LLFMT, lg->id) >= (int) sizeof(id)) {
    1146           0 :                         TRC_CRITICAL(GDK, "filename is too large\n");
    1147           0 :                         GDKfree(new_range);
    1148           0 :                         return GDK_FAIL;
    1149             :                 }
    1150       12478 :                 if ((filename = GDKfilepath(BBPselectfarm(PERSISTENT, 0, offheap), lg->dir, LOGFILE, id)) == NULL) {
    1151           0 :                         TRC_CRITICAL(GDK, "allocation failure\n");
    1152           0 :                         GDKfree(new_range);
    1153           0 :                         return GDK_FAIL;
    1154             :                 }
    1155             : 
    1156       12478 :                 TRC_INFO(WAL, "opening %s.%s", LOGFILE, id);
    1157       12478 :                 new_range->output_log = open_wstream(filename);
    1158       12478 :                 if (new_range->output_log) {
    1159       12478 :                         short byteorder = 1234;
    1160       12478 :                         mnstr_write(new_range->output_log, &byteorder, sizeof(byteorder), 1);
    1161             :                 }
    1162             : 
    1163       12478 :                 if (new_range->output_log == NULL || mnstr_errnr(new_range->output_log) != MNSTR_NO__ERROR) {
    1164           0 :                         TRC_CRITICAL(GDK, "creating %s failed: %s\n", filename, mnstr_peek_error(NULL));
    1165           0 :                         close_stream(new_range->output_log);
    1166           0 :                         GDKfree(new_range);
    1167           0 :                         GDKfree(filename);
    1168           0 :                         return GDK_FAIL;
    1169             :                 }
    1170       12478 :                 GDKfree(filename);
    1171             :         } else {
    1172           1 :                 new_range->output_log = NULL;
    1173             :         }
    1174       12479 :         ATOMIC_INIT(&new_range->refcount, 1);
    1175       12479 :         ATOMIC_INIT(&new_range->last_ts, 0);
    1176       12479 :         ATOMIC_INIT(&new_range->flushed_ts, 0);
    1177       12479 :         ATOMIC_INIT(&new_range->drops, 0);
    1178       12479 :         new_range->id = lg->id;
    1179       12479 :         new_range->next = NULL;
    1180       12479 :         logged_range *current = lg->current;
    1181       12479 :         assert(current && current->next == NULL);
    1182       12479 :         new_range->cnt = current->cnt;
    1183       12479 :         current->next = new_range;
    1184       12479 :         lg->file_age = GDKusec();
    1185       12479 :         return GDK_SUCCEED;
    1186             : }
    1187             : 
    1188             : static inline void
    1189       12664 : log_close_input(logger *lg)
    1190             : {
    1191       12664 :         if (!lg->inmemory && lg->input_log) {
    1192       12235 :                 TRC_INFO(WAL, "closing input log %s", mnstr_name(lg->input_log));
    1193       12235 :                 close_stream(lg->input_log);
    1194             :         }
    1195       12664 :         lg->input_log = NULL;
    1196       12664 : }
    1197             : 
    1198             : static inline void
    1199         327 : log_close_output(logger *lg)
    1200             : {
    1201         327 :         if (!LOG_DISABLED(lg) && lg->current->output_log) {
    1202         326 :                 TRC_INFO(WAL, "closing output log %s", mnstr_name(lg->current->output_log));
    1203         326 :                 close_stream(lg->current->output_log);
    1204             :         }
    1205         327 :         lg->current->output_log = NULL;
    1206         327 : }
    1207             : 
    1208             : static gdk_return
    1209       12337 : log_open_input(logger *lg, const char *filename, bool *filemissing)
    1210             : {
    1211       12337 :         TRC_INFO(WAL, "opening input log %s", filename);
    1212       12337 :         lg->input_log = open_rstream(filename);
    1213             : 
    1214             :         /* if the file doesn't exist, there is nothing to be read back */
    1215       12337 :         if (lg->input_log == NULL || mnstr_errnr(lg->input_log) != MNSTR_NO__ERROR) {
    1216         102 :                 log_close_input(lg);
    1217         102 :                 *filemissing = true;
    1218         102 :                 return GDK_SUCCEED;
    1219             :         }
    1220       12235 :         short byteorder;
    1221       12235 :         switch (mnstr_read(lg->input_log, &byteorder, sizeof(byteorder), 1)) {
    1222           0 :         case -1:
    1223           0 :                 log_close_input(lg);
    1224           0 :                 TRC_CRITICAL(GDK, "read failed\n");
    1225           0 :                 return GDK_FAIL;
    1226           5 :         case 0:
    1227             :                 /* empty file is ok */
    1228           5 :                 log_close_input(lg);
    1229           5 :                 return GDK_SUCCEED;
    1230       12230 :         case 1:
    1231             :                 /* if not empty, must start with correct byte order mark */
    1232       12230 :                 if (byteorder != 1234) {
    1233           0 :                         TRC_CRITICAL(GDK, "incorrect byte order word in file %s\n", filename);
    1234           0 :                         log_close_input(lg);
    1235           0 :                         return GDK_FAIL;
    1236             :                 }
    1237             :                 break;
    1238             :         }
    1239             :         return GDK_SUCCEED;
    1240             : }
    1241             : 
    1242             : static log_return
    1243       12230 : log_read_transaction(logger *lg, uint32_t *updated, BUN maxupdated)
    1244             : {
    1245       12230 :         logformat l;
    1246       12230 :         trans *tr = NULL;
    1247       12230 :         log_return err = LOG_OK;
    1248       12230 :         bool ok = true;
    1249       12230 :         ATOMIC_BASE_TYPE dbg = ATOMIC_GET(&GDKdebug);
    1250             : 
    1251       12230 :         (void) maxupdated;      /* only used inside assert() */
    1252             : 
    1253       12230 :         if (!lg->flushing)
    1254         171 :                 ATOMIC_AND(&GDKdebug, ~CHECKMASK);
    1255             : 
    1256       12230 :         BAT *cands = NULL;      /* used in case of LOG_BAT_GROUP */
    1257             : 
    1258      763260 :         while (err == LOG_OK && (ok = log_read_format(lg, &l))) {
    1259      751030 :                 if (l.flag == 0 && l.id == 0) {
    1260       12230 :                         err = LOG_EOF;
    1261             :                         break;
    1262             :                 }
    1263             : 
    1264      751030 :                 TRC_DEBUG_IF(WAL) {
    1265           0 :                         if (l.flag > 0 && l.flag != LOG_CLEAR &&
    1266             :                             l.flag < (bte) (sizeof(log_commands) / sizeof(log_commands[0])))
    1267           0 :                                 TRC_DEBUG_ENDIF(WAL, "%s %d", log_commands[(int) l.flag], l.id);
    1268             :                         else
    1269           0 :                                 TRC_DEBUG_ENDIF(WAL, "%d %d", l.flag, l.id);
    1270             :                 }
    1271      751030 :                 switch (l.flag) {
    1272      559736 :                 case LOG_UPDATE_CONST:
    1273             :                 case LOG_UPDATE_BULK:
    1274             :                 case LOG_UPDATE:
    1275             :                 case LOG_CREATE:
    1276             :                 case LOG_DESTROY:
    1277      559736 :                         if (tr != NULL && updated && BAThash(lg->catalog_id) == GDK_SUCCEED) {
    1278      558028 :                                 BATiter cni = bat_iterator(lg->catalog_id);
    1279      558028 :                                 BUN p;
    1280      558028 :                                 BUN posnew = BUN_NONE;
    1281      558028 :                                 BUN posold = BUN_NONE;
    1282      558028 :                                 MT_rwlock_rdlock(&cni.b->thashlock);
    1283    11350493 :                                 HASHloop_int(cni, cni.b->thash, p, &l.id) {
    1284    10442791 :                                         lng lid = *(lng *) Tloc(lg->catalog_lid, p);
    1285    10442791 :                                         if (lid == lng_nil || lid > tr->tid)
    1286             :                                                 posnew = p;
    1287     5056137 :                                         else if (lid == tr->tid)
    1288    10743562 :                                                 posold = p;
    1289             :                                 }
    1290      558028 :                                 MT_rwlock_rdunlock(&cni.b->thashlock);
    1291      558028 :                                 bat_iterator_end(&cni);
    1292             :                                 /* Normally at this point, posnew is the
    1293             :                                  * location of the bat that this
    1294             :                                  * transaction is working on, and posold
    1295             :                                  * is the location of the previous
    1296             :                                  * version of the bat.  If LOG_CREATE,
    1297             :                                  * both are relevant, since the latter
    1298             :                                  * is the new bat, and the former is the
    1299             :                                  * to-be-destroyed bat.  For
    1300             :                                  * LOG_DESTROY, only posnew should be
    1301             :                                  * relevant, but for the other types, if
    1302             :                                  * the table is destroyed later in the
    1303             :                                  * same transaction, we need posold, and
    1304             :                                  * else (the normal case) we need
    1305             :                                  * posnew. */
    1306      558028 :                                 if (posnew != BUN_NONE) {
    1307      548739 :                                         assert(posnew < maxupdated);
    1308      548739 :                                         updated[posnew / 32] |= 1U << (posnew % 32);
    1309             :                                 }
    1310      558028 :                                 if ((l.flag == LOG_CREATE || posnew == BUN_NONE) && posold != BUN_NONE) {
    1311      163217 :                                         assert(posold < maxupdated);
    1312      163217 :                                         updated[posold / 32] |= 1U << (posold % 32);
    1313             :                                 }
    1314             :                         }
    1315             :                         break;
    1316             :                 default:
    1317             :                         /* do nothing */
    1318             :                         break;
    1319             :                 }
    1320             :                 /* the functions we call here can succeed (LOG_OK),
    1321             :                  * but they can also fail for two different reasons:
    1322             :                  * they can run out of input (LOG_EOF -- this is not
    1323             :                  * serious, we just abort the remaining transactions),
    1324             :                  * or some malloc or BAT update fails (LOG_ERR -- this
    1325             :                  * is serious, we must abort the complete process);
    1326             :                  * the latter failure causes the current function to
    1327             :                  * return GDK_FAIL */
    1328      751030 :                 switch (l.flag) {
    1329       56697 :                 case LOG_START:
    1330       56697 :                         assert(!lg->flushing || l.id <= lg->tid);
    1331       56697 :                         if (!lg->flushing && l.id > lg->tid)
    1332         109 :                                 lg->tid = l.id;      /* should only happen during initialization */
    1333       56697 :                         if ((tr = tr_create(tr, l.id)) == NULL) {
    1334           0 :                                 TRC_CRITICAL(GDK, "memory allocation failed\n");
    1335           0 :                                 err = LOG_ERR;
    1336           0 :                                 break;
    1337             :                         }
    1338       56697 :                         TRC_DEBUG(WAL, "tstart %d\n", tr->tid);
    1339             :                         break;
    1340       56697 :                 case LOG_END:
    1341       56697 :                         if (tr == NULL)
    1342             :                                 err = LOG_EOF;
    1343       56697 :                         else if (tr->tid != l.id)    /* abort record */
    1344           0 :                                 tr = tr_abort(lg, tr);
    1345             :                         else
    1346       56697 :                                 tr = tr_commit(lg, tr);
    1347             :                         break;
    1348        2766 :                 case LOG_SEQ:
    1349        2766 :                         err = log_read_seq(lg, &l);
    1350        2766 :                         break;
    1351      392383 :                 case LOG_UPDATE_CONST:
    1352             :                 case LOG_UPDATE_BULK:
    1353             :                 case LOG_UPDATE:
    1354      392383 :                         if (tr == NULL)
    1355             :                                 err = LOG_EOF;
    1356             :                         else {
    1357      617086 :                                 err = log_read_updates(lg, tr, &l, l.id, cands ? &cands : NULL);
    1358             :                         }
    1359             :                         break;
    1360      158028 :                 case LOG_CREATE:
    1361      158028 :                         if (tr == NULL)
    1362             :                                 err = LOG_EOF;
    1363             :                         else
    1364      158028 :                                 err = log_read_create(lg, tr, l.id);
    1365             :                         break;
    1366        9325 :                 case LOG_DESTROY:
    1367        9325 :                         if (tr == NULL)
    1368             :                                 err = LOG_EOF;
    1369             :                         else
    1370        9325 :                                 err = log_read_destroy(lg, tr, l.id);
    1371             :                         break;
    1372       75134 :                 case LOG_BAT_GROUP:
    1373       75134 :                         if (tr == NULL)
    1374             :                                 err = LOG_EOF;
    1375             :                         else {
    1376       75134 :                                 if (l.id > 0) {
    1377             :                                         /* START OF LOG_BAT_GROUP */
    1378       37567 :                                         cands = COLnew(0, TYPE_void, 0, SYSTRANS);
    1379       37567 :                                         if (!cands) {
    1380           0 :                                                 TRC_CRITICAL(GDK, "creating bat failed\n");
    1381           0 :                                                 err = LOG_ERR;
    1382             :                                         }
    1383       37567 :                                 } else if (cands == NULL) {
    1384             :                                         /* should have gone through the
    1385             :                                          * above option earlier */
    1386           0 :                                         TRC_CRITICAL(GDK, "unexpected error\n");
    1387           0 :                                         err = LOG_ERR;
    1388             :                                 } else {
    1389             :                                         /* END OF LOG_BAT_GROUP */
    1390       37567 :                                         BBPunfix(cands->batCacheid);
    1391       37567 :                                         cands = NULL;
    1392             :                                 }
    1393             :                         }
    1394             :                         break;
    1395           0 :                 default:
    1396           0 :                         TRC_CRITICAL(GDK, "unrecognized log entry %d", l.flag);
    1397           0 :                         err = LOG_ERR;
    1398             :                 }
    1399      751030 :                 if (tr == (trans *) -1) {
    1400             :                         /* message already generated by tr_commit */
    1401             :                         err = LOG_ERR;
    1402       12230 :                         tr = NULL;
    1403             :                         break;
    1404             :                 }
    1405             :         }
    1406       12230 :         while (tr) {
    1407           0 :                 TRC_WARNING(GDK, "aborting transaction\n");
    1408           0 :                 tr = tr_abort(lg, tr);
    1409             :         }
    1410       12230 :         if (!lg->flushing)
    1411         171 :                 ATOMIC_SET(&GDKdebug, dbg);
    1412             : 
    1413       12230 :         BBPreclaim(cands);
    1414       12230 :         if (!ok)
    1415       12230 :                 return LOG_EOF;
    1416             :         return err;
    1417             : }
    1418             : 
    1419             : static gdk_return
    1420         278 : log_readlog(logger *lg, const char *filename, bool *filemissing)
    1421             : {
    1422         278 :         log_return err = LOG_OK;
    1423         278 :         time_t t0, t1;
    1424         278 :         struct stat sb;
    1425             : 
    1426         278 :         assert(!lg->inmemory);
    1427             : 
    1428         278 :         TRC_INFO(WAL, "opening %s\n", filename);
    1429             : 
    1430         278 :         gdk_return res = log_open_input(lg, filename, filemissing);
    1431         278 :         if (!lg->input_log || res != GDK_SUCCEED)
    1432             :                 return res;
    1433         171 :         int fd;
    1434         171 :         if ((fd = getFileNo(lg->input_log)) < 0 || fstat(fd, &sb) < 0) {
    1435           0 :                 GDKsyserror("fstat on opened file %s failed\n", filename);
    1436           0 :                 log_close_input(lg);
    1437             :                 /* If the file could be opened, but fstat fails,
    1438             :                  * something weird is going on */
    1439           0 :                 return GDK_FAIL;
    1440             :         }
    1441         171 :         t0 = time(NULL);
    1442         171 :         TRC_INFO_IF(WAL) {
    1443           0 :                 TRC_INFO_ENDIF(WAL, "Start reading the write-ahead log '%s'\n", filename);
    1444           0 :                 GDKtracer_flush_buffer();
    1445             :         }
    1446         342 :         while (err != LOG_EOF && err != LOG_ERR) {
    1447         171 :                 t1 = time(NULL);
    1448         171 :                 if (t1 - t0 > 10) {
    1449           0 :                         lng fpos;
    1450           0 :                         t0 = t1;
    1451             :                         /* not more than once every 10 seconds */
    1452           0 :                         fpos = (lng) getfilepos(getFile(lg->input_log));
    1453           0 :                         TRC_INFO_IF(WAL) {
    1454           0 :                                 if (fpos >= 0) {
    1455           0 :                                         TRC_INFO_ENDIF(WAL, "still reading write-ahead log \"%s\" (%d%% done)\n",
    1456             :                                                        filename, (int) ((fpos * 100 + 50) / sb.st_size));
    1457           0 :                                         GDKtracer_flush_buffer();
    1458             :                                 }
    1459             :                         }
    1460             :                 }
    1461         171 :                 err = log_read_transaction(lg, NULL, 0);
    1462             :         }
    1463         171 :         log_close_input(lg);
    1464         171 :         lg->input_log = NULL;
    1465             : 
    1466             :         /* remaining transactions are not committed, ie abort */
    1467         171 :         TRC_INFO_IF(WAL) {
    1468           0 :                 TRC_INFO_ENDIF(WAL, "Finished reading the write-ahead log '%s'\n", filename);
    1469           0 :                 GDKtracer_flush_buffer();
    1470             :         }
    1471             :         /* we cannot distinguish errors from incomplete transactions
    1472             :          * (even if we would log aborts in the logs). So we simply
    1473             :          * abort and move to the next log file */
    1474         171 :         return err == LOG_ERR ? GDK_FAIL : GDK_SUCCEED;
    1475             : }
    1476             : 
    1477             : /*
    1478             :  * The log files are incrementally numbered, starting from 2. They are
    1479             :  * processed in the same sequence.
    1480             :  */
    1481             : static gdk_return
    1482         102 : log_readlogs(logger *lg, const char *filename)
    1483             : {
    1484         102 :         gdk_return res = GDK_SUCCEED;
    1485             : 
    1486         102 :         assert(!lg->inmemory);
    1487         102 :         TRC_DEBUG(WAL, "logger id is " LLFMT " last logger id is " LLFMT "\n", lg->id, lg->saved_id);
    1488             : 
    1489         102 :         char log_filename[FILENAME_MAX];
    1490         102 :         if (lg->saved_id >= lg->id) {
    1491         102 :                 bool filemissing = false;
    1492             : 
    1493         102 :                 lg->id = lg->saved_id + 1;
    1494         380 :                 while (res == GDK_SUCCEED && !filemissing) {
    1495         278 :                         if (snprintf(log_filename, sizeof(log_filename), "%s." LLFMT, filename, lg->id) >= FILENAME_MAX) {
    1496           0 :                                 GDKerror("Logger filename path is too large\n");
    1497           0 :                                 return GDK_FAIL;
    1498             :                         }
    1499         278 :                         res = log_readlog(lg, log_filename, &filemissing);
    1500         278 :                         if (!filemissing) {
    1501         176 :                                 lg->saved_id++;
    1502         176 :                                 lg->id++;
    1503             :                         }
    1504             :                 }
    1505             :         }
    1506             :         return res;
    1507             : }
    1508             : 
    1509             : static gdk_return
    1510       11580 : log_commit(logger *lg, logged_range *pending, uint32_t *updated, BUN maxupdated)
    1511             : {
    1512       11580 :         TRC_DEBUG(WAL, "commit");
    1513             : 
    1514       11580 :         return bm_commit(lg, pending, updated, maxupdated);
    1515             : }
    1516             : 
    1517             : static gdk_return
    1518         102 : check_version(logger *lg, FILE *fp, bool *needsnew)
    1519             : {
    1520         102 :         int version = 0;
    1521             : 
    1522         102 :         assert(!lg->inmemory);
    1523         102 :         if (fscanf(fp, "%6d", &version) != 1) {
    1524           0 :                 GDKerror("Could not read the version number from the file '%s/log'.\n", lg->dir);
    1525           0 :                 fclose(fp);
    1526           0 :                 return GDK_FAIL;
    1527             :         }
    1528         102 :         if (version != lg->version) {
    1529          16 :                 if (lg->prefuncp == NULL ||
    1530           8 :                     (*lg->prefuncp) (lg->funcdata, version, lg->version) != GDK_SUCCEED) {
    1531           0 :                         GDKerror("Incompatible database version %06d, "
    1532             :                                  "this server supports version %06d.\n%s",
    1533             :                                  version, lg->version,
    1534             :                                  version < lg->version ? "Maybe you need to upgrade to an intermediate release first.\n" : "");
    1535           0 :                         fclose(fp);
    1536           0 :                         return GDK_FAIL;
    1537             :                 }
    1538           8 :                 *needsnew = true;       /* we need to write a new log file */
    1539             :         } else {
    1540          94 :                 lg->postfuncp = NULL;        /* don't call */
    1541          94 :                 *needsnew = false;      /* log file already up-to-date */
    1542             :         }
    1543         204 :         if (fgetc(fp) != '\n' ||        /* skip \n */
    1544         102 :             fgetc(fp) != '\n') {        /* skip \n */
    1545           0 :                 GDKerror("Badly formatted log file");
    1546           0 :                 fclose(fp);
    1547           0 :                 return GDK_FAIL;
    1548             :         }
    1549         102 :         if (log_read_types_file(lg, fp, version) != GDK_SUCCEED) {
    1550           0 :                 fclose(fp);
    1551           0 :                 return GDK_FAIL;
    1552             :         }
    1553         102 :         fclose(fp);
    1554         102 :         return GDK_SUCCEED;
    1555             : }
    1556             : 
    1557             : static BAT *
    1558         348 : bm_tids(BAT *b, BAT *d)
    1559             : {
    1560         348 :         BUN sz = BATcount(b);
    1561         348 :         BAT *tids = BATdense(0, 0, sz);
    1562             : 
    1563         348 :         if (tids == NULL)
    1564             :                 return NULL;
    1565             : 
    1566         348 :         if (BATcount(d)) {
    1567         348 :                 BAT *diff = BATdiff(tids, d, NULL, NULL, false, false, BUN_NONE);
    1568         348 :                 logbat_destroy(tids);
    1569         348 :                 tids = diff;
    1570             :         }
    1571             :         return tids;
    1572             : }
    1573             : 
    1574             : 
    1575             : static gdk_return
    1576        7041 : log_switch_bat(BAT *old, BAT *new, const char *fn, const char *name)
    1577             : {
    1578        7041 :         char bak[IDLENGTH];
    1579             : 
    1580        7041 :         if (BATmode(old, true) != GDK_SUCCEED) {
    1581           0 :                 GDKerror("cannot convert old %s to transient", name);
    1582           0 :                 return GDK_FAIL;
    1583             :         }
    1584        7041 :         if (strconcat_len(bak, sizeof(bak), fn, "_", name, NULL) >= sizeof(bak)) {
    1585           0 :                 GDKerror("name %s_%s too long\n", fn, name);
    1586           0 :                 return GDK_FAIL;
    1587             :         }
    1588        7041 :         if (BBPrename(old, NULL) != 0 || BBPrename(new, bak) != 0) {
    1589           0 :                 GDKerror("rename (%s) failed\n", bak);
    1590           0 :                 return GDK_FAIL;
    1591             :         }
    1592        7041 :         BBPretain(new->batCacheid);
    1593        7041 :         return GDK_SUCCEED;
    1594             : }
    1595             : 
    1596             : static gdk_return
    1597         328 : bm_get_counts(logger *lg)
    1598             : {
    1599         328 :         BUN p, q;
    1600         328 :         const log_bid *bids = (const log_bid *) Tloc(lg->catalog_bid, 0);
    1601             : 
    1602       26845 :         BATloop(lg->catalog_bid, p, q) {
    1603       26517 :                 oid pos = p;
    1604       26517 :                 lng cnt = 0;
    1605       26517 :                 lng lid = lng_nil;
    1606             : 
    1607       26517 :                 if (BUNfnd(lg->dcatalog, &pos) == BUN_NONE) {
    1608       26517 :                         BAT *b = BBPquickdesc(bids[p]);
    1609       26517 :                         assert(b);
    1610       26517 :                         cnt = BATcount(b);
    1611             :                 } else {
    1612           0 :                         lid = BBP_desc(bids[p])->batCacheid != 0 && log_find(lg->catalog_bid, lg->dcatalog, bids[p]) == BUN_NONE ? 1 : -1;
    1613             :                 }
    1614       26517 :                 if (BUNappend(lg->catalog_cnt, &cnt, false) != GDK_SUCCEED)
    1615           0 :                         return GDK_FAIL;
    1616       26517 :                 if (BUNappend(lg->catalog_lid, &lid, false) != GDK_SUCCEED)
    1617             :                         return GDK_FAIL;
    1618             :         }
    1619             :         return GDK_SUCCEED;
    1620             : }
    1621             : 
    1622             : static int
    1623        7041 : subcommit_list_add(int next, bat *n, BUN *sizes, bat bid, BUN sz)
    1624             : {
    1625        7041 :         assert(sz <= BBP_desc(bid)->batCount || sz == BUN_NONE);
    1626     1639028 :         for (int i = 0; i < next; i++) {
    1627     1631987 :                 if (n[i] == bid) {
    1628           0 :                         sizes[i] = sz;
    1629           0 :                         return next;
    1630             :                 }
    1631             :         }
    1632        7041 :         n[next] = bid;
    1633        7041 :         sizes[next++] = sz;
    1634        7041 :         return next;
    1635             : }
    1636             : 
    1637             : static int
    1638        2115 : cleanup_and_swap(logger *lg, int *r, const log_bid *bids, lng *lids, lng *cnts,
    1639             :                  BAT *catalog_bid, BAT *catalog_id, BAT *dcatalog, BUN cleanup)
    1640             : {
    1641        2115 :         BAT *nbids, *noids, *ncnts, *nlids, *ndels;
    1642        2115 :         BUN p, q;
    1643        2115 :         int err = 0, rcnt = 0;
    1644             : 
    1645        2115 :         BUN ocnt = BATcount(catalog_bid);
    1646        2115 :         nbids = logbat_new(TYPE_int, ocnt - cleanup, PERSISTENT);
    1647        2115 :         noids = logbat_new(TYPE_int, ocnt - cleanup, PERSISTENT);
    1648        2115 :         ncnts = logbat_new(TYPE_lng, ocnt - cleanup, SYSTRANS);
    1649        2115 :         nlids = logbat_new(TYPE_lng, ocnt - cleanup, SYSTRANS);
    1650        2115 :         ndels = logbat_new(TYPE_oid, BATcount(dcatalog) - cleanup, PERSISTENT);
    1651             : 
    1652        2115 :         if (nbids == NULL || noids == NULL || ncnts == NULL || nlids == NULL || ndels == NULL) {
    1653           0 :                 logbat_destroy(nbids);
    1654           0 :                 logbat_destroy(noids);
    1655           0 :                 logbat_destroy(ncnts);
    1656           0 :                 logbat_destroy(nlids);
    1657           0 :                 logbat_destroy(ndels);
    1658           0 :                 return 0;
    1659             :         }
    1660             : 
    1661        2115 :         oid *poss = Tloc(dcatalog, 0);
    1662      179123 :         BATloop(dcatalog, p, q) {
    1663      177008 :                 oid pos = poss[p];
    1664             : 
    1665      177008 :                 if (lids[pos] == lng_nil || lids[pos] > lg->saved_tid)
    1666           0 :                         continue;
    1667             : 
    1668      177008 :                 if (lids[pos] >= 0) {
    1669      177008 :                         bat bid = bids[pos];
    1670      177008 :                         BAT *lb = BBP_desc(bid);
    1671             : 
    1672      177008 :                         if (lb->batCacheid == 0 || BATmode(lb, true /*transient */ ) != GDK_SUCCEED) {
    1673           0 :                                 GDKwarning("Failed to set bat(%d) transient\n", bid);
    1674             :                         } else {
    1675      177008 :                                 lids[pos] = -1; /* mark as transient */
    1676      177008 :                                 r[rcnt++] = bid;
    1677             :                         }
    1678             :                 }
    1679             :         }
    1680             : 
    1681        2115 :         int *oids = (int *) Tloc(catalog_id, 0);
    1682        2115 :         q = BATcount(catalog_bid);
    1683      741938 :         for (p = 0; p < q && !err; p++) {
    1684      739823 :                 bat col = bids[p];
    1685      739823 :                 int nid = oids[p];
    1686      739823 :                 lng lid = lids[p];
    1687      739823 :                 lng cnt = cnts[p];
    1688      739823 :                 oid pos = p;
    1689             : 
    1690             :                 /* only project out the deleted with lid == -1
    1691             :                  * update dcatalog */
    1692      739823 :                 if (lid == -1)
    1693      177008 :                         continue;       /* remove */
    1694             : 
    1695     1125630 :                 if (BUNappend(nbids, &col, true) != GDK_SUCCEED ||
    1696     1125630 :                     BUNappend(noids, &nid, true) != GDK_SUCCEED ||
    1697     1125630 :                     BUNappend(nlids, &lid, false) != GDK_SUCCEED ||
    1698      562815 :                     BUNappend(ncnts, &cnt, false) != GDK_SUCCEED)
    1699             :                         err = 1;
    1700      562815 :                 if (BUNfnd(lg->dcatalog, &pos) != BUN_NONE) {
    1701           0 :                         pos = (oid) (BATcount(nbids) - 1);
    1702           0 :                         if (BUNappend(ndels, &pos, true) != GDK_SUCCEED)
    1703      562815 :                                 err = 1;
    1704             :                 }
    1705             :         }
    1706             : 
    1707        2115 :         if (err) {
    1708           0 :                 logbat_destroy(nbids);
    1709           0 :                 logbat_destroy(noids);
    1710           0 :                 logbat_destroy(ndels);
    1711           0 :                 logbat_destroy(ncnts);
    1712           0 :                 logbat_destroy(nlids);
    1713           0 :                 return 0;
    1714             :         }
    1715             :         /* point of no return */
    1716        4230 :         if (log_switch_bat(catalog_bid, nbids, lg->fn, "catalog_bid") != GDK_SUCCEED ||
    1717        4230 :             log_switch_bat(catalog_id, noids, lg->fn, "catalog_id") != GDK_SUCCEED ||
    1718        2115 :             log_switch_bat(dcatalog, ndels, lg->fn, "dcatalog") != GDK_SUCCEED) {
    1719           0 :                 logbat_destroy(nbids);
    1720           0 :                 logbat_destroy(noids);
    1721           0 :                 logbat_destroy(ndels);
    1722           0 :                 logbat_destroy(ncnts);
    1723           0 :                 logbat_destroy(nlids);
    1724           0 :                 return -1;
    1725             :         }
    1726        2115 :         r[rcnt++] = lg->catalog_bid->batCacheid;
    1727        2115 :         r[rcnt++] = lg->catalog_id->batCacheid;
    1728        2115 :         r[rcnt++] = lg->dcatalog->batCacheid;
    1729             : 
    1730        2115 :         assert(BATcount(lg->dcatalog) - cleanup == BATcount(ndels));
    1731             : 
    1732        2115 :         logbat_destroy(lg->catalog_bid);
    1733        2115 :         logbat_destroy(lg->catalog_id);
    1734        2115 :         logbat_destroy(lg->dcatalog);
    1735             : 
    1736        2115 :         lg->catalog_bid = nbids;
    1737        2115 :         lg->catalog_id = noids;
    1738        2115 :         lg->dcatalog = ndels;
    1739             : 
    1740             :         /* failing to rename these two bats is not fatal */
    1741        2115 :         if (BBPrename(lg->catalog_cnt, NULL) != GDK_SUCCEED)
    1742        2115 :                 GDKclrerr();
    1743        2115 :         if (BBPrename(lg->catalog_lid, NULL) != GDK_SUCCEED)
    1744        2115 :                 GDKclrerr();
    1745        2115 :         BBPunfix(lg->catalog_cnt->batCacheid);
    1746        2115 :         BBPunfix(lg->catalog_lid->batCacheid);
    1747             : 
    1748        2115 :         lg->catalog_cnt = ncnts;
    1749        2115 :         lg->catalog_lid = nlids;
    1750        2115 :         char bak[FILENAME_MAX];
    1751        2115 :         strconcat_len(bak, sizeof(bak), lg->fn, "_catalog_cnt", NULL);
    1752        2115 :         if (BBPrename(lg->catalog_cnt, bak) < 0)
    1753           0 :                 GDKclrerr();
    1754        2115 :         strconcat_len(bak, sizeof(bak), lg->fn, "_catalog_lid", NULL);
    1755        2115 :         if (BBPrename(lg->catalog_lid, bak) < 0)
    1756           0 :                 GDKclrerr();
    1757        2115 :         rotation_lock(lg);
    1758        9601 :         for (logged_range *p = lg->pending; p; p = p->next) {
    1759        7486 :                 p->cnt -= cleanup;
    1760             :         }
    1761        2115 :         rotation_unlock(lg);
    1762        2115 :         return rcnt;
    1763             : }
    1764             : 
    1765             : /* this function is called with log_lock() held; it releases the lock
    1766             :  * before returning */
    1767             : static gdk_return
    1768       12032 : bm_subcommit(logger *lg, logged_range *pending, uint32_t *updated, BUN maxupdated)
    1769             : {
    1770       12032 :         BUN cnt = pending ? pending->cnt : BATcount(lg->catalog_bid);
    1771       12032 :         BUN dcnt = BATcount(lg->dcatalog);
    1772       12032 :         BUN p, q;
    1773       12032 :         BAT *catalog_bid = lg->catalog_bid;
    1774       12032 :         BAT *catalog_id = lg->catalog_id;
    1775       12032 :         BAT *dcatalog = lg->dcatalog;
    1776       12032 :         BUN nn = 13 + cnt;
    1777       12032 :         bat *n = GDKmalloc(sizeof(bat) * nn);
    1778       12032 :         bat *r = GDKmalloc(sizeof(bat) * nn);
    1779       12032 :         BUN *sizes = GDKmalloc(sizeof(BUN) * nn);
    1780       12032 :         int i = 0, rcnt = 0;
    1781       12032 :         gdk_return res;
    1782       12032 :         const log_bid *bids;
    1783       12032 :         lng *cnts = NULL, *lids = NULL;
    1784       12032 :         BUN cleanup = 0;
    1785       12032 :         lng t0 = 0;
    1786             : 
    1787       12032 :         if (n == NULL || r == NULL || sizes == NULL) {
    1788           0 :                 GDKfree(n);
    1789           0 :                 GDKfree(r);
    1790           0 :                 GDKfree(sizes);
    1791           0 :                 log_unlock(lg);
    1792           0 :                 return GDK_FAIL;
    1793             :         }
    1794             : 
    1795       12032 :         sizes[i] = 0;
    1796       12032 :         n[i++] = 0;             /* n[0] is not used */
    1797       12032 :         bids = (const log_bid *) Tloc(catalog_bid, 0);
    1798       12032 :         if (lg->catalog_cnt)
    1799       11806 :                 cnts = (lng *) Tloc(lg->catalog_cnt, 0);
    1800       12032 :         if (lg->catalog_lid)
    1801       11806 :                 lids = (lng *) Tloc(lg->catalog_lid, 0);
    1802     3496345 :         BATloop(catalog_bid, p, q) {
    1803     3484313 :                 if (lids && lids[p] != lng_nil && lids[p] <= lg->saved_tid) {
    1804      177008 :                         cleanup++;
    1805      177008 :                         if (lids[p] == -1)
    1806           0 :                                 continue;
    1807      354016 :                         if (BUNfnd(dcatalog, &(oid){p}) == BUN_NONE &&
    1808      177008 :                             BUNappend(dcatalog, &(oid){p}, true) != GDK_SUCCEED) {
    1809           0 :                                 while (BATcount(dcatalog) > dcnt) {
    1810           0 :                                         if (BUNdelete(dcatalog, BATcount(dcatalog) - 1) != GDK_SUCCEED) {
    1811           0 :                                                 TRC_CRITICAL(WAL, "delete after failed append failed\n");
    1812           0 :                                                 break;
    1813             :                                         }
    1814             :                                 }
    1815           0 :                                 GDKfree(n);
    1816           0 :                                 GDKfree(r);
    1817           0 :                                 GDKfree(sizes);
    1818           0 :                                 log_unlock(lg);
    1819           0 :                                 return GDK_FAIL;
    1820             :                         }
    1821             :                 }
    1822     3484313 :                 if (updated && p < maxupdated && (updated[p / 32] & (1U << (p % 32))) == 0) {
    1823     1677109 :                         continue;
    1824             :                 }
    1825     1807204 :                 bat col = bids[p];
    1826             : 
    1827     1807204 :                 TRC_DEBUG(WAL, "new %s (%d)\n", BBP_logical(col), col);
    1828     1807204 :                 assert(col);
    1829     1807204 :                 sizes[i] = cnts ? (BUN) cnts[p] : 0;
    1830     1807204 :                 n[i++] = col;
    1831             :         }
    1832             :         /* now commit catalog, so it's also up to date on disk */
    1833       12032 :         sizes[i] = cnt;
    1834       12032 :         n[i++] = catalog_bid->batCacheid;
    1835       12032 :         sizes[i] = cnt;
    1836       12032 :         n[i++] = catalog_id->batCacheid;
    1837       12032 :         sizes[i] = BATcount(dcatalog);
    1838       12032 :         n[i++] = dcatalog->batCacheid;
    1839             : 
    1840       12032 :         if (cleanup) {
    1841        2115 :                 if ((rcnt = cleanup_and_swap(lg, r, bids, lids, cnts,
    1842             :                                              catalog_bid, catalog_id, dcatalog,
    1843             :                                              cleanup)) < 0) {
    1844           0 :                         GDKfree(n);
    1845           0 :                         GDKfree(r);
    1846           0 :                         GDKfree(sizes);
    1847           0 :                         log_unlock(lg);
    1848           0 :                         return GDK_FAIL;
    1849             :                 }
    1850        2115 :                 cnt -= cleanup;
    1851             :         }
    1852       12032 :         if (dcatalog != lg->dcatalog) {
    1853        2115 :                 i = subcommit_list_add(i, n, sizes, lg->catalog_bid->batCacheid, cnt);
    1854        2115 :                 i = subcommit_list_add(i, n, sizes, lg->catalog_id->batCacheid, cnt);
    1855        2115 :                 i = subcommit_list_add(i, n, sizes, lg->dcatalog->batCacheid, BATcount(lg->dcatalog));
    1856             :         }
    1857       12032 :         if (lg->seqs_id) {
    1858       11806 :                 sizes[i] = BATcount(lg->seqs_id);
    1859       11806 :                 n[i++] = lg->seqs_id->batCacheid;
    1860       11806 :                 sizes[i] = BATcount(lg->seqs_id);
    1861       11806 :                 n[i++] = lg->seqs_val->batCacheid;
    1862             :         }
    1863       12032 :         if (!cleanup && lg->seqs_id && BATcount(lg->dseqs) > (BATcount(lg->seqs_id) / 2) && BATcount(lg->dseqs) > 10) {
    1864         348 :                 BAT *tids, *ids, *vals;
    1865             : 
    1866         348 :                 tids = bm_tids(lg->seqs_id, lg->dseqs);
    1867         348 :                 if (tids == NULL) {
    1868           0 :                         GDKfree(n);
    1869           0 :                         GDKfree(r);
    1870           0 :                         GDKfree(sizes);
    1871           0 :                         log_unlock(lg);
    1872           0 :                         return GDK_FAIL;
    1873             :                 }
    1874         348 :                 ids = logbat_new(TYPE_int, BATcount(tids), PERSISTENT);
    1875         348 :                 vals = logbat_new(TYPE_lng, BATcount(tids), PERSISTENT);
    1876             : 
    1877         348 :                 if (ids == NULL || vals == NULL) {
    1878           0 :                         logbat_destroy(tids);
    1879           0 :                         logbat_destroy(ids);
    1880           0 :                         logbat_destroy(vals);
    1881           0 :                         GDKfree(n);
    1882           0 :                         GDKfree(r);
    1883           0 :                         GDKfree(sizes);
    1884           0 :                         log_unlock(lg);
    1885           0 :                         return GDK_FAIL;
    1886             :                 }
    1887             : 
    1888         696 :                 if (BATappend(ids, lg->seqs_id, tids, true) != GDK_SUCCEED ||
    1889         348 :                     BATappend(vals, lg->seqs_val, tids, true) != GDK_SUCCEED) {
    1890           0 :                         logbat_destroy(tids);
    1891           0 :                         logbat_destroy(ids);
    1892           0 :                         logbat_destroy(vals);
    1893           0 :                         GDKfree(n);
    1894           0 :                         GDKfree(r);
    1895           0 :                         GDKfree(sizes);
    1896           0 :                         log_unlock(lg);
    1897           0 :                         return GDK_FAIL;
    1898             :                 }
    1899         348 :                 logbat_destroy(tids);
    1900         348 :                 BATclear(lg->dseqs, true);
    1901             : 
    1902         696 :                 if (log_switch_bat(lg->seqs_id, ids, lg->fn, "seqs_id") != GDK_SUCCEED ||
    1903         348 :                     log_switch_bat(lg->seqs_val, vals, lg->fn, "seqs_val") != GDK_SUCCEED) {
    1904           0 :                         logbat_destroy(ids);
    1905           0 :                         logbat_destroy(vals);
    1906           0 :                         GDKfree(n);
    1907           0 :                         GDKfree(r);
    1908           0 :                         GDKfree(sizes);
    1909           0 :                         log_unlock(lg);
    1910           0 :                         return GDK_FAIL;
    1911             :                 }
    1912         348 :                 i = subcommit_list_add(i, n, sizes, ids->batCacheid, BATcount(ids));
    1913         348 :                 i = subcommit_list_add(i, n, sizes, vals->batCacheid, BATcount(ids));
    1914             : 
    1915         348 :                 if (BBP_lrefs(lg->seqs_id->batCacheid) > 0)
    1916         278 :                         r[rcnt++] = lg->seqs_id->batCacheid;
    1917         348 :                 if (BBP_lrefs(lg->seqs_val->batCacheid) > 0)
    1918         278 :                         r[rcnt++] = lg->seqs_val->batCacheid;
    1919             : 
    1920         348 :                 logbat_destroy(lg->seqs_id);
    1921         348 :                 logbat_destroy(lg->seqs_val);
    1922             : 
    1923         348 :                 lg->seqs_id = ids;
    1924         348 :                 lg->seqs_val = vals;
    1925             :         }
    1926       12032 :         if (lg->seqs_id) {
    1927       11806 :                 sizes[i] = BATcount(lg->dseqs);
    1928       11806 :                 n[i++] = lg->dseqs->batCacheid;
    1929             :         }
    1930             : 
    1931       12032 :         assert((BUN) i <= nn);
    1932       12032 :         log_unlock(lg);
    1933       12032 :         TRC_DEBUG_IF(WAL)
    1934           0 :                 t0 = GDKusec();
    1935       12258 :         res = TMsubcommit_list(n, cnts ? sizes : NULL, i, lg->saved_id);
    1936       12032 :         TRC_DEBUG(WAL, "subcommit " LLFMT "usec\n", GDKusec() - t0);
    1937       12032 :         if (res == GDK_SUCCEED) {       /* now cleanup */
    1938      195941 :                 for (i = 0; i < rcnt; i++) {
    1939      183909 :                         TRC_DEBUG_IF(WAL) {
    1940           0 :                                 TRC_DEBUG_ENDIF(WAL, "release %d\n", r[i]);
    1941           0 :                                 if (BBP_lrefs(r[i]) != 2)
    1942           0 :                                         TRC_DEBUG_ENDIF(WAL, "release %d %d\n", r[i], BBP_lrefs(r[i]));
    1943             :                         }
    1944      183909 :                         BBPrelease(r[i]);
    1945             :                 }
    1946             :         }
    1947       12032 :         GDKfree(n);
    1948       12032 :         GDKfree(r);
    1949       12032 :         GDKfree(sizes);
    1950       12032 :         if (res != GDK_SUCCEED)
    1951           0 :                 TRC_CRITICAL(GDK, "commit failed\n");
    1952             :         return res;
    1953             : }
    1954             : 
    1955             : static gdk_return
    1956         327 : log_filename(logger *lg, char bak[FILENAME_MAX], char filename[FILENAME_MAX])
    1957             : {
    1958         327 :         str filenamestr = NULL;
    1959             : 
    1960         327 :         if ((filenamestr = GDKfilepath(0, lg->dir, LOGFILE, NULL)) == NULL)
    1961             :                 return GDK_FAIL;
    1962         327 :         size_t len = strcpy_len(filename, filenamestr, FILENAME_MAX);
    1963         327 :         GDKfree(filenamestr);
    1964         327 :         if (len >= FILENAME_MAX) {
    1965           0 :                 GDKerror("Logger filename path is too large\n");
    1966           0 :                 return GDK_FAIL;
    1967             :         }
    1968         327 :         if (bak) {
    1969         327 :                 len = strconcat_len(bak, FILENAME_MAX, filename, ".bak", NULL);
    1970         327 :                 if (len >= FILENAME_MAX) {
    1971           0 :                         GDKerror("Logger filename path is too large\n");
    1972           0 :                         return GDK_FAIL;
    1973             :                 }
    1974             :         }
    1975             :         return GDK_SUCCEED;
    1976             : }
    1977             : 
    1978             : static gdk_return
    1979       12235 : log_cleanup(logger *lg, lng id)
    1980             : {
    1981       12235 :         char log_id[FILENAME_MAX];
    1982             : 
    1983       12235 :         if (snprintf(log_id, sizeof(log_id), LLFMT, id) >= FILENAME_MAX) {
    1984           0 :                 GDKerror("log_id filename is too large\n");
    1985           0 :                 return GDK_FAIL;
    1986             :         }
    1987       12235 :         if (GDKunlink(0, lg->dir, LOGFILE, log_id) != GDK_SUCCEED) {
    1988           0 :                 GDKwarning("failed to remove old WAL %s.%s\n", LOGFILE, log_id);
    1989           0 :                 GDKclrerr();    /* clear error from unlink */
    1990             :         }
    1991             :         return GDK_SUCCEED;
    1992             : }
    1993             : 
    1994             : #ifdef GDKLIBRARY_JSON
    1995             : static gdk_return
    1996         328 : log_json_upgrade_finalize(void)
    1997             : {
    1998         328 :         int json_tpe = ATOMindex("json");
    1999         655 :         if (!GDKinmemory(0) &&
    2000         327 :             GDKunlink(0, BATDIR, "jsonupgradeneeded", NULL) == GDK_FAIL) {
    2001           0 :                 TRC_CRITICAL(GDK, "Failed to remove json upgrade signal file");
    2002           0 :                 return GDK_FAIL;
    2003             :         }
    2004         328 :         BATatoms[json_tpe].atomRead = (void *(*)(void *, size_t *, stream *, size_t))strRead;
    2005             : 
    2006         328 :         return GDK_SUCCEED;
    2007             : }
    2008             : #endif
    2009             : 
    2010             : /* Load data from the logger logdir
    2011             :  * Initialize new directories and catalog files if none are present,
    2012             :  * unless running in read-only mode
    2013             :  * Load data and persist it in the BATs */
    2014             : static gdk_return
    2015         328 : log_load(const char *fn, logger *lg, char filename[FILENAME_MAX])
    2016             : {
    2017         328 :         FILE *fp = NULL;
    2018         328 :         char bak[FILENAME_MAX];
    2019         328 :         bat catalog_bid, catalog_id, dcatalog;
    2020         328 :         bool needcommit = false;
    2021         328 :         ATOMIC_BASE_TYPE dbg = ATOMIC_GET(&GDKdebug);
    2022         328 :         bool readlogs = false;
    2023         328 :         bool needsnew = false;  /* need to write new log file? */
    2024             : 
    2025             :         /* refactor */
    2026         328 :         if (!LOG_DISABLED(lg)) {
    2027         327 :                 if (log_filename(lg, bak, filename) != GDK_SUCCEED)
    2028           0 :                         goto error;
    2029             :         }
    2030             : 
    2031         328 :         lg->catalog_bid = NULL;
    2032         328 :         lg->catalog_id = NULL;
    2033         328 :         lg->catalog_cnt = NULL;
    2034         328 :         lg->catalog_lid = NULL;
    2035         328 :         lg->dcatalog = NULL;
    2036             : 
    2037         328 :         lg->seqs_id = NULL;
    2038         328 :         lg->seqs_val = NULL;
    2039         328 :         lg->dseqs = NULL;
    2040             : 
    2041         328 :         if (!LOG_DISABLED(lg)) {
    2042             :                 /* try to open logfile backup, or failing that, the file
    2043             :                  * itself. we need to know whether this file exists when
    2044             :                  * checking the database consistency later on */
    2045         327 :                 if ((fp = MT_fopen(bak, "r")) != NULL) {
    2046           0 :                         fclose(fp);
    2047           0 :                         fp = NULL;
    2048           0 :                         if (GDKunlink(0, lg->dir, LOGFILE, NULL) != GDK_SUCCEED ||
    2049           0 :                             GDKmove(0, lg->dir, LOGFILE, "bak", lg->dir, LOGFILE, NULL, true) != GDK_SUCCEED)
    2050           0 :                                 goto error;
    2051         327 :                 } else if (errno != ENOENT) {
    2052           0 :                         GDKsyserror("open %s failed", bak);
    2053           0 :                         goto error;
    2054             :                 }
    2055         327 :                 fp = MT_fopen(filename, "r");
    2056         327 :                 if (fp == NULL && errno != ENOENT) {
    2057           0 :                         GDKsyserror("open %s failed", filename);
    2058           0 :                         goto error;
    2059             :                 }
    2060             :         }
    2061             : 
    2062         328 :         strconcat_len(bak, sizeof(bak), fn, "_catalog_bid", NULL);
    2063         328 :         catalog_bid = BBPindex(bak);
    2064             : 
    2065             :         /* initialize arrays for type mapping, to be read from disk */
    2066         328 :         memset(lg->type_id, -1, sizeof(lg->type_id));
    2067         328 :         memset(lg->type_nr, 255, sizeof(lg->type_nr));
    2068             : 
    2069             :         /* this is intentional - if catalog_bid is 0, force it to find
    2070             :          * the persistent catalog */
    2071         328 :         if (catalog_bid == 0) {
    2072             :                 /* catalog does not exist, so the log file also
    2073             :                  * shouldn't exist */
    2074         226 :                 if (fp != NULL) {
    2075           0 :                         GDKerror("there is no logger catalog, "
    2076             :                                  "but there is a log file.\n");
    2077           0 :                         goto error;
    2078             :                 }
    2079             : 
    2080         226 :                 lg->catalog_bid = logbat_new(TYPE_int, BATSIZE, PERSISTENT);
    2081         226 :                 lg->catalog_id = logbat_new(TYPE_int, BATSIZE, PERSISTENT);
    2082         226 :                 lg->dcatalog = logbat_new(TYPE_oid, BATSIZE, PERSISTENT);
    2083             : 
    2084         226 :                 if (lg->catalog_bid == NULL || lg->catalog_id == NULL || lg->dcatalog == NULL) {
    2085           0 :                         GDKerror("cannot create catalog bats");
    2086           0 :                         goto error;
    2087             :                 }
    2088         226 :                 TRC_INFO(WAL, "create %s catalog\n", fn);
    2089             : 
    2090             :                 /* give the catalog bats names so we can find them
    2091             :                  * next time */
    2092         226 :                 strconcat_len(bak, sizeof(bak), fn, "_catalog_bid", NULL);
    2093         226 :                 if (BBPrename(lg->catalog_bid, bak) < 0) {
    2094           0 :                         goto error;
    2095             :                 }
    2096             : 
    2097         226 :                 strconcat_len(bak, sizeof(bak), fn, "_catalog_id", NULL);
    2098         226 :                 if (BBPrename(lg->catalog_id, bak) < 0) {
    2099           0 :                         goto error;
    2100             :                 }
    2101             : 
    2102         226 :                 strconcat_len(bak, sizeof(bak), fn, "_dcatalog", NULL);
    2103         226 :                 if (BBPrename(lg->dcatalog, bak) < 0) {
    2104           0 :                         goto error;
    2105             :                 }
    2106             : 
    2107         226 :                 if (!LOG_DISABLED(lg)) {
    2108         225 :                         if (GDKcreatedir(filename) != GDK_SUCCEED) {
    2109           0 :                                 GDKerror("cannot create directory for log file %s\n", filename);
    2110           0 :                                 goto error;
    2111             :                         }
    2112         225 :                         if (log_create_types_file(lg, filename) != GDK_SUCCEED)
    2113           0 :                                 goto error;
    2114             :                 }
    2115             : 
    2116         226 :                 BBPretain(lg->catalog_bid->batCacheid);
    2117         226 :                 BBPretain(lg->catalog_id->batCacheid);
    2118         226 :                 BBPretain(lg->dcatalog->batCacheid);
    2119             : 
    2120         226 :                 log_lock(lg);
    2121             :                 /* bm_subcommit releases the lock */
    2122         226 :                 if (bm_subcommit(lg, NULL, NULL, 0) != GDK_SUCCEED) {
    2123             :                         /* cannot commit catalog, so remove log */
    2124           0 :                         if (MT_remove(filename) < 0)
    2125           0 :                                 GDKsyserror("remove %s failed\n", filename);
    2126           0 :                         BBPrelease(lg->catalog_bid->batCacheid);
    2127           0 :                         BBPrelease(lg->catalog_id->batCacheid);
    2128           0 :                         BBPrelease(lg->dcatalog->batCacheid);
    2129           0 :                         goto error;
    2130             :                 }
    2131             :         } else {
    2132             :                 /* find the persistent catalog. As non persistent bats
    2133             :                  * require a logical reference we also add a logical
    2134             :                  * reference for the persistent bats */
    2135         102 :                 BUN p, q;
    2136         102 :                 BAT *b, *o, *d;
    2137             : 
    2138         102 :                 assert(!lg->inmemory);
    2139             : 
    2140             :                 /* the catalog exists, and so should the log file */
    2141         102 :                 if (fp == NULL && !LOG_DISABLED(lg)) {
    2142           0 :                         GDKerror("There is a logger catalog, but no log file.\n");
    2143           0 :                         goto error;
    2144             :                 }
    2145             :                 if (fp != NULL) {
    2146             :                         /* check_version always closes fp */
    2147         102 :                         if (check_version(lg, fp, &needsnew) != GDK_SUCCEED) {
    2148           0 :                                 fp = NULL;
    2149           0 :                                 goto error;
    2150             :                         }
    2151             :                         readlogs = true;
    2152             :                         fp = NULL;
    2153             :                 }
    2154             : 
    2155         102 :                 if (lg->catalog_bid == NULL && lg->catalog_id == NULL && lg->dcatalog == NULL) {
    2156         102 :                         b = BATdescriptor(catalog_bid);
    2157         102 :                         if (b == NULL) {
    2158           0 :                                 GDKerror("inconsistent database, catalog does not exist");
    2159           0 :                                 goto error;
    2160             :                         }
    2161             : 
    2162         102 :                         strconcat_len(bak, sizeof(bak), fn, "_catalog_id", NULL);
    2163         102 :                         catalog_id = BBPindex(bak);
    2164         102 :                         o = BATdescriptor(catalog_id);
    2165         102 :                         if (o == NULL) {
    2166           0 :                                 BBPunfix(b->batCacheid);
    2167           0 :                                 GDKerror("inconsistent database, catalog_id does not exist");
    2168           0 :                                 goto error;
    2169             :                         }
    2170             : 
    2171         102 :                         strconcat_len(bak, sizeof(bak), fn, "_dcatalog", NULL);
    2172         102 :                         dcatalog = BBPindex(bak);
    2173         102 :                         d = BATdescriptor(dcatalog);
    2174         102 :                         if (d == NULL) {
    2175           0 :                                 GDKerror("cannot create dcatalog bat");
    2176           0 :                                 BBPunfix(b->batCacheid);
    2177           0 :                                 BBPunfix(o->batCacheid);
    2178           0 :                                 goto error;
    2179             :                         }
    2180             : 
    2181         102 :                         lg->catalog_bid = b;
    2182         102 :                         lg->catalog_id = o;
    2183         102 :                         lg->dcatalog = d;
    2184         102 :                         const log_bid *bids = (const log_bid *) Tloc(lg->catalog_bid, 0);
    2185       26619 :                         BATloop(lg->catalog_bid, p, q) {
    2186       26517 :                                 bat bid = bids[p];
    2187       26517 :                                 oid pos = p;
    2188             : 
    2189       26517 :                                 if (BBPretain(bid) == 0 &&      /* any bid in the catalog_bid, needs one logical ref */
    2190           0 :                                     BUNfnd(lg->dcatalog, &pos) == BUN_NONE &&
    2191           0 :                                     BUNappend(lg->dcatalog, &pos, true) != GDK_SUCCEED)
    2192           0 :                                         goto error;
    2193             :                         }
    2194             :                 }
    2195         102 :                 if ((lg->catalog_bid = BATsetaccess(lg->catalog_bid, BAT_READ)) == NULL ||
    2196         102 :                     (lg->catalog_id = BATsetaccess(lg->catalog_id, BAT_READ)) == NULL ||
    2197         102 :                     (lg->dcatalog = BATsetaccess(lg->dcatalog, BAT_READ)) == NULL) {
    2198           0 :                         goto error;
    2199             :                 }
    2200         102 :                 BBPretain(lg->catalog_bid->batCacheid);
    2201         102 :                 BBPretain(lg->catalog_id->batCacheid);
    2202         102 :                 BBPretain(lg->dcatalog->batCacheid);
    2203             :         }
    2204             :         /* failing to rename the catalog_cnt and catalog_lid bats is not
    2205             :          * fatal */
    2206         328 :         lg->catalog_cnt = logbat_new(TYPE_lng, 1, SYSTRANS);
    2207         328 :         if (lg->catalog_cnt == NULL) {
    2208           0 :                 GDKerror("failed to create catalog_cnt bat");
    2209           0 :                 goto error;
    2210             :         }
    2211         328 :         strconcat_len(bak, sizeof(bak), fn, "_catalog_cnt", NULL);
    2212         328 :         if (BBPrename(lg->catalog_cnt, bak) < 0)
    2213           0 :                 GDKclrerr();
    2214         328 :         lg->catalog_lid = logbat_new(TYPE_lng, 1, SYSTRANS);
    2215         328 :         if (lg->catalog_lid == NULL) {
    2216           0 :                 GDKerror("failed to create catalog_lid bat");
    2217           0 :                 goto error;
    2218             :         }
    2219         328 :         strconcat_len(bak, sizeof(bak), fn, "_catalog_lid", NULL);
    2220         328 :         if (BBPrename(lg->catalog_lid, bak) < 0)
    2221           0 :                 GDKclrerr();
    2222         328 :         if (bm_get_counts(lg) != GDK_SUCCEED)
    2223           0 :                 goto error;
    2224             : 
    2225         328 :         strconcat_len(bak, sizeof(bak), fn, "_seqs_id", NULL);
    2226         328 :         if (BBPindex(bak)) {
    2227         102 :                 lg->seqs_id = BATdescriptor(BBPindex(bak));
    2228         102 :                 strconcat_len(bak, sizeof(bak), fn, "_seqs_val", NULL);
    2229         102 :                 lg->seqs_val = BATdescriptor(BBPindex(bak));
    2230         102 :                 strconcat_len(bak, sizeof(bak), fn, "_dseqs", NULL);
    2231         102 :                 lg->dseqs = BATdescriptor(BBPindex(bak));
    2232         102 :                 if (lg->seqs_id == NULL ||
    2233         102 :                     lg->seqs_val == NULL ||
    2234             :                     lg->dseqs == NULL) {
    2235           0 :                         GDKerror("Logger_new: cannot load seqs bats");
    2236           0 :                         goto error;
    2237             :                 }
    2238         102 :                 if ((lg->seqs_val = BATsetaccess(lg->seqs_val, BAT_READ)) == NULL ||
    2239         102 :                     (lg->seqs_id = BATsetaccess(lg->seqs_id, BAT_READ)) == NULL ||
    2240         102 :                     (lg->dseqs = BATsetaccess(lg->dseqs, BAT_READ)) == NULL) {
    2241           0 :                         goto error;
    2242             :                 }
    2243             :         } else {
    2244         226 :                 lg->seqs_id = logbat_new(TYPE_int, 1, PERSISTENT);
    2245         226 :                 lg->seqs_val = logbat_new(TYPE_lng, 1, PERSISTENT);
    2246         226 :                 lg->dseqs = logbat_new(TYPE_oid, 1, PERSISTENT);
    2247         226 :                 if (lg->seqs_id == NULL ||
    2248         226 :                     lg->seqs_val == NULL ||
    2249             :                     lg->dseqs == NULL) {
    2250           0 :                         GDKerror("Logger_new: cannot create seqs bats");
    2251           0 :                         goto error;
    2252             :                 }
    2253             : 
    2254         226 :                 strconcat_len(bak, sizeof(bak), fn, "_seqs_id", NULL);
    2255         226 :                 if (BBPrename(lg->seqs_id, bak) < 0) {
    2256           0 :                         goto error;
    2257             :                 }
    2258             : 
    2259         226 :                 strconcat_len(bak, sizeof(bak), fn, "_seqs_val", NULL);
    2260         226 :                 if (BBPrename(lg->seqs_val, bak) < 0) {
    2261           0 :                         goto error;
    2262             :                 }
    2263             : 
    2264         226 :                 strconcat_len(bak, sizeof(bak), fn, "_dseqs", NULL);
    2265         226 :                 if (BBPrename(lg->dseqs, bak) < 0) {
    2266           0 :                         goto error;
    2267             :                 }
    2268             :                 needcommit = true;
    2269             :         }
    2270         328 :         dbg = ATOMIC_GET(&GDKdebug);
    2271         328 :         ATOMIC_AND(&GDKdebug, ~CHECKMASK);
    2272         328 :         if (needcommit && bm_commit(lg, NULL, NULL, 0) != GDK_SUCCEED) {
    2273           0 :                 GDKerror("Logger_new: commit failed");
    2274           0 :                 goto error;
    2275             :         }
    2276         328 :         ATOMIC_SET(&GDKdebug, dbg);
    2277             : 
    2278         328 :         if (readlogs) {
    2279         102 :                 ulng log_id = lg->saved_id + 1;
    2280         102 :                 if (log_readlogs(lg, filename) != GDK_SUCCEED) {
    2281           0 :                         goto error;
    2282             :                 }
    2283         102 :                 if (lg->postfuncp && (*lg->postfuncp) (lg->funcdata, lg) != GDK_SUCCEED)
    2284           0 :                         goto error;
    2285         102 :                 if (needsnew) {
    2286           8 :                         if (GDKmove(0, lg->dir, LOGFILE, NULL, lg->dir, LOGFILE, "bak", true) != GDK_SUCCEED) {
    2287           0 :                                 TRC_CRITICAL(GDK, "couldn't move log to log.bak\n");
    2288           0 :                                 return GDK_FAIL;
    2289             :                         }
    2290           8 :                         if (log_create_types_file(lg, filename) != GDK_SUCCEED) {
    2291           0 :                                 TRC_CRITICAL(GDK, "couldn't write new log\n");
    2292           0 :                                 return GDK_FAIL;
    2293             :                         }
    2294             :                 }
    2295         102 :                 dbg = ATOMIC_GET(&GDKdebug);
    2296         102 :                 ATOMIC_AND(&GDKdebug, ~CHECKMASK);
    2297         102 :                 if (log_commit(lg, NULL, NULL, 0) != GDK_SUCCEED) {
    2298           0 :                         goto error;
    2299             :                 }
    2300         102 :                 ATOMIC_SET(&GDKdebug, dbg);
    2301         278 :                 for (; log_id <= lg->saved_id; log_id++)
    2302         176 :                         (void) log_cleanup(lg, log_id); /* ignore error of removing file */
    2303         110 :                 if (needsnew &&
    2304           8 :                     GDKunlink(0, lg->dir, LOGFILE, "bak") != GDK_SUCCEED) {
    2305           0 :                         TRC_CRITICAL(GDK, "couldn't remove old log.bak file\n");
    2306           0 :                         return GDK_FAIL;
    2307             :                 }
    2308             :         } else {
    2309         226 :                 lg->id = lg->saved_id + 1;
    2310             :         }
    2311             : #ifdef GDKLIBRARY_JSON
    2312         328 :         if (log_json_upgrade_finalize() == GDK_FAIL)
    2313           0 :                 goto error;
    2314             : #endif
    2315             :         return GDK_SUCCEED;
    2316           0 :   error:
    2317           0 :         if (fp)
    2318           0 :                 fclose(fp);
    2319           0 :         logbat_destroy(lg->catalog_bid);
    2320           0 :         logbat_destroy(lg->catalog_id);
    2321           0 :         logbat_destroy(lg->dcatalog);
    2322           0 :         logbat_destroy(lg->seqs_id);
    2323           0 :         logbat_destroy(lg->seqs_val);
    2324           0 :         logbat_destroy(lg->dseqs);
    2325           0 :         MT_lock_destroy(&lg->lock);
    2326           0 :         MT_lock_destroy(&lg->rotation_lock);
    2327           0 :         GDKfree(lg->fn);
    2328           0 :         GDKfree(lg->dir);
    2329           0 :         GDKfree(lg->rbuf);
    2330           0 :         GDKfree(lg->wbuf);
    2331           0 :         GDKfree(lg);
    2332           0 :         ATOMIC_SET(&GDKdebug, dbg);
    2333             :         /* We do not call log_json_upgrade_finalize here because we want
    2334             :          * the upgrade to run again next time we try, so we do not want
    2335             :          * to remove the signal file just yet.
    2336             :          */
    2337           0 :         return GDK_FAIL;
    2338             : }
    2339             : 
    2340             : /* Initialize a new logger
    2341             :  * It will load any data in the logdir and persist it in the BATs*/
    2342             : static logger *
    2343         328 : log_new(int debug, const char *fn, const char *logdir, int version, preversionfix_fptr prefuncp,
    2344             :         postversionfix_fptr postfuncp, void *funcdata)
    2345             : {
    2346         328 :         logger *lg;
    2347         328 :         char filename[FILENAME_MAX];
    2348             : 
    2349         328 :         lng max_dropped = GDKgetenv_int("wal_max_dropped", 100000);
    2350         328 :         lng max_file_age = GDKgetenv_int("wal_max_file_age", 600);
    2351         328 :         lng max_file_size = 0;
    2352             : 
    2353         328 :         if (GDKdebug & TESTINGMASK) {
    2354             :                 max_file_size = 2048; /* 2 KiB */
    2355             :         } else {
    2356          12 :                 const char *max_file_size_str = GDKgetenv("wal_max_file_size");
    2357          12 :                 max_file_size = max_file_size_str ? strtoul(max_file_size_str, NULL, 10) : 2147483648;
    2358             :         }
    2359             : 
    2360         328 :         if (!GDKinmemory(0) && MT_path_absolute(logdir)) {
    2361           0 :                 TRC_CRITICAL(GDK, "logdir must be relative path\n");
    2362           0 :                 return NULL;
    2363             :         }
    2364             : 
    2365         328 :         if (snprintf(filename, sizeof(filename), "%s%c%s%c", logdir, DIR_SEP, fn, DIR_SEP) >= FILENAME_MAX) {
    2366           0 :                 TRC_CRITICAL(GDK, "filename is too large\n");
    2367           0 :                 return NULL;
    2368             :         }
    2369             : 
    2370         328 :         lg = GDKmalloc(sizeof(struct logger));
    2371         328 :         if (lg == NULL) {
    2372           0 :                 TRC_CRITICAL(GDK, "allocating logger structure failed\n");
    2373           0 :                 return NULL;
    2374             :         }
    2375             : 
    2376         656 :         *lg = (logger) {
    2377         328 :                 .inmemory = GDKinmemory(0),
    2378             :                 .debug = debug,
    2379             :                 .version = version,
    2380             :                 .prefuncp = prefuncp,
    2381             :                 .postfuncp = postfuncp,
    2382             :                 .funcdata = funcdata,
    2383             : 
    2384         328 :                 .max_dropped = max_dropped >= 0 ? max_dropped : 100000,
    2385             :                 .file_age = 0,
    2386         328 :                 .max_file_age = max_file_age >= 0 ? max_file_age * 1000000 : 600000000,
    2387         328 :                 .max_file_size = max_file_size >= 0 ? max_file_size : 2147483648,
    2388             : 
    2389             :                 .id = 0,
    2390         328 :                 .saved_id = getBBPlogno(),      /* get saved log number from bbp */
    2391             :                 .nr_flushers = ATOMIC_VAR_INIT(0),
    2392         328 :                 .fn = GDKstrdup(fn),
    2393         328 :                 .dir = GDKstrdup(filename),
    2394             :                 .rbufsize = 64 * 1024,
    2395         328 :                 .rbuf = GDKmalloc(64 * 1024),
    2396             :                 .wbufsize = 64 * 1024,
    2397         328 :                 .wbuf = GDKmalloc(64 * 1024),
    2398             :         };
    2399             : 
    2400             :         /* probably open file and check version first, then call call old logger code */
    2401         328 :         if (lg->fn == NULL ||
    2402         328 :             lg->dir == NULL ||
    2403         328 :             lg->rbuf == NULL ||
    2404             :             lg->wbuf == NULL) {
    2405           0 :                 TRC_CRITICAL(GDK, "allocating for logger structure failed\n");
    2406           0 :                 GDKfree(lg->fn);
    2407           0 :                 GDKfree(lg->dir);
    2408           0 :                 GDKfree(lg->rbuf);
    2409           0 :                 GDKfree(lg->wbuf);
    2410           0 :                 GDKfree(lg);
    2411           0 :                 return NULL;
    2412             :         }
    2413         328 :         TRC_DEBUG(WAL, "dir set to %s\n", lg->dir);
    2414             : 
    2415         328 :         MT_lock_init(&lg->lock, fn);
    2416         328 :         MT_lock_init(&lg->rotation_lock, "rotation_lock");
    2417         328 :         MT_lock_init(&lg->flush_lock, "flush_lock");
    2418         328 :         MT_cond_init(&lg->excl_flush_cv);
    2419             : 
    2420         328 :         if (log_load(fn, lg, filename) == GDK_SUCCEED) {
    2421             :                 return lg;
    2422             :         }
    2423             :         return NULL;
    2424             : }
    2425             : 
    2426             : static logged_range *
    2427       68381 : do_flush_range_cleanup(logger *lg)
    2428             : {
    2429       68381 :         logged_range *frange = lg->flush_ranges;
    2430       68381 :         logged_range *first = frange;
    2431             : 
    2432       68381 :         if (frange == NULL)
    2433             :                 return NULL;
    2434       80532 :         while (frange->next) {
    2435       12367 :                 if (ATOMIC_GET(&frange->refcount) > 1)
    2436             :                         break;
    2437       12151 :                 frange = frange->next;
    2438             :         }
    2439       68381 :         if (first == frange) {
    2440             :                 return first;
    2441             :         }
    2442             : 
    2443       12151 :         logged_range *flast = frange;
    2444             : 
    2445       12151 :         lg->flush_ranges = flast;
    2446             : 
    2447       24302 :         for (frange = first; frange && frange != flast; frange = frange->next) {
    2448       12151 :                 ATOMIC_DEC(&frange->refcount);
    2449       12151 :                 if (!LOG_DISABLED(lg) && frange->output_log) {
    2450           0 :                         TRC_INFO(WAL, "closing output log %s", mnstr_name(frange->output_log));
    2451           0 :                         close_stream(frange->output_log);
    2452           0 :                         frange->output_log = NULL;
    2453             :                 }
    2454             :         }
    2455             :         return flast;
    2456             : }
    2457             : 
    2458             : void
    2459         327 : log_destroy(logger *lg)
    2460             : {
    2461         327 :         log_close_input(lg);
    2462         327 :         logged_range *last = do_flush_range_cleanup(lg);
    2463         327 :         (void) last;
    2464         327 :         assert(last == lg->current && last == lg->flush_ranges);
    2465         327 :         log_close_output(lg);
    2466         746 :         for (logged_range * p = lg->pending; p; p = lg->pending) {
    2467         419 :                 lg->pending = p->next;
    2468         419 :                 GDKfree(p);
    2469             :         }
    2470         327 :         if (LOG_DISABLED(lg)) {
    2471           1 :                 lg->saved_id = lg->id;
    2472           1 :                 lg->saved_tid = lg->tid;
    2473           1 :                 log_commit(lg, NULL, NULL, 0);
    2474             :         }
    2475         327 :         if (lg->catalog_bid) {
    2476         327 :                 log_lock(lg);
    2477         327 :                 BUN p, q;
    2478         327 :                 BAT *b = lg->catalog_bid;
    2479             : 
    2480             :                 /* free resources */
    2481         327 :                 const log_bid *bids = (const log_bid *) Tloc(b, 0);
    2482       86365 :                 BATloop(b, p, q) {
    2483       86038 :                         bat bid = bids[p];
    2484             : 
    2485       86038 :                         BBPrelease(bid);
    2486             :                 }
    2487             : 
    2488         327 :                 BBPrelease(lg->catalog_bid->batCacheid);
    2489         327 :                 BBPrelease(lg->catalog_id->batCacheid);
    2490         327 :                 BBPrelease(lg->dcatalog->batCacheid);
    2491         327 :                 logbat_destroy(lg->catalog_bid);
    2492         327 :                 logbat_destroy(lg->catalog_id);
    2493         327 :                 logbat_destroy(lg->dcatalog);
    2494             : 
    2495         327 :                 logbat_destroy(lg->catalog_cnt);
    2496         327 :                 logbat_destroy(lg->catalog_lid);
    2497         327 :                 log_unlock(lg);
    2498             :         }
    2499         327 :         MT_lock_destroy(&lg->lock);
    2500         327 :         MT_lock_destroy(&lg->rotation_lock);
    2501         327 :         MT_lock_destroy(&lg->flush_lock);
    2502         327 :         GDKfree(lg->fn);
    2503         327 :         GDKfree(lg->dir);
    2504         327 :         GDKfree(lg->rbuf);
    2505         327 :         GDKfree(lg->wbuf);
    2506         327 :         GDKfree(lg);
    2507         327 : }
    2508             : 
    2509             : /* Create a new logger */
    2510             : logger *
    2511         328 : log_create(int debug, const char *fn, const char *logdir, int version,
    2512             :            preversionfix_fptr prefuncp, postversionfix_fptr postfuncp,
    2513             :            void *funcdata)
    2514             : {
    2515         328 :         logger *lg;
    2516         328 :         TRC_INFO_IF(WAL) {
    2517           0 :                 TRC_INFO_ENDIF(WAL, "Started processing logs %s/%s version %d\n", fn, logdir, version);
    2518           0 :                 GDKtracer_flush_buffer();
    2519             :         }
    2520         328 :         lg = log_new(debug, fn, logdir, version, prefuncp, postfuncp, funcdata);
    2521         328 :         if (lg == NULL)
    2522             :                 return NULL;
    2523         328 :         TRC_INFO_IF(WAL) {
    2524           0 :                 TRC_INFO_ENDIF(WAL, "Finished processing logs %s/%s\n", fn, logdir);
    2525           0 :                 GDKtracer_flush_buffer();
    2526             :         }
    2527         328 :         if (GDKsetenv("recovery", "finished") != GDK_SUCCEED) {
    2528           0 :                 log_destroy(lg);
    2529           0 :                 return NULL;
    2530             :         }
    2531         328 :         assert(lg->current == NULL);
    2532         328 :         logged_range dummy = {
    2533         328 :                 .cnt = BATcount(lg->catalog_bid),
    2534             :         };
    2535         328 :         lg->current = &dummy;
    2536         328 :         if (log_open_output(lg) != GDK_SUCCEED) {
    2537           0 :                 lg->current = NULL;
    2538           0 :                 log_destroy(lg);
    2539           0 :                 return NULL;
    2540             :         }
    2541         328 :         lg->current = lg->current->next;
    2542         328 :         assert(lg->pending == NULL && lg->flush_ranges == NULL);
    2543         328 :         lg->pending = lg->current;
    2544         328 :         lg->flush_ranges = lg->current;
    2545         328 :         return lg;
    2546             : }
    2547             : 
    2548             : static logged_range *
    2549        6567 : log_next_logfile(logger *lg, ulng ts)
    2550             : {
    2551        6567 :         int m = (ATOMIC_GET(&GDKdebug) & TESTINGMASK) ? 1000 : 100;
    2552        6567 :         if (!lg->pending || !lg->pending->next)
    2553             :                 return NULL;
    2554        6567 :         rotation_lock(lg);
    2555        6567 :         if (ATOMIC_GET(&lg->pending->refcount) == 0 && lg->pending != lg->current && lg->pending != lg->flush_ranges &&
    2556        6567 :             (ulng) ATOMIC_GET(&lg->pending->last_ts) == (ulng) ATOMIC_GET(&lg->pending->flushed_ts) &&
    2557        6567 :             (ulng) ATOMIC_GET(&lg->pending->flushed_ts) <= ts) {
    2558        6009 :                 rotation_unlock(lg);
    2559        6009 :                 logged_range *p = lg->pending;
    2560        6009 :                 for (int i = 1;
    2561       12059 :                      i < m && ATOMIC_GET(&p->refcount) == 0 && p->next && p->next != lg->current &&
    2562        6059 :                      p->next != lg->flush_ranges && (ulng) ATOMIC_GET(&p->last_ts) == (ulng) ATOMIC_GET(&p->flushed_ts)
    2563       18118 :                      && (ulng) ATOMIC_GET(&p->flushed_ts) <= ts; i++)
    2564        6050 :                         p = p->next;
    2565        6009 :                 return p;
    2566             :         }
    2567         558 :         rotation_unlock(lg);
    2568         558 :         return NULL;
    2569             : }
    2570             : 
    2571             : static void
    2572        6009 : log_cleanup_range(logger *lg, ulng id)
    2573             : {
    2574        6009 :         rotation_lock(lg);
    2575       18068 :         while (lg->pending && lg->pending->id <= id) {
    2576       12059 :                 logged_range *p;
    2577       12059 :                 p = lg->pending;
    2578       12059 :                 if (p)
    2579       12059 :                         lg->pending = p->next;
    2580       12059 :                 GDKfree(p);
    2581             :         }
    2582        6009 :         rotation_unlock(lg);
    2583        6009 : }
    2584             : 
    2585             : static void
    2586       68057 : do_rotate(logger *lg)
    2587             : {
    2588       68057 :         logged_range *cur = lg->current;
    2589       68057 :         logged_range *next = cur->next;
    2590       68057 :         if (next) {
    2591       12151 :                 assert(ATOMIC_GET(&next->refcount) == 1);
    2592       12151 :                 lg->current = next;
    2593       12151 :                 if (!LOG_DISABLED(lg) && ATOMIC_GET(&cur->refcount) == 1 && cur->output_log) {
    2594       12008 :                         close_stream(cur->output_log);
    2595       12008 :                         cur->output_log = NULL;
    2596             :                 }
    2597             :         }
    2598       68057 : }
    2599             : 
    2600             : gdk_return
    2601        5394 : log_activate(logger *lg)
    2602             : {
    2603        5394 :         bool flush_cleanup = false;
    2604        5394 :         gdk_return res = GDK_SUCCEED;
    2605             : 
    2606        5394 :         rotation_lock(lg);
    2607        5394 :         const lng current_file_size = LOG_DISABLED(lg) ? 0 : (lng) getfilepos(getFile(lg->current->output_log));
    2608             : 
    2609        5394 :         if (current_file_size == -1) {
    2610           0 :                 rotation_unlock(lg);
    2611           0 :                 return GDK_FAIL;
    2612             :         }
    2613             :         /* file size of 2 means only endian indicator present
    2614             :          * (i.e. effectively empty) */
    2615        5394 :         if (current_file_size <= 2) {
    2616        3451 :                 rotation_unlock(lg);
    2617        3451 :                 return GDK_SUCCEED;
    2618             :         }
    2619             : 
    2620        1943 :         if (!lg->flushnow &&
    2621        1943 :             !lg->current->next &&
    2622        1943 :             current_file_size > 2 &&
    2623        1943 :             (ATOMIC_GET(&lg->current->drops) > (ulng)lg->max_dropped ||
    2624        1938 :                     current_file_size > lg->max_file_size ||
    2625        1920 :                     (GDKusec() - lg->file_age) > lg->max_file_age) &&
    2626          23 :             (ulng) ATOMIC_GET(&lg->current->last_ts) > 0 &&
    2627          23 :             lg->saved_id + 1 == lg->id &&
    2628          23 :             ATOMIC_GET(&lg->current->refcount) == 1 /* no pending work on this file */ ) {
    2629          23 :                 lg->id++;
    2630             :                 /* start new file */
    2631          23 :                 res = log_open_output(lg);
    2632          23 :                 flush_cleanup = true;
    2633          23 :                 do_rotate(lg);
    2634             :         }
    2635          23 :         if (flush_cleanup)
    2636          23 :                 (void) do_flush_range_cleanup(lg);
    2637        1943 :         rotation_unlock(lg);
    2638        1943 :         return res;
    2639             : }
    2640             : 
    2641             : gdk_return
    2642        6567 : log_flush(logger *lg, ulng ts)
    2643             : {
    2644        6567 :         logged_range *pending = log_next_logfile(lg, ts);
    2645        6567 :         ulng lid = pending ? pending->id : 0, olid = lg->saved_id;
    2646        6567 :         if (LOG_DISABLED(lg)) {
    2647           0 :                 lg->saved_id = lid;
    2648           0 :                 lg->saved_tid = lg->tid;
    2649           0 :                 if (lid)
    2650           0 :                         log_cleanup_range(lg, lg->saved_id);
    2651           0 :                 if (log_commit(lg, NULL, NULL, 0) != GDK_SUCCEED)
    2652           0 :                         TRC_ERROR(GDK, "failed to commit");
    2653           0 :                 return GDK_SUCCEED;
    2654             :         }
    2655        6567 :         if (lg->saved_id >= lid)
    2656             :                 return GDK_SUCCEED;
    2657        6009 :         rotation_lock(lg);
    2658        6009 :         ulng lgid = lg->id;
    2659        6009 :         rotation_unlock(lg);
    2660        6009 :         if (lg->saved_id + 1 >= lgid)     /* logger should first release the file */
    2661             :                 return GDK_SUCCEED;
    2662        6009 :         log_return res = LOG_OK;
    2663        6009 :         ulng cid = olid;
    2664        6009 :         assert(lid <= lgid);
    2665             :         uint32_t *updated = NULL;
    2666             :         BUN nupdated = 0;
    2667             :         size_t allocated = 0;
    2668       18068 :         while (cid < lid && res == LOG_OK) {
    2669       12059 :                 if (!lg->input_log) {
    2670       12059 :                         char *filename;
    2671       12059 :                         char id[32];
    2672       12059 :                         if (snprintf(id, sizeof(id), LLFMT, cid + 1) >= (int) sizeof(id)) {
    2673           0 :                                 GDKfree(updated);
    2674           0 :                                 TRC_CRITICAL(GDK, "log_id filename is too large\n");
    2675           0 :                                 return GDK_FAIL;
    2676             :                         }
    2677       12059 :                         if ((filename = GDKfilepath(BBPselectfarm(PERSISTENT, 0, offheap), lg->dir, LOGFILE, id)) == NULL) {
    2678           0 :                                 GDKfree(updated);
    2679           0 :                                 return GDK_FAIL;
    2680             :                         }
    2681       12059 :                         if (strlen(filename) >= FILENAME_MAX) {
    2682           0 :                                 GDKfree(updated);
    2683           0 :                                 TRC_CRITICAL(GDK, "Logger filename path is too large\n");
    2684           0 :                                 GDKfree(filename);
    2685           0 :                                 return GDK_FAIL;
    2686             :                         }
    2687             : 
    2688       12059 :                         bool filemissing = false;
    2689       12059 :                         if (log_open_input(lg, filename, &filemissing) != GDK_SUCCEED) {
    2690           0 :                                 GDKfree(updated);
    2691           0 :                                 GDKfree(filename);
    2692           0 :                                 return GDK_FAIL;
    2693             :                         }
    2694       12059 :                         GDKfree(filename);
    2695             :                 }
    2696             :                 /* we read the full file because skipping is impossible with current log format */
    2697       12059 :                 log_lock(lg);
    2698       12059 :                 if (updated == NULL) {
    2699        6009 :                         nupdated = BATcount(lg->catalog_id);
    2700        6009 :                         allocated = ((nupdated + 31) & ~31) / 8;
    2701        6009 :                         if (allocated == 0)
    2702           0 :                                 allocated = 4;
    2703        6009 :                         updated = GDKzalloc(allocated);
    2704        6009 :                         if (updated == NULL) {
    2705           0 :                                 log_unlock(lg);
    2706           0 :                                 return GDK_FAIL;
    2707             :                         }
    2708        6050 :                 } else if (nupdated < BATcount(lg->catalog_id)) {
    2709         449 :                         BUN n = BATcount(lg->catalog_id);
    2710         449 :                         size_t a = ((n + 31) & ~31) / 8;
    2711         449 :                         if (a > allocated) {
    2712          46 :                                 uint32_t *p = GDKrealloc(updated, a);
    2713          46 :                                 if (p == NULL) {
    2714           0 :                                         GDKfree(updated);
    2715           0 :                                         log_unlock(lg);
    2716           0 :                                         return GDK_FAIL;
    2717             :                                 }
    2718          46 :                                 updated = p;
    2719          46 :                                 memset(updated + allocated / 4, 0, a - allocated);
    2720          46 :                                 allocated = a;
    2721             :                         }
    2722             :                         nupdated = n;
    2723             :                 }
    2724       12059 :                 lg->flushing = true;
    2725       12059 :                 res = log_read_transaction(lg, updated, nupdated);
    2726       12059 :                 lg->flushing = false;
    2727       12059 :                 log_unlock(lg);
    2728       12059 :                 if (res == LOG_EOF) {
    2729       12059 :                         log_close_input(lg);
    2730       12059 :                         res = LOG_OK;
    2731             :                 }
    2732       12059 :                 cid++;
    2733             :         }
    2734        6009 :         if (lid > olid && res == LOG_OK) {
    2735        6009 :                 rotation_lock(lg);      /* protect against concurrent log_tflush rotate check */
    2736        6009 :                 lg->saved_id = lid;
    2737        6009 :                 rotation_unlock(lg);
    2738        6009 :                 if (log_commit(lg, pending, updated, nupdated) != GDK_SUCCEED) {
    2739           0 :                         TRC_ERROR(GDK, "failed to commit");
    2740           0 :                         res = LOG_ERR;
    2741           0 :                         rotation_lock(lg);
    2742           0 :                         lg->saved_id = olid; /* reset !! */
    2743           0 :                         rotation_unlock(lg);
    2744             :                 }
    2745           0 :                 if (res != LOG_ERR) {
    2746       18068 :                         while (olid < lid) {
    2747             :                                 /* Try to cleanup, remove old log file, continue on failure! */
    2748       12059 :                                 olid++;
    2749       12059 :                                 (void) log_cleanup(lg, olid);
    2750             :                         }
    2751             :                 }
    2752        6009 :                 if (res == LOG_OK)
    2753        6009 :                         log_cleanup_range(lg, lg->saved_id);
    2754             :         }
    2755        6009 :         GDKfree(updated);
    2756        6009 :         return res == LOG_ERR ? GDK_FAIL : GDK_SUCCEED;
    2757             : }
    2758             : 
    2759             : /* Clean-up write-ahead log files already persisted in the BATs, leaving only the most recent one.
    2760             :  * Only the bak- files are deleted for the preserved WAL files.
    2761             :  */
    2762             : lng
    2763       15090 : log_changes(logger *lg)
    2764             : {
    2765       15090 :         if (LOG_DISABLED(lg))
    2766             :                 return 0;
    2767       15090 :         rotation_lock(lg);
    2768       15090 :         lng changes = lg->id - lg->saved_id - 1;
    2769       15090 :         rotation_unlock(lg);
    2770       15090 :         return changes;
    2771             : }
    2772             : 
    2773             : int
    2774         459 : log_sequence(logger *lg, int seq, lng *id)
    2775             : {
    2776         459 :         log_lock(lg);
    2777         459 :         BUN p = log_find(lg->seqs_id, lg->dseqs, seq);
    2778             : 
    2779         459 :         if (p != BUN_NONE) {
    2780         340 :                 *id = *(lng *) Tloc(lg->seqs_val, p);
    2781             : 
    2782         340 :                 log_unlock(lg);
    2783         340 :                 return 1;
    2784             :         }
    2785         119 :         log_unlock(lg);
    2786         119 :         return 0;
    2787             : }
    2788             : 
    2789             : gdk_return
    2790      190111 : log_constant(logger *lg, int type, ptr val, log_id id, lng offset, lng cnt)
    2791             : {
    2792      190111 :         bte tpe = find_type(lg, type);
    2793      190111 :         gdk_return ok = GDK_SUCCEED;
    2794      190111 :         logformat l;
    2795      190111 :         lng nr;
    2796      190111 :         l.flag = LOG_UPDATE_CONST;
    2797      190111 :         l.id = id;
    2798      190111 :         nr = cnt;
    2799             : 
    2800      190111 :         if (LOG_DISABLED(lg) || !nr) {
    2801             :                 /* logging is switched off */
    2802       64361 :                 if (nr) {
    2803       64361 :                         log_lock(lg);
    2804       64361 :                         ok = la_bat_update_count(lg, id, offset + cnt, lg->tid);
    2805       64361 :                         log_unlock(lg);
    2806             :                 }
    2807       64361 :                 return ok;
    2808             :         }
    2809             : 
    2810      125750 :         gdk_return(*wt) (const void *, stream *, size_t) = BATatoms[type].atomWrite;
    2811             : 
    2812      125750 :         assert(mnstr_errnr(lg->current->output_log) == MNSTR_NO__ERROR);
    2813      251500 :         if (mnstr_errnr(lg->current->output_log) != MNSTR_NO__ERROR ||
    2814      251500 :             log_write_format(lg, &l) != GDK_SUCCEED ||
    2815      251500 :             !mnstr_writeLng(lg->current->output_log, nr) ||
    2816      251500 :             mnstr_write(lg->current->output_log, &tpe, 1, 1) != 1 ||
    2817      125750 :             !mnstr_writeLng(lg->current->output_log, offset)) {
    2818           0 :                 ATOMIC_DEC(&lg->current->refcount);
    2819           0 :                 ok = GDK_FAIL;
    2820           0 :                 goto bailout;
    2821             :         }
    2822             : 
    2823      125750 :         ok = wt(val, lg->current->output_log, 1);
    2824             : 
    2825      125750 :         TRC_DEBUG(WAL, "Logged %d " LLFMT " inserts\n", id, nr);
    2826             : 
    2827      125750 :   bailout:
    2828      125750 :         if (ok != GDK_SUCCEED) {
    2829           0 :                 const char *err = mnstr_peek_error(lg->current->output_log);
    2830           0 :                 TRC_CRITICAL(GDK, "write failed%s%s\n", err ? ": " : "", err ? err : "");
    2831             :         }
    2832             :         return ok;
    2833             : }
    2834             : 
    2835             : static gdk_return
    2836       19483 : string_writer(logger *lg, BAT *b, lng offset, lng nr)
    2837             : {
    2838       19483 :         size_t bufsz = lg->wbufsize, resize = 0;
    2839       19483 :         BUN end = (BUN) (offset + nr);
    2840       19483 :         char *buf = lg->wbuf;
    2841       19483 :         gdk_return res = GDK_SUCCEED;
    2842             : 
    2843       19483 :         if (!buf)
    2844             :                 return GDK_FAIL;
    2845       19483 :         assert(mnstr_errnr(lg->current->output_log) == MNSTR_NO__ERROR);
    2846       19483 :         if (mnstr_errnr(lg->current->output_log) != MNSTR_NO__ERROR)
    2847             :                 return GDK_FAIL;
    2848       19483 :         BATiter bi = bat_iterator(b);
    2849       19483 :         BUN p = (BUN) offset;
    2850       39018 :         for (; p < end;) {
    2851       19535 :                 size_t sz = 0;
    2852       19535 :                 if (resize) {
    2853           2 :                         if ((buf = GDKrealloc(lg->wbuf, resize)) == NULL) {
    2854             :                                 res = GDK_FAIL;
    2855             :                                 break;
    2856             :                         }
    2857           2 :                         lg->wbuf = buf;
    2858           2 :                         lg->wbufsize = bufsz = resize;
    2859           2 :                         resize = 0;
    2860             :                 }
    2861       19535 :                 char *dst = buf;
    2862       93711 :                 for (; p < end && sz < bufsz; p++) {
    2863       74228 :                         const char *s = BUNtvar(bi, p);
    2864       74228 :                         size_t len = strlen(s) + 1;
    2865       74228 :                         if ((sz + len) > bufsz) {
    2866          52 :                                 if (len > bufsz)
    2867           2 :                                         resize = len + bufsz;
    2868             :                                 break;
    2869             :                         } else {
    2870       74176 :                                 memcpy(dst, s, len);
    2871       74176 :                                 dst += len;
    2872       74176 :                                 sz += len;
    2873             :                         }
    2874             :                 }
    2875       39068 :                 if (sz &&
    2876       39066 :                     (!mnstr_writeLng(lg->current->output_log, (lng) sz) ||
    2877       19533 :                      mnstr_write(lg->current->output_log, buf, sz, 1) != 1)) {
    2878             :                         res = GDK_FAIL;
    2879             :                         break;
    2880             :                 }
    2881             :         }
    2882       19483 :         bat_iterator_end(&bi);
    2883       19483 :         return res;
    2884             : }
    2885             : 
    2886             : static gdk_return
    2887      502616 : internal_log_bat(logger *lg, BAT *b, log_id id, lng offset, lng cnt, int sliced, lng total_cnt)
    2888             : {
    2889      502616 :         bte tpe = find_type(lg, b->ttype);
    2890      502616 :         gdk_return ok = GDK_SUCCEED;
    2891      502616 :         logformat l;
    2892      502616 :         BUN p;
    2893      502616 :         lng nr;
    2894      502616 :         l.flag = LOG_UPDATE_BULK;
    2895      502616 :         l.id = id;
    2896      502616 :         nr = cnt;
    2897             : 
    2898      502616 :         if (LOG_DISABLED(lg) || !nr) {
    2899             :                 /* logging is switched off */
    2900      202500 :                 if (nr)
    2901      148359 :                         return la_bat_update_count(lg, id, offset + cnt, lg->tid);
    2902             :                 return GDK_SUCCEED;
    2903             :         }
    2904             : 
    2905      270392 :         gdk_return(*wt) (const void *, stream *, size_t) = BATatoms[b->ttype].atomWrite;
    2906             : 
    2907      270392 :         assert(mnstr_errnr(lg->current->output_log) == MNSTR_NO__ERROR);
    2908      270392 :         if (mnstr_errnr(lg->current->output_log) != MNSTR_NO__ERROR) {
    2909           0 :                 ok = GDK_FAIL;
    2910           0 :                 goto bailout;
    2911             :         }
    2912             : 
    2913      270392 :         if (lg->total_cnt == 0)      /* signals single bulk message or first part of bat logged in parts */
    2914      540576 :                 if (log_write_format(lg, &l) != GDK_SUCCEED ||
    2915      670436 :                     !mnstr_writeLng(lg->current->output_log, total_cnt ? total_cnt : cnt) ||
    2916      540576 :                     mnstr_write(lg->current->output_log, &tpe, 1, 1) != 1 ||
    2917      410716 :                     !mnstr_writeLng(lg->current->output_log, total_cnt ? -1 : offset)) {  /* offset = -1 indicates bat was logged in parts */
    2918           0 :                         ok = GDK_FAIL;
    2919           0 :                         goto bailout;
    2920             :                 }
    2921      270392 :         if (!total_cnt)
    2922      129860 :                 total_cnt = cnt;
    2923      270392 :         lg->total_cnt += cnt;
    2924             : 
    2925      270392 :         if (lg->total_cnt == total_cnt)      /* This is the last to be logged part of this bat, we can already reset the total_cnt */
    2926      270288 :                 lg->total_cnt = 0;
    2927             : 
    2928             :         /* if offset is just for the log, but BAT is already sliced, reset offset */
    2929      270392 :         if (sliced)
    2930        1482 :                 offset = 0;
    2931      270392 :         if (b->ttype == TYPE_msk) {
    2932           0 :                 BATiter bi = bat_iterator(b);
    2933           0 :                 if (offset % 32 == 0) {
    2934           0 :                         if (!mnstr_writeIntArray(lg->current->output_log, (int *) ((char *) bi.base + offset / 32),
    2935           0 :                              (size_t) ((nr + 31) / 32)))
    2936           0 :                                 ok = GDK_FAIL;
    2937             :                 } else {
    2938           0 :                         for (lng i = 0; i < nr; i += 32) {
    2939             :                                 uint32_t v = 0;
    2940           0 :                                 for (int j = 0; j < 32 && i + j < nr; j++)
    2941           0 :                                         v |= (uint32_t) Tmskval(&bi, (BUN) (offset + i + j)) << j;
    2942           0 :                                 if (!mnstr_writeInt(lg->current->output_log, (int) v)) {
    2943             :                                         ok = GDK_FAIL;
    2944             :                                         break;
    2945             :                                 }
    2946             :                         }
    2947             :                 }
    2948           0 :                 bat_iterator_end(&bi);
    2949      520657 :         } else if (b->ttype < TYPE_str && !isVIEW(b)) {
    2950      250265 :                 BATiter bi = bat_iterator(b);
    2951      250265 :                 const void *t = BUNtail(bi, (BUN) offset);
    2952             : 
    2953      250265 :                 ok = wt(t, lg->current->output_log, (size_t) nr);
    2954      250265 :                 bat_iterator_end(&bi);
    2955       20127 :         } else if (b->ttype == TYPE_str) {
    2956             :                 /* efficient string writes */
    2957       19477 :                 ok = string_writer(lg, b, offset, nr);
    2958             :         } else {
    2959         650 :                 BATiter bi = bat_iterator(b);
    2960         650 :                 BUN end = (BUN) (offset + nr);
    2961        1658 :                 for (p = (BUN) offset; p < end && ok == GDK_SUCCEED; p++) {
    2962        1008 :                         const void *t = BUNtail(bi, p);
    2963             : 
    2964        1008 :                         ok = wt(t, lg->current->output_log, 1);
    2965             :                 }
    2966         650 :                 bat_iterator_end(&bi);
    2967             :         }
    2968             : 
    2969      270392 :         TRC_DEBUG(WAL, "Logged %d " LLFMT " inserts\n", id, nr);
    2970             : 
    2971      270392 :   bailout:
    2972      270392 :         if (ok != GDK_SUCCEED) {
    2973           0 :                 ATOMIC_DEC(&lg->current->refcount);
    2974           0 :                 const char *err = mnstr_peek_error(lg->current->output_log);
    2975           0 :                 TRC_CRITICAL(GDK, "write failed%s%s\n", err ? ": " : "", err ? err : "");
    2976             :         }
    2977             :         return ok;
    2978             : }
    2979             : 
    2980             : /*
    2981             :  * Changes made to the BAT descriptor should be stored in the log
    2982             :  * files.  Actually, we need to save the descriptor file, perhaps we
    2983             :  * should simply introduce a versioning scheme.
    2984             :  */
    2985             : gdk_return
    2986      236485 : log_bat_persists(logger *lg, BAT *b, log_id id)
    2987             : {
    2988      236485 :         log_lock(lg);
    2989      236485 :         bte ta = find_type(lg, b->ttype);
    2990      236485 :         logformat l;
    2991             : 
    2992      236485 :         if (log_add_bat(lg, b, id, -1) != GDK_SUCCEED) {
    2993           0 :                 log_unlock(lg);
    2994           0 :                 if (!LOG_DISABLED(lg))
    2995           0 :                         ATOMIC_DEC(&lg->current->refcount);
    2996           0 :                 return GDK_FAIL;
    2997             :         }
    2998             : 
    2999      236485 :         l.flag = LOG_CREATE;
    3000      236485 :         l.id = id;
    3001      236485 :         if (!LOG_DISABLED(lg)) {
    3002      158090 :                 assert(mnstr_errnr(lg->current->output_log) == MNSTR_NO__ERROR);
    3003      316180 :                 if (mnstr_errnr(lg->current->output_log) != MNSTR_NO__ERROR ||
    3004      316180 :                     log_write_format(lg, &l) != GDK_SUCCEED ||
    3005      158090 :                     mnstr_write(lg->current->output_log, &ta, 1, 1) != 1) {
    3006           0 :                         log_unlock(lg);
    3007           0 :                         ATOMIC_DEC(&lg->current->refcount);
    3008           0 :                         return GDK_FAIL;
    3009             :                 }
    3010             :         }
    3011      236485 :         TRC_DEBUG(WAL, "id (%d) bat (%d)\n", id, b->batCacheid);
    3012      236485 :         gdk_return r = internal_log_bat(lg, b, id, 0, BATcount(b), 0, 0);
    3013      236485 :         log_unlock(lg);
    3014      236485 :         if (r != GDK_SUCCEED)
    3015           0 :                 ATOMIC_DEC(&lg->current->refcount);
    3016             :         return r;
    3017             : }
    3018             : 
    3019             : gdk_return
    3020       22146 : log_bat_transient(logger *lg, log_id id)
    3021             : {
    3022       22146 :         log_lock(lg);
    3023       22146 :         log_bid bid = internal_find_bat(lg, id, -1);
    3024       22146 :         logformat l;
    3025             : 
    3026       22146 :         if (bid < 0) {
    3027           0 :                 log_unlock(lg);
    3028           0 :                 return GDK_FAIL;
    3029             :         }
    3030       22146 :         if (!bid) {
    3031           0 :                 GDKerror("log_bat_transient failed to find bid for object %d\n", id);
    3032           0 :                 log_unlock(lg);
    3033           0 :                 return GDK_FAIL;
    3034             :         }
    3035       22146 :         l.flag = LOG_DESTROY;
    3036       22146 :         l.id = id;
    3037             : 
    3038       22146 :         if (!LOG_DISABLED(lg)) {
    3039       10232 :                 if (log_write_format(lg, &l) != GDK_SUCCEED) {
    3040           0 :                         TRC_CRITICAL(GDK, "write failed\n");
    3041           0 :                         log_unlock(lg);
    3042           0 :                         ATOMIC_DEC(&lg->current->refcount);
    3043           0 :                         return GDK_FAIL;
    3044             :                 }
    3045             :         }
    3046       22146 :         TRC_DEBUG(WAL, "Logged destroyed bat (%d) %d\n", id, bid);
    3047       22146 :         BAT *b = BBPquickdesc(bid);
    3048       22146 :         assert(b);
    3049       22146 :         BUN cnt = BATcount(b);
    3050       22146 :         ATOMIC_ADD(&lg->current->drops, cnt);
    3051       22146 :         gdk_return r = log_del_bat(lg, bid);
    3052       22146 :         log_unlock(lg);
    3053       22146 :         if (r != GDK_SUCCEED)
    3054           0 :                 ATOMIC_DEC(&lg->current->refcount);
    3055             :         return r;
    3056             : }
    3057             : 
    3058             : static gdk_return
    3059      117264 : log_bat_group(logger *lg, log_id id)
    3060             : {
    3061      117264 :         if (LOG_DISABLED(lg))
    3062             :                 return GDK_SUCCEED;
    3063             : 
    3064       76484 :         logformat l;
    3065       76484 :         l.flag = LOG_BAT_GROUP;
    3066       76484 :         l.id = id;
    3067       76484 :         gdk_return r = log_write_format(lg, &l);
    3068       76484 :         return r;
    3069             : }
    3070             : 
    3071             : gdk_return
    3072       58632 : log_bat_group_start(logger *lg, log_id id)
    3073             : {
    3074             :         /*positive table id represent start of logged table */
    3075       58632 :         return log_bat_group(lg, id);
    3076             : }
    3077             : 
    3078             : gdk_return
    3079       58632 : log_bat_group_end(logger *lg, log_id id)
    3080             : {
    3081             :         /*negative table id represent end of logged table */
    3082       58632 :         return log_bat_group(lg, -id);
    3083             : }
    3084             : 
    3085             : gdk_return
    3086      263450 : log_bat(logger *lg, BAT *b, log_id id, lng offset, lng cnt, lng total_cnt)
    3087             : {
    3088      263450 :         log_lock(lg);
    3089      263450 :         gdk_return r = internal_log_bat(lg, b, id, offset, cnt, 0, total_cnt);
    3090      263450 :         log_unlock(lg);
    3091      263450 :         return r;
    3092             : }
    3093             : 
    3094             : gdk_return
    3095        2741 : log_delta(logger *lg, BAT *uid, BAT *uval, log_id id)
    3096             : {
    3097        2741 :         log_lock(lg);
    3098        2741 :         bte tpe = find_type(lg, uval->ttype);
    3099        2741 :         gdk_return ok = GDK_SUCCEED;
    3100        2741 :         logformat l;
    3101        2741 :         BUN p;
    3102        2741 :         lng nr;
    3103             : 
    3104        2741 :         if (BATtdense(uid)) {
    3105        2681 :                 ok = internal_log_bat(lg, uval, id, uid->tseqbase, BATcount(uval), 1, 0);
    3106        2681 :                 log_unlock(lg);
    3107        2681 :                 if (!LOG_DISABLED(lg) && ok != GDK_SUCCEED)
    3108           0 :                         ATOMIC_DEC(&lg->current->refcount);
    3109        2681 :                 return ok;
    3110             :         }
    3111             : 
    3112          60 :         assert(uid->ttype == TYPE_oid || uid->ttype == TYPE_void);
    3113             : 
    3114          60 :         l.flag = LOG_UPDATE;
    3115          60 :         l.id = id;
    3116          60 :         nr = (BATcount(uval));
    3117          60 :         assert(nr);
    3118             : 
    3119          60 :         if (LOG_DISABLED(lg)) {
    3120             :                 /* logging is switched off */
    3121          41 :                 log_unlock(lg);
    3122          41 :                 return GDK_SUCCEED;
    3123             :         }
    3124             : 
    3125          19 :         BATiter vi = bat_iterator(uval);
    3126          19 :         gdk_return(*wh) (const void *, stream *, size_t) = BATatoms[TYPE_oid].atomWrite;
    3127          19 :         gdk_return(*wt) (const void *, stream *, size_t) = BATatoms[uval->ttype].atomWrite;
    3128             : 
    3129          19 :         assert(mnstr_errnr(lg->current->output_log) == MNSTR_NO__ERROR);
    3130          38 :         if (mnstr_errnr(lg->current->output_log) != MNSTR_NO__ERROR ||
    3131          38 :             log_write_format(lg, &l) != GDK_SUCCEED ||
    3132          38 :             !mnstr_writeLng(lg->current->output_log, nr) ||
    3133          19 :             mnstr_write(lg->current->output_log, &tpe, 1, 1) != 1) {
    3134           0 :                 ok = GDK_FAIL;
    3135           0 :                 goto bailout;
    3136             :         }
    3137        1074 :         for (p = 0; p < BATcount(uid) && ok == GDK_SUCCEED; p++) {
    3138        1055 :                 const oid id = BUNtoid(uid, p);
    3139             : 
    3140        1055 :                 ok = wh(&id, lg->current->output_log, 1);
    3141             :         }
    3142          19 :         if (uval->ttype == TYPE_msk) {
    3143           0 :                 if (!mnstr_writeIntArray(lg->current->output_log, vi.base,
    3144           0 :                                          (BATcount(uval) + 31) / 32))
    3145           0 :                         ok = GDK_FAIL;
    3146          32 :         } else if (uval->ttype < TYPE_str && !isVIEW(uval)) {
    3147          13 :                 const void *t = BUNtail(vi, 0);
    3148             : 
    3149          13 :                 ok = wt(t, lg->current->output_log, (size_t) nr);
    3150           6 :         } else if (uval->ttype == TYPE_str) {
    3151             :                 /* efficient string writes */
    3152           6 :                 ok = string_writer(lg, uval, 0, nr);
    3153             :         } else {
    3154           0 :                 for (p = 0; p < BATcount(uid) && ok == GDK_SUCCEED; p++) {
    3155           0 :                         const void *val = BUNtail(vi, p);
    3156             : 
    3157           0 :                         ok = wt(val, lg->current->output_log, 1);
    3158             :                 }
    3159             :         }
    3160             : 
    3161          19 :         TRC_DEBUG(WAL, "Logged %d " LLFMT " inserts\n", id, nr);
    3162             : 
    3163          19 :   bailout:
    3164          19 :         bat_iterator_end(&vi);
    3165          19 :         if (ok != GDK_SUCCEED) {
    3166           0 :                 const char *err = mnstr_peek_error(lg->current->output_log);
    3167           0 :                 TRC_CRITICAL(GDK, "write failed%s%s\n", err ? ": " : "", err ? err : "");
    3168           0 :                 ATOMIC_DEC(&lg->current->refcount);
    3169             :         }
    3170          19 :         log_unlock(lg);
    3171          19 :         return ok;
    3172             : }
    3173             : 
    3174             : static inline bool
    3175       57098 : check_rotation_conditions(logger *lg)
    3176             : {
    3177       57098 :         if (LOG_DISABLED(lg))
    3178             :                 return false;
    3179             : 
    3180       57095 :         if (lg->current->next)
    3181             :                 return false;   /* do not rotate if there is already a prepared next current */
    3182       57095 :         if (mnstr_errnr(lg->current->output_log) != MNSTR_NO__ERROR)
    3183             :                 return true;
    3184       57095 :         const lng current_file_size = (lng) getfilepos(getFile(lg->current->output_log));
    3185             : 
    3186       57095 :         if (current_file_size == -1)
    3187             :                 return false;
    3188             : 
    3189       57095 :         assert(current_file_size >= 0);
    3190             : 
    3191       57095 :         if (current_file_size == 2)
    3192             :                 return false;
    3193             : 
    3194        1428 :         bool res = (lg->saved_id + 1 >= lg->id && ATOMIC_GET(&lg->current->drops) > (ulng)lg->max_dropped) ||
    3195       56304 :                 current_file_size > lg->max_file_size ||
    3196       50263 :                 (GDKusec() - lg->file_age) > lg->max_file_age;
    3197             : 
    3198       54883 :         return res;
    3199             : }
    3200             : 
    3201             : gdk_return
    3202       62566 : log_tend(logger *lg)
    3203             : {
    3204       62566 :         TRC_DEBUG(WAL, "tend %d\n", lg->tid);
    3205             : 
    3206       62566 :         if (LOG_DISABLED(lg))
    3207             :                 return GDK_SUCCEED;
    3208             : 
    3209       57095 :         gdk_return result;
    3210       57095 :         logformat l;
    3211       57095 :         l.flag = LOG_END;
    3212       57095 :         l.id = lg->tid;
    3213             : 
    3214       57095 :         if ((result = log_write_format(lg, &l)) == GDK_SUCCEED)
    3215       57095 :                 ATOMIC_INC(&lg->nr_flushers);
    3216             :         return result;
    3217             : }
    3218             : 
    3219             : #define flush_lock(lg)          MT_lock_set(&(lg)->flush_lock)
    3220             : #define flush_unlock(lg)        MT_lock_unset(&(lg)->flush_lock)
    3221             : 
    3222             : static inline gdk_return
    3223       56719 : do_flush(logged_range *range)
    3224             : {
    3225             :         /* assumes flush lock */
    3226       56719 :         stream *output_log = range->output_log;
    3227       56719 :         ulng ts = ATOMIC_GET(&range->last_ts);
    3228             : 
    3229       56719 :         if (mnstr_flush(output_log, MNSTR_FLUSH_DATA) ||
    3230       56719 :             (!(ATOMIC_GET(&GDKdebug) & NOSYNCMASK) && mnstr_fsync(output_log)))
    3231           0 :                 return GDK_FAIL;
    3232       56719 :         ATOMIC_SET(&range->flushed_ts, ts);
    3233       56719 :         return GDK_SUCCEED;
    3234             : }
    3235             : 
    3236             : static inline void
    3237       62563 : log_tdone(logger *lg, logged_range *range, ulng commit_ts)
    3238             : {
    3239       62563 :         (void) lg;
    3240       62563 :         TRC_DEBUG(WAL, "tdone " LLFMT "\n", commit_ts);
    3241             : 
    3242       62563 :         if ((ulng) ATOMIC_GET(&range->last_ts) < commit_ts)
    3243       62187 :                 ATOMIC_SET(&range->last_ts, commit_ts);
    3244       62563 : }
    3245             : 
    3246             : gdk_return
    3247       62566 : log_tflush(logger *lg, ulng file_id, ulng commit_ts)
    3248             : {
    3249       62566 :         rotation_lock(lg);
    3250       62566 :         if (lg->flushnow) {
    3251        5468 :                 logged_range *p = lg->current;
    3252        5468 :                 assert(lg->flush_ranges == lg->current);
    3253        5468 :                 assert(ATOMIC_GET(&lg->current->flushed_ts) == ATOMIC_GET(&lg->current->last_ts));
    3254        5468 :                 log_tdone(lg, lg->current, commit_ts);
    3255        5468 :                 ATOMIC_SET(&lg->current->flushed_ts, commit_ts);
    3256        5468 :                 lg->id++;
    3257        5468 :                 lg->flushnow = false;
    3258        5468 :                 if (log_open_output(lg) != GDK_SUCCEED)
    3259           0 :                         GDKfatal("Could not create new log file\n");  /* TODO: does not have to be fatal (yet) */
    3260        5468 :                 do_rotate(lg);
    3261        5468 :                 (void) do_flush_range_cleanup(lg);
    3262        5468 :                 assert(lg->flush_ranges == lg->current);
    3263        5468 :                 rotation_unlock(lg);
    3264        5468 :                 return log_commit(lg, p, NULL, 0);
    3265             :         }
    3266             : 
    3267       57098 :         if (LOG_DISABLED(lg)) {
    3268           3 :                 rotation_unlock(lg);
    3269           3 :                 return GDK_SUCCEED;
    3270             :         }
    3271             : 
    3272       57095 :         logged_range *frange = do_flush_range_cleanup(lg);
    3273             : 
    3274       57166 :         while (frange->next && frange->id < file_id) {
    3275             :                 assert(frange->next);
    3276             :                 frange = frange->next;
    3277             :         }
    3278             : 
    3279       57095 :         log_tdone(lg, frange, commit_ts);
    3280             : 
    3281       57095 :         if ((ulng) ATOMIC_GET(&frange->flushed_ts) < commit_ts) {
    3282             :                 /* delay needed ? */
    3283             : 
    3284       56719 :                 flush_lock(lg);
    3285             :                 /* check it one more time */
    3286       56719 :                 if ((ulng) ATOMIC_GET(&frange->flushed_ts) < commit_ts)
    3287       56719 :                         do_flush(frange);
    3288       56719 :                 flush_unlock(lg);
    3289             :         }
    3290             :         /* else somebody else has flushed our log file */
    3291             : 
    3292       57095 :         if (ATOMIC_DEC(&frange->refcount) == 1 && !LOG_DISABLED(lg)) {
    3293       55703 :                 if (frange != lg->current && frange->output_log) {
    3294         143 :                         close_stream(frange->output_log);
    3295         143 :                         frange->output_log = NULL;
    3296             :                 }
    3297             :         }
    3298             : 
    3299       57095 :         if (ATOMIC_DEC(&lg->nr_flushers) == 0) {
    3300             :                 /* I am the last flusher
    3301             :                  * if present,
    3302             :                  * wake up the exclusive flusher in log_tstart */
    3303             :                 /* rotation_lock is still being held */
    3304       56494 :                 MT_cond_signal(&lg->excl_flush_cv);
    3305             :         }
    3306       57095 :         rotation_unlock(lg);
    3307             : 
    3308       57095 :         return GDK_SUCCEED;
    3309             : }
    3310             : 
    3311             : static gdk_return
    3312        6900 : log_tsequence_(logger *lg, int seq, lng val)
    3313             : {
    3314        6900 :         logformat l;
    3315             : 
    3316        6900 :         if (LOG_DISABLED(lg))
    3317             :                 return GDK_SUCCEED;
    3318        2833 :         l.flag = LOG_SEQ;
    3319        2833 :         l.id = seq;
    3320             : 
    3321        2833 :         TRC_DEBUG(WAL, "tsequence(%d," LLFMT ")\n", seq, val);
    3322             : 
    3323        2833 :         assert(mnstr_errnr(lg->current->output_log) == MNSTR_NO__ERROR);
    3324        5666 :         if (mnstr_errnr(lg->current->output_log) != MNSTR_NO__ERROR ||
    3325        5666 :             log_write_format(lg, &l) != GDK_SUCCEED ||
    3326        2833 :             !mnstr_writeLng(lg->current->output_log, val)) {
    3327           0 :                 TRC_CRITICAL(GDK, "write failed\n");
    3328           0 :                 ATOMIC_DEC(&lg->current->refcount);
    3329           0 :                 return GDK_FAIL;
    3330             :         }
    3331             :         return GDK_SUCCEED;
    3332             : }
    3333             : 
    3334             : /* a transaction in it self */
    3335             : gdk_return
    3336        6900 : log_tsequence(logger *lg, int seq, lng val)
    3337             : {
    3338        6900 :         BUN p;
    3339             : 
    3340        6900 :         TRC_DEBUG(WAL, "tsequence(%d," LLFMT ")\n", seq, val);
    3341             : 
    3342        6900 :         log_lock(lg);
    3343        6900 :         MT_lock_set(&lg->seqs_id->theaplock);
    3344        6900 :         BUN inserted = lg->seqs_id->batInserted;
    3345        6900 :         MT_lock_unset(&lg->seqs_id->theaplock);
    3346        6900 :         if ((p = log_find(lg->seqs_id, lg->dseqs, seq)) != BUN_NONE && p >= inserted) {
    3347        1691 :                 assert(lg->seqs_val->hseqbase == 0);
    3348        1691 :                 if (BUNreplace(lg->seqs_val, p, &val, true) != GDK_SUCCEED) {
    3349           0 :                         log_unlock(lg);
    3350           0 :                         return GDK_FAIL;
    3351             :                 }
    3352             :         } else {
    3353        4847 :                 if (p != BUN_NONE) {
    3354        4847 :                         oid pos = p;
    3355        4847 :                         if (BUNappend(lg->dseqs, &pos, true) != GDK_SUCCEED) {
    3356           0 :                                 log_unlock(lg);
    3357           0 :                                 return GDK_FAIL;
    3358             :                         }
    3359             :                 }
    3360       10418 :                 if (BUNappend(lg->seqs_id, &seq, true) != GDK_SUCCEED ||
    3361        5209 :                     BUNappend(lg->seqs_val, &val, true) != GDK_SUCCEED) {
    3362           0 :                         log_unlock(lg);
    3363           0 :                         return GDK_FAIL;
    3364             :                 }
    3365             :         }
    3366        6900 :         gdk_return r = log_tsequence_(lg, seq, val);
    3367        6900 :         log_unlock(lg);
    3368        6900 :         return r;
    3369             : }
    3370             : 
    3371             : static gdk_return
    3372       11806 : bm_commit(logger *lg, logged_range *pending, uint32_t *updated, BUN maxupdated)
    3373             : {
    3374       11806 :         log_lock(lg);
    3375       11806 :         BAT *b = lg->catalog_bid;
    3376       11806 :         const log_bid *bids;
    3377             : 
    3378       11806 :         bids = (log_bid *) Tloc(b, 0);
    3379      248235 :         for (BUN p = b->batInserted, cnt = pending ? pending->cnt : BATcount(b); p < cnt; p++) {
    3380      236429 :                 log_bid bid = bids[p];
    3381      236429 :                 BAT *lb = BBP_desc(bid);
    3382             : 
    3383      236429 :                 assert(bid);
    3384      236429 :                 if (lb->batCacheid == 0 || BATmode(lb, false) != GDK_SUCCEED) {
    3385           0 :                         GDKwarning("Failed to set bat (%d%s) persistent\n", bid, !lb ? " gone" : "");
    3386           0 :                         log_unlock(lg);
    3387           0 :                         return GDK_FAIL;
    3388             :                 }
    3389             : 
    3390      236429 :                 assert(lb->batRestricted != BAT_WRITE);
    3391             : 
    3392      236429 :                 TRC_DEBUG(WAL, "create %d (%d)\n", bid, BBP_lrefs(bid));
    3393             :         }
    3394             :         /* bm_subcommit releases the lock */
    3395       11806 :         return bm_subcommit(lg, pending, updated, maxupdated);
    3396             : }
    3397             : 
    3398             : static gdk_return
    3399      236738 : log_add_bat(logger *lg, BAT *b, log_id id, int tid)
    3400             : {
    3401      236738 :         log_bid bid = internal_find_bat(lg, id, tid);
    3402      236738 :         lng cnt = 0;
    3403      236738 :         lng lid = lng_nil;
    3404             : 
    3405      236738 :         assert(b->batRestricted != BAT_WRITE);
    3406      236738 :         assert(b->batRole == PERSISTENT);
    3407      236738 :         if (bid < 0)
    3408             :                 return GDK_FAIL;
    3409      236738 :         if (bid) {
    3410      155783 :                 if (bid != b->batCacheid) {
    3411      155780 :                         if (log_del_bat(lg, bid) != GDK_SUCCEED)
    3412             :                                 return GDK_FAIL;
    3413             :                 } else {
    3414             :                         return GDK_SUCCEED;
    3415             :                 }
    3416             :         }
    3417      236735 :         bid = b->batCacheid;
    3418      236735 :         TRC_DEBUG(WAL, "create %d\n", id);
    3419      236735 :         assert(log_find(lg->catalog_bid, lg->dcatalog, bid) == BUN_NONE);
    3420      473470 :         if (BUNappend(lg->catalog_bid, &bid, true) != GDK_SUCCEED ||
    3421      473470 :             BUNappend(lg->catalog_id, &id, true) != GDK_SUCCEED ||
    3422      473470 :             BUNappend(lg->catalog_cnt, &cnt, false) != GDK_SUCCEED ||
    3423      236735 :             BUNappend(lg->catalog_lid, &lid, false) != GDK_SUCCEED)
    3424           0 :                 return GDK_FAIL;
    3425      236735 :         if (lg->current)
    3426      236482 :                 lg->current->cnt++;
    3427      236735 :         BBPretain(bid);
    3428      236735 :         return GDK_SUCCEED;
    3429             : }
    3430             : 
    3431             : static gdk_return
    3432      177966 : log_del_bat(logger *lg, log_bid bid)
    3433             : {
    3434      177966 :         BUN p = log_find(lg->catalog_bid, lg->dcatalog, bid);
    3435      177966 :         lng lid = lg->tid;
    3436             : 
    3437      177966 :         assert(p != BUN_NONE);
    3438      177966 :         if (p == BUN_NONE) {
    3439             :                 GDKerror("cannot find BAT\n");
    3440             :                 return GDK_FAIL;
    3441             :         }
    3442             : 
    3443      177966 :         assert(lg->catalog_lid->hseqbase == 0);
    3444      177966 :         return BUNreplace(lg->catalog_lid, p, &lid, false);
    3445             : }
    3446             : 
    3447             : /* returns -1 on failure, 0 when not found, > 0 when found */
    3448             : log_bid
    3449       26898 : log_find_bat(logger *lg, log_id id)
    3450             : {
    3451       26898 :         log_lock(lg);
    3452       26898 :         log_bid bid = internal_find_bat(lg, id, -1);
    3453       26898 :         log_unlock(lg);
    3454       26898 :         if (!bid) {
    3455           0 :                 GDKerror("logger_find_bat failed to find bid for object %d\n", id);
    3456           0 :                 return GDK_FAIL;
    3457             :         }
    3458             :         return bid;
    3459             : }
    3460             : 
    3461             : 
    3462             : 
    3463             : gdk_return
    3464       62567 : log_tstart(logger *lg, bool flushnow, ulng *file_id)
    3465             : {
    3466       62567 :         rotation_lock(lg);
    3467       62567 :         if (flushnow) {
    3468        5469 :                 if (file_id == NULL) {
    3469             :                         /* special case: ask store_manager to rotate log file */
    3470           1 :                         lg->file_age = 0;
    3471           1 :                         rotation_unlock(lg);
    3472           1 :                         return GDK_SUCCEED;
    3473             :                 }
    3474             :                 /* I am now the exclusive flusher */
    3475        5468 :                 while (ATOMIC_GET(&lg->nr_flushers)) {
    3476             :                         /* I am waiting until all existing flushers are done */
    3477           0 :                         MT_cond_wait(&lg->excl_flush_cv, &lg->rotation_lock);
    3478             :                 }
    3479        5468 :                 assert(ATOMIC_GET(&lg->nr_flushers) == 0);
    3480             : 
    3481        5468 :                 if (ATOMIC_GET(&lg->current->last_ts)) {
    3482        2039 :                         lg->id++;
    3483        2039 :                         if (log_open_output(lg) != GDK_SUCCEED)
    3484           0 :                                 GDKfatal("Could not create new log file\n");  /* TODO: does not have to be fatal (yet) */
    3485             :                 }
    3486        5468 :                 do_rotate(lg);
    3487        5468 :                 (void) do_flush_range_cleanup(lg);
    3488        5468 :                 rotation_unlock(lg);
    3489             : 
    3490        5468 :                 if (lg->saved_id + 1 < lg->id)
    3491        5077 :                         log_flush(lg, (1ULL << 63));
    3492        5468 :                 lg->flushnow = flushnow;
    3493             :         } else {
    3494       57098 :                 if (check_rotation_conditions(lg)) {
    3495        4621 :                         lg->id++;
    3496        4621 :                         if (log_open_output(lg) != GDK_SUCCEED)
    3497           0 :                                 GDKfatal("Could not create new log file\n");  /* TODO: does not have to be fatal (yet) */
    3498             :                 }
    3499       57098 :                 do_rotate(lg);
    3500       57098 :                 rotation_unlock(lg);
    3501             :         }
    3502             : 
    3503       62566 :         if (LOG_DISABLED(lg))
    3504             :                 return GDK_SUCCEED;
    3505             : 
    3506       57095 :         ATOMIC_INC(&lg->current->refcount);
    3507       57095 :         *file_id = lg->current->id;
    3508       57095 :         logformat l;
    3509       57095 :         l.flag = LOG_START;
    3510       57095 :         l.id = ++lg->tid;
    3511             : 
    3512       57095 :         TRC_DEBUG(WAL, "tstart %d\n", lg->tid);
    3513       57095 :         if (log_write_format(lg, &l) != GDK_SUCCEED) {
    3514           0 :                 ATOMIC_DEC(&lg->current->refcount);
    3515           0 :                 return GDK_FAIL;
    3516             :         }
    3517             : 
    3518             :         return GDK_SUCCEED;
    3519             : }
    3520             : 
    3521             : void
    3522         116 : log_printinfo(logger *lg)
    3523             : {
    3524         116 :         if (!rotation_trylock(lg, 1000)) {
    3525           0 :                 printf("Logger is currently locked, so no logger information\n");
    3526           0 :                 return;
    3527             :         }
    3528         116 :         printf("logger %s:\n", lg->fn);
    3529         116 :         printf("current log file "ULLFMT", last handled log file "ULLFMT"\n",
    3530             :                lg->id, lg->saved_id);
    3531         116 :         printf("current transaction id %d, saved transaction id %d\n",
    3532             :                lg->tid, lg->saved_tid);
    3533         116 :         printf("number of flushers: %d\n", (int) ATOMIC_GET(&lg->nr_flushers));
    3534         116 :         printf("number of catalog entries "BUNFMT", of which "BUNFMT" deleted\n",
    3535         116 :                lg->catalog_bid->batCount, lg->dcatalog->batCount);
    3536         320 :         for (logged_range *p = lg->pending; p; p = p->next) {
    3537         204 :                 char buf[32];
    3538         204 :                 if ((lg->debug & 128 || lg->inmemory) ||
    3539         204 :                     p->output_log == NULL ||
    3540         116 :                     snprintf(buf, sizeof(buf), ", file size %"PRIu64, (uint64_t) getfilepos(getFile(lg->current->output_log))) >= (int) sizeof(buf))
    3541          88 :                         buf[0] = 0;
    3542         292 :                 printf("pending range "ULLFMT": drops %"PRIu64", last_ts %"PRIu64", flushed_ts %"PRIu64", refcount %"PRIu64"%s%s\n", p->id, (uint64_t) ATOMIC_GET(&p->drops), (uint64_t) ATOMIC_GET(&p->last_ts), (uint64_t) ATOMIC_GET(&p->flushed_ts), (uint64_t) ATOMIC_GET(&p->refcount), buf, p == lg->current ? " (current)" : "");
    3543             :         }
    3544         116 :         rotation_unlock(lg);
    3545             : }

Generated by: LCOV version 1.14