2005-03-15 01:51:43 +00:00
|
|
|
/*
|
|
|
|
* error.c
|
2007-11-16 20:18:45 -06:00
|
|
|
*
|
2011-01-06 14:45:15 +10:00
|
|
|
* Copyright (c) 2006-2011 Pacman Development Team <pacman-dev@archlinux.org>
|
2009-07-01 02:08:33 -05:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
|
2007-11-16 20:18:45 -06:00
|
|
|
*
|
2005-03-15 01:51:43 +00: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 22:55:22 -06:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-15 01:51:43 +00:00
|
|
|
*/
|
|
|
|
|
2007-03-05 22:13:33 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2010-12-15 19:57:31 -05:00
|
|
|
#ifdef HAVE_LIBCURL
|
|
|
|
#include <curl/curl.h>
|
|
|
|
#endif
|
|
|
|
|
2007-03-05 22:13:33 +00:00
|
|
|
/* libalpm */
|
2006-05-15 02:19:57 +00:00
|
|
|
#include "util.h"
|
2005-03-15 01:51:43 +00:00
|
|
|
#include "alpm.h"
|
2011-01-15 15:38:16 -05:00
|
|
|
#include "handle.h"
|
2005-03-15 01:51:43 +00:00
|
|
|
|
2011-06-28 14:50:48 +10:00
|
|
|
enum _alpm_errno_t SYMEXPORT alpm_errno(alpm_handle_t *handle)
|
2007-09-08 18:41:45 +02:00
|
|
|
{
|
2011-06-07 16:06:16 -05:00
|
|
|
return handle->pm_errno;
|
2007-09-08 18:41:45 +02:00
|
|
|
}
|
|
|
|
|
2011-06-28 14:50:48 +10:00
|
|
|
const char SYMEXPORT *alpm_strerror(enum _alpm_errno_t err)
|
2005-03-15 01:51:43 +00:00
|
|
|
{
|
|
|
|
switch(err) {
|
|
|
|
/* System */
|
2005-10-08 23:40:49 +00:00
|
|
|
case PM_ERR_MEMORY:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("out of memory!");
|
2005-10-08 23:40:49 +00:00
|
|
|
case PM_ERR_SYSTEM:
|
2006-11-16 17:24:41 +00:00
|
|
|
return _("unexpected system error");
|
2005-10-08 23:40:49 +00:00
|
|
|
case PM_ERR_BADPERMS:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("insufficient privileges");
|
2005-03-15 01:51:43 +00:00
|
|
|
case PM_ERR_NOT_A_FILE:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("could not find or read file");
|
2007-08-21 21:28:05 -04:00
|
|
|
case PM_ERR_NOT_A_DIR:
|
|
|
|
return _("could not find or read directory");
|
2007-02-09 10:10:49 +00:00
|
|
|
case PM_ERR_WRONG_ARGS:
|
|
|
|
return _("wrong or NULL argument passed");
|
2010-11-16 16:43:45 +10:00
|
|
|
case PM_ERR_DISK_SPACE:
|
2011-01-11 18:52:30 -06:00
|
|
|
return _("not enough free disk space");
|
2005-03-15 01:51:43 +00:00
|
|
|
/* Interface */
|
|
|
|
case PM_ERR_HANDLE_NULL:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("library not initialized");
|
2005-03-15 01:51:43 +00:00
|
|
|
case PM_ERR_HANDLE_NOT_NULL:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("library already initialized");
|
2005-10-08 23:40:49 +00:00
|
|
|
case PM_ERR_HANDLE_LOCK:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("unable to lock database");
|
2005-03-15 01:51:43 +00:00
|
|
|
/* Databases */
|
|
|
|
case PM_ERR_DB_OPEN:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("could not open database");
|
2005-03-15 01:51:43 +00:00
|
|
|
case PM_ERR_DB_CREATE:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("could not create database");
|
2005-03-15 01:51:43 +00:00
|
|
|
case PM_ERR_DB_NULL:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("database not initialized");
|
2005-03-15 01:51:43 +00:00
|
|
|
case PM_ERR_DB_NOT_NULL:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("database already registered");
|
2005-03-15 01:51:43 +00:00
|
|
|
case PM_ERR_DB_NOT_FOUND:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("could not find database");
|
2011-06-07 20:42:15 -05:00
|
|
|
case PM_ERR_DB_INVALID:
|
|
|
|
return _("invalid or corrupted database");
|
2011-02-28 10:46:00 -06:00
|
|
|
case PM_ERR_DB_VERSION:
|
|
|
|
return _("database is incorrect version");
|
2005-10-08 23:40:49 +00:00
|
|
|
case PM_ERR_DB_WRITE:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("could not update database");
|
2006-02-07 22:01:50 +00:00
|
|
|
case PM_ERR_DB_REMOVE:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("could not remove database entry");
|
2007-02-09 10:10:49 +00:00
|
|
|
/* Servers */
|
|
|
|
case PM_ERR_SERVER_BAD_URL:
|
|
|
|
return _("invalid url for server");
|
2009-06-06 11:03:29 -05:00
|
|
|
case PM_ERR_SERVER_NONE:
|
|
|
|
return _("no servers configured for repository");
|
2005-03-15 01:51:43 +00:00
|
|
|
/* Transactions */
|
|
|
|
case PM_ERR_TRANS_NOT_NULL:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("transaction already initialized");
|
2007-02-09 10:10:49 +00:00
|
|
|
case PM_ERR_TRANS_NULL:
|
|
|
|
return _("transaction not initialized");
|
2005-03-15 01:51:43 +00:00
|
|
|
case PM_ERR_TRANS_DUP_TARGET:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("duplicate target");
|
2005-03-15 01:51:43 +00:00
|
|
|
case PM_ERR_TRANS_NOT_INITIALIZED:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("transaction not initialized");
|
2005-10-08 23:40:49 +00:00
|
|
|
case PM_ERR_TRANS_NOT_PREPARED:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("transaction not prepared");
|
2005-10-08 23:40:49 +00:00
|
|
|
case PM_ERR_TRANS_ABORT:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("transaction aborted");
|
2006-02-07 22:01:50 +00:00
|
|
|
case PM_ERR_TRANS_TYPE:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("operation not compatible with the transaction type");
|
2009-05-16 16:54:21 +02:00
|
|
|
case PM_ERR_TRANS_NOT_LOCKED:
|
|
|
|
return _("transaction commit attempt when database is not locked");
|
2005-03-15 01:51:43 +00:00
|
|
|
/* Packages */
|
|
|
|
case PM_ERR_PKG_NOT_FOUND:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("could not find or read package");
|
2008-11-09 17:34:49 +01:00
|
|
|
case PM_ERR_PKG_IGNORED:
|
|
|
|
return _("operation cancelled due to ignorepkg");
|
2005-03-15 01:51:43 +00:00
|
|
|
case PM_ERR_PKG_INVALID:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("invalid or corrupted package");
|
2005-10-08 23:40:49 +00:00
|
|
|
case PM_ERR_PKG_OPEN:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("cannot open package file");
|
2007-02-08 08:09:34 +00:00
|
|
|
case PM_ERR_PKG_CANT_REMOVE:
|
|
|
|
return _("cannot remove all files for package");
|
2005-04-17 10:01:22 +00:00
|
|
|
case PM_ERR_PKG_INVALID_NAME:
|
2008-04-26 13:03:53 -05:00
|
|
|
return _("package filename is not valid");
|
2009-08-19 17:58:03 +02:00
|
|
|
case PM_ERR_PKG_INVALID_ARCH:
|
|
|
|
return _("package architecture is not valid");
|
2006-10-31 06:39:59 +00:00
|
|
|
case PM_ERR_PKG_REPO_NOT_FOUND:
|
2009-09-15 16:07:25 +02:00
|
|
|
return _("could not find repository for target");
|
2008-12-07 13:20:25 -06:00
|
|
|
/* Signatures */
|
2008-12-07 11:58:24 -06:00
|
|
|
case PM_ERR_SIG_MISSINGDIR:
|
|
|
|
return _("signature directory not configured correctly");
|
2008-12-07 13:20:25 -06:00
|
|
|
case PM_ERR_SIG_INVALID:
|
|
|
|
return _("invalid PGP signature");
|
|
|
|
case PM_ERR_SIG_UNKNOWN:
|
|
|
|
return _("unknown PGP signature");
|
2007-10-19 13:17:53 -04:00
|
|
|
/* Deltas */
|
2008-02-27 00:50:17 +01:00
|
|
|
case PM_ERR_DLT_INVALID:
|
|
|
|
return _("invalid or corrupted delta");
|
2007-10-19 13:17:53 -04:00
|
|
|
case PM_ERR_DLT_PATCHFAILED:
|
|
|
|
return _("delta patch failed");
|
2005-03-15 01:51:43 +00:00
|
|
|
/* Dependencies */
|
|
|
|
case PM_ERR_UNSATISFIED_DEPS:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("could not satisfy dependencies");
|
2005-03-15 01:51:43 +00:00
|
|
|
case PM_ERR_CONFLICTING_DEPS:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("conflicting dependencies");
|
2005-03-15 01:51:43 +00:00
|
|
|
case PM_ERR_FILE_CONFLICTS:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("conflicting files");
|
2005-10-08 23:40:49 +00:00
|
|
|
/* Miscellaenous */
|
2009-04-18 17:35:08 +02:00
|
|
|
case PM_ERR_RETRIEVE:
|
|
|
|
return _("failed to retrieve some files");
|
2006-10-15 19:31:03 +00:00
|
|
|
case PM_ERR_INVALID_REGEX:
|
2007-01-18 16:52:57 +00:00
|
|
|
return _("invalid regular expression");
|
2008-04-06 20:09:27 -05:00
|
|
|
/* Errors from external libraries- our own wrapper error */
|
|
|
|
case PM_ERR_LIBARCHIVE:
|
|
|
|
/* it would be nice to use archive_error_string() here, but that
|
|
|
|
* requires the archive struct, so we can't. Just use a generic
|
|
|
|
* error string instead. */
|
|
|
|
return _("libarchive error");
|
2011-01-15 15:38:16 -05:00
|
|
|
case PM_ERR_LIBCURL:
|
|
|
|
return _("download library error");
|
2008-12-07 11:58:24 -06:00
|
|
|
case PM_ERR_GPGME:
|
|
|
|
return _("gpgme error");
|
2008-04-06 21:00:11 -05:00
|
|
|
case PM_ERR_EXTERNAL_DOWNLOAD:
|
|
|
|
return _("error invoking external downloader");
|
2007-02-09 10:10:49 +00:00
|
|
|
/* Unknown error! */
|
2005-03-15 01:51:43 +00:00
|
|
|
default:
|
2006-05-15 02:19:57 +00:00
|
|
|
return _("unexpected error");
|
2005-03-15 01:51:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|