2010-11-13 07:48:58 +05:30
|
|
|
/*-
|
2020-04-29 17:42:10 +05:30
|
|
|
* Copyright (c) 2010-2015 Juan Romero Pardines.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*-
|
2010-11-13 07:48:58 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _XBPS_API_IMPL_H_
|
|
|
|
#define _XBPS_API_IMPL_H_
|
|
|
|
|
|
|
|
#include <assert.h>
|
2014-01-20 23:20:33 +05:30
|
|
|
#include "xbps.h"
|
2013-06-20 13:56:12 +05:30
|
|
|
|
2012-06-18 13:22:19 +05:30
|
|
|
/*
|
|
|
|
* By default all public functions have default visibility, unless
|
|
|
|
* visibility has been detected by configure and the HIDDEN definition
|
|
|
|
* is used.
|
|
|
|
*/
|
|
|
|
#if HAVE_VISIBILITY
|
|
|
|
#define HIDDEN __attribute__ ((visibility("hidden")))
|
|
|
|
#else
|
|
|
|
#define HIDDEN
|
|
|
|
#endif
|
|
|
|
|
2011-06-04 17:07:53 +05:30
|
|
|
#include "queue.h"
|
2013-12-16 16:16:39 +05:30
|
|
|
#include "compat.h"
|
2010-11-13 07:48:58 +05:30
|
|
|
|
|
|
|
#define EXTRACT_FLAGS ARCHIVE_EXTRACT_SECURE_NODOTDOT | \
|
2015-02-21 21:22:27 +05:30
|
|
|
ARCHIVE_EXTRACT_SECURE_SYMLINKS | \
|
2017-07-13 13:26:47 +05:30
|
|
|
ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS | \
|
2015-02-21 21:22:27 +05:30
|
|
|
ARCHIVE_EXTRACT_TIME | ARCHIVE_EXTRACT_PERM | \
|
|
|
|
ARCHIVE_EXTRACT_UNLINK
|
|
|
|
#define FEXTRACT_FLAGS ARCHIVE_EXTRACT_OWNER | EXTRACT_FLAGS
|
2010-11-13 07:48:58 +05:30
|
|
|
|
|
|
|
#ifndef __UNCONST
|
2020-12-27 02:21:22 +05:30
|
|
|
#define __UNCONST(a) ((void *)(uintptr_t)(const void *)(a))
|
2010-11-13 07:48:58 +05:30
|
|
|
#endif
|
|
|
|
|
2014-02-25 21:12:52 +05:30
|
|
|
#ifndef __arraycount
|
|
|
|
#define __arraycount(x) (sizeof(x) / sizeof(*x))
|
|
|
|
#endif
|
|
|
|
|
2011-06-04 17:07:53 +05:30
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
int HIDDEN dewey_match(const char *, const char *);
|
2012-01-20 15:40:52 +05:30
|
|
|
int HIDDEN xbps_pkgdb_init(struct xbps_handle *);
|
|
|
|
void HIDDEN xbps_pkgdb_release(struct xbps_handle *);
|
2014-09-11 03:42:12 +05:30
|
|
|
int HIDDEN xbps_pkgdb_conversion(struct xbps_handle *);
|
2014-11-17 20:15:46 +05:30
|
|
|
int HIDDEN xbps_array_replace_dict_by_name(xbps_array_t, xbps_dictionary_t,
|
|
|
|
const char *);
|
|
|
|
int HIDDEN xbps_array_replace_dict_by_pattern(xbps_array_t, xbps_dictionary_t,
|
|
|
|
const char *);
|
2013-06-20 13:56:12 +05:30
|
|
|
bool HIDDEN xbps_remove_pkg_from_array_by_name(xbps_array_t, const char *);
|
|
|
|
bool HIDDEN xbps_remove_pkg_from_array_by_pattern(xbps_array_t, const char *);
|
|
|
|
bool HIDDEN xbps_remove_pkg_from_array_by_pkgver(xbps_array_t, const char *);
|
2011-02-21 18:34:57 +05:30
|
|
|
void HIDDEN xbps_fetch_set_cache_connection(int, int);
|
2010-11-19 18:10:13 +05:30
|
|
|
void HIDDEN xbps_fetch_unset_cache_connection(void);
|
2014-07-27 21:09:24 +05:30
|
|
|
int HIDDEN xbps_cb_message(struct xbps_handle *, xbps_dictionary_t, const char *);
|
2013-06-20 13:56:12 +05:30
|
|
|
int HIDDEN xbps_entry_is_a_conf_file(xbps_dictionary_t, const char *);
|
2014-11-17 20:15:46 +05:30
|
|
|
int HIDDEN xbps_entry_install_conf_file(struct xbps_handle *, xbps_dictionary_t,
|
|
|
|
xbps_dictionary_t, struct archive_entry *, const char *,
|
2019-03-19 17:42:08 +05:30
|
|
|
const char *, bool);
|
2016-03-23 17:16:52 +05:30
|
|
|
xbps_dictionary_t HIDDEN xbps_find_virtualpkg_in_conf(struct xbps_handle *,
|
|
|
|
xbps_dictionary_t, const char *);
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t HIDDEN xbps_find_pkg_in_dict(xbps_dictionary_t, const char *);
|
2014-11-17 20:15:46 +05:30
|
|
|
xbps_dictionary_t HIDDEN xbps_find_virtualpkg_in_dict(struct xbps_handle *,
|
|
|
|
xbps_dictionary_t, const char *);
|
|
|
|
xbps_dictionary_t HIDDEN xbps_find_pkg_in_array(xbps_array_t, const char *,
|
2020-02-21 13:38:22 +05:30
|
|
|
xbps_trans_type_t);
|
2014-11-17 20:15:46 +05:30
|
|
|
xbps_dictionary_t HIDDEN xbps_find_virtualpkg_in_array(struct xbps_handle *,
|
2020-02-21 13:38:22 +05:30
|
|
|
xbps_array_t, const char *, xbps_trans_type_t);
|
|
|
|
|
|
|
|
/* transaction */
|
|
|
|
bool HIDDEN xbps_transaction_check_revdeps(struct xbps_handle *, xbps_array_t);
|
|
|
|
bool HIDDEN xbps_transaction_check_shlibs(struct xbps_handle *, xbps_array_t);
|
|
|
|
bool HIDDEN xbps_transaction_check_replaces(struct xbps_handle *, xbps_array_t);
|
|
|
|
bool HIDDEN xbps_transaction_check_conflicts(struct xbps_handle *, xbps_array_t);
|
|
|
|
bool HIDDEN xbps_transaction_store(struct xbps_handle *, xbps_array_t, xbps_dictionary_t, bool);
|
2012-01-22 14:30:46 +05:30
|
|
|
int HIDDEN xbps_transaction_init(struct xbps_handle *);
|
2020-02-21 13:38:22 +05:30
|
|
|
int HIDDEN xbps_transaction_files(struct xbps_handle *,
|
|
|
|
xbps_object_iterator_t);
|
|
|
|
int HIDDEN xbps_transaction_fetch(struct xbps_handle *,
|
|
|
|
xbps_object_iterator_t);
|
|
|
|
int HIDDEN xbps_transaction_pkg_deps(struct xbps_handle *, xbps_array_t, xbps_dictionary_t);
|
2021-06-24 20:38:53 +05:30
|
|
|
int HIDDEN xbps_transaction_internalize(struct xbps_handle *, xbps_object_iterator_t);
|
2020-02-21 13:38:22 +05:30
|
|
|
|
2010-11-13 07:48:58 +05:30
|
|
|
char HIDDEN *xbps_get_remote_repo_string(const char *);
|
2013-06-10 13:58:39 +05:30
|
|
|
int HIDDEN xbps_repo_sync(struct xbps_handle *, const char *);
|
2012-11-30 11:41:51 +05:30
|
|
|
int HIDDEN xbps_file_hash_check_dictionary(struct xbps_handle *,
|
2014-11-17 20:15:46 +05:30
|
|
|
xbps_dictionary_t, const char *, const char *);
|
2012-11-30 11:41:51 +05:30
|
|
|
int HIDDEN xbps_file_exec(struct xbps_handle *, const char *, ...);
|
2012-06-14 11:52:11 +05:30
|
|
|
void HIDDEN xbps_set_cb_fetch(struct xbps_handle *, off_t, off_t, off_t,
|
2014-11-17 20:15:46 +05:30
|
|
|
const char *, bool, bool, bool);
|
2013-10-05 15:08:04 +05:30
|
|
|
int HIDDEN xbps_set_cb_state(struct xbps_handle *, xbps_state_t, int,
|
2014-11-17 20:15:46 +05:30
|
|
|
const char *, const char *, ...);
|
2013-06-20 13:56:12 +05:30
|
|
|
int HIDDEN xbps_unpack_binary_pkg(struct xbps_handle *, xbps_dictionary_t);
|
2013-12-25 15:42:52 +05:30
|
|
|
int HIDDEN xbps_remove_pkg(struct xbps_handle *, const char *, bool);
|
2013-06-20 13:56:12 +05:30
|
|
|
int HIDDEN xbps_register_pkg(struct xbps_handle *, xbps_dictionary_t);
|
2014-11-17 20:15:46 +05:30
|
|
|
char HIDDEN *xbps_archive_get_file(struct archive *, struct archive_entry *);
|
|
|
|
xbps_dictionary_t HIDDEN xbps_archive_get_dictionary(struct archive *,
|
2020-01-06 19:03:49 +05:30
|
|
|
struct archive_entry *);
|
2016-03-24 14:53:20 +05:30
|
|
|
const char HIDDEN *vpkg_user_conf(struct xbps_handle *, const char *, bool);
|
2014-11-20 13:53:51 +05:30
|
|
|
xbps_array_t HIDDEN xbps_get_pkg_fulldeptree(struct xbps_handle *,
|
|
|
|
const char *, bool);
|
2015-03-06 01:53:58 +05:30
|
|
|
struct xbps_repo HIDDEN *xbps_regget_repo(struct xbps_handle *,
|
|
|
|
const char *);
|
2019-03-06 19:04:23 +05:30
|
|
|
int HIDDEN xbps_conf_init(struct xbps_handle *);
|
2012-11-17 02:20:52 +05:30
|
|
|
|
2010-11-13 07:48:58 +05:30
|
|
|
#endif /* !_XBPS_API_IMPL_H_ */
|