2004-07-16 19:56:36 +00:00
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2004-07-16 19:56:36 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
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.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-07-16 19:16:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-05-22 15:20:46 +00:00
|
|
|
#include <errno.h>
|
2004-07-10 19:04:21 +00:00
|
|
|
#include <stdio.h>
|
2004-07-06 00:08:44 +00:00
|
|
|
#include <stdlib.h>
|
2006-05-22 15:20:46 +00:00
|
|
|
#include <string.h>
|
2004-07-06 00:08:44 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/xmalloc.h>
|
2008-08-06 18:54:13 +02:00
|
|
|
#include <pulse/i18n.h>
|
2006-05-22 15:20:46 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/core-util.h>
|
|
|
|
|
#include <pulsecore/native-common.h>
|
2004-07-06 00:08:44 +00:00
|
|
|
|
2006-02-17 12:10:58 +00:00
|
|
|
#include "error.h"
|
|
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
const char*pa_strerror(int error) {
|
2006-05-25 17:16:55 +00:00
|
|
|
|
|
|
|
|
static const char* const errortab[PA_ERR_MAX] = {
|
2008-08-06 18:54:13 +02:00
|
|
|
[PA_OK] = N_("OK"),
|
|
|
|
|
[PA_ERR_ACCESS] = N_("Access denied"),
|
|
|
|
|
[PA_ERR_COMMAND] = N_("Unknown command"),
|
|
|
|
|
[PA_ERR_INVALID] = N_("Invalid argument"),
|
|
|
|
|
[PA_ERR_EXIST] = N_("Entity exists"),
|
|
|
|
|
[PA_ERR_NOENTITY] = N_("No such entity"),
|
|
|
|
|
[PA_ERR_CONNECTIONREFUSED] = N_("Connection refused"),
|
|
|
|
|
[PA_ERR_PROTOCOL] = N_("Protocol error"),
|
|
|
|
|
[PA_ERR_TIMEOUT] = N_("Timeout"),
|
|
|
|
|
[PA_ERR_AUTHKEY] = N_("No authorization key"),
|
|
|
|
|
[PA_ERR_INTERNAL] = N_("Internal error"),
|
|
|
|
|
[PA_ERR_CONNECTIONTERMINATED] = N_("Connection terminated"),
|
|
|
|
|
[PA_ERR_KILLED] = N_("Entity killed"),
|
|
|
|
|
[PA_ERR_INVALIDSERVER] = N_("Invalid server"),
|
|
|
|
|
[PA_ERR_MODINITFAILED] = N_("Module initalization failed"),
|
|
|
|
|
[PA_ERR_BADSTATE] = N_("Bad state"),
|
|
|
|
|
[PA_ERR_NODATA] = N_("No data"),
|
|
|
|
|
[PA_ERR_VERSION] = N_("Incompatible protocol version"),
|
|
|
|
|
[PA_ERR_TOOLARGE] = N_("Too large"),
|
|
|
|
|
[PA_ERR_NOTSUPPORTED] = N_("Not supported"),
|
|
|
|
|
[PA_ERR_UNKNOWN] = N_("Unknown error code"),
|
|
|
|
|
[PA_ERR_NOEXTENSION] = N_("No such extension")
|
2006-05-25 17:16:55 +00:00
|
|
|
};
|
|
|
|
|
|
2008-08-06 18:54:13 +02:00
|
|
|
pa_init_i18n();
|
|
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
if (error < 0 || error >= PA_ERR_MAX)
|
2004-07-06 00:08:44 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
2008-08-06 18:54:13 +02:00
|
|
|
return _(errortab[error]);
|
2004-07-06 00:08:44 +00:00
|
|
|
}
|