]> git.ipfire.org Git - people/ms/libloc.git/blobdiff - src/database.c
database: Move string pool to the end of the file again
[people/ms/libloc.git] / src / database.c
index a263d0270dba16d422ea28e85d52fa49f800847f..9db875b87012e7e6327757b0ffb39006f42850ca 100644 (file)
@@ -22,6 +22,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <sys/types.h>
+#include <time.h>
 #include <unistd.h>
 
 #include <loc/libloc.h>
@@ -38,6 +39,7 @@ struct loc_database {
 
        FILE* file;
        unsigned int version;
+       time_t created_at;
        off_t vendor;
        off_t description;
 
@@ -57,6 +59,9 @@ LOC_EXPORT int loc_database_new(struct loc_ctx* ctx, struct loc_database** datab
        db->ctx = loc_ref(ctx);
        db->refcount = 1;
 
+       // Save creation time
+       db->created_at = time(NULL);
+
        DEBUG(db->ctx, "Database allocated at %p\n", db);
 
        // Create string pool
@@ -114,6 +119,10 @@ LOC_EXPORT struct loc_database* loc_database_unref(struct loc_database* db) {
        return NULL;
 }
 
+LOC_EXPORT time_t loc_database_created_at(struct loc_database* db) {
+       return db->created_at;
+}
+
 LOC_EXPORT const char* loc_database_get_vendor(struct loc_database* db) {
        return loc_stringpool_get(db->pool, db->vendor);
 }
@@ -274,6 +283,7 @@ static int loc_database_read_header_v0(struct loc_database* db) {
        }
 
        // Copy over data
+       db->created_at  = be64toh(header.created_at);
        db->vendor      = ntohl(header.vendor);
        db->description = ntohl(header.description);
 
@@ -396,6 +406,7 @@ LOC_EXPORT int loc_database_write(struct loc_database* db, FILE* f) {
 
        // Make the header
        struct loc_database_header_v0 header;
+       header.created_at  = htobe64(db->created_at);
        header.vendor      = htonl(db->vendor);
        header.description = htonl(db->description);
 
@@ -420,15 +431,15 @@ LOC_EXPORT int loc_database_write(struct loc_database* db, FILE* f) {
 
        loc_database_align_page_boundary(&offset, f);
 
-       // Write pool
-       r = loc_database_write_pool(db, &header, &offset, f);
+       // Write all ASes
+       r = loc_database_write_as_section(db, &header, &offset, f);
        if (r)
                return r;
 
        loc_database_align_page_boundary(&offset, f);
 
-       // Write all ASes
-       r = loc_database_write_as_section(db, &header, &offset, f);
+       // Write pool
+       r = loc_database_write_pool(db, &header, &offset, f);
        if (r)
                return r;