1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
int kvstore_log_open(kvstore* store, const char* wal_path) { if (!store || !wal_path) return KVSTORE_ERR_NULL;
FILE* fp = fopen(wal_path, "a+"); if (!fp) return KVSTORE_ERR_IO;
store->log_fp = fp; snprintf(store->log_path, sizeof(store->log_path), "%s", wal_path);
fseek(fp, 0, SEEK_END); long size = ftell(fp); store->log_size = size;
if (size == 0) { fprintf(fp, "%s\n", KVSTORE_LOG_VERSION); fflush(fp); int fd = fileno(fp);
if (fd >= 0) fsync(fd);
store->log_size = ftell(fp); }
fseek(fp, 0, SEEK_SET);
return KVSTORE_OK; }
|