2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* db.h
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2011-01-05 23:45:15 -05:00
|
|
|
* Copyright (c) 2006-2011 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
|
|
|
|
|
2006-10-20 02:26:55 -04:00
|
|
|
#include "alpm.h"
|
2007-11-16 12:51:26 -05:00
|
|
|
#include <time.h>
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2010-10-10 00:49:10 -04:00
|
|
|
/* libarchive */
|
|
|
|
#include <archive.h>
|
|
|
|
#include <archive_entry.h>
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Database entries */
|
2007-01-23 22:02:53 -05:00
|
|
|
typedef enum _pmdbinfrq_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 */
|
2010-10-30 01:35:43 -04:00
|
|
|
INFRQ_ALL = 0x1F
|
2007-01-23 22:02:53 -05:00
|
|
|
} pmdbinfrq_t;
|
2005-03-16 15:23:50 -05:00
|
|
|
|
2010-07-10 22:06:21 -04:00
|
|
|
struct db_operations {
|
|
|
|
int (*populate) (pmdb_t *);
|
|
|
|
void (*unregister) (pmdb_t *);
|
|
|
|
};
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Database */
|
2006-11-20 04:10:23 -05:00
|
|
|
struct __pmdb_t {
|
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;
|
2009-10-11 14:51:47 -04:00
|
|
|
int pkgcache_loaded;
|
|
|
|
int grpcache_loaded;
|
2010-07-10 22:06:21 -04:00
|
|
|
/* also indicates whether we are RO or RW */
|
2009-10-11 14:51:47 -04:00
|
|
|
int is_local;
|
2009-09-14 23:44:51 -04:00
|
|
|
alpm_list_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;
|
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 */
|
2007-02-28 22:08:41 -05:00
|
|
|
void _alpm_db_free(pmdb_t *db);
|
2009-09-14 23:44:51 -04:00
|
|
|
const char *_alpm_db_path(pmdb_t *db);
|
2008-08-08 14:45:46 -04: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 22:06:21 -04:00
|
|
|
void _alpm_db_unregister(pmdb_t *db);
|
2010-10-13 04:04:07 -04:00
|
|
|
pmdb_t *_alpm_db_new(const char *treename, int is_local);
|
2006-12-22 14:38:55 -05:00
|
|
|
|
2010-10-10 00:49:10 -04:00
|
|
|
/* be_*.c, backend specific calls */
|
2010-10-09 06:16:15 -04:00
|
|
|
int _alpm_local_db_read(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
|
2010-10-13 04:04:07 -04: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 00:49:10 -04:00
|
|
|
|
2008-05-11 17:49:01 -04: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);
|
|
|
|
alpm_list_t *_alpm_db_get_pkgcache(pmdb_t *db);
|
|
|
|
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-14 20:51:43 -05:00
|
|
|
#endif /* _ALPM_DB_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|