2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* db.h
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2012-02-20 07:53:03 -05:00
|
|
|
* Copyright (c) 2006-2012 Pacman Development Team <pacman-dev@archlinux.org>
|
2009-07-01 03:08:33 -04:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
|
2006-10-15 15:31:03 -04:00
|
|
|
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
|
|
|
|
* Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org>
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2005-03-14 20:51:43 -05:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-12-10 23:55:22 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
#ifndef _ALPM_DB_H
|
|
|
|
#define _ALPM_DB_H
|
|
|
|
|
2010-10-10 00:49:10 -04:00
|
|
|
/* libarchive */
|
|
|
|
#include <archive.h>
|
|
|
|
#include <archive_entry.h>
|
|
|
|
|
2010-11-22 00:06:09 -05:00
|
|
|
#include "alpm.h"
|
2011-06-03 16:24:01 -04:00
|
|
|
#include "pkghash.h"
|
2010-11-22 00:06:09 -05:00
|
|
|
#include "signing.h"
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Database entries */
|
2011-06-28 00:59:04 -04:00
|
|
|
typedef enum _alpm_dbinfrq_t {
|
2009-09-26 13:30:32 -04:00
|
|
|
INFRQ_BASE = 1,
|
|
|
|
INFRQ_DESC = (1 << 1),
|
2010-10-30 01:35:43 -04:00
|
|
|
INFRQ_FILES = (1 << 2),
|
|
|
|
INFRQ_SCRIPTLET = (1 << 3),
|
|
|
|
INFRQ_DSIZE = (1 << 4),
|
2010-05-05 18:07:37 -04:00
|
|
|
/* ALL should be info stored in the package or database */
|
2011-07-29 18:03:07 -04:00
|
|
|
INFRQ_ALL = 0x1F,
|
|
|
|
INFRQ_ERROR = (1 << 31)
|
2011-06-28 00:59:04 -04:00
|
|
|
} alpm_dbinfrq_t;
|
2005-03-16 15:23:50 -05:00
|
|
|
|
2011-06-07 21:42:15 -04:00
|
|
|
/** Database status. Bitflags. */
|
2011-06-28 01:00:46 -04:00
|
|
|
enum _alpm_dbstatus_t {
|
2011-06-07 21:42:15 -04:00
|
|
|
DB_STATUS_VALID = (1 << 0),
|
2011-08-17 22:06:04 -04:00
|
|
|
DB_STATUS_INVALID = (1 << 1),
|
|
|
|
DB_STATUS_EXISTS = (1 << 2),
|
|
|
|
DB_STATUS_MISSING = (1 << 3),
|
|
|
|
|
|
|
|
DB_STATUS_LOCAL = (1 << 10),
|
|
|
|
DB_STATUS_PKGCACHE = (1 << 11),
|
|
|
|
DB_STATUS_GRPCACHE = (1 << 12)
|
2011-06-07 21:42:15 -04:00
|
|
|
};
|
|
|
|
|
2010-07-10 22:06:21 -04:00
|
|
|
struct db_operations {
|
2011-06-08 00:05:21 -04:00
|
|
|
int (*validate) (alpm_db_t *);
|
2011-06-28 00:11:43 -04:00
|
|
|
int (*populate) (alpm_db_t *);
|
|
|
|
void (*unregister) (alpm_db_t *);
|
2010-07-10 22:06:21 -04:00
|
|
|
};
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Database */
|
2011-06-28 00:11:43 -04:00
|
|
|
struct __alpm_db_t {
|
2011-06-28 00:04:00 -04:00
|
|
|
alpm_handle_t *handle;
|
2008-03-26 21:19:44 -04:00
|
|
|
char *treename;
|
2009-09-14 23:44:51 -04:00
|
|
|
/* do not access directly, use _alpm_db_path(db) for lazy access */
|
|
|
|
char *_path;
|
2011-06-28 00:56:29 -04:00
|
|
|
alpm_pkghash_t *pkgcache;
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *grpcache;
|
|
|
|
alpm_list_t *servers;
|
2010-07-10 22:06:21 -04:00
|
|
|
struct db_operations *ops;
|
2011-08-17 22:06:04 -04:00
|
|
|
/* flags determining validity, local, loaded caches, etc. */
|
|
|
|
enum _alpm_dbstatus_t status;
|
|
|
|
alpm_siglevel_t siglevel;
|
2006-11-20 04:10:23 -05:00
|
|
|
};
|
2007-01-30 21:58:12 -05:00
|
|
|
|
2010-07-10 22:06:21 -04:00
|
|
|
|
2006-12-22 14:38:55 -05:00
|
|
|
/* db.c, database general calls */
|
2011-06-28 00:11:43 -04:00
|
|
|
alpm_db_t *_alpm_db_new(const char *treename, int is_local);
|
|
|
|
void _alpm_db_free(alpm_db_t *db);
|
|
|
|
const char *_alpm_db_path(alpm_db_t *db);
|
2008-08-08 14:45:46 -04:00
|
|
|
int _alpm_db_cmp(const void *d1, const void *d2);
|
2011-06-28 00:11:43 -04:00
|
|
|
alpm_list_t *_alpm_db_search(alpm_db_t *db, const alpm_list_t *needles);
|
|
|
|
alpm_db_t *_alpm_db_register_local(alpm_handle_t *handle);
|
|
|
|
alpm_db_t *_alpm_db_register_sync(alpm_handle_t *handle, const char *treename,
|
2011-06-27 17:29:49 -04:00
|
|
|
alpm_siglevel_t level);
|
2011-06-28 00:11:43 -04:00
|
|
|
void _alpm_db_unregister(alpm_db_t *db);
|
2006-12-22 14:38:55 -05:00
|
|
|
|
2010-10-10 00:49:10 -04:00
|
|
|
/* be_*.c, backend specific calls */
|
2011-06-28 09:26:39 -04:00
|
|
|
int _alpm_local_db_prepare(alpm_db_t *db, alpm_pkg_t *info);
|
2011-06-28 00:59:04 -04:00
|
|
|
int _alpm_local_db_write(alpm_db_t *db, alpm_pkg_t *info, alpm_dbinfrq_t inforeq);
|
2011-06-28 09:26:39 -04:00
|
|
|
int _alpm_local_db_remove(alpm_db_t *db, alpm_pkg_t *info);
|
2011-09-28 05:43:23 -04:00
|
|
|
char *_alpm_local_db_pkgpath(alpm_db_t *db, alpm_pkg_t *info, const char *filename);
|
2010-10-10 00:49:10 -04:00
|
|
|
|
2008-05-11 17:49:01 -04:00
|
|
|
/* cache bullshit */
|
|
|
|
/* packages */
|
2011-06-28 00:11:43 -04:00
|
|
|
void _alpm_db_free_pkgcache(alpm_db_t *db);
|
2011-06-28 09:26:39 -04:00
|
|
|
int _alpm_db_add_pkgincache(alpm_db_t *db, alpm_pkg_t *pkg);
|
|
|
|
int _alpm_db_remove_pkgfromcache(alpm_db_t *db, alpm_pkg_t *pkg);
|
2011-06-28 00:56:29 -04:00
|
|
|
alpm_pkghash_t *_alpm_db_get_pkgcache_hash(alpm_db_t *db);
|
2011-06-28 00:11:43 -04:00
|
|
|
alpm_list_t *_alpm_db_get_pkgcache(alpm_db_t *db);
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *_alpm_db_get_pkgfromcache(alpm_db_t *db, const char *target);
|
2008-05-11 17:49:01 -04:00
|
|
|
/* groups */
|
2011-06-29 01:46:49 -04:00
|
|
|
alpm_list_t *_alpm_db_get_groupcache(alpm_db_t *db);
|
2011-06-29 01:52:33 -04:00
|
|
|
alpm_group_t *_alpm_db_get_groupfromcache(alpm_db_t *db, const char *target);
|
2008-05-11 17:49:01 -04:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
#endif /* _ALPM_DB_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|