pacman/lib/libalpm/error.c

158 lines
4.9 KiB
C
Raw Normal View History

2005-03-14 20:51:43 -05:00
/*
* error.c
*
* Copyright (c) 2002-2008 by Judd Vinet <jvinet@zeroflux.org>
*
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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2005-03-14 20:51:43 -05:00
*/
#include "config.h"
/* TODO: needed for the libfetch stuff, unfortunately- we should kill it */
#include <stdio.h>
#include <limits.h>
/* the following two are needed on BSD for libfetch */
#if defined(HAVE_SYS_SYSLIMITS_H)
#include <sys/syslimits.h> /* PATH_MAX */
#endif
#if defined(HAVE_SYS_PARAM_H)
#include <sys/param.h> /* MAXHOSTNAMELEN */
#endif
#if defined(INTERNAL_DOWNLOAD)
#include <fetch.h> /* fetchLastErrString */
#endif
/* libalpm */
2006-05-14 22:19:57 -04:00
#include "util.h"
2005-03-14 20:51:43 -05:00
#include "alpm.h"
const char SYMEXPORT *alpm_strerrorlast(void)
{
return alpm_strerror(pm_errno);
}
const char SYMEXPORT *alpm_strerror(int err)
2005-03-14 20:51:43 -05:00
{
switch(err) {
/* System */
case PM_ERR_MEMORY:
2006-05-14 22:19:57 -04:00
return _("out of memory!");
case PM_ERR_SYSTEM:
return _("unexpected system error");
case PM_ERR_BADPERMS:
2006-05-14 22:19:57 -04:00
return _("insufficient privileges");
2005-03-14 20:51:43 -05:00
case PM_ERR_NOT_A_FILE:
2006-05-14 22:19:57 -04:00
return _("could not find or read file");
case PM_ERR_NOT_A_DIR:
return _("could not find or read directory");
case PM_ERR_WRONG_ARGS:
return _("wrong or NULL argument passed");
2005-03-14 20:51:43 -05:00
/* Interface */
case PM_ERR_HANDLE_NULL:
2006-05-14 22:19:57 -04:00
return _("library not initialized");
2005-03-14 20:51:43 -05:00
case PM_ERR_HANDLE_NOT_NULL:
2006-05-14 22:19:57 -04:00
return _("library already initialized");
case PM_ERR_HANDLE_LOCK:
2006-05-14 22:19:57 -04:00
return _("unable to lock database");
2005-03-14 20:51:43 -05:00
/* Databases */
case PM_ERR_DB_OPEN:
2006-05-14 22:19:57 -04:00
return _("could not open database");
2005-03-14 20:51:43 -05:00
case PM_ERR_DB_CREATE:
2006-05-14 22:19:57 -04:00
return _("could not create database");
2005-03-14 20:51:43 -05:00
case PM_ERR_DB_NULL:
2006-05-14 22:19:57 -04:00
return _("database not initialized");
2005-03-14 20:51:43 -05:00
case PM_ERR_DB_NOT_NULL:
2006-05-14 22:19:57 -04:00
return _("database already registered");
2005-03-14 20:51:43 -05:00
case PM_ERR_DB_NOT_FOUND:
2006-05-14 22:19:57 -04:00
return _("could not find database");
case PM_ERR_DB_WRITE:
2006-05-14 22:19:57 -04:00
return _("could not update database");
2006-02-07 17:01:50 -05:00
case PM_ERR_DB_REMOVE:
2006-05-14 22:19:57 -04:00
return _("could not remove database entry");
/* Servers */
case PM_ERR_SERVER_BAD_URL:
return _("invalid url for server");
2005-03-14 20:51:43 -05:00
/* Transactions */
case PM_ERR_TRANS_NOT_NULL:
2006-05-14 22:19:57 -04:00
return _("transaction already initialized");
case PM_ERR_TRANS_NULL:
return _("transaction not initialized");
2005-03-14 20:51:43 -05:00
case PM_ERR_TRANS_DUP_TARGET:
2006-05-14 22:19:57 -04:00
return _("duplicate target");
2005-03-14 20:51:43 -05:00
case PM_ERR_TRANS_NOT_INITIALIZED:
2006-05-14 22:19:57 -04:00
return _("transaction not initialized");
case PM_ERR_TRANS_NOT_PREPARED:
2006-05-14 22:19:57 -04:00
return _("transaction not prepared");
case PM_ERR_TRANS_ABORT:
2006-05-14 22:19:57 -04:00
return _("transaction aborted");
2006-02-07 17:01:50 -05:00
case PM_ERR_TRANS_TYPE:
2006-05-14 22:19:57 -04:00
return _("operation not compatible with the transaction type");
case PM_ERR_TRANS_NOT_LOCKED:
return _("transaction commit attempt when database is not locked");
2005-03-14 20:51:43 -05:00
/* Packages */
case PM_ERR_PKG_NOT_FOUND:
2006-05-14 22:19:57 -04:00
return _("could not find or read package");
case PM_ERR_PKG_IGNORED:
return _("operation cancelled due to ignorepkg");
2005-03-14 20:51:43 -05:00
case PM_ERR_PKG_INVALID:
2006-05-14 22:19:57 -04:00
return _("invalid or corrupted package");
case PM_ERR_PKG_OPEN:
2006-05-14 22:19:57 -04:00
return _("cannot open package file");
case PM_ERR_PKG_CANT_REMOVE:
return _("cannot remove all files for package");
case PM_ERR_PKG_INVALID_NAME:
return _("package filename is not valid");
case PM_ERR_PKG_REPO_NOT_FOUND:
return _("no such repository");
/* Deltas */
case PM_ERR_DLT_INVALID:
return _("invalid or corrupted delta");
case PM_ERR_DLT_PATCHFAILED:
return _("delta patch failed");
2005-03-14 20:51:43 -05:00
/* Dependencies */
case PM_ERR_UNSATISFIED_DEPS:
2006-05-14 22:19:57 -04:00
return _("could not satisfy dependencies");
2005-03-14 20:51:43 -05:00
case PM_ERR_CONFLICTING_DEPS:
2006-05-14 22:19:57 -04:00
return _("conflicting dependencies");
2005-03-14 20:51:43 -05:00
case PM_ERR_FILE_CONFLICTS:
2006-05-14 22:19:57 -04:00
return _("conflicting files");
/* Miscellaenous */
case PM_ERR_RETRIEVE:
return _("failed to retrieve some files");
case PM_ERR_INVALID_REGEX:
return _("invalid regular expression");
/* 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");
case PM_ERR_LIBFETCH:
#if defined(INTERNAL_DOWNLOAD)
return fetchLastErrString;
#else
/* obviously shouldn't get here... */
return _("download library error");
#endif
case PM_ERR_EXTERNAL_DOWNLOAD:
return _("error invoking external downloader");
/* Unknown error! */
2005-03-14 20:51:43 -05:00
default:
2006-05-14 22:19:57 -04:00
return _("unexpected error");
2005-03-14 20:51:43 -05:00
}
}
/* vim: set ts=2 sw=2 noet: */