2008-04-17 14:09:13 +00:00
|
|
|
/* apk_database.h - Alpine Package Keeper (APK)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
|
|
|
* Copyright (C) 2008 Timo Teräs <timo.teras@iki.fi>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
2009-06-28 17:36:16 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
2008-04-17 14:09:13 +00:00
|
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
|
|
* by the Free Software Foundation. See http://www.gnu.org/ for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef APK_PKGDB_H
|
|
|
|
#define APK_PKGDB_H
|
|
|
|
|
|
|
|
#include "apk_version.h"
|
|
|
|
#include "apk_hash.h"
|
|
|
|
#include "apk_archive.h"
|
|
|
|
#include "apk_package.h"
|
2010-10-08 12:36:54 +00:00
|
|
|
#include "apk_io.h"
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
#define APK_MAX_REPOS 32
|
|
|
|
#define APK_CACHE_CSUM_BYTES 4
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-06-29 08:22:55 +00:00
|
|
|
extern const char * const apk_index_gz;
|
2009-07-20 08:13:03 +00:00
|
|
|
extern const char * const apkindex_tar_gz;
|
2009-06-29 08:22:55 +00:00
|
|
|
|
2009-04-14 06:21:30 +00:00
|
|
|
struct apk_name;
|
|
|
|
APK_ARRAY(apk_name_array, struct apk_name *);
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_db_file {
|
2009-01-13 18:32:18 +00:00
|
|
|
struct hlist_node hash_node;
|
2009-01-06 17:44:54 +00:00
|
|
|
struct hlist_node diri_files_list;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-01-06 17:44:54 +00:00
|
|
|
struct apk_db_dir_instance *diri;
|
2009-07-14 08:55:08 +00:00
|
|
|
unsigned short namelen;
|
2009-07-14 16:14:05 +00:00
|
|
|
struct apk_checksum csum;
|
2009-07-14 08:55:08 +00:00
|
|
|
char name[];
|
2008-04-17 14:09:13 +00:00
|
|
|
};
|
|
|
|
|
2009-08-13 11:10:30 +00:00
|
|
|
#define APK_DBDIRF_PROTECTED 0x01
|
|
|
|
#define APK_DBDIRF_SYMLINKS_ONLY 0x02
|
|
|
|
#define APK_DBDIRF_MODIFIED 0x04
|
2008-11-14 12:26:59 +00:00
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_db_dir {
|
|
|
|
apk_hash_node hash_node;
|
|
|
|
|
2010-11-23 09:32:42 +00:00
|
|
|
unsigned long hash;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct hlist_head files;
|
|
|
|
struct apk_db_dir *parent;
|
|
|
|
|
2009-01-06 17:44:54 +00:00
|
|
|
unsigned short refs;
|
2009-07-14 08:55:08 +00:00
|
|
|
unsigned short namelen;
|
2009-08-13 11:10:30 +00:00
|
|
|
unsigned char flags;
|
|
|
|
char rooted_name[1];
|
2009-07-14 08:55:08 +00:00
|
|
|
char name[];
|
2009-01-06 17:44:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct apk_db_dir_instance {
|
|
|
|
struct hlist_node pkg_dirs_list;
|
|
|
|
struct hlist_head owned_files;
|
|
|
|
struct apk_package *pkg;
|
|
|
|
struct apk_db_dir *dir;
|
2008-04-17 14:09:13 +00:00
|
|
|
mode_t mode;
|
2008-04-22 06:04:20 +00:00
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
2008-04-17 14:09:13 +00:00
|
|
|
};
|
|
|
|
|
2009-08-13 13:02:02 +00:00
|
|
|
#define APK_NAME_TOPLEVEL 0x0001
|
|
|
|
#define APK_NAME_REINSTALL 0x0002
|
|
|
|
#define APK_NAME_TOPLEVEL_OVERRIDE 0x0004
|
2009-04-14 15:48:02 +00:00
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_name {
|
|
|
|
apk_hash_node hash_node;
|
2009-04-14 15:48:02 +00:00
|
|
|
unsigned int id;
|
|
|
|
unsigned int flags;
|
2008-04-17 14:09:13 +00:00
|
|
|
char *name;
|
|
|
|
struct apk_package_array *pkgs;
|
2009-04-14 06:21:30 +00:00
|
|
|
struct apk_name_array *rdepends;
|
2011-01-04 08:05:20 +00:00
|
|
|
struct apk_name_array *rinstall_if;
|
2008-04-17 14:09:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct apk_repository {
|
|
|
|
char *url;
|
2009-07-14 16:14:05 +00:00
|
|
|
struct apk_checksum csum;
|
2009-09-03 10:56:24 +00:00
|
|
|
|
|
|
|
apk_blob_t description;
|
2008-04-17 14:09:13 +00:00
|
|
|
};
|
|
|
|
|
2009-08-06 11:25:03 +00:00
|
|
|
struct apk_repository_list {
|
|
|
|
struct list_head list;
|
|
|
|
const char *url;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct apk_db_options {
|
2010-03-06 19:22:01 +00:00
|
|
|
int lock_wait;
|
2009-08-06 11:25:03 +00:00
|
|
|
unsigned long open_flags;
|
|
|
|
char *root;
|
2011-04-14 19:48:49 +00:00
|
|
|
char *arch;
|
2009-08-06 11:25:03 +00:00
|
|
|
char *keys_dir;
|
|
|
|
char *repositories_file;
|
|
|
|
struct list_head repository_list;
|
|
|
|
};
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_database {
|
|
|
|
char *root;
|
2009-07-31 13:08:09 +00:00
|
|
|
int root_fd, lock_fd, cache_fd, cachetmp_fd, keys_fd;
|
2009-04-14 15:48:02 +00:00
|
|
|
unsigned name_id, num_repos;
|
2010-12-14 17:51:16 +00:00
|
|
|
const char *cache_dir;
|
2011-03-16 12:55:08 +00:00
|
|
|
char *cache_remount_dir;
|
2010-12-14 17:51:16 +00:00
|
|
|
apk_blob_t *arch;
|
2009-08-06 13:00:20 +00:00
|
|
|
unsigned int local_repos;
|
2011-01-03 19:06:41 +00:00
|
|
|
int permanent : 1;
|
2011-03-16 12:55:08 +00:00
|
|
|
int ro_cache : 1;
|
2011-01-03 19:06:41 +00:00
|
|
|
int compat_newfeatures : 1;
|
|
|
|
int compat_notinstallable : 1;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
struct apk_dependency_array *world;
|
2008-11-14 12:26:59 +00:00
|
|
|
struct apk_string_array *protected_paths;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_repository repos[APK_MAX_REPOS];
|
2010-10-08 12:36:54 +00:00
|
|
|
struct apk_id_cache id_cache;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
struct {
|
|
|
|
struct apk_hash names;
|
|
|
|
struct apk_hash packages;
|
|
|
|
} available;
|
|
|
|
|
|
|
|
struct {
|
2008-11-27 18:25:01 +00:00
|
|
|
struct list_head packages;
|
2009-08-12 16:17:46 +00:00
|
|
|
struct list_head triggers;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_hash dirs;
|
2009-01-13 18:32:18 +00:00
|
|
|
struct apk_hash files;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct {
|
|
|
|
unsigned files;
|
|
|
|
unsigned dirs;
|
|
|
|
unsigned packages;
|
|
|
|
} stats;
|
|
|
|
} installed;
|
|
|
|
};
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
typedef union apk_database_or_void {
|
|
|
|
struct apk_database *db;
|
|
|
|
void *ptr;
|
|
|
|
} apk_database_t __attribute__ ((__transparent_union__));
|
|
|
|
|
|
|
|
struct apk_name *apk_db_get_name(struct apk_database *db, apk_blob_t name);
|
2009-01-13 12:09:45 +00:00
|
|
|
struct apk_name *apk_db_query_name(struct apk_database *db, apk_blob_t name);
|
2009-01-14 17:48:30 +00:00
|
|
|
struct apk_db_dir *apk_db_dir_query(struct apk_database *db,
|
|
|
|
apk_blob_t name);
|
|
|
|
struct apk_db_file *apk_db_file_query(struct apk_database *db,
|
|
|
|
apk_blob_t dir,
|
|
|
|
apk_blob_t name);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2010-03-04 12:01:37 +00:00
|
|
|
#define APK_OPENF_READ 0x0001
|
|
|
|
#define APK_OPENF_WRITE 0x0002
|
|
|
|
#define APK_OPENF_CREATE 0x0004
|
|
|
|
#define APK_OPENF_NO_INSTALLED 0x0010
|
|
|
|
#define APK_OPENF_NO_SCRIPTS 0x0020
|
|
|
|
#define APK_OPENF_NO_WORLD 0x0040
|
|
|
|
#define APK_OPENF_NO_SYS_REPOS 0x0100
|
|
|
|
#define APK_OPENF_NO_INSTALLED_REPO 0x0200
|
2011-03-16 12:55:08 +00:00
|
|
|
#define APK_OPENF_CACHE_WRITE 0x0400
|
2010-03-04 12:01:37 +00:00
|
|
|
|
|
|
|
#define APK_OPENF_NO_REPOS (APK_OPENF_NO_SYS_REPOS | \
|
|
|
|
APK_OPENF_NO_INSTALLED_REPO)
|
2009-07-07 06:27:56 +00:00
|
|
|
#define APK_OPENF_NO_STATE (APK_OPENF_NO_INSTALLED | \
|
|
|
|
APK_OPENF_NO_SCRIPTS | \
|
|
|
|
APK_OPENF_NO_WORLD)
|
2009-01-17 09:07:56 +00:00
|
|
|
|
2010-03-06 19:22:01 +00:00
|
|
|
int apk_db_open(struct apk_database *db, struct apk_db_options *dbopts);
|
2008-04-21 16:30:10 +00:00
|
|
|
void apk_db_close(struct apk_database *db);
|
2009-08-13 11:10:30 +00:00
|
|
|
int apk_db_write_config(struct apk_database *db);
|
|
|
|
int apk_db_run_triggers(struct apk_database *db);
|
2009-07-22 17:47:21 +00:00
|
|
|
int apk_db_permanent(struct apk_database *db);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-05-14 12:01:09 +00:00
|
|
|
struct apk_package *apk_db_pkg_add(struct apk_database *db, struct apk_package *pkg);
|
2009-07-14 16:14:05 +00:00
|
|
|
struct apk_package *apk_db_get_pkg(struct apk_database *db, struct apk_checksum *csum);
|
2009-01-13 13:22:14 +00:00
|
|
|
struct apk_package *apk_db_get_file_owner(struct apk_database *db, apk_blob_t filename);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
int apk_db_index_read(struct apk_database *db, struct apk_bstream *bs, int repo);
|
2009-07-21 14:59:08 +00:00
|
|
|
int apk_db_index_read_file(struct apk_database *db, const char *file, int repo);
|
2009-01-16 13:14:23 +00:00
|
|
|
int apk_db_index_write(struct apk_database *db, struct apk_ostream *os);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
int apk_db_add_repository(apk_database_t db, apk_blob_t repository);
|
2009-08-06 13:00:20 +00:00
|
|
|
struct apk_repository *apk_db_select_repo(struct apk_database *db,
|
|
|
|
struct apk_package *pkg);
|
2009-04-16 17:05:22 +00:00
|
|
|
int apk_repository_update(struct apk_database *db, struct apk_repository *repo);
|
2011-04-07 11:14:27 +00:00
|
|
|
int apk_repo_format_filename(char *buf, size_t len,
|
|
|
|
const char *repourl, apk_blob_t *arch,
|
|
|
|
const char *pkgfile);
|
2009-07-31 13:08:09 +00:00
|
|
|
|
|
|
|
int apk_db_cache_active(struct apk_database *db);
|
2010-12-10 14:42:25 +00:00
|
|
|
void apk_cache_format_index(apk_blob_t to, struct apk_repository *repo);
|
2011-03-16 12:51:44 +00:00
|
|
|
int apk_cache_download(struct apk_database *db, const char *url, apk_blob_t *arch,
|
2009-07-31 13:08:09 +00:00
|
|
|
const char *item, const char *cache_item, int verify);
|
2009-06-29 08:22:55 +00:00
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
int apk_db_install_pkg(struct apk_database *db,
|
|
|
|
struct apk_package *oldpkg,
|
2009-01-07 19:45:11 +00:00
|
|
|
struct apk_package *newpkg,
|
|
|
|
apk_progress_cb cb, void *cb_ctx);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
#endif
|