Move database 'version' check to registration time
[pacman-ng.git] / lib / libalpm / db.h
blob4541c2586e7a75dbe4b51c686f5c41e30ce01ec6
1 /*
2 * db.h
4 * Copyright (c) 2006-2011 Pacman Development Team <pacman-dev@archlinux.org>
5 * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
6 * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
7 * Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef _ALPM_DB_H
23 #define _ALPM_DB_H
25 #include <time.h>
27 /* libarchive */
28 #include <archive.h>
29 #include <archive_entry.h>
31 #include "alpm.h"
32 #include "pkghash.h"
33 #include "signing.h"
35 /* Database entries */
36 typedef enum _pmdbinfrq_t {
37 INFRQ_BASE = 1,
38 INFRQ_DESC = (1 << 1),
39 INFRQ_FILES = (1 << 2),
40 INFRQ_SCRIPTLET = (1 << 3),
41 INFRQ_DSIZE = (1 << 4),
42 /* ALL should be info stored in the package or database */
43 INFRQ_ALL = 0x1F
44 } pmdbinfrq_t;
46 struct db_operations {
47 int (*populate) (pmdb_t *);
48 void (*unregister) (pmdb_t *);
51 /* Database */
52 struct __pmdb_t {
53 pmhandle_t *handle;
54 char *treename;
55 /* do not access directly, use _alpm_db_path(db) for lazy access */
56 char *_path;
57 int pkgcache_loaded;
58 int grpcache_loaded;
59 /* also indicates whether we are RO or RW */
60 int is_local;
61 pmpkghash_t *pkgcache;
62 alpm_list_t *grpcache;
63 alpm_list_t *servers;
64 pgp_verify_t pgp_verify;
66 struct db_operations *ops;
70 /* db.c, database general calls */
71 pmdb_t *_alpm_db_new(const char *treename, int is_local);
72 void _alpm_db_free(pmdb_t *db);
73 const char *_alpm_db_path(pmdb_t *db);
74 char *_alpm_db_sig_path(pmdb_t *db);
75 int _alpm_db_version(pmdb_t *db);
76 int _alpm_db_cmp(const void *d1, const void *d2);
77 alpm_list_t *_alpm_db_search(pmdb_t *db, const alpm_list_t *needles);
78 pmdb_t *_alpm_db_register_local(pmhandle_t *handle);
79 pmdb_t *_alpm_db_register_sync(pmhandle_t *handle, const char *treename,
80 pgp_verify_t level);
81 void _alpm_db_unregister(pmdb_t *db);
83 /* be_*.c, backend specific calls */
84 int _alpm_local_db_read(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
85 int _alpm_local_db_prepare(pmdb_t *db, pmpkg_t *info);
86 int _alpm_local_db_write(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
87 int _alpm_local_db_remove(pmdb_t *db, pmpkg_t *info);
89 /* cache bullshit */
90 /* packages */
91 int _alpm_db_load_pkgcache(pmdb_t *db);
92 void _alpm_db_free_pkgcache(pmdb_t *db);
93 int _alpm_db_add_pkgincache(pmdb_t *db, pmpkg_t *pkg);
94 int _alpm_db_remove_pkgfromcache(pmdb_t *db, pmpkg_t *pkg);
95 pmpkghash_t *_alpm_db_get_pkgcache_hash(pmdb_t *db);
96 alpm_list_t *_alpm_db_get_pkgcache(pmdb_t *db);
97 int _alpm_db_ensure_pkgcache(pmdb_t *db, pmdbinfrq_t infolevel);
98 pmpkg_t *_alpm_db_get_pkgfromcache(pmdb_t *db, const char *target);
99 /* groups */
100 int _alpm_db_load_grpcache(pmdb_t *db);
101 void _alpm_db_free_grpcache(pmdb_t *db);
102 alpm_list_t *_alpm_db_get_grpcache(pmdb_t *db);
103 pmgrp_t *_alpm_db_get_grpfromcache(pmdb_t *db, const char *target);
105 #endif /* _ALPM_DB_H */
107 /* vim: set ts=2 sw=2 noet: */