]> git.sesse.net Git - vlc/commitdiff
vlc_strerror() and vlc_strerror_c() convenience wrappers
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 28 Dec 2013 15:56:22 +0000 (17:56 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sun, 29 Dec 2013 13:36:02 +0000 (15:36 +0200)
Those are more flexible than the GNU-specific %m format specifier to
print standard error messages. They are also less likely to format a
clobbered error number.

include/vlc_messages.h
src/Makefile.am
src/libvlccore.sym
src/posix/error.c [new file with mode: 0644]

index 691488371c6e1cc6e9f558538c103a9e19449603..f746f61c09afd91f89dee61340a1d090bd96416c 100644 (file)
@@ -81,6 +81,9 @@ VLC_API void vlc_vaLog(vlc_object_t *, int,
 # define MODULE_STRING __FILE__
 #endif
 
+VLC_API const char *vlc_strerror(int);
+VLC_API const char *vlc_strerror_c(int);
+
 /**
  * @}
  */
index 8d18e66b1e5de007aa1b0d8d8694f0ac75ba6467..15aec52935a331a9fe6659cc5e1c30440f90a028 100644 (file)
@@ -270,6 +270,7 @@ SOURCES_libvlc_android = \
 
 SOURCES_libvlc_linux = \
        posix/dirs.c \
+       posix/error.c \
        posix/filesystem.c \
        posix/netconf.c \
        posix/plugin.c \
@@ -312,6 +313,7 @@ SOURCES_libvlc_os2 = \
 
 SOURCES_libvlc_other = \
        posix/dirs.c \
+       posix/error.c \
        posix/filesystem.c \
        posix/netconf.c \
        posix/thread.c \
index 5efc67e91ab85eb742e41116278a169275569ff5..7943300d2c33689deeeb11ff7caabfead2174bd2 100644 (file)
@@ -255,6 +255,8 @@ vlc_module_unload
 vlc_Log
 vlc_LogSet
 vlc_vaLog
+vlc_strerror
+vlc_strerror_c
 msleep
 mstrtime
 mwait
diff --git a/src/posix/error.c b/src/posix/error.c
new file mode 100644 (file)
index 0000000..acb42c9
--- /dev/null
@@ -0,0 +1,60 @@
+/*****************************************************************************
+ * error.c: POSIX error messages formatting
+ *****************************************************************************
+ * Copyright © 2013 Rémi Denis-Courmont
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <string.h>
+#include <locale.h>
+
+#include <vlc_common.h>
+
+static const char *vlc_strerror_l(int errnum, const char *lname)
+{
+    locale_t loc = newlocale(LC_MESSAGES_MASK, lname, (locale_t)0);
+    const char *buf = strerror_l(errnum, loc);
+
+    freelocale(loc);
+    return buf;
+}
+
+/**
+ * Formats an error message in the current locale.
+ * @param errnum error number (as in errno.h)
+ * @return A string pointer, valid until the next call to a function of the
+ * strerror() family in the same thread. This function cannot fail.
+ */
+const char *vlc_strerror(int errnum)
+{
+    /* We cannot simply use strerror() here, since it is not thread-safe. */
+    return vlc_strerror_l(errnum, "");
+}
+
+/**
+ * Formats an error message in the POSIX/C locale (i.e. American English).
+ * @param errnum error number (as in errno.h)
+ * @return A string pointer, valid until the next call to a function of the
+ * strerror() family in the same thread. This function cannot fail.
+ */
+const char *vlc_strerror_c(int errnum)
+{
+    return vlc_strerror_l(errnum, "C");
+}