2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* db.h
|
|
|
|
*
|
2006-01-02 14:55:35 -05: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>
|
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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
|
|
* USA.
|
|
|
|
*/
|
|
|
|
#ifndef _ALPM_DB_H
|
|
|
|
#define _ALPM_DB_H
|
|
|
|
|
2006-10-20 02:26:55 -04:00
|
|
|
#include "alpm.h"
|
2006-11-20 04:10:23 -05:00
|
|
|
#include <limits.h>
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
/* Database entries */
|
2007-01-23 22:02:53 -05:00
|
|
|
typedef enum _pmdbinfrq_t {
|
2007-03-01 14:07:38 -05:00
|
|
|
INFRQ_BASE = 0x01,
|
|
|
|
INFRQ_DESC = 0x02,
|
|
|
|
INFRQ_DEPENDS = 0x04,
|
|
|
|
INFRQ_FILES = 0x08,
|
2007-03-01 17:11:02 -05:00
|
|
|
INFRQ_SCRIPTLET = 0x10,
|
2007-10-19 13:17:51 -04:00
|
|
|
INFRQ_DELTAS = 0x20,
|
2007-03-11 23:02:57 -04:00
|
|
|
/* ALL should be sum of all above */
|
2007-10-19 13:17:51 -04:00
|
|
|
INFRQ_ALL = 0x3F
|
2007-01-23 22:02:53 -05:00
|
|
|
} pmdbinfrq_t;
|
2005-03-16 15:23:50 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Database */
|
2006-11-20 04:10:23 -05:00
|
|
|
struct __pmdb_t {
|
2005-03-14 20:51:43 -05:00
|
|
|
char *path;
|
2006-10-15 15:31:03 -04:00
|
|
|
char treename[PATH_MAX];
|
2006-03-02 14:06:52 -05:00
|
|
|
void *handle;
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *pkgcache;
|
|
|
|
alpm_list_t *grpcache;
|
|
|
|
alpm_list_t *servers;
|
2006-11-20 04:10:23 -05:00
|
|
|
};
|
2007-01-30 21:58:12 -05:00
|
|
|
|
2006-12-22 14:38:55 -05:00
|
|
|
/* db.c, database general calls */
|
2007-05-31 02:51:28 -04:00
|
|
|
pmdb_t *_alpm_db_new(const char *dbpath, const char *treename);
|
2007-02-28 22:08:41 -05:00
|
|
|
void _alpm_db_free(pmdb_t *db);
|
2006-03-08 13:07:58 -05:00
|
|
|
int _alpm_db_cmp(const void *db1, const void *db2);
|
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 14:38:55 -05:00
|
|
|
|
|
|
|
/* be.c, backend specific calls */
|
2006-10-25 14:15:25 -04:00
|
|
|
int _alpm_db_install(pmdb_t *db, const char *dbfile);
|
2006-10-15 15:31:03 -04:00
|
|
|
int _alpm_db_open(pmdb_t *db);
|
2006-03-02 14:06:52 -05:00
|
|
|
void _alpm_db_close(pmdb_t *db);
|
2006-02-17 17:35:26 -05:00
|
|
|
void _alpm_db_rewind(pmdb_t *db);
|
2007-03-03 03:13:59 -05:00
|
|
|
pmpkg_t *_alpm_db_scan(pmdb_t *db, const char *target);
|
2007-02-21 03:34:36 -05:00
|
|
|
int _alpm_db_read(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
|
2007-01-23 22:02:53 -05:00
|
|
|
int _alpm_db_write(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
|
2006-02-17 17:35:26 -05:00
|
|
|
int _alpm_db_remove(pmdb_t *db, pmpkg_t *info);
|
2007-06-05 17:34:33 -04:00
|
|
|
int _alpm_db_getlastupdate(const pmdb_t *db, char *ts);
|
|
|
|
int _alpm_db_setlastupdate(const pmdb_t *db, char *ts);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
#endif /* _ALPM_DB_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|