Branch data Line data Source code
1 : : /***
2 : : This file is part of PulseAudio.
3 : :
4 : : Copyright 2004-2006 Lennart Poettering
5 : : Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
6 : :
7 : : PulseAudio is free software; you can redistribute it and/or modify
8 : : it under the terms of the GNU Lesser General Public License as published
9 : : by the Free Software Foundation; either version 2.1 of the License,
10 : : or (at your option) any later version.
11 : :
12 : : PulseAudio is distributed in the hope that it will be useful, but
13 : : WITHOUT ANY WARRANTY; without even the implied warranty of
14 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 : : General Public License for more details.
16 : :
17 : : You should have received a copy of the GNU Lesser General Public License
18 : : along with PulseAudio; if not, write to the Free Software
19 : : Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 : : USA.
21 : : ***/
22 : :
23 : : #ifdef HAVE_CONFIG_H
24 : : #include <config.h>
25 : : #endif
26 : :
27 : : #include <errno.h>
28 : : #include <stdio.h>
29 : : #include <stdlib.h>
30 : :
31 : : #include <pulse/def.h>
32 : :
33 : : #include <pulsecore/i18n.h>
34 : :
35 : : #include "error.h"
36 : :
37 : 0 : const char*pa_strerror(int error) {
38 : :
39 : : static const char* const errortab[PA_ERR_MAX] = {
40 : : [PA_OK] = N_("OK"),
41 : : [PA_ERR_ACCESS] = N_("Access denied"),
42 : : [PA_ERR_COMMAND] = N_("Unknown command"),
43 : : [PA_ERR_INVALID] = N_("Invalid argument"),
44 : : [PA_ERR_EXIST] = N_("Entity exists"),
45 : : [PA_ERR_NOENTITY] = N_("No such entity"),
46 : : [PA_ERR_CONNECTIONREFUSED] = N_("Connection refused"),
47 : : [PA_ERR_PROTOCOL] = N_("Protocol error"),
48 : : [PA_ERR_TIMEOUT] = N_("Timeout"),
49 : : [PA_ERR_AUTHKEY] = N_("No authorization key"),
50 : : [PA_ERR_INTERNAL] = N_("Internal error"),
51 : : [PA_ERR_CONNECTIONTERMINATED] = N_("Connection terminated"),
52 : : [PA_ERR_KILLED] = N_("Entity killed"),
53 : : [PA_ERR_INVALIDSERVER] = N_("Invalid server"),
54 : : [PA_ERR_MODINITFAILED] = N_("Module initialization failed"),
55 : : [PA_ERR_BADSTATE] = N_("Bad state"),
56 : : [PA_ERR_NODATA] = N_("No data"),
57 : : [PA_ERR_VERSION] = N_("Incompatible protocol version"),
58 : : [PA_ERR_TOOLARGE] = N_("Too large"),
59 : : [PA_ERR_NOTSUPPORTED] = N_("Not supported"),
60 : : [PA_ERR_UNKNOWN] = N_("Unknown error code"),
61 : : [PA_ERR_NOEXTENSION] = N_("No such extension"),
62 : : [PA_ERR_OBSOLETE] = N_("Obsolete functionality"),
63 : : [PA_ERR_NOTIMPLEMENTED] = N_("Missing implementation"),
64 : : [PA_ERR_FORKED] = N_("Client forked"),
65 : : [PA_ERR_IO] = N_("Input/Output error"),
66 : : [PA_ERR_BUSY] = N_("Device or resource busy")
67 : : };
68 : :
69 : 0 : pa_init_i18n();
70 : :
71 [ # # ]: 0 : if (error < 0)
72 : 0 : error = -error;
73 : :
74 [ # # ]: 0 : if (error >= PA_ERR_MAX)
75 : : return NULL;
76 : :
77 : 0 : return _(errortab[error]);
78 : : }
|