2005-03-15 01:51:43 +00:00
|
|
|
/*
|
|
|
|
* db.h
|
2007-11-16 20:18:45 -06:00
|
|
|
*
|
2011-01-06 14:45:15 +10:00
|
|
|
* Copyright (c) 2006-2011 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"
|
2011-01-25 11:49:34 +10:00
|
|
|
#include "pkghash.h"
|
|
|
|
|
2007-11-16 11:51:26 -06:00
|
|
|
#include <time.h>
|
2005-03-15 01:51:43 +00:00
|
|
|
|
2010-10-10 14:49:10 +10:00
|
|
|
/* libarchive */
|
|
|
|
#include <archive.h>
|
|
|
|
#include <archive_entry.h>
|
|
|
|
|
2010-11-22 15:06:09 +10:00
|
|
|
#include "alpm.h"
|
|
|
|
#include "signing.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),
|
2010-10-30 15:35:43 +10:00
|
|
|
INFRQ_FILES = (1 << 2),
|
|
|
|
INFRQ_SCRIPTLET = (1 << 3),
|
|
|
|
INFRQ_DSIZE = (1 << 4),
|
2010-05-06 10:07:37 +12:00
|
|
|
/* ALL should be info stored in the package or database */
|
2010-10-30 15:35:43 +10:00
|
|
|
INFRQ_ALL = 0x1F
|
2007-01-24 03:02:53 +00:00
|
|
|
} pmdbinfrq_t;
|
2005-03-16 20:23:50 +00:00
|
|
|
|
2010-07-10 21:06:21 -05:00
|
|
|
struct db_operations {
|
|
|
|
int (*populate) (pmdb_t *);
|
|
|
|
void (*unregister) (pmdb_t *);
|
2011-02-28 10:46:00 -06:00
|
|
|
int (*version) (pmdb_t *);
|
2010-07-10 21:06:21 -05: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;
|
2010-07-10 21:06:21 -05:00
|
|
|
/* also indicates whether we are RO or RW */
|
2009-10-11 13:51:47 -05:00
|
|
|
int is_local;
|
2011-01-25 11:49:34 +10:00
|
|
|
pmpkghash_t *pkgcache;
|
2007-01-19 09:28:44 +00:00
|
|
|
alpm_list_t *grpcache;
|
|
|
|
alpm_list_t *servers;
|
2010-11-22 15:06:09 +10:00
|
|
|
/* do not access directly, use _alpm_db_pgpsig(db) for lazy access */
|
|
|
|
pmpgpsig_t pgpsig;
|
2008-12-17 16:25:07 +05:30
|
|
|
pgp_verify_t pgp_verify;
|
2010-07-10 21:06:21 -05:00
|
|
|
|
|
|
|
struct db_operations *ops;
|
2006-11-20 09:10:23 +00:00
|
|
|
};
|
2007-01-31 02:58:12 +00:00
|
|
|
|
2010-07-10 21:06:21 -05:00
|
|
|
|
2006-12-22 19:38:55 +00:00
|
|
|
/* db.c, database general calls */
|
2011-02-28 10:46:00 -06:00
|
|
|
pmdb_t *_alpm_db_new(const char *treename, int is_local);
|
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);
|
2011-02-28 10:46:00 -06:00
|
|
|
int _alpm_db_version(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);
|
2010-07-10 21:06:21 -05:00
|
|
|
void _alpm_db_unregister(pmdb_t *db);
|
2010-11-22 15:06:09 +10:00
|
|
|
const pmpgpsig_t *_alpm_db_pgpsig(pmdb_t *db);
|
2006-12-22 19:38:55 +00:00
|
|
|
|
2010-10-10 14:49:10 +10:00
|
|
|
/* be_*.c, backend specific calls */
|
2010-10-09 20:16:15 +10:00
|
|
|
int _alpm_local_db_read(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
|
2010-10-13 18:04:07 +10:00
|
|
|
int _alpm_local_db_prepare(pmdb_t *db, pmpkg_t *info);
|
|
|
|
int _alpm_local_db_write(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
|
|
|
|
int _alpm_local_db_remove(pmdb_t *db, pmpkg_t *info);
|
2010-10-10 14:49:10 +10:00
|
|
|
|
2008-05-12 07:49:01 +10:00
|
|
|
/* cache bullshit */
|
|
|
|
/* packages */
|
|
|
|
int _alpm_db_load_pkgcache(pmdb_t *db);
|
|
|
|
void _alpm_db_free_pkgcache(pmdb_t *db);
|
|
|
|
int _alpm_db_add_pkgincache(pmdb_t *db, pmpkg_t *pkg);
|
|
|
|
int _alpm_db_remove_pkgfromcache(pmdb_t *db, pmpkg_t *pkg);
|
2011-02-25 09:11:37 -05:00
|
|
|
pmpkghash_t *_alpm_db_get_pkgcache_hash(pmdb_t *db);
|
2011-02-25 09:22:09 -05:00
|
|
|
alpm_list_t *_alpm_db_get_pkgcache(pmdb_t *db);
|
2008-05-12 07:49:01 +10:00
|
|
|
int _alpm_db_ensure_pkgcache(pmdb_t *db, pmdbinfrq_t infolevel);
|
|
|
|
pmpkg_t *_alpm_db_get_pkgfromcache(pmdb_t *db, const char *target);
|
|
|
|
/* groups */
|
|
|
|
int _alpm_db_load_grpcache(pmdb_t *db);
|
|
|
|
void _alpm_db_free_grpcache(pmdb_t *db);
|
|
|
|
alpm_list_t *_alpm_db_get_grpcache(pmdb_t *db);
|
|
|
|
pmgrp_t *_alpm_db_get_grpfromcache(pmdb_t *db, const char *target);
|
|
|
|
|
2005-03-15 01:51:43 +00:00
|
|
|
#endif /* _ALPM_DB_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|