2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* alpm.c
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2014-01-01 05:24:48 -05:00
|
|
|
* Copyright (c) 2006-2014 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 by Christian Hamar <krics@linuxforum.hu>
|
|
|
|
* 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
|
|
|
*/
|
|
|
|
|
2010-12-15 19:57:31 -05:00
|
|
|
#ifdef HAVE_LIBCURL
|
|
|
|
#include <curl/curl.h>
|
|
|
|
#endif
|
|
|
|
|
2007-03-05 17:13:33 -05:00
|
|
|
/* libalpm */
|
|
|
|
#include "alpm.h"
|
|
|
|
#include "alpm_list.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "handle.h"
|
2011-06-03 17:42:41 -04:00
|
|
|
#include "log.h"
|
2007-06-03 23:57:38 -04:00
|
|
|
#include "util.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
/** \addtogroup alpm_interface Interface Functions
|
2007-01-11 12:32:49 -05:00
|
|
|
* @brief Functions to initialize and release libalpm
|
2005-10-09 03:42:06 -04:00
|
|
|
* @{
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
|
2013-03-24 20:02:06 -04:00
|
|
|
/** Initializes the library.
|
|
|
|
* Creates handle, connects to database and creates lockfile.
|
|
|
|
* This must be called before any other functions are called.
|
2011-06-03 16:24:01 -04:00
|
|
|
* @param root the root path for all filesystem operations
|
|
|
|
* @param dbpath the absolute path to the libalpm database
|
|
|
|
* @param err an optional variable to hold any error return codes
|
|
|
|
* @return a context handle on success, NULL on error, err will be set if provided
|
2005-10-09 03:42:06 -04:00
|
|
|
*/
|
2011-06-28 00:04:00 -04:00
|
|
|
alpm_handle_t SYMEXPORT *alpm_initialize(const char *root, const char *dbpath,
|
2011-10-28 22:03:24 -04:00
|
|
|
alpm_errno_t *err)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2011-10-28 22:03:24 -04:00
|
|
|
alpm_errno_t myerr;
|
2011-06-03 16:24:01 -04:00
|
|
|
const char *lf = "db.lck";
|
|
|
|
size_t lockfilelen;
|
2011-06-28 00:04:00 -04:00
|
|
|
alpm_handle_t *myhandle = _alpm_handle_new();
|
2011-06-03 16:24:01 -04:00
|
|
|
|
|
|
|
if(myhandle == NULL) {
|
2011-07-01 12:01:39 -04:00
|
|
|
myerr = ALPM_ERR_MEMORY;
|
2011-06-03 16:24:01 -04:00
|
|
|
goto cleanup;
|
2005-04-24 14:58:34 -04:00
|
|
|
}
|
2011-06-03 16:24:01 -04:00
|
|
|
if((myerr = _alpm_set_directory_option(root, &(myhandle->root), 1))) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if((myerr = _alpm_set_directory_option(dbpath, &(myhandle->dbpath), 1))) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
lockfilelen = strlen(myhandle->dbpath) + strlen(lf) + 1;
|
|
|
|
myhandle->lockfile = calloc(lockfilelen, sizeof(char));
|
|
|
|
snprintf(myhandle->lockfile, lockfilelen, "%s%s", myhandle->dbpath, lf);
|
|
|
|
|
|
|
|
if(_alpm_db_register_local(myhandle) == NULL) {
|
2011-04-20 20:54:01 -04:00
|
|
|
myerr = myhandle->pm_errno;
|
2011-06-03 16:24:01 -04:00
|
|
|
goto cleanup;
|
2011-01-28 18:41:15 -05:00
|
|
|
}
|
2007-10-23 00:52:55 -04:00
|
|
|
|
|
|
|
#ifdef ENABLE_NLS
|
2007-07-06 17:59:08 -04:00
|
|
|
bindtextdomain("libalpm", LOCALEDIR);
|
2007-10-23 00:52:55 -04:00
|
|
|
#endif
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2011-06-03 16:24:01 -04:00
|
|
|
return myhandle;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
_alpm_handle_free(myhandle);
|
|
|
|
if(err && myerr) {
|
|
|
|
*err = myerr;
|
|
|
|
}
|
|
|
|
return NULL;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2013-03-24 20:02:06 -04:00
|
|
|
/** Release the library.
|
|
|
|
* Disconnects from the database, removes handle and lockfile
|
|
|
|
* This should be the last alpm call you make.
|
2011-06-03 16:24:01 -04:00
|
|
|
* After this returns, handle should be considered invalid and cannot be reused
|
|
|
|
* in any way.
|
2011-09-22 17:29:03 -04:00
|
|
|
* @param myhandle the context handle
|
2011-06-03 16:24:01 -04:00
|
|
|
* @return 0 on success, -1 on error
|
2005-10-09 03:42:06 -04:00
|
|
|
*/
|
2011-06-28 00:04:00 -04:00
|
|
|
int SYMEXPORT alpm_release(alpm_handle_t *myhandle)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2011-06-07 17:06:16 -04:00
|
|
|
int ret = 0;
|
2011-06-28 00:11:43 -04:00
|
|
|
alpm_db_t *db;
|
2011-03-24 15:10:01 -04:00
|
|
|
|
2011-06-14 11:01:08 -04:00
|
|
|
CHECK_HANDLE(myhandle, return -1);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2011-03-24 15:10:01 -04:00
|
|
|
/* close local database */
|
2011-06-03 16:24:01 -04:00
|
|
|
db = myhandle->db_local;
|
2011-03-24 15:10:01 -04:00
|
|
|
if(db) {
|
|
|
|
db->ops->unregister(db);
|
2011-06-03 16:24:01 -04:00
|
|
|
myhandle->db_local = NULL;
|
2011-03-24 15:10:01 -04:00
|
|
|
}
|
|
|
|
|
2012-02-02 00:45:52 -05:00
|
|
|
if(alpm_unregister_all_syncdbs(myhandle) == -1) {
|
2011-06-07 17:06:16 -04:00
|
|
|
ret = -1;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2011-06-30 00:22:53 -04:00
|
|
|
_alpm_handle_unlock(myhandle);
|
2011-06-03 16:24:01 -04:00
|
|
|
_alpm_handle_free(myhandle);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2010-12-15 19:57:31 -05:00
|
|
|
#ifdef HAVE_LIBCURL
|
|
|
|
curl_global_cleanup();
|
|
|
|
#endif
|
|
|
|
|
2011-06-07 17:06:16 -04:00
|
|
|
return ret;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-01-11 12:32:49 -05:00
|
|
|
/** @} */
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-06-03 23:57:38 -04:00
|
|
|
/** @defgroup alpm_misc Miscellaneous Functions
|
2006-02-01 12:58:02 -05:00
|
|
|
* @brief Various libalpm functions
|
2006-10-15 15:31:03 -04:00
|
|
|
*/
|
2007-02-04 03:26:52 -05:00
|
|
|
|
2011-09-21 11:31:30 -04:00
|
|
|
/** Get the version of library.
|
|
|
|
* @return the library version, e.g. "6.0.4"
|
|
|
|
* */
|
|
|
|
const char SYMEXPORT *alpm_version(void)
|
|
|
|
{
|
2011-03-20 20:45:57 -04:00
|
|
|
return LIB_VERSION;
|
2008-02-29 15:52:57 -05:00
|
|
|
}
|
|
|
|
|
2011-09-21 11:31:30 -04:00
|
|
|
/** Get the capabilities of the library.
|
|
|
|
* @return a bitmask of the capabilities
|
|
|
|
* */
|
|
|
|
enum alpm_caps SYMEXPORT alpm_capabilities(void)
|
|
|
|
{
|
|
|
|
return 0
|
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
| ALPM_CAPABILITY_NLS
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBCURL
|
|
|
|
| ALPM_CAPABILITY_DOWNLOADER
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBGPGME
|
|
|
|
| ALPM_CAPABILITY_SIGNATURES
|
|
|
|
#endif
|
|
|
|
| 0;
|
|
|
|
}
|
|
|
|
|
2014-01-22 18:06:11 -05:00
|
|
|
/* vim: set noet: */
|