]> git.ipfire.org Git - pakfire.git/blobdiff - src/libpakfire/db.c
dependencies: Drop the legacy logger
[pakfire.git] / src / libpakfire / db.c
index fa5214416ce2bdf401f215a07bb9e2d958469741..1737a9304d9f01229530bad7ebd28c94194faaf2 100644 (file)
@@ -28,6 +28,7 @@
 #include <sqlite3.h>
 
 #include <pakfire/archive.h>
+#include <pakfire/ctx.h>
 #include <pakfire/db.h>
 #include <pakfire/dependencies.h>
 #include <pakfire/digest.h>
@@ -46,6 +47,7 @@
 #define SCHEMA_MIN_SUP 7
 
 struct pakfire_db {
+       struct pakfire_ctx* ctx;
        struct pakfire* pakfire;
        int nrefs;
 
@@ -58,23 +60,77 @@ struct pakfire_db {
 };
 
 static void logging_callback(void* data, int r, const char* msg) {
-       struct pakfire* pakfire = (struct pakfire*)data;
+       struct pakfire_ctx* ctx = data;
 
-       ERROR(pakfire, "Database Error: %s: %s\n",
+       CTX_ERROR(ctx, "Database Error: %s: %s\n",
                sqlite3_errstr(r), msg);
 }
 
+static int pakfire_db_check_table(struct pakfire_db* db, const char* table) {
+       sqlite3_stmt* stmt = NULL;
+       int r;
+
+       const char* sql = "SELECT * FROM sqlite_master WHERE type = ? AND name = ?";
+
+       // Prepare the statement
+       r = sqlite3_prepare_v2(db->handle, sql, strlen(sql), &stmt, NULL);
+       if (r != SQLITE_OK) {
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s: %s\n",
+                       sql, sqlite3_errmsg(db->handle));
+               goto ERROR;
+       }
+
+       // Bind type
+       r = sqlite3_bind_text(stmt, 1, "table", -1, NULL);
+       if (r != SQLITE_OK) {
+               CTX_ERROR(db->ctx, "Could not bind type: %s\n", sqlite3_errmsg(db->handle));
+               goto ERROR;
+       }
+
+       // Bind name
+       r = sqlite3_bind_text(stmt, 2, table, -1, NULL);
+       if (r != SQLITE_OK) {
+               CTX_ERROR(db->ctx, "Could not bind name: %s\n", sqlite3_errmsg(db->handle));
+               goto ERROR;
+       }
+
+       // Execute the statement
+       do {
+               r = sqlite3_step(stmt);
+       } while (r == SQLITE_BUSY);
+
+       // We should have read a row
+       if (r != SQLITE_ROW)
+               goto ERROR;
+
+       // If we get here, the table exists.
+       r = 0;
+
+ERROR:
+       if (stmt)
+               sqlite3_finalize(stmt);
+
+       return r;
+}
+
 static sqlite3_value* pakfire_db_get(struct pakfire_db* db, const char* key) {
        sqlite3_stmt* stmt = NULL;
        sqlite3_value* val = NULL;
        int r;
 
+       // If the schema has not been initialized, yet, check if the settings table exist, at all
+       if (!db->schema) {
+               r = pakfire_db_check_table(db, "settings");
+               if (r)
+                       return NULL;
+       }
+
        const char* sql = "SELECT val FROM settings WHERE key = ?";
 
        // Prepare the statement
        r = sqlite3_prepare_v2(db->handle, sql, strlen(sql), &stmt, NULL);
        if (r != SQLITE_OK) {
-               //ERROR(db->pakfire, "Could not prepare SQL statement: %s: %s\n",
+               //CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s: %s\n",
                //      sql, sqlite3_errmsg(db->handle));
                return NULL;
        }
@@ -82,7 +138,7 @@ static sqlite3_value* pakfire_db_get(struct pakfire_db* db, const char* key) {
        // Bind key
        r = sqlite3_bind_text(stmt, 1, key, strlen(key), NULL);
        if (r != SQLITE_OK) {
-               ERROR(db->pakfire, "Could not bind key: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind key: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -98,7 +154,7 @@ static sqlite3_value* pakfire_db_get(struct pakfire_db* db, const char* key) {
        // Read value
        val = sqlite3_column_value(stmt, 0);
        if (!val) {
-               ERROR(db->pakfire, "Could not read value\n");
+               CTX_ERROR(db->ctx, "Could not read value\n");
                goto ERROR;
        }
 
@@ -139,7 +195,7 @@ static int pakfire_db_set_string(struct pakfire_db* db, const char* key, const c
        sqlite3_stmt* stmt = NULL;
        int r;
 
-       DEBUG(db->pakfire, "Setting %s to '%s'\n", key, val);
+       CTX_DEBUG(db->ctx, "Setting %s to '%s'\n", key, val);
 
        const char* sql = "INSERT INTO settings(key, val) VALUES(?, ?) \
                ON CONFLICT (key) DO UPDATE SET val = excluded.val";
@@ -147,7 +203,7 @@ static int pakfire_db_set_string(struct pakfire_db* db, const char* key, const c
        // Prepare statement
        r = sqlite3_prepare_v2(db->handle, sql, strlen(sql), &stmt, NULL);
        if (r != SQLITE_OK) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s: %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s: %s\n",
                        sql, sqlite3_errmsg(db->handle));
                return 1;
        }
@@ -155,14 +211,14 @@ static int pakfire_db_set_string(struct pakfire_db* db, const char* key, const c
        // Bind key
        r = sqlite3_bind_text(stmt, 1, key, strlen(key), NULL);
        if (r != SQLITE_OK) {
-               ERROR(db->pakfire, "Could not bind key: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind key: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // Bind val
        r = sqlite3_bind_text(stmt, 2, val, strlen(val), NULL);
        if (r != SQLITE_OK) {
-               ERROR(db->pakfire, "Could not bind val: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind val: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -185,7 +241,7 @@ static int pakfire_db_set_int(struct pakfire_db* db, const char* key, int val) {
        sqlite3_stmt* stmt = NULL;
        int r;
 
-       DEBUG(db->pakfire, "Setting %s to '%d'\n", key, val);
+       CTX_DEBUG(db->ctx, "Setting %s to '%d'\n", key, val);
 
        const char* sql = "INSERT INTO settings(key, val) VALUES(?, ?) \
                ON CONFLICT (key) DO UPDATE SET val = excluded.val";
@@ -193,7 +249,7 @@ static int pakfire_db_set_int(struct pakfire_db* db, const char* key, int val) {
        // Prepare statement
        r = sqlite3_prepare_v2(db->handle, sql, strlen(sql), &stmt, NULL);
        if (r != SQLITE_OK) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s: %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s: %s\n",
                        sql, sqlite3_errmsg(db->handle));
                return 1;
        }
@@ -201,14 +257,14 @@ static int pakfire_db_set_int(struct pakfire_db* db, const char* key, int val) {
        // Bind key
        r = sqlite3_bind_text(stmt, 1, key, strlen(key), NULL);
        if (r != SQLITE_OK) {
-               ERROR(db->pakfire, "Could not bind key: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind key: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // Bind val
        r = sqlite3_bind_int64(stmt, 2, val);
        if (r != SQLITE_OK) {
-               ERROR(db->pakfire, "Could not bind val: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind val: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -236,7 +292,7 @@ static time_t pakfire_read_modification_time(struct pakfire_db* db) {
                t = sqlite3_value_int64(value);
                sqlite3_value_free(value);
        } else {
-               DEBUG(db->pakfire, "Could not find last modification timestamp\n");
+               CTX_DEBUG(db->ctx, "Could not find last modification timestamp\n");
        }
 
        return t;
@@ -260,7 +316,7 @@ static int pakfire_update_modification_time(struct pakfire_db* db) {
 static int pakfire_db_execute(struct pakfire_db* db, const char* stmt) {
        int r;
 
-       DEBUG(db->pakfire, "Executing database query: %s\n", stmt);
+       CTX_DEBUG(db->ctx, "Executing database query: %s\n", stmt);
 
        do {
                r = sqlite3_exec(db->handle, stmt, NULL, NULL, NULL);
@@ -268,7 +324,7 @@ static int pakfire_db_execute(struct pakfire_db* db, const char* stmt) {
 
        // Log any errors
        if (r) {
-               ERROR(db->pakfire, "Database query failed: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Database query failed: %s\n", sqlite3_errmsg(db->handle));
        }
 
        return r;
@@ -314,25 +370,28 @@ static void pakfire_db_free(struct pakfire_db* db) {
                // Close database handle
                int r = sqlite3_close(db->handle);
                if (r != SQLITE_OK) {
-                       ERROR(db->pakfire, "Could not close database handle: %s\n",
+                       CTX_ERROR(db->ctx, "Could not close database handle: %s\n",
                                sqlite3_errmsg(db->handle));
                }
        }
 
-       pakfire_unref(db->pakfire);
-
+       if (db->pakfire)
+               pakfire_unref(db->pakfire);
+       if (db->ctx)
+               pakfire_ctx_unref(db->ctx);
        free(db);
 }
 
 static int pakfire_db_get_schema(struct pakfire_db* db) {
+       // Fetch the schema version
        sqlite3_value* value = pakfire_db_get(db, "schema");
        if (!value)
-               return -1;
+               return 0;
 
        int schema = sqlite3_value_int64(value);
        sqlite3_value_free(value);
 
-       DEBUG(db->pakfire, "Database has schema version %d\n", schema);
+       CTX_DEBUG(db->ctx, "Database has schema version %d\n", schema);
 
        return schema;
 }
@@ -421,6 +480,7 @@ static int pakfire_db_create_schema(struct pakfire_db* db) {
                        "gname             TEXT, "
                        "ctime             INTEGER, "
                        "mtime             INTEGER, "
+                       "mimetype          TEXT, "
                        "capabilities      TEXT, "
                        "digest_sha2_512   BLOB, "
                        "digest_sha2_256   BLOB, "
@@ -460,12 +520,12 @@ static int pakfire_db_create_schema(struct pakfire_db* db) {
        if (r)
                return 1;
 
-       const char* arch = pakfire_get_arch(db->pakfire);
+       const char* arch = pakfire_get_effective_arch(db->pakfire);
 
        // Set architecture
        r = pakfire_db_set_string(db, "arch", arch);
        if (r) {
-               ERROR(db->pakfire, "Could not set architecture\n");
+               CTX_ERROR(db->ctx, "Could not set architecture\n");
                return r;
        }
 
@@ -493,7 +553,7 @@ static int pakfire_db_migrate_schema(struct pakfire_db* db) {
 
                switch (db->schema) {
                        // No schema exists
-                       case -1:
+                       case 0:
                                r = pakfire_db_create_schema(db);
                                if (r)
                                        goto ROLLBACK;
@@ -510,7 +570,7 @@ static int pakfire_db_migrate_schema(struct pakfire_db* db) {
                                break;
 
                        default:
-                               ERROR(db->pakfire, "Cannot migrate database from schema %d\n", db->schema);
+                               CTX_ERROR(db->ctx, "Cannot migrate database from schema %d\n", db->schema);
                                goto ROLLBACK;
                }
 
@@ -539,12 +599,12 @@ static int pakfire_db_check_arch(struct pakfire_db* db) {
        // Fetch database architecture
        char* db_arch = pakfire_db_get_string(db, "arch");
        if (!db_arch) {
-               ERROR(db->pakfire, "Database is of an unknown architecture\n");
+               CTX_ERROR(db->ctx, "Database is of an unknown architecture\n");
                goto ERROR;
        }
 
        // Fetch the running architecture
-       const char* arch = pakfire_get_arch(db->pakfire);
+       const char* arch = pakfire_get_effective_arch(db->pakfire);
        if (!arch)
                goto ERROR;
 
@@ -563,7 +623,7 @@ static int pakfire_db_setup(struct pakfire_db* db) {
        int r;
 
        // Setup logging
-       sqlite3_config(SQLITE_CONFIG_LOG, logging_callback, db->pakfire);
+       sqlite3_config(SQLITE_CONFIG_LOG, logging_callback, db->ctx);
 
        // Enable foreign keys
        pakfire_db_execute(db, "PRAGMA foreign_keys = ON");
@@ -575,8 +635,8 @@ static int pakfire_db_setup(struct pakfire_db* db) {
        db->schema = pakfire_db_get_schema(db);
 
        // Check if the schema is recent enough
-       if (db->schema > 0 && db->schema < SCHEMA_MIN_SUP) {
-               ERROR(db->pakfire, "Database schema %d is not supported by this version of Pakfire\n",
+       if (db->schema && db->schema < SCHEMA_MIN_SUP) {
+               CTX_ERROR(db->ctx, "Database schema %d is not supported by this version of Pakfire\n",
                        db->schema);
                return 1;
        }
@@ -584,7 +644,7 @@ static int pakfire_db_setup(struct pakfire_db* db) {
        // Read modification timestamp
        db->last_modified_at = pakfire_read_modification_time(db);
 
-       DEBUG(db->pakfire, "The database was last modified at %ld\n", db->last_modified_at);
+       CTX_DEBUG(db->ctx, "The database was last modified at %ld\n", db->last_modified_at);
 
        // Done when not in read-write mode
        if (db->mode != PAKFIRE_DB_READWRITE)
@@ -596,7 +656,7 @@ static int pakfire_db_setup(struct pakfire_db* db) {
        // Set database journal to WAL
        r = pakfire_db_execute(db, "PRAGMA journal_mode = WAL");
        if (r != SQLITE_OK) {
-               ERROR(db->pakfire, "Could not set journal mode to WAL: %s\n",
+               CTX_ERROR(db->ctx, "Could not set journal mode to WAL: %s\n",
                        sqlite3_errmsg(db->handle));
                return 1;
        }
@@ -604,7 +664,7 @@ static int pakfire_db_setup(struct pakfire_db* db) {
        // Disable autocheckpoint
        r = sqlite3_wal_autocheckpoint(db->handle, 0);
        if (r != SQLITE_OK) {
-               ERROR(db->pakfire, "Could not disable autocheckpoint: %s\n",
+               CTX_ERROR(db->ctx, "Could not disable autocheckpoint: %s\n",
                        sqlite3_errmsg(db->handle));
                return 1;
        }
@@ -624,6 +684,9 @@ int pakfire_db_open(struct pakfire_db** db, struct pakfire* pakfire, int flags)
        if (!o)
                return -ENOMEM;
 
+       // Store a reference to the context
+       o->ctx = pakfire_ctx(pakfire);
+
        o->pakfire = pakfire_ref(pakfire);
        o->nrefs = 1;
 
@@ -646,7 +709,7 @@ int pakfire_db_open(struct pakfire_db** db, struct pakfire* pakfire, int flags)
        // Try to open the sqlite3 database file
        r = sqlite3_open_v2(o->path, &o->handle, sqlite3_flags, NULL);
        if (r != SQLITE_OK) {
-               ERROR(pakfire, "Could not open database %s: %s\n",
+               CTX_ERROR(o->ctx, "Could not open database %s: %s\n",
                        o->path, sqlite3_errmsg(o->handle));
 
                r = 1;
@@ -694,7 +757,7 @@ static unsigned long pakfire_db_integrity_check(struct pakfire_db* db) {
 
        r = sqlite3_prepare_v2(db->handle, "PRAGMA integrity_check", -1, &stmt, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not prepare integrity check: %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare integrity check: %s\n",
                        sqlite3_errmsg(db->handle));
                return 1;
        }
@@ -718,7 +781,7 @@ static unsigned long pakfire_db_integrity_check(struct pakfire_db* db) {
                        errors++;
 
                        // Log the message
-                       ERROR(db->pakfire, "%s\n", error);
+                       CTX_ERROR(db->ctx, "%s\n", error);
 
                // Break on anything else
                } else
@@ -728,9 +791,9 @@ static unsigned long pakfire_db_integrity_check(struct pakfire_db* db) {
        sqlite3_finalize(stmt);
 
        if (errors)
-               ERROR(db->pakfire, "Database integrity check failed\n");
+               CTX_ERROR(db->ctx, "Database integrity check failed\n");
        else
-               INFO(db->pakfire, "Database integrity check passed\n");
+               CTX_INFO(db->ctx, "Database integrity check passed\n");
 
        return errors;
 }
@@ -741,7 +804,7 @@ static unsigned long pakfire_db_foreign_key_check(struct pakfire_db* db) {
 
        r = sqlite3_prepare_v2(db->handle, "PRAGMA foreign_key_check", -1, &stmt, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not prepare foreign key check: %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare foreign key check: %s\n",
                        sqlite3_errmsg(db->handle));
                return 1;
        }
@@ -764,7 +827,7 @@ static unsigned long pakfire_db_foreign_key_check(struct pakfire_db* db) {
                        errors++;
 
                        // Log the message
-                       ERROR(db->pakfire, "Foreign key violation found in %s, row %lu: "
+                       CTX_ERROR(db->ctx, "Foreign key violation found in %s, row %lu: "
                                "%lu does not exist in table %s\n", table, rowid, foreign_rowid, foreign_table);
 
                // Break on anything else
@@ -775,9 +838,9 @@ static unsigned long pakfire_db_foreign_key_check(struct pakfire_db* db) {
        sqlite3_finalize(stmt);
 
        if (errors)
-               ERROR(db->pakfire, "Foreign key check failed\n");
+               CTX_ERROR(db->ctx, "Foreign key check failed\n");
        else
-               INFO(db->pakfire, "Foreign key check passed\n");
+               CTX_INFO(db->ctx, "Foreign key check passed\n");
 
        return errors;
 }
@@ -808,7 +871,7 @@ ssize_t pakfire_db_packages(struct pakfire_db* db) {
 
        int r = sqlite3_prepare_v2(db->handle, "SELECT COUNT(*) FROM packages", -1, &stmt, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s\n",
                        sqlite3_errmsg(db->handle));
                return -1;
        }
@@ -839,6 +902,7 @@ static void pakfire_db_add_userinstalled(struct pakfire* pakfire, const char* na
 
 static int pakfire_db_add_dependencies(struct pakfire_db* db, unsigned long id, struct pakfire_package* pkg) {
        sqlite3_stmt* stmt = NULL;
+       char** list = NULL;
        int r = 1;
 
        const char* sql = "INSERT INTO dependencies(pkg, type, dependency) VALUES(?, ?, ?)";
@@ -846,53 +910,39 @@ static int pakfire_db_add_dependencies(struct pakfire_db* db, unsigned long id,
        // Prepare the statement
        r = sqlite3_prepare_v2(db->handle, sql, -1, &stmt, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s: %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s: %s\n",
                        sql, sqlite3_errmsg(db->handle));
                goto END;
        }
 
-       const struct __relation {
-               const char* type;
-               char** (*func)(struct pakfire_package*);
-       } relations[] = {
-               { "provides", pakfire_package_get_provides },
-               { "prerequires", pakfire_package_get_prerequires },
-               { "requires", pakfire_package_get_requires },
-               { "conflicts", pakfire_package_get_conflicts },
-               { "obsoletes", pakfire_package_get_obsoletes },
-               { "recommends", pakfire_package_get_recommends },
-               { "suggests", pakfire_package_get_suggests },
-               { "supplements", pakfire_package_get_supplements },
-               { "enhances", pakfire_package_get_enhances },
-               { NULL, NULL },
-       };
-
-       for (const struct __relation* relation = relations; relation->type; relation++) {
-               char** list = relation->func(pkg);
-               if (!list)
-                       continue;
+       for (const struct pakfire_dep* dep = pakfire_deps; dep->key; dep++) {
+               list = pakfire_package_get_deps(pkg, dep->key);
+               if (!list) {
+                       r = 1;
+                       goto END;
+               }
 
-               for (char** dep = list; *dep; dep++) {
+               for (char** d = list; *d; d++) {
                        // Bind package ID
                        r = sqlite3_bind_int64(stmt, 1, id);
                        if (r) {
-                               ERROR(db->pakfire, "Could not bind id: %s\n",
+                               CTX_ERROR(db->ctx, "Could not bind id: %s\n",
                                        sqlite3_errmsg(db->handle));
                                goto END;
                        }
 
                        // Bind type
-                       r = sqlite3_bind_text(stmt, 2, relation->type, -1, NULL);
+                       r = sqlite3_bind_text(stmt, 2, dep->name, -1, NULL);
                        if (r) {
-                               ERROR(db->pakfire, "Could not bind type: %s\n",
+                               CTX_ERROR(db->ctx, "Could not bind type: %s\n",
                                        sqlite3_errmsg(db->handle));
                                goto END;
                        }
 
                        // Bind dependency
-                       r = sqlite3_bind_text(stmt, 3, *dep, -1, NULL);
+                       r = sqlite3_bind_text(stmt, 3, *d, -1, NULL);
                        if (r) {
-                               ERROR(db->pakfire, "Could not bind dependency: %s\n",
+                               CTX_ERROR(db->ctx, "Could not bind dependency: %s\n",
                                        sqlite3_errmsg(db->handle));
                                goto END;
                        }
@@ -902,13 +952,9 @@ static int pakfire_db_add_dependencies(struct pakfire_db* db, unsigned long id,
                                r = sqlite3_step(stmt);
                        } while (r == SQLITE_BUSY);
 
-                       free(*dep);
-
                        // Reset bound values
                        sqlite3_reset(stmt);
                }
-
-               free(list);
        }
 
        // All okay
@@ -917,6 +963,11 @@ static int pakfire_db_add_dependencies(struct pakfire_db* db, unsigned long id,
 END:
        if (stmt)
                sqlite3_finalize(stmt);
+       if (list) {
+               for (char** dep = list; *dep; dep++)
+                       free(*dep);
+               free(list);
+       }
 
        return r;
 }
@@ -944,7 +995,7 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
        // Get the filelist from the archive
        struct pakfire_filelist* filelist = pakfire_archive_get_filelist(archive);
        if (!filelist) {
-               ERROR(db->pakfire, "Could not fetch filelist from archive\n");
+               CTX_ERROR(db->ctx, "Could not fetch filelist from archive\n");
                return 1;
        }
 
@@ -967,6 +1018,7 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
                                "gname, "
                                "ctime, "
                                "mtime, "
+                               "mimetype, "
                                "capabilities, "
                                "digest_sha2_512, "
                                "digest_sha2_256, "
@@ -975,23 +1027,23 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
                                "digest_sha3_512, "
                                "digest_sha3_256"
                        ") "
-                       "VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
+                       "VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
 
        // Prepare the statement
        r = sqlite3_prepare_v2(db->handle, sql, strlen(sql), &stmt, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s: %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s: %s\n",
                        sql, sqlite3_errmsg(db->handle));
                goto END;
        }
 
-       for (unsigned int i = 0; i < pakfire_filelist_size(filelist); i++) {
+       for (unsigned int i = 0; i < pakfire_filelist_length(filelist); i++) {
                struct pakfire_file* file = pakfire_filelist_get(filelist, i);
 
                // Bind package ID
                r = sqlite3_bind_int64(stmt, 1, id);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind id: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind id: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
@@ -1001,7 +1053,7 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
 
                r = sqlite3_bind_text(stmt, 2, path, -1, NULL);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind path: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind path: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
@@ -1011,7 +1063,7 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
 
                r = sqlite3_bind_int64(stmt, 3, size);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind size: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind size: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
@@ -1019,7 +1071,7 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
                // Bind config - XXX TODO
                r = sqlite3_bind_null(stmt, 4);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind config: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind config: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
@@ -1027,7 +1079,7 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
                // Bind datafile - XXX TODO
                r = sqlite3_bind_null(stmt, 5);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind datafile: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind datafile: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
@@ -1037,7 +1089,7 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
 
                r = sqlite3_bind_int64(stmt, 6, mode);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind mode: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind mode: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
@@ -1047,7 +1099,7 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
 
                r = sqlite3_bind_text(stmt, 7, uname, -1, NULL);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind uname: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind uname: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
@@ -1057,7 +1109,7 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
 
                r = sqlite3_bind_text(stmt, 8, gname, -1, NULL);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind gname: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind gname: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
@@ -1067,7 +1119,7 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
 
                r = sqlite3_bind_int64(stmt, 9, ctime);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind ctime: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind ctime: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
@@ -1077,68 +1129,89 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
 
                r = sqlite3_bind_int64(stmt, 10, mtime);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind mtime: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind mtime: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
 
+               // Bind MIME type
+               const char* mimetype = pakfire_file_get_mimetype(file);
+
+               if (mimetype) {
+                       r = sqlite3_bind_text(stmt, 11, mimetype, -1, NULL);
+                       if (r) {
+                               CTX_ERROR(db->ctx, "Could not bind MIME type: %s\n",
+                                       sqlite3_errmsg(db->handle));
+                               pakfire_file_unref(file);
+                               goto END;
+                       }
+               } else {
+                       r = sqlite3_bind_null(stmt, 11);
+                       if (r) {
+                               CTX_ERROR(db->ctx, "Could not bind an empty MIME type: %s\n",
+                                       sqlite3_errmsg(db->handle));
+                               pakfire_file_unref(file);
+                               goto END;
+                       }
+               }
+
                // Bind capabilities - XXX TODO
-               r = sqlite3_bind_null(stmt, 11);
+               r = sqlite3_bind_null(stmt, 12);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind capabilities: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind capabilities: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
 
                // SHA2-512 Digest
-               r = pakfire_db_bind_digest(db, stmt, 12, file, PAKFIRE_DIGEST_SHA2_512);
+               r = pakfire_db_bind_digest(db, stmt, 13, file, PAKFIRE_DIGEST_SHA2_512);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind SHA2-512 digest: %s\n",
+                       CTX_ERROR(db->ctx, "Could not bind SHA2-512 digest: %s\n",
                                sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
 
                // SHA2-256 Digest
-               r = pakfire_db_bind_digest(db, stmt, 13, file, PAKFIRE_DIGEST_SHA2_256);
+               r = pakfire_db_bind_digest(db, stmt, 14, file, PAKFIRE_DIGEST_SHA2_256);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind SHA2-256 digest: %s\n",
+                       CTX_ERROR(db->ctx, "Could not bind SHA2-256 digest: %s\n",
                                sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
 
                // BLAKE2b512 Digest
-               r = pakfire_db_bind_digest(db, stmt, 14, file, PAKFIRE_DIGEST_BLAKE2B512);
+               r = pakfire_db_bind_digest(db, stmt, 15, file, PAKFIRE_DIGEST_BLAKE2B512);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind BLAKE2b512 digest: %s\n",
+                       CTX_ERROR(db->ctx, "Could not bind BLAKE2b512 digest: %s\n",
                                sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
 
                // BLAKE2s256 Digest
-               r = pakfire_db_bind_digest(db, stmt, 15, file, PAKFIRE_DIGEST_BLAKE2S256);
+               r = pakfire_db_bind_digest(db, stmt, 16, file, PAKFIRE_DIGEST_BLAKE2S256);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind BLAKE2s256 digest: %s\n",
+                       CTX_ERROR(db->ctx, "Could not bind BLAKE2s256 digest: %s\n",
                                sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
 
                // SHA3-512 Digest
-               r = pakfire_db_bind_digest(db, stmt, 16, file, PAKFIRE_DIGEST_SHA3_512);
+               r = pakfire_db_bind_digest(db, stmt, 17, file, PAKFIRE_DIGEST_SHA3_512);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind SHA3-512 digest: %s\n",
+                       CTX_ERROR(db->ctx, "Could not bind SHA3-512 digest: %s\n",
                                sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
                }
 
                // SHA3-256 Digest
-               r = pakfire_db_bind_digest(db, stmt, 17, file, PAKFIRE_DIGEST_SHA3_256);
+               r = pakfire_db_bind_digest(db, stmt, 18, file, PAKFIRE_DIGEST_SHA3_256);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind SHA3-256 digest: %s\n",
+                       CTX_ERROR(db->ctx, "Could not bind SHA3-256 digest: %s\n",
                                sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
@@ -1151,7 +1224,7 @@ static int pakfire_db_add_files(struct pakfire_db* db, unsigned long id, struct
 
                // Check for errors
                if (r != SQLITE_DONE) {
-                       ERROR(db->pakfire, "Could not add file to database: %s\n",
+                       CTX_ERROR(db->ctx, "Could not add file to database: %s\n",
                                sqlite3_errmsg(db->handle));
                        pakfire_file_unref(file);
                        goto END;
@@ -1185,7 +1258,7 @@ static int pakfire_db_add_scriptlets(struct pakfire_db* db, unsigned long id, st
        // Prepare the statement
        r = sqlite3_prepare_v2(db->handle, sql, -1, &stmt, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s: %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s: %s\n",
                        sql, sqlite3_errmsg(db->handle));
                goto END;
        }
@@ -1199,7 +1272,7 @@ static int pakfire_db_add_scriptlets(struct pakfire_db* db, unsigned long id, st
                // Bind package ID
                r = sqlite3_bind_int64(stmt, 1, id);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind id: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind id: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_scriptlet_unref(scriptlet);
                        goto END;
                }
@@ -1207,7 +1280,7 @@ static int pakfire_db_add_scriptlets(struct pakfire_db* db, unsigned long id, st
                // Bind handle
                r = sqlite3_bind_text(stmt, 2, *type, -1, NULL);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind type: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind type: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_scriptlet_unref(scriptlet);
                        goto END;
                }
@@ -1217,7 +1290,7 @@ static int pakfire_db_add_scriptlets(struct pakfire_db* db, unsigned long id, st
                // Bind scriptlet
                r = sqlite3_bind_text(stmt, 3, data, size, NULL);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind scriptlet: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind scriptlet: %s\n", sqlite3_errmsg(db->handle));
                        pakfire_scriptlet_unref(scriptlet);
                        goto END;
                }
@@ -1229,7 +1302,7 @@ static int pakfire_db_add_scriptlets(struct pakfire_db* db, unsigned long id, st
 
                // Check for errors
                if (r != SQLITE_DONE) {
-                       ERROR(db->pakfire, "Could not add scriptlet to database: %s\n",
+                       CTX_ERROR(db->ctx, "Could not add scriptlet to database: %s\n",
                                sqlite3_errmsg(db->handle));
                        pakfire_scriptlet_unref(scriptlet);
                        goto END;
@@ -1256,6 +1329,9 @@ int pakfire_db_add_package(struct pakfire_db* db,
        sqlite3_stmt* stmt = NULL;
        int r;
 
+       char** groups = NULL;
+       char* __groups = NULL;
+
        // Begin a new transaction
        r = pakfire_db_begin_transaction(db);
        if (r)
@@ -1315,7 +1391,7 @@ int pakfire_db_add_package(struct pakfire_db* db,
        // Prepare the statement
        r = sqlite3_prepare_v2(db->handle, sql, strlen(sql), &stmt, NULL);
        if (r != SQLITE_OK) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s: %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s: %s\n",
                        sql, sqlite3_errmsg(db->handle));
                goto ERROR;
        }
@@ -1325,7 +1401,7 @@ int pakfire_db_add_package(struct pakfire_db* db,
 
        r = sqlite3_bind_text(stmt, 1, name, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind name: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind name: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -1334,7 +1410,7 @@ int pakfire_db_add_package(struct pakfire_db* db,
 
        r = sqlite3_bind_text(stmt, 2, evr, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind evr: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind evr: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -1343,17 +1419,23 @@ int pakfire_db_add_package(struct pakfire_db* db,
 
        r = sqlite3_bind_text(stmt, 3, arch, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind arch: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind arch: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // Bind groups
-       const char* groups = pakfire_package_get_string(pkg, PAKFIRE_PKG_GROUPS);
-
+       groups = pakfire_package_get_strings(pkg, PAKFIRE_PKG_GROUPS);
        if (groups) {
-               r = sqlite3_bind_text(stmt, 4, groups, -1, NULL);
+               // Join everything together as SQLite doesn't support arrays
+               __groups = pakfire_string_join(groups, " ");
+               if (!__groups) {
+                       r = 1;
+                       goto ERROR;
+               }
+
+               r = sqlite3_bind_text(stmt, 4, __groups, -1, NULL);
                if (r) {
-                       ERROR(db->pakfire, "Could not bind groups: %s\n", sqlite3_errmsg(db->handle));
+                       CTX_ERROR(db->ctx, "Could not bind groups: %s\n", sqlite3_errmsg(db->handle));
                        goto ERROR;
                }
 
@@ -1365,29 +1447,29 @@ int pakfire_db_add_package(struct pakfire_db* db,
        }
 
        // Bind filename
-       const char* filename = pakfire_package_get_filename(pkg);
+       const char* filename = pakfire_package_get_string(pkg, PAKFIRE_PKG_FILENAME);
 
        r = sqlite3_bind_text(stmt, 5, filename, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind filename: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind filename: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // Bind size
-       unsigned long long size = pakfire_package_get_downloadsize(pkg);
+       unsigned long long size = pakfire_package_get_num(pkg, PAKFIRE_PKG_DOWNLOADSIZE, 0);
 
        r = sqlite3_bind_int64(stmt, 6, size);
        if (r) {
-               ERROR(db->pakfire, "Could not bind size: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind size: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // Bind installed size
-       unsigned long long inst_size = pakfire_package_get_installsize(pkg);
+       unsigned long long inst_size = pakfire_package_get_num(pkg, PAKFIRE_PKG_INSTALLSIZE, 0);
 
        r = sqlite3_bind_int64(stmt, 7, inst_size);
        if (r) {
-               ERROR(db->pakfire, "Could not bind inst_size: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind inst_size: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -1398,7 +1480,7 @@ int pakfire_db_add_package(struct pakfire_db* db,
        // Fetch the digest
        digest = pakfire_package_get_digest(pkg, &digest_type, &digest_length);
        if (!digest) {
-               ERROR(db->pakfire, "Could not fetch the package's digest: %m\n");
+               CTX_ERROR(db->ctx, "Could not fetch the package's digest: %m\n");
                r = 1;
                goto ERROR;
        }
@@ -1406,14 +1488,14 @@ int pakfire_db_add_package(struct pakfire_db* db,
        // Set the digest type
        r = sqlite3_bind_int64(stmt, 8, digest_type);
        if (r) {
-               ERROR(db->pakfire, "Could not bind digest type: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind digest type: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // Set the digest
        r = sqlite3_bind_blob(stmt, 9, digest, digest_length, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind digest: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind digest: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -1422,7 +1504,7 @@ int pakfire_db_add_package(struct pakfire_db* db,
 
        r = sqlite3_bind_text(stmt, 10, license, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind license: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind license: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -1431,7 +1513,7 @@ int pakfire_db_add_package(struct pakfire_db* db,
 
        r = sqlite3_bind_text(stmt, 11, summary, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind summary: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind summary: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -1440,7 +1522,7 @@ int pakfire_db_add_package(struct pakfire_db* db,
 
        r = sqlite3_bind_text(stmt, 12, description, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind description: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind description: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -1449,7 +1531,7 @@ int pakfire_db_add_package(struct pakfire_db* db,
 
        r = sqlite3_bind_text(stmt, 13, uuid, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind uuid: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind uuid: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -1458,25 +1540,25 @@ int pakfire_db_add_package(struct pakfire_db* db,
 
        r = sqlite3_bind_text(stmt, 14, vendor, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind vendor: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind vendor: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // Bind build_host
-       const char* build_host = pakfire_package_get_build_host(pkg);
+       const char* build_host = pakfire_package_get_string(pkg, PAKFIRE_PKG_BUILD_HOST);
 
        r = sqlite3_bind_text(stmt, 15, build_host, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind build_host: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind build_host: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // Bind build_time
-       time_t build_time = pakfire_package_get_build_time(pkg);
+       time_t build_time = pakfire_package_get_num(pkg, PAKFIRE_PKG_BUILD_TIME, 0);
 
        r = sqlite3_bind_int64(stmt, 16, build_time);
        if (r) {
-               ERROR(db->pakfire, "Could not bind build_time: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind build_time: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -1500,12 +1582,12 @@ int pakfire_db_add_package(struct pakfire_db* db,
        // installed by the user?
        r = sqlite3_bind_int(stmt, 18, userinstalled);
        if (r) {
-               ERROR(db->pakfire, "Could not bind userinstalled: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind userinstalled: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // Source package name
-       const char* source_name = pakfire_package_get_source_name(pkg);
+       const char* source_name = pakfire_package_get_string(pkg, PAKFIRE_PKG_SOURCE_NAME);
        if (source_name) {
                r = sqlite3_bind_text(stmt, 19, source_name, -1, NULL);
                if (r)
@@ -1517,7 +1599,7 @@ int pakfire_db_add_package(struct pakfire_db* db,
        }
 
        // Source EVR
-       const char* source_evr = pakfire_package_get_source_evr(pkg);
+       const char* source_evr = pakfire_package_get_string(pkg, PAKFIRE_PKG_SOURCE_EVR);
        if (source_evr) {
                r = sqlite3_bind_text(stmt, 20, source_evr, -1, NULL);
                if (r)
@@ -1529,7 +1611,7 @@ int pakfire_db_add_package(struct pakfire_db* db,
        }
 
        // Source arch
-       const char* source_arch = pakfire_package_get_source_arch(pkg);
+       const char* source_arch = pakfire_package_get_string(pkg, PAKFIRE_PKG_SOURCE_ARCH);
        if (source_arch) {
                r = sqlite3_bind_text(stmt, 21, source_arch, -1, NULL);
                if (r)
@@ -1558,7 +1640,7 @@ int pakfire_db_add_package(struct pakfire_db* db,
        } while (r == SQLITE_BUSY);
 
        if (r != SQLITE_DONE) {
-               ERROR(db->pakfire, "Could not add package to database: %s\n",
+               CTX_ERROR(db->ctx, "Could not add package to database: %s\n",
                        sqlite3_errmsg(db->handle));
                r = 1;
                goto ERROR;
@@ -1583,6 +1665,10 @@ int pakfire_db_add_package(struct pakfire_db* db,
                goto ERROR;
 
 ERROR:
+       if (groups)
+               pakfire_strings_free(groups);
+       if (__groups)
+               free(__groups);
        if (stmt)
                sqlite3_finalize(stmt);
 
@@ -1607,7 +1693,7 @@ int pakfire_db_remove_package(struct pakfire_db* db, struct pakfire_package* pkg
        // Fetch the package's UUID
        const char* uuid = pakfire_package_get_string(pkg, PAKFIRE_PKG_UUID);
        if (!uuid) {
-               ERROR(db->pakfire, "Package has no UUID\n");
+               CTX_ERROR(db->ctx, "Package has no UUID\n");
                r = 1;
                goto ERROR;
        }
@@ -1615,7 +1701,7 @@ int pakfire_db_remove_package(struct pakfire_db* db, struct pakfire_package* pkg
        r = sqlite3_prepare_v2(db->handle,
                "DELETE FROM packages WHERE uuid = ?", -1, &stmt, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s\n",
                        sqlite3_errmsg(db->handle));
                goto ERROR;
        }
@@ -1623,7 +1709,7 @@ int pakfire_db_remove_package(struct pakfire_db* db, struct pakfire_package* pkg
        // Bind UUID
        r = sqlite3_bind_text(stmt, 1, uuid, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind uuid: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind uuid: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
@@ -1634,7 +1720,7 @@ int pakfire_db_remove_package(struct pakfire_db* db, struct pakfire_package* pkg
 
        // Check if we have been successful
        if (r != SQLITE_DONE) {
-               ERROR(db->pakfire, "Could not delete package %s\n", uuid);
+               CTX_ERROR(db->ctx, "Could not delete package %s\n", uuid);
                r = 1;
                goto ERROR;
        }
@@ -1664,7 +1750,7 @@ struct pakfire_scriptlet* pakfire_db_get_scriptlet(struct pakfire_db* db,
        // Fetch the package's UUID
        const char* uuid = pakfire_package_get_string(pkg, PAKFIRE_PKG_UUID);
        if (!uuid) {
-               ERROR(db->pakfire, "Package has no UUID\n");
+               CTX_ERROR(db->ctx, "Package has no UUID\n");
                goto ERROR;
        }
 
@@ -1674,7 +1760,7 @@ struct pakfire_scriptlet* pakfire_db_get_scriptlet(struct pakfire_db* db,
 
        r = sqlite3_prepare_v2(db->handle, sql, strlen(sql), &stmt, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s %s\n",
                        sql, sqlite3_errmsg(db->handle));
                goto ERROR;
        }
@@ -1682,17 +1768,17 @@ struct pakfire_scriptlet* pakfire_db_get_scriptlet(struct pakfire_db* db,
        // Bind UUID
        r = sqlite3_bind_text(stmt, 1, uuid, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind uuid: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind uuid: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        r = sqlite3_bind_text(stmt, 2, type, -1, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not bind type: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind type: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
-       DEBUG(db->pakfire, "Searching for scriptlet for package %s of type %s\n", uuid, type);
+       CTX_DEBUG(db->ctx, "Searching for scriptlet for package %s of type %s\n", uuid, type);
 
        // Execute query
        do {
@@ -1705,7 +1791,7 @@ struct pakfire_scriptlet* pakfire_db_get_scriptlet(struct pakfire_db* db,
                ssize_t size = sqlite3_column_bytes(stmt, 1);
 
                // Create a scriptlet object
-               r = pakfire_scriptlet_create(&scriptlet, db->pakfire, type, data, size);
+               r = pakfire_scriptlet_create(&scriptlet, db->ctx, type, data, size);
                if (r)
                        goto ERROR;
        }
@@ -1724,35 +1810,38 @@ static int pakfire_db_load_package(struct pakfire_db* db, struct pakfire_repo* r
        // Name
        const char* name = (const char*)sqlite3_column_text(stmt, 0);
        if (!name) {
-               ERROR(db->pakfire, "Could not read name: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not read name: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // EVR
        const char* evr = (const char*)sqlite3_column_text(stmt, 1);
        if (!evr) {
-               ERROR(db->pakfire, "Could not read evr: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not read evr: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // Arch
        const char* arch = (const char*)sqlite3_column_text(stmt, 2);
        if (!arch) {
-               ERROR(db->pakfire, "Could not read arch: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not read arch: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }
 
        // Create package
-       pkg = pakfire_package_create(db->pakfire, repo, name, evr, arch);
-       if (!pkg) {
-               ERROR(db->pakfire, "Could not create package\n");
+       r = pakfire_package_create(&pkg, db->pakfire, repo, name, evr, arch);
+       if (r) {
+               CTX_ERROR(db->ctx, "Could not create package '%s-%s.%s': %m\n", name, evr, arch);
                goto ERROR;
        }
 
        // ID
        uint64_t id = sqlite3_column_int64(stmt, 3);
-       if (id)
-               pakfire_package_set_dbid(pkg, id);
+       if (id) {
+               r = pakfire_package_set_num(pkg, PAKFIRE_PKG_DBID, id);
+               if (r)
+                       goto ERROR;
+       }
 
        // Groups
        const char* groups = (const char*)sqlite3_column_text(stmt, 4);
@@ -1765,19 +1854,25 @@ static int pakfire_db_load_package(struct pakfire_db* db, struct pakfire_repo* r
        // Filename
        const char* filename = (const char*)sqlite3_column_text(stmt, 5);
        if (filename) {
-               pakfire_package_set_filename(pkg, filename);
+               r = pakfire_package_set_string(pkg, PAKFIRE_PKG_FILENAME, filename);
+               if (r)
+                       goto ERROR;
        }
 
        // Size
        size_t size = sqlite3_column_int64(stmt, 6);
        if (size) {
-               pakfire_package_set_downloadsize(pkg, size);
+               r = pakfire_package_set_num(pkg, PAKFIRE_PKG_DOWNLOADSIZE, size);
+               if (r)
+                       goto ERROR;
        }
 
        // Installed size
        size = sqlite3_column_int64(stmt, 7);
        if (size) {
-               pakfire_package_set_installsize(pkg, size);
+               r = pakfire_package_set_num(pkg, PAKFIRE_PKG_INSTALLSIZE, size);
+               if (r)
+                       goto ERROR;
        }
 
        // Digest type
@@ -1835,19 +1930,25 @@ static int pakfire_db_load_package(struct pakfire_db* db, struct pakfire_repo* r
        // Build Host
        const char* build_host = (const char*)sqlite3_column_text(stmt, 15);
        if (build_host) {
-               pakfire_package_set_build_host(pkg, build_host);
+               r = pakfire_package_set_string(pkg, PAKFIRE_PKG_BUILD_HOST, build_host);
+               if (r)
+                       goto ERROR;
        }
 
        // Build Time
        time_t build_time = sqlite3_column_int64(stmt, 16);
        if (build_time) {
-               pakfire_package_set_build_time(pkg, build_time);
+               r = pakfire_package_set_num(pkg, PAKFIRE_PKG_BUILD_TIME, build_time);
+               if (r)
+                       goto ERROR;
        }
 
        // Install Time
        time_t install_time = sqlite3_column_int64(stmt, 17);
        if (install_time) {
-               pakfire_package_set_install_time(pkg, install_time);
+               r = pakfire_package_set_num(pkg, PAKFIRE_PKG_INSTALLTIME, install_time);
+               if (r)
+                       goto ERROR;
        }
 
        // installed by user?
@@ -1867,41 +1968,52 @@ static int pakfire_db_load_package(struct pakfire_db* db, struct pakfire_repo* r
 
        const struct dependency {
                unsigned int field;
-               void (*func)(struct pakfire_package* pkg, const char* dep);
+               const enum pakfire_package_key key;
        } dependencies[] = {
-               { 20, pakfire_package_add_provides },
-               { 21, pakfire_package_add_prerequires },
-               { 22, pakfire_package_add_requires },
-               { 23, pakfire_package_add_conflicts },
-               { 24, pakfire_package_add_obsoletes },
-               { 25, pakfire_package_add_recommends },
-               { 26, pakfire_package_add_suggests },
-               { 27, pakfire_package_add_supplements },
-               { 28, pakfire_package_add_enhances },
-               { 0, NULL },
+               { 20, PAKFIRE_PKG_PROVIDES },
+               { 21, PAKFIRE_PKG_PREREQUIRES },
+               { 22, PAKFIRE_PKG_REQUIRES },
+               { 23, PAKFIRE_PKG_CONFLICTS },
+               { 24, PAKFIRE_PKG_OBSOLETES },
+               { 25, PAKFIRE_PKG_RECOMMENDS },
+               { 26, PAKFIRE_PKG_SUGGESTS },
+               { 27, PAKFIRE_PKG_SUPPLEMENTS },
+               { 28, PAKFIRE_PKG_ENHANCES },
+               { 0 },
        };
 
        for (const struct dependency* deps = dependencies; deps->field; deps++) {
                const char* relations = (const char*)sqlite3_column_text(stmt, deps->field);
                if (relations) {
-                       pakfire_str2deps(db->pakfire, pkg, deps->func, relations);
+                       r = pakfire_str2deps(db->ctx, pkg, deps->key, relations);
+                       if (r)
+                               goto ERROR;
                }
        }
 
        // Source package
        const char* source_name = (const char*)sqlite3_column_text(stmt, 29);
-       if (source_name)
-               pakfire_package_set_source_name(pkg, source_name);
+       if (source_name) {
+               r = pakfire_package_set_string(pkg, PAKFIRE_PKG_SOURCE_NAME, source_name);
+               if (r)
+                       goto ERROR;
+       }
 
        // Source EVR
        const char* source_evr = (const char*)sqlite3_column_text(stmt, 30);
-       if (source_evr)
-               pakfire_package_set_source_evr(pkg, source_evr);
+       if (source_evr) {
+               r = pakfire_package_set_string(pkg, PAKFIRE_PKG_SOURCE_EVR, source_evr);
+               if (r)
+                       goto ERROR;
+       }
 
        // Source arch
        const char* source_arch = (const char*)sqlite3_column_text(stmt, 31);
-       if (source_arch)
-               pakfire_package_set_source_arch(pkg, source_arch);
+       if (source_arch) {
+               r = pakfire_package_set_string(pkg, PAKFIRE_PKG_SOURCE_ARCH, source_arch);
+               if (r)
+                       goto ERROR;
+       }
 
        // Distribution
        const char* distribution = (const char*)sqlite3_column_text(stmt, 32);
@@ -1925,7 +2037,7 @@ int pakfire_db_load(struct pakfire_db* db, struct pakfire_repo* repo) {
        sqlite3_stmt* stmt = NULL;
        int r = 1;
 
-       DEBUG(db->pakfire, "Loading package database...\n");
+       CTX_DEBUG(db->ctx, "Loading package database...\n");
 
        // Drop contents of the repository
        pakfire_repo_clear(repo);
@@ -2005,7 +2117,7 @@ int pakfire_db_load(struct pakfire_db* db, struct pakfire_repo* repo) {
        // Prepare the statement
        r = sqlite3_prepare_v2(db->handle, sql, strlen(sql), &stmt, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s %s\n",
                        sql, sqlite3_errmsg(db->handle));
                goto ERROR;
        }
@@ -2040,7 +2152,7 @@ END:
        // Save time when we finished
        t_end = clock();
 
-       DEBUG(db->pakfire, "Loading package database completed in %.4fms\n",
+       CTX_DEBUG(db->ctx, "Loading package database completed in %.4fms\n",
                (double)(t_end - t_start) * 1000 / CLOCKS_PER_SEC);
 
        // Mark repository as changed
@@ -2051,7 +2163,7 @@ END:
 
 ERROR:
        if (r) {
-               ERROR(db->pakfire, "Failed reading package database: %d\n", r);
+               CTX_ERROR(db->ctx, "Failed reading package database: %m\n");
                pakfire_repo_clear(repo);
        }
 
@@ -2080,6 +2192,7 @@ static int pakfire_db_load_file_digest(struct pakfire_db* db, struct pakfire_fil
 static int pakfire_db_load_file(struct pakfire_db* db, struct pakfire_filelist* filelist,
                sqlite3_stmt* stmt) {
        struct pakfire_file* file = NULL;
+       char abspath[PATH_MAX];
        int r;
 
        // Create a new file object
@@ -2092,7 +2205,7 @@ static int pakfire_db_load_file(struct pakfire_db* db, struct pakfire_filelist*
 
        // Abort if no path is set
        if (!path) {
-               ERROR(db->pakfire, "File has no path\n");
+               CTX_ERROR(db->ctx, "File has no path\n");
                r = 1;
                goto ERROR;
        }
@@ -2100,7 +2213,21 @@ static int pakfire_db_load_file(struct pakfire_db* db, struct pakfire_filelist*
        // Set path
        r = pakfire_file_set_path(file, path);
        if (r) {
-               ERROR(db->pakfire, "%s: Could not set path '%s': %m\n", path, path);
+               CTX_ERROR(db->ctx, "%s: Could not set path '%s': %m\n", path, path);
+               goto ERROR;
+       }
+
+       // Make the absolute path
+       r = pakfire_path(db->pakfire, abspath, "%s", path);
+       if (r) {
+               CTX_ERROR(db->ctx, "%s: Could not make absolute path: %m\n", path);
+               goto ERROR;
+       }
+
+       // Set the absolute path
+       r = pakfire_file_set_abspath(file, abspath);
+       if (r) {
+               CTX_ERROR(db->ctx, "%s: Could not set absolute path %s: %m\n", path, abspath);
                goto ERROR;
        }
 
@@ -2119,7 +2246,7 @@ static int pakfire_db_load_file(struct pakfire_db* db, struct pakfire_filelist*
 
        // Abort if no user is set
        if (!uname) {
-               ERROR(db->pakfire, "%s: No user\n", path);
+               CTX_ERROR(db->ctx, "%s: No user\n", path);
                r = 1;
                goto ERROR;
        }
@@ -2127,7 +2254,7 @@ static int pakfire_db_load_file(struct pakfire_db* db, struct pakfire_filelist*
        // Set uname
        r = pakfire_file_set_uname(file, uname);
        if (r) {
-               ERROR(db->pakfire, "%s: Could not set user '%s': %m\n", path, uname);
+               CTX_ERROR(db->ctx, "%s: Could not set user '%s': %m\n", path, uname);
                goto ERROR;
        }
 
@@ -2136,7 +2263,7 @@ static int pakfire_db_load_file(struct pakfire_db* db, struct pakfire_filelist*
 
        // Abort if no group is set
        if (!gname) {
-               ERROR(db->pakfire, "%s: No group\n", path);
+               CTX_ERROR(db->ctx, "%s: No group\n", path);
                r = 1;
                goto ERROR;
        }
@@ -2144,7 +2271,7 @@ static int pakfire_db_load_file(struct pakfire_db* db, struct pakfire_filelist*
        // Set gname
        r = pakfire_file_set_gname(file, gname);
        if (r) {
-               ERROR(db->pakfire, "%s: Could not set group '%s': %m\n", path, gname);
+               CTX_ERROR(db->ctx, "%s: Could not set group '%s': %m\n", path, gname);
                goto ERROR;
        }
 
@@ -2158,38 +2285,45 @@ static int pakfire_db_load_file(struct pakfire_db* db, struct pakfire_filelist*
        if (mtime)
                pakfire_file_set_mtime(file, mtime);
 
+       const char* mimetype = (const char*)sqlite3_column_text(stmt, 7);
+
+       // MIME type
+       r = pakfire_file_set_mimetype(file, mimetype);
+       if (r)
+               goto ERROR;
+
        // SHA2-512 Digest
-       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_SHA2_512, 7);
+       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_SHA2_512, 8);
        if (r)
                goto ERROR;
 
        // SHA2-256 Digest
-       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_SHA2_256, 8);
+       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_SHA2_256, 9);
        if (r)
                goto ERROR;
 
        // BLAKE2b512 Digest
-       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_BLAKE2B512, 9);
+       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_BLAKE2B512, 10);
        if (r)
                goto ERROR;
 
        // BLAKE2s256 Digest
-       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_BLAKE2S256, 10);
+       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_BLAKE2S256, 11);
        if (r)
                goto ERROR;
 
        // SHA3-512 Digest
-       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_SHA3_512, 11);
+       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_SHA3_512, 12);
        if (r)
                goto ERROR;
 
        // SHA3-256 Digest
-       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_SHA3_256, 12);
+       r = pakfire_db_load_file_digest(db, file, stmt, PAKFIRE_DIGEST_SHA3_256, 13);
        if (r)
                goto ERROR;
 
        // Append the file to the filelist
-       r = pakfire_filelist_append(filelist, file);
+       r = pakfire_filelist_add(filelist, file);
        if (r)
                goto ERROR;
 
@@ -2214,6 +2348,7 @@ int pakfire_db_filelist(struct pakfire_db* db, struct pakfire_filelist** filelis
                        "gname, "
                        "ctime, "
                        "mtime, "
+                       "mimetype, "
                        "digest_sha2_512, "
                        "digest_sha2_256, "
                        "digest_blake2b512, "
@@ -2227,7 +2362,7 @@ int pakfire_db_filelist(struct pakfire_db* db, struct pakfire_filelist** filelis
        // Prepare the statement
        r = sqlite3_prepare_v2(db->handle, sql, strlen(sql), &stmt, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s %s\n",
                        sql, sqlite3_errmsg(db->handle));
                goto ERROR;
        }
@@ -2271,7 +2406,7 @@ END:
 
 ERROR:
        if (r)
-               ERROR(db->pakfire, "Could not fetch filelist: %m\n");
+               CTX_ERROR(db->ctx, "Could not fetch filelist: %m\n");
 
        if (stmt)
                sqlite3_finalize(stmt);
@@ -2288,16 +2423,16 @@ int pakfire_db_package_filelist(struct pakfire_db* db, struct pakfire_filelist**
        int r = 1;
 
        // Fetch the package ID
-       uint64_t id = pakfire_package_get_dbid(pkg);
+       uint64_t id = pakfire_package_get_num(pkg, PAKFIRE_PKG_DBID, 0);
        if (!id) {
-               ERROR(db->pakfire, "Package did not have an ID\n");
+               CTX_ERROR(db->ctx, "Package did not have an ID\n");
                return 1;
        }
 
        // Create a new filelist
        r = pakfire_filelist_create(&fl, db->pakfire);
        if (r) {
-               ERROR(db->pakfire, "Could not create filelist: %m\n");
+               CTX_ERROR(db->ctx, "Could not create filelist: %m\n");
                goto ERROR;
        }
 
@@ -2310,6 +2445,7 @@ int pakfire_db_package_filelist(struct pakfire_db* db, struct pakfire_filelist**
                        "gname, "
                        "ctime, "
                        "mtime, "
+                       "mimetype, "
                        "digest_sha2_512, "
                        "digest_sha2_256, "
                        "digest_blake2b512, "
@@ -2335,15 +2471,14 @@ int pakfire_db_package_filelist(struct pakfire_db* db, struct pakfire_filelist**
                                        "files.pkg != duplicates.pkg"
                        ") "
 
-               // Return the longest paths first
-               "ORDER BY "
-                       "length(path) DESC"
+               // Return ordered by path
+               "ORDER BY path"
                ";";
 
        // Prepare the statement
        r = sqlite3_prepare_v2(db->handle, sql, strlen(sql), &stmt, NULL);
        if (r) {
-               ERROR(db->pakfire, "Could not prepare SQL statement: %s %s\n",
+               CTX_ERROR(db->ctx, "Could not prepare SQL statement: %s %s\n",
                        sql, sqlite3_errmsg(db->handle));
                goto ERROR;
        }
@@ -2351,7 +2486,7 @@ int pakfire_db_package_filelist(struct pakfire_db* db, struct pakfire_filelist**
        // Bind package ID
        r = sqlite3_bind_int64(stmt, 1, id);
        if (r) {
-               ERROR(db->pakfire, "Could not bind package ID: %s\n", sqlite3_errmsg(db->handle));
+               CTX_ERROR(db->ctx, "Could not bind package ID: %s\n", sqlite3_errmsg(db->handle));
                goto ERROR;
        }