Merge desc and depends files in local db
[pacman-ng.git] / lib / libalpm / db.h
blob133b09591c28498a23b320c6c3d729ac0820a57b
1 /*
2 * db.h
4 * Copyright (c) 2006-2010 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 "alpm.h"
26 #include <limits.h>
27 #include <time.h>
29 /* libarchive */
30 #include <archive.h>
31 #include <archive_entry.h>
33 /* Database entries */
34 typedef enum _pmdbinfrq_t {
35 INFRQ_BASE = 1,
36 INFRQ_DESC = (1 << 1),
37 INFRQ_FILES = (1 << 2),
38 INFRQ_SCRIPTLET = (1 << 3),
39 INFRQ_DSIZE = (1 << 4),
40 /* ALL should be info stored in the package or database */
41 INFRQ_ALL = 0x1F
42 } pmdbinfrq_t;
44 struct db_operations {
45 int (*populate) (pmdb_t *);
46 void (*unregister) (pmdb_t *);
49 /* Database */
50 struct __pmdb_t {
51 char *treename;
52 /* do not access directly, use _alpm_db_path(db) for lazy access */
53 char *_path;
54 int pkgcache_loaded;
55 int grpcache_loaded;
56 /* also indicates whether we are RO or RW */
57 int is_local;
58 alpm_list_t *pkgcache;
59 alpm_list_t *grpcache;
60 alpm_list_t *servers;
62 struct db_operations *ops;
66 /* db.c, database general calls */
67 void _alpm_db_free(pmdb_t *db);
68 const char *_alpm_db_path(pmdb_t *db);
69 int _alpm_db_cmp(const void *d1, const void *d2);
70 alpm_list_t *_alpm_db_search(pmdb_t *db, const alpm_list_t *needles);
71 pmdb_t *_alpm_db_register_local(void);
72 pmdb_t *_alpm_db_register_sync(const char *treename);
73 void _alpm_db_unregister(pmdb_t *db);
74 pmdb_t *_alpm_db_new(const char *treename, int is_local);
76 /* be_*.c, backend specific calls */
77 int _alpm_local_db_populate(pmdb_t *db);
78 int _alpm_local_db_read(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
79 int _alpm_local_db_prepare(pmdb_t *db, pmpkg_t *info);
80 int _alpm_local_db_write(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
81 int _alpm_local_db_remove(pmdb_t *db, pmpkg_t *info);
83 int _alpm_sync_db_populate(pmdb_t *db);
84 int _alpm_sync_db_read(pmdb_t *db, struct archive *archive, struct archive_entry *entry);
86 /* cache bullshit */
87 /* packages */
88 int _alpm_db_load_pkgcache(pmdb_t *db);
89 void _alpm_db_free_pkgcache(pmdb_t *db);
90 int _alpm_db_add_pkgincache(pmdb_t *db, pmpkg_t *pkg);
91 int _alpm_db_remove_pkgfromcache(pmdb_t *db, pmpkg_t *pkg);
92 alpm_list_t *_alpm_db_get_pkgcache(pmdb_t *db);
93 int _alpm_db_ensure_pkgcache(pmdb_t *db, pmdbinfrq_t infolevel);
94 pmpkg_t *_alpm_db_get_pkgfromcache(pmdb_t *db, const char *target);
95 /* groups */
96 int _alpm_db_load_grpcache(pmdb_t *db);
97 void _alpm_db_free_grpcache(pmdb_t *db);
98 alpm_list_t *_alpm_db_get_grpcache(pmdb_t *db);
99 pmgrp_t *_alpm_db_get_grpfromcache(pmdb_t *db, const char *target);
101 #endif /* _ALPM_DB_H */
103 /* vim: set ts=2 sw=2 noet: */