2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* handle.c
|
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) 2005, 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
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2007-03-05 17:13:33 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <syslog.h>
|
2007-08-21 21:28:05 -04:00
|
|
|
#include <sys/stat.h>
|
2007-03-05 17:13:33 -05:00
|
|
|
|
|
|
|
/* libalpm */
|
|
|
|
#include "handle.h"
|
|
|
|
#include "alpm_list.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "util.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "trans.h"
|
|
|
|
#include "alpm.h"
|
|
|
|
|
2007-11-04 13:05:22 -05:00
|
|
|
/* global var for handle (private to libalpm) */
|
|
|
|
pmhandle_t *handle = NULL;
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
pmhandle_t *_alpm_handle_new()
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
pmhandle_t *handle;
|
|
|
|
|
2007-10-29 02:00:52 -04:00
|
|
|
CALLOC(handle, 1, sizeof(pmhandle_t), RET_ERR(PM_ERR_MEMORY, NULL));
|
2006-02-20 15:59:35 -05:00
|
|
|
|
2011-03-25 21:40:16 -04:00
|
|
|
handle->sigverify = PM_PGP_VERIFY_OPTIONAL;
|
|
|
|
|
2011-03-20 20:45:57 -04:00
|
|
|
return handle;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-04-26 20:29:12 -04:00
|
|
|
void _alpm_handle_free(pmhandle_t *handle)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-02-21 01:44:14 -05:00
|
|
|
ALPM_LOG_FUNC;
|
2007-01-30 03:14:10 -05:00
|
|
|
|
2007-04-26 20:29:12 -04:00
|
|
|
if(handle == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-07-09 15:22:01 -04:00
|
|
|
/* close logfile */
|
|
|
|
if(handle->logstream) {
|
|
|
|
fclose(handle->logstream);
|
|
|
|
handle->logstream= NULL;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
if(handle->usesyslog) {
|
|
|
|
handle->usesyslog = 0;
|
|
|
|
closelog();
|
|
|
|
}
|
|
|
|
|
2011-01-15 13:59:45 -05:00
|
|
|
#ifdef HAVE_LIBCURL
|
|
|
|
/* release curl handle */
|
|
|
|
curl_easy_cleanup(handle->curl);
|
|
|
|
#endif
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* free memory */
|
2007-04-26 19:57:09 -04:00
|
|
|
_alpm_trans_free(handle->trans);
|
2005-03-14 20:51:43 -05:00
|
|
|
FREE(handle->root);
|
|
|
|
FREE(handle->dbpath);
|
2007-06-04 14:50:16 -04:00
|
|
|
FREELIST(handle->cachedirs);
|
2005-03-14 20:51:43 -05:00
|
|
|
FREE(handle->logfile);
|
2007-05-31 02:51:28 -04:00
|
|
|
FREE(handle->lockfile);
|
2009-07-22 00:03:25 -04:00
|
|
|
FREE(handle->arch);
|
2008-12-07 14:12:33 -05:00
|
|
|
FREE(handle->signaturedir);
|
2005-03-14 20:51:43 -05:00
|
|
|
FREELIST(handle->dbs_sync);
|
|
|
|
FREELIST(handle->noupgrade);
|
2005-12-28 05:15:55 -05:00
|
|
|
FREELIST(handle->noextract);
|
2005-03-14 20:51:43 -05:00
|
|
|
FREELIST(handle->ignorepkg);
|
2007-11-09 20:13:28 -05:00
|
|
|
FREELIST(handle->ignoregrp);
|
2006-10-31 01:39:59 -05:00
|
|
|
FREE(handle);
|
2011-01-15 13:59:45 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-09-11 16:27:55 -04:00
|
|
|
alpm_cb_log SYMEXPORT alpm_option_get_logcb()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->logcb;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_cb_download SYMEXPORT alpm_option_get_dlcb()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->dlcb;
|
|
|
|
}
|
|
|
|
|
2009-04-04 04:17:30 -04:00
|
|
|
alpm_cb_fetch SYMEXPORT alpm_option_get_fetchcb()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2009-04-04 04:17:30 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->fetchcb;
|
|
|
|
}
|
|
|
|
|
2008-06-02 00:10:30 -04:00
|
|
|
alpm_cb_totaldl SYMEXPORT alpm_option_get_totaldlcb()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2008-06-02 00:10:30 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->totaldlcb;
|
|
|
|
}
|
|
|
|
|
2007-09-11 16:27:55 -04:00
|
|
|
const char SYMEXPORT *alpm_option_get_root()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->root;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char SYMEXPORT *alpm_option_get_dbpath()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->dbpath;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_cachedirs()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->cachedirs;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char SYMEXPORT *alpm_option_get_logfile()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->logfile;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char SYMEXPORT *alpm_option_get_lockfile()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->lockfile;
|
|
|
|
}
|
|
|
|
|
2008-12-07 14:12:33 -05:00
|
|
|
const char SYMEXPORT *alpm_option_get_signaturedir()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2008-12-07 14:12:33 -05:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->signaturedir;
|
|
|
|
}
|
|
|
|
|
2009-10-11 14:51:47 -04:00
|
|
|
int SYMEXPORT alpm_option_get_usesyslog()
|
2007-09-11 16:27:55 -04:00
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return handle->usesyslog;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_noupgrades()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->noupgrade;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_noextracts()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->noextract;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_ignorepkgs()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->ignorepkg;
|
|
|
|
}
|
|
|
|
|
2007-11-09 20:13:28 -05:00
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_ignoregrps()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-11-09 20:13:28 -05:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->ignoregrp;
|
|
|
|
}
|
|
|
|
|
2009-07-22 00:03:25 -04:00
|
|
|
const char SYMEXPORT *alpm_option_get_arch()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2009-07-22 00:03:25 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->arch;
|
|
|
|
}
|
|
|
|
|
2009-10-11 15:04:28 -04:00
|
|
|
int SYMEXPORT alpm_option_get_usedelta()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2009-10-11 15:04:28 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return handle->usedelta;
|
|
|
|
}
|
|
|
|
|
2010-11-16 01:54:30 -05:00
|
|
|
int SYMEXPORT alpm_option_get_checkspace()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2010-11-16 01:54:30 -05:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return handle->checkspace;
|
|
|
|
}
|
|
|
|
|
2007-09-11 16:27:55 -04:00
|
|
|
pmdb_t SYMEXPORT *alpm_option_get_localdb()
|
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->db_local;
|
|
|
|
}
|
|
|
|
|
2007-01-30 02:47:19 -05:00
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_syncdbs()
|
2007-01-23 22:02:53 -05:00
|
|
|
{
|
2011-04-20 20:45:16 -04:00
|
|
|
if(handle == NULL) {
|
2007-09-11 16:27:55 -04:00
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-02-21 01:44:14 -05:00
|
|
|
return handle->dbs_sync;
|
2007-01-23 22:02:53 -05:00
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_logcb(alpm_cb_log cb)
|
2007-09-11 16:27:55 -04:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-09-11 16:27:55 -04:00
|
|
|
handle->logcb = cb;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2007-09-11 16:27:55 -04:00
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_dlcb(alpm_cb_download cb)
|
2007-09-11 16:27:55 -04:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-09-11 16:27:55 -04:00
|
|
|
handle->dlcb = cb;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2007-09-11 16:27:55 -04:00
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_fetchcb(alpm_cb_fetch cb)
|
2009-04-04 04:17:30 -04:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2009-04-04 04:17:30 -04:00
|
|
|
handle->fetchcb = cb;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2009-04-04 04:17:30 -04:00
|
|
|
}
|
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_totaldlcb(alpm_cb_totaldl cb)
|
2008-06-02 00:10:30 -04:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2008-06-02 00:10:30 -04:00
|
|
|
handle->totaldlcb = cb;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2008-06-02 00:10:30 -04:00
|
|
|
}
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
int SYMEXPORT alpm_option_set_root(const char *root)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-08-21 21:28:05 -04:00
|
|
|
struct stat st;
|
|
|
|
char *realroot;
|
|
|
|
size_t rootlen;
|
|
|
|
|
2007-06-07 20:55:13 -04:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2011-03-28 15:47:08 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
if(!root) {
|
|
|
|
pm_errno = PM_ERR_WRONG_ARGS;
|
2011-03-20 20:45:57 -04:00
|
|
|
return -1;
|
2007-08-21 21:28:05 -04:00
|
|
|
}
|
|
|
|
if(stat(root, &st) == -1 || !S_ISDIR(st.st_mode)) {
|
|
|
|
pm_errno = PM_ERR_NOT_A_DIR;
|
2011-03-20 20:45:57 -04:00
|
|
|
return -1;
|
2007-08-21 21:28:05 -04:00
|
|
|
}
|
2007-10-30 00:12:37 -04:00
|
|
|
|
|
|
|
realroot = calloc(PATH_MAX+1, sizeof(char));
|
|
|
|
if(!realpath(root, realroot)) {
|
2009-07-20 08:52:16 -04:00
|
|
|
FREE(realroot);
|
2007-08-21 21:28:05 -04:00
|
|
|
pm_errno = PM_ERR_NOT_A_DIR;
|
2011-03-20 20:45:57 -04:00
|
|
|
return -1;
|
2007-03-04 04:08:54 -05:00
|
|
|
}
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
/* verify root ends in a '/' */
|
|
|
|
rootlen = strlen(realroot);
|
|
|
|
if(realroot[rootlen-1] != '/') {
|
|
|
|
rootlen += 1;
|
2007-03-04 04:16:28 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
if(handle->root) {
|
|
|
|
FREE(handle->root);
|
2007-02-21 01:44:14 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
handle->root = calloc(rootlen + 1, sizeof(char));
|
|
|
|
strncpy(handle->root, realroot, rootlen);
|
|
|
|
handle->root[rootlen-1] = '/';
|
|
|
|
FREE(realroot);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "option 'root' = %s\n", handle->root);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
int SYMEXPORT alpm_option_set_dbpath(const char *dbpath)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2007-08-21 21:28:05 -04:00
|
|
|
struct stat st;
|
|
|
|
size_t dbpathlen, lockfilelen;
|
|
|
|
const char *lf = "db.lck";
|
|
|
|
|
2007-06-07 20:55:13 -04:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2011-03-28 15:47:08 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-08-21 21:28:05 -04:00
|
|
|
if(!dbpath) {
|
|
|
|
pm_errno = PM_ERR_WRONG_ARGS;
|
2011-03-20 20:45:57 -04:00
|
|
|
return -1;
|
2007-02-21 01:44:14 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
if(stat(dbpath, &st) == -1 || !S_ISDIR(st.st_mode)) {
|
|
|
|
pm_errno = PM_ERR_NOT_A_DIR;
|
2011-03-20 20:45:57 -04:00
|
|
|
return -1;
|
2007-08-21 21:28:05 -04:00
|
|
|
}
|
|
|
|
/* verify dbpath ends in a '/' */
|
|
|
|
dbpathlen = strlen(dbpath);
|
|
|
|
if(dbpath[dbpathlen-1] != '/') {
|
|
|
|
dbpathlen += 1;
|
|
|
|
}
|
|
|
|
if(handle->dbpath) {
|
|
|
|
FREE(handle->dbpath);
|
|
|
|
}
|
|
|
|
handle->dbpath = calloc(dbpathlen+1, sizeof(char));
|
|
|
|
strncpy(handle->dbpath, dbpath, dbpathlen);
|
|
|
|
handle->dbpath[dbpathlen-1] = '/';
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "option 'dbpath' = %s\n", handle->dbpath);
|
2007-06-27 23:25:04 -04:00
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
if(handle->lockfile) {
|
|
|
|
FREE(handle->lockfile);
|
|
|
|
}
|
|
|
|
lockfilelen = strlen(handle->dbpath) + strlen(lf) + 1;
|
|
|
|
handle->lockfile = calloc(lockfilelen, sizeof(char));
|
|
|
|
snprintf(handle->lockfile, lockfilelen, "%s%s", handle->dbpath, lf);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "option 'lockfile' = %s\n", handle->lockfile);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
int SYMEXPORT alpm_option_add_cachedir(const char *cachedir)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2007-08-21 21:28:05 -04:00
|
|
|
char *newcachedir;
|
|
|
|
size_t cachedirlen;
|
|
|
|
|
2007-06-07 20:55:13 -04:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2011-03-28 15:47:08 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-08-21 21:28:05 -04:00
|
|
|
if(!cachedir) {
|
|
|
|
pm_errno = PM_ERR_WRONG_ARGS;
|
2011-03-20 20:45:57 -04:00
|
|
|
return -1;
|
2007-02-21 01:44:14 -05:00
|
|
|
}
|
2008-01-05 18:39:38 -05:00
|
|
|
/* don't stat the cachedir yet, as it may not even be needed. we can
|
|
|
|
* fail later if it is needed and the path is invalid. */
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
/* verify cachedir ends in a '/' */
|
|
|
|
cachedirlen = strlen(cachedir);
|
|
|
|
if(cachedir[cachedirlen-1] != '/') {
|
|
|
|
cachedirlen += 1;
|
|
|
|
}
|
|
|
|
newcachedir = calloc(cachedirlen + 1, sizeof(char));
|
|
|
|
strncpy(newcachedir, cachedir, cachedirlen);
|
|
|
|
newcachedir[cachedirlen-1] = '/';
|
|
|
|
handle->cachedirs = alpm_list_add(handle->cachedirs, newcachedir);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "option 'cachedir' = %s\n", newcachedir);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_cachedirs(alpm_list_t *cachedirs)
|
2007-06-04 14:50:16 -04:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-06-04 14:50:16 -04:00
|
|
|
if(handle->cachedirs) FREELIST(handle->cachedirs);
|
2010-10-18 17:37:55 -04:00
|
|
|
handle->cachedirs = cachedirs;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2007-06-04 14:50:16 -04:00
|
|
|
}
|
|
|
|
|
2007-12-22 06:28:08 -05:00
|
|
|
int SYMEXPORT alpm_option_remove_cachedir(const char *cachedir)
|
|
|
|
{
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
char *vdata = NULL;
|
2007-12-22 06:28:08 -05:00
|
|
|
char *newcachedir;
|
|
|
|
size_t cachedirlen;
|
2011-03-28 15:47:08 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-12-22 06:28:08 -05:00
|
|
|
/* verify cachedir ends in a '/' */
|
|
|
|
cachedirlen = strlen(cachedir);
|
|
|
|
if(cachedir[cachedirlen-1] != '/') {
|
|
|
|
cachedirlen += 1;
|
|
|
|
}
|
|
|
|
newcachedir = calloc(cachedirlen + 1, sizeof(char));
|
|
|
|
strncpy(newcachedir, cachedir, cachedirlen);
|
|
|
|
newcachedir[cachedirlen-1] = '/';
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
handle->cachedirs = alpm_list_remove_str(handle->cachedirs, newcachedir, &vdata);
|
2007-12-22 06:28:08 -05:00
|
|
|
FREE(newcachedir);
|
|
|
|
if(vdata != NULL) {
|
|
|
|
FREE(vdata);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 1;
|
2007-12-22 06:28:08 -05:00
|
|
|
}
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2007-12-22 06:28:08 -05:00
|
|
|
}
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
int SYMEXPORT alpm_option_set_logfile(const char *logfile)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2007-08-21 21:28:05 -04:00
|
|
|
char *oldlogfile = handle->logfile;
|
|
|
|
|
2007-02-21 01:44:14 -05:00
|
|
|
ALPM_LOG_FUNC;
|
2007-01-30 03:14:10 -05:00
|
|
|
|
2011-03-28 15:47:08 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-08-21 21:28:05 -04:00
|
|
|
if(!logfile) {
|
|
|
|
pm_errno = PM_ERR_WRONG_ARGS;
|
2011-03-20 20:45:57 -04:00
|
|
|
return -1;
|
2007-08-21 21:28:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
handle->logfile = strdup(logfile);
|
|
|
|
|
2007-11-04 17:38:59 -05:00
|
|
|
/* free the old logfile path string, and close the stream so logaction
|
|
|
|
* will reopen a new stream on the new logfile */
|
2007-08-21 21:28:05 -04:00
|
|
|
if(oldlogfile) {
|
|
|
|
FREE(oldlogfile);
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2007-11-04 17:38:59 -05:00
|
|
|
if(handle->logstream) {
|
|
|
|
fclose(handle->logstream);
|
2008-04-01 18:44:30 -04:00
|
|
|
handle->logstream = NULL;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "option 'logfile' = %s\n", handle->logfile);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2008-12-07 14:12:33 -05:00
|
|
|
int SYMEXPORT alpm_option_set_signaturedir(const char *signaturedir)
|
|
|
|
{
|
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
|
|
|
if(!signaturedir) {
|
|
|
|
pm_errno = PM_ERR_WRONG_ARGS;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(handle->signaturedir) {
|
|
|
|
FREE(handle->signaturedir);
|
|
|
|
}
|
|
|
|
handle->signaturedir = strdup(signaturedir);
|
|
|
|
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "option 'signaturedir' = %s\n", handle->signaturedir);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_usesyslog(int usesyslog)
|
2007-01-23 22:02:53 -05:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-02-21 01:44:14 -05:00
|
|
|
handle->usesyslog = usesyslog;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2007-01-23 22:02:53 -05:00
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_add_noupgrade(const char *pkg)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-02-21 01:44:14 -05:00
|
|
|
handle->noupgrade = alpm_list_add(handle->noupgrade, strdup(pkg));
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2007-01-23 22:02:53 -05:00
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_noupgrades(alpm_list_t *noupgrade)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2006-11-20 04:10:23 -05:00
|
|
|
if(handle->noupgrade) FREELIST(handle->noupgrade);
|
2010-10-18 17:37:55 -04:00
|
|
|
handle->noupgrade = noupgrade;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-12-22 06:28:08 -05:00
|
|
|
int SYMEXPORT alpm_option_remove_noupgrade(const char *pkg)
|
|
|
|
{
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
char *vdata = NULL;
|
2011-03-28 15:47:08 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
handle->noupgrade = alpm_list_remove_str(handle->noupgrade, pkg, &vdata);
|
2007-12-22 06:28:08 -05:00
|
|
|
if(vdata != NULL) {
|
|
|
|
FREE(vdata);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 1;
|
2007-12-22 06:28:08 -05:00
|
|
|
}
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2007-12-22 06:28:08 -05:00
|
|
|
}
|
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_add_noextract(const char *pkg)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-02-21 01:44:14 -05:00
|
|
|
handle->noextract = alpm_list_add(handle->noextract, strdup(pkg));
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2007-06-05 17:34:33 -04:00
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_noextracts(alpm_list_t *noextract)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2006-11-20 04:10:23 -05:00
|
|
|
if(handle->noextract) FREELIST(handle->noextract);
|
2010-10-18 17:37:55 -04:00
|
|
|
handle->noextract = noextract;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-12-22 06:28:08 -05:00
|
|
|
int SYMEXPORT alpm_option_remove_noextract(const char *pkg)
|
|
|
|
{
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
char *vdata = NULL;
|
2011-03-28 15:47:08 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
handle->noextract = alpm_list_remove_str(handle->noextract, pkg, &vdata);
|
2007-12-22 06:28:08 -05:00
|
|
|
if(vdata != NULL) {
|
|
|
|
FREE(vdata);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 1;
|
2007-12-22 06:28:08 -05:00
|
|
|
}
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2007-12-22 06:28:08 -05:00
|
|
|
}
|
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_add_ignorepkg(const char *pkg)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-02-21 01:44:14 -05:00
|
|
|
handle->ignorepkg = alpm_list_add(handle->ignorepkg, strdup(pkg));
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_ignorepkgs(alpm_list_t *ignorepkgs)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2006-11-20 04:10:23 -05:00
|
|
|
if(handle->ignorepkg) FREELIST(handle->ignorepkg);
|
2010-10-18 17:37:55 -04:00
|
|
|
handle->ignorepkg = ignorepkgs;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-12-22 06:28:08 -05:00
|
|
|
int SYMEXPORT alpm_option_remove_ignorepkg(const char *pkg)
|
|
|
|
{
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
char *vdata = NULL;
|
2011-03-28 15:47:08 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
handle->ignorepkg = alpm_list_remove_str(handle->ignorepkg, pkg, &vdata);
|
2007-12-22 06:28:08 -05:00
|
|
|
if(vdata != NULL) {
|
|
|
|
FREE(vdata);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 1;
|
2007-12-22 06:28:08 -05:00
|
|
|
}
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2007-12-22 06:28:08 -05:00
|
|
|
}
|
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_add_ignoregrp(const char *grp)
|
2007-11-09 20:13:28 -05:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-11-09 20:13:28 -05:00
|
|
|
handle->ignoregrp = alpm_list_add(handle->ignoregrp, strdup(grp));
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2007-11-09 20:13:28 -05:00
|
|
|
}
|
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_ignoregrps(alpm_list_t *ignoregrps)
|
2007-11-09 20:13:28 -05:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-11-09 20:13:28 -05:00
|
|
|
if(handle->ignoregrp) FREELIST(handle->ignoregrp);
|
2010-10-18 17:37:55 -04:00
|
|
|
handle->ignoregrp = ignoregrps;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2007-11-09 20:13:28 -05:00
|
|
|
}
|
|
|
|
|
2007-12-22 06:28:08 -05:00
|
|
|
int SYMEXPORT alpm_option_remove_ignoregrp(const char *grp)
|
|
|
|
{
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
char *vdata = NULL;
|
2011-03-28 15:47:08 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
handle->ignoregrp = alpm_list_remove_str(handle->ignoregrp, grp, &vdata);
|
2007-12-22 06:28:08 -05:00
|
|
|
if(vdata != NULL) {
|
|
|
|
FREE(vdata);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 1;
|
2007-12-22 06:28:08 -05:00
|
|
|
}
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2007-12-22 06:28:08 -05:00
|
|
|
}
|
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_arch(const char *arch)
|
2009-07-22 00:03:25 -04:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2009-07-22 00:03:25 -04:00
|
|
|
if(handle->arch) FREE(handle->arch);
|
2010-10-18 17:37:55 -04:00
|
|
|
if(arch) {
|
|
|
|
handle->arch = strdup(arch);
|
|
|
|
} else {
|
|
|
|
handle->arch = NULL;
|
|
|
|
}
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2009-07-22 00:03:25 -04:00
|
|
|
}
|
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_usedelta(int usedelta)
|
2007-10-19 13:17:53 -04:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2007-10-19 13:17:53 -04:00
|
|
|
handle->usedelta = usedelta;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2007-10-19 13:17:53 -04:00
|
|
|
}
|
|
|
|
|
2011-04-09 18:04:54 -04:00
|
|
|
int SYMEXPORT alpm_option_set_checkspace(int checkspace)
|
2010-11-16 01:54:30 -05:00
|
|
|
{
|
2011-04-09 18:04:54 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2010-11-16 01:54:30 -05:00
|
|
|
handle->checkspace = checkspace;
|
2011-04-09 18:04:54 -04:00
|
|
|
return 0;
|
2010-11-16 01:54:30 -05:00
|
|
|
}
|
|
|
|
|
2011-03-25 21:40:16 -04:00
|
|
|
int SYMEXPORT alpm_option_set_default_sigverify(pgp_verify_t level)
|
|
|
|
{
|
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2011-04-21 02:11:36 -04:00
|
|
|
ASSERT(level != PM_PGP_VERIFY_UNKNOWN, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
2011-03-25 21:40:16 -04:00
|
|
|
handle->sigverify = level;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
pgp_verify_t SYMEXPORT alpm_option_get_default_sigverify()
|
|
|
|
{
|
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, PM_PGP_VERIFY_UNKNOWN));
|
|
|
|
return handle->sigverify;
|
|
|
|
}
|
|
|
|
|
2007-02-21 01:44:14 -05:00
|
|
|
/* vim: set ts=2 sw=2 noet: */
|