2010-11-13 03:18:58 +01:00
|
|
|
/*-
|
2020-04-29 14:12:10 +02:00
|
|
|
* 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 03:18:58 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _XBPS_API_IMPL_H_
|
|
|
|
#define _XBPS_API_IMPL_H_
|
|
|
|
|
|
|
|
#include <assert.h>
|
2014-01-20 18:50:33 +01:00
|
|
|
#include "xbps.h"
|
2013-06-20 10:26:12 +02:00
|
|
|
|
2012-06-18 09:52:19 +02:00
|
|
|
/*
|
|
|
|
* 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 13:37:53 +02:00
|
|
|
#include "queue.h"
|
2013-12-16 11:46:39 +01:00
|
|
|
#include "compat.h"
|
2010-11-13 03:18:58 +01:00
|
|
|
|
|
|
|
#define EXTRACT_FLAGS ARCHIVE_EXTRACT_SECURE_NODOTDOT | \
|
2015-02-21 16:52:27 +01:00
|
|
|
ARCHIVE_EXTRACT_SECURE_SYMLINKS | \
|
2017-07-13 07:56:47 +00:00
|
|
|
ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS | \
|
2015-02-21 16:52:27 +01:00
|
|
|
ARCHIVE_EXTRACT_TIME | ARCHIVE_EXTRACT_PERM | \
|
|
|
|
ARCHIVE_EXTRACT_UNLINK
|
|
|
|
#define FEXTRACT_FLAGS ARCHIVE_EXTRACT_OWNER | EXTRACT_FLAGS
|
2010-11-13 03:18:58 +01:00
|
|
|
|
|
|
|
#ifndef __UNCONST
|
2020-12-26 17:51:22 -03:00
|
|
|
#define __UNCONST(a) ((void *)(uintptr_t)(const void *)(a))
|
2010-11-13 03:18:58 +01:00
|
|
|
#endif
|
|
|
|
|
2014-02-25 16:42:52 +01:00
|
|
|
#ifndef __arraycount
|
|
|
|
#define __arraycount(x) (sizeof(x) / sizeof(*x))
|
|
|
|
#endif
|
|
|
|
|
2011-06-04 13:37:53 +02:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
int HIDDEN dewey_match(const char *, const char *);
|
2012-01-20 11:10:52 +01:00
|
|
|
int HIDDEN xbps_pkgdb_init(struct xbps_handle *);
|
|
|
|
void HIDDEN xbps_pkgdb_release(struct xbps_handle *);
|
2014-09-11 00:12:12 +02:00
|
|
|
int HIDDEN xbps_pkgdb_conversion(struct xbps_handle *);
|
2014-11-17 15:45:46 +01:00
|
|
|
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 10:26:12 +02:00
|
|
|
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 14:04:57 +01:00
|
|
|
void HIDDEN xbps_fetch_set_cache_connection(int, int);
|
2010-11-19 13:40:13 +01:00
|
|
|
void HIDDEN xbps_fetch_unset_cache_connection(void);
|
2014-07-27 17:39:24 +02:00
|
|
|
int HIDDEN xbps_cb_message(struct xbps_handle *, xbps_dictionary_t, const char *);
|
2013-06-20 10:26:12 +02:00
|
|
|
int HIDDEN xbps_entry_is_a_conf_file(xbps_dictionary_t, const char *);
|
2014-11-17 15:45:46 +01:00
|
|
|
int HIDDEN xbps_entry_install_conf_file(struct xbps_handle *, xbps_dictionary_t,
|
|
|
|
xbps_dictionary_t, struct archive_entry *, const char *,
|
2019-03-19 13:12:08 +01:00
|
|
|
const char *, bool);
|
2016-03-23 12:46:52 +01:00
|
|
|
xbps_dictionary_t HIDDEN xbps_find_virtualpkg_in_conf(struct xbps_handle *,
|
|
|
|
xbps_dictionary_t, const char *);
|
2013-06-20 10:26:12 +02:00
|
|
|
xbps_dictionary_t HIDDEN xbps_find_pkg_in_dict(xbps_dictionary_t, const char *);
|
2014-11-17 15:45:46 +01:00
|
|
|
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 09:08:22 +01:00
|
|
|
xbps_trans_type_t);
|
2014-11-17 15:45:46 +01:00
|
|
|
xbps_dictionary_t HIDDEN xbps_find_virtualpkg_in_array(struct xbps_handle *,
|
2020-02-21 09:08:22 +01:00
|
|
|
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 10:00:46 +01:00
|
|
|
int HIDDEN xbps_transaction_init(struct xbps_handle *);
|
2020-02-21 09:08:22 +01:00
|
|
|
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 17:08:53 +02:00
|
|
|
int HIDDEN xbps_transaction_internalize(struct xbps_handle *, xbps_object_iterator_t);
|
2020-02-21 09:08:22 +01:00
|
|
|
|
2010-11-13 03:18:58 +01:00
|
|
|
char HIDDEN *xbps_get_remote_repo_string(const char *);
|
2013-06-10 10:28:39 +02:00
|
|
|
int HIDDEN xbps_repo_sync(struct xbps_handle *, const char *);
|
2012-11-30 07:11:51 +01:00
|
|
|
int HIDDEN xbps_file_hash_check_dictionary(struct xbps_handle *,
|
2014-11-17 15:45:46 +01:00
|
|
|
xbps_dictionary_t, const char *, const char *);
|
2012-11-30 07:11:51 +01:00
|
|
|
int HIDDEN xbps_file_exec(struct xbps_handle *, const char *, ...);
|
2012-06-14 08:22:11 +02:00
|
|
|
void HIDDEN xbps_set_cb_fetch(struct xbps_handle *, off_t, off_t, off_t,
|
2014-11-17 15:45:46 +01:00
|
|
|
const char *, bool, bool, bool);
|
2013-10-05 11:38:04 +02:00
|
|
|
int HIDDEN xbps_set_cb_state(struct xbps_handle *, xbps_state_t, int,
|
2014-11-17 15:45:46 +01:00
|
|
|
const char *, const char *, ...);
|
2013-06-20 10:26:12 +02:00
|
|
|
int HIDDEN xbps_unpack_binary_pkg(struct xbps_handle *, xbps_dictionary_t);
|
2013-12-25 11:12:52 +01:00
|
|
|
int HIDDEN xbps_remove_pkg(struct xbps_handle *, const char *, bool);
|
2013-06-20 10:26:12 +02:00
|
|
|
int HIDDEN xbps_register_pkg(struct xbps_handle *, xbps_dictionary_t);
|
2014-11-17 15:45:46 +01:00
|
|
|
char HIDDEN *xbps_archive_get_file(struct archive *, struct archive_entry *);
|
|
|
|
xbps_dictionary_t HIDDEN xbps_archive_get_dictionary(struct archive *,
|
2020-01-06 14:33:49 +01:00
|
|
|
struct archive_entry *);
|
2016-03-24 10:23:20 +01:00
|
|
|
const char HIDDEN *vpkg_user_conf(struct xbps_handle *, const char *, bool);
|
2014-11-20 09:23:51 +01:00
|
|
|
xbps_array_t HIDDEN xbps_get_pkg_fulldeptree(struct xbps_handle *,
|
|
|
|
const char *, bool);
|
2015-03-05 21:23:58 +01:00
|
|
|
struct xbps_repo HIDDEN *xbps_regget_repo(struct xbps_handle *,
|
|
|
|
const char *);
|
2019-03-06 14:34:23 +01:00
|
|
|
int HIDDEN xbps_conf_init(struct xbps_handle *);
|
2012-11-16 21:50:52 +01:00
|
|
|
|
2010-11-13 03:18:58 +01:00
|
|
|
#endif /* !_XBPS_API_IMPL_H_ */
|