2005-03-15 01:51:43 +00:00
|
|
|
/*
|
|
|
|
* db.h
|
2007-11-16 20:18:45 -06:00
|
|
|
*
|
2010-03-14 19:46:59 -05:00
|
|
|
* Copyright (c) 2006-2010 Pacman Development Team <pacman-dev@archlinux.org>
|
2009-07-01 02:08:33 -05:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
|
2006-10-15 19:31:03 +00:00
|
|
|
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
|
|
|
|
* Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org>
|
2007-11-16 20:18:45 -06:00
|
|
|
*
|
2005-03-15 01:51:43 +00: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 22:55:22 -06:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-15 01:51:43 +00:00
|
|
|
*/
|
|
|
|
#ifndef _ALPM_DB_H
|
|
|
|
#define _ALPM_DB_H
|
|
|
|
|
2006-10-20 06:26:55 +00:00
|
|
|
#include "alpm.h"
|
2006-11-20 09:10:23 +00:00
|
|
|
#include <limits.h>
|
2007-11-16 11:51:26 -06:00
|
|
|
#include <time.h>
|
2005-03-15 01:51:43 +00:00
|
|
|
|
|
|
|
/* Database entries */
|
2007-01-24 03:02:53 +00:00
|
|
|
typedef enum _pmdbinfrq_t {
|
2009-09-26 19:30:32 +02:00
|
|
|
INFRQ_BASE = 1,
|
|
|
|
INFRQ_DESC = (1 << 1),
|
|
|
|
INFRQ_DEPENDS = (1 << 2),
|
|
|
|
INFRQ_FILES = (1 << 3),
|
|
|
|
INFRQ_SCRIPTLET = (1 << 4),
|
|
|
|
INFRQ_DELTAS = (1 << 5),
|
2010-05-06 10:07:37 +12:00
|
|
|
INFRQ_DSIZE = (1 << 6),
|
|
|
|
/* ALL should be info stored in the package or database */
|
2007-10-19 13:17:51 -04:00
|
|
|
INFRQ_ALL = 0x3F
|
2007-01-24 03:02:53 +00:00
|
|
|
} pmdbinfrq_t;
|
2005-03-16 20:23:50 +00:00
|
|
|
|
2005-03-15 01:51:43 +00:00
|
|
|
/* Database */
|
2006-11-20 09:10:23 +00:00
|
|
|
struct __pmdb_t {
|
2008-03-26 20:19:44 -05:00
|
|
|
char *treename;
|
2009-09-14 22:44:51 -05:00
|
|
|
/* do not access directly, use _alpm_db_path(db) for lazy access */
|
|
|
|
char *_path;
|
2009-10-11 13:51:47 -05:00
|
|
|
int pkgcache_loaded;
|
|
|
|
int grpcache_loaded;
|
|
|
|
int is_local;
|
2009-09-14 22:44:51 -05:00
|
|
|
alpm_list_t *pkgcache;
|
2007-01-19 09:28:44 +00:00
|
|
|
alpm_list_t *grpcache;
|
|
|
|
alpm_list_t *servers;
|
2006-11-20 09:10:23 +00:00
|
|
|
};
|
2007-01-31 02:58:12 +00:00
|
|
|
|
2006-12-22 19:38:55 +00:00
|
|
|
/* db.c, database general calls */
|
2007-03-01 03:08:41 +00:00
|
|
|
void _alpm_db_free(pmdb_t *db);
|
2009-09-14 22:44:51 -05:00
|
|
|
const char *_alpm_db_path(pmdb_t *db);
|
2008-08-08 13:45:46 -05:00
|
|
|
int _alpm_db_cmp(const void *d1, const void *d2);
|
2007-06-05 17:34:33 -04:00
|
|
|
alpm_list_t *_alpm_db_search(pmdb_t *db, const alpm_list_t *needles);
|
2007-08-26 22:42:17 -04:00
|
|
|
pmdb_t *_alpm_db_register_local(void);
|
|
|
|
pmdb_t *_alpm_db_register_sync(const char *treename);
|
2006-12-22 19:38:55 +00:00
|
|
|
|
|
|
|
/* be.c, backend specific calls */
|
2008-05-12 18:56:14 -05:00
|
|
|
int _alpm_db_populate(pmdb_t *db);
|
2007-02-21 08:34:36 +00:00
|
|
|
int _alpm_db_read(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
|
2009-01-02 19:12:22 +10:00
|
|
|
int _alpm_db_prepare(pmdb_t *db, pmpkg_t *info);
|
2007-01-24 03:02:53 +00:00
|
|
|
int _alpm_db_write(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
|
2006-02-17 22:35:26 +00:00
|
|
|
int _alpm_db_remove(pmdb_t *db, pmpkg_t *info);
|
2005-03-15 01:51:43 +00:00
|
|
|
|
|
|
|
#endif /* _ALPM_DB_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|