Code

Added file langinfo.c, used on systems without nl_langinfo() support.
authorKalle Wallin <kaw@linux.se>
Fri, 26 Mar 2004 17:27:57 +0000 (17:27 +0000)
committerKalle Wallin <kaw@linux.se>
Fri, 26 Mar 2004 17:27:57 +0000 (17:27 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@503 09075e82-0dd4-0310-85a5-a0d7c8717e4f

Makefile.am
configure.ac
langinfo.c [new file with mode: 0644]
support.c
support.h

index 849ab0637cdab9a4d4edf65c262fa519af693c91..f2f0f7ea6de1d396f5061811a5db48ea46029ef6 100644 (file)
@@ -10,6 +10,11 @@ EXTRA_DIST = COPYING $(pkgdata_DATA) $(doc_DATA)
 
 SUBDIRS = doc
 
+EXTRA_ncmpc_SOURCES = langinfo.c
+
+ncmpc_LDADD = $(LANGINFO_OBJS)
+ncmpc_DEPENDENCIES = $(LANGINFO_OBJS)
+
 ncmpc_headers = libmpdclient.h mpc.h options.h conf.h command.h screen.h \
               screen_utils.h screen_play.h screen_file.h screen_search.h \
              screen_help.h list_window.h support.h 
index edd6760f69120a05c25c507ffcc0ec891a71f5a3..67b4c93a632893523c3f3c9354568ab8ecce32cb 100644 (file)
@@ -53,6 +53,11 @@ AM_ICONV
 
 dnl nl_langinfo()
 AM_LANGINFO_CODESET
+if test $am_cv_langinfo_codeset = no; then
+  LANGINFO_OBJS=langinfo.o
+fi
+AC_SUBST(LANGINFO_OBJS)
+
 
 dnl ncurses
 AC_CHECK_LIB(ncurses, initscr,, [AC_MSG_ERROR(ncurses library is required)])
@@ -107,7 +112,6 @@ AC_DEFINE_UNQUOTED(DEFAULT_PORT_STR, "$DEFAULT_PORT",    Default MPD port)
 AC_DEFINE_UNQUOTED(DEFAULT_HOST,     "$DEFAULT_HOST",    Default MPD host)
 AC_DEFINE_UNQUOTED(DEFAULT_CHARSET,  "$DEFAULT_CHARSET", Default charset)
 
-
 AM_CONFIG_HEADER(config.h)
 
 AC_OUTPUT(doc/Makefile Makefile)
diff --git a/langinfo.c b/langinfo.c
new file mode 100644 (file)
index 0000000..b7961ed
--- /dev/null
@@ -0,0 +1,119 @@
+/*
+ * This is a quick-and-dirty emulator of the nl_langinfo(CODESET)
+ * function defined in the Single Unix Specification for those systems
+ * (FreeBSD, etc.) that don't have one yet. It behaves as if it had
+ * been called after setlocale(LC_CTYPE, ""), that is it looks at
+ * the locale environment variables.
+ *
+ * http://www.opengroup.org/onlinepubs/7908799/xsh/langinfo.h.html
+ *
+ * Please extend it as needed and suggest improvements to the author.
+ * This emulator will hopefully become redundant soon as
+ * nl_langinfo(CODESET) becomes more widely implemented.
+ *
+ * Since the proposed Li18nux encoding name registry is still not mature,
+ * the output follows the MIME registry where possible:
+ *
+ *   http://www.iana.org/assignments/character-sets
+ *
+ * A possible autoconf test for the availability of nl_langinfo(CODESET)
+ * can be found in
+ *
+ *   http://www.cl.cam.ac.uk/~mgk25/unicode.html#activate
+ *
+ * Markus.Kuhn@cl.cam.ac.uk -- 2002-03-11
+ * Permission to use, copy, modify, and distribute this software
+ * for any purpose and without fee is hereby granted. The author
+ * disclaims all warranties with regard to this software.
+ *
+ * Latest version:
+ *
+ *   http://www.cl.cam.ac.uk/~mgk25/ucs/langinfo.c
+ */
+
+#include <stdlib.h>
+#include <string.h>
+#include "support.h"
+
+#define C_CODESET "US-ASCII"     /* Return this as the encoding of the
+                                 * C/POSIX locale. Could as well one day
+                                 * become "UTF-8". */
+
+#define digit(x) ((x) >= '0' && (x) <= '9')
+
+static char buf[16];
+
+char *nl_langinfo(nl_item item)
+{
+  char *l, *p;
+  
+  if (item != CODESET)
+    return NULL;
+  
+  if (((l = getenv("LC_ALL"))   && *l) ||
+      ((l = getenv("LC_CTYPE")) && *l) ||
+      ((l = getenv("LANG"))     && *l)) {
+    /* check standardized locales */
+    if (!strcmp(l, "C") || !strcmp(l, "POSIX"))
+      return C_CODESET;
+    /* check for encoding name fragment */
+    if (strstr(l, "UTF") || strstr(l, "utf"))
+      return "UTF-8";
+    if ((p = strstr(l, "8859-"))) {
+      memcpy(buf, "ISO-8859-\0\0", 12);
+      p += 5;
+      if (digit(*p)) {
+       buf[9] = *p++;
+       if (digit(*p)) buf[10] = *p++;
+       return buf;
+      }
+    }
+    if (strstr(l, "KOI8-R")) return "KOI8-R";
+    if (strstr(l, "KOI8-U")) return "KOI8-U";
+    if (strstr(l, "620")) return "TIS-620";
+    if (strstr(l, "2312")) return "GB2312";
+    if (strstr(l, "HKSCS")) return "Big5HKSCS";   /* no MIME charset */
+    if (strstr(l, "Big5") || strstr(l, "BIG5")) return "Big5";
+    if (strstr(l, "GBK")) return "GBK";           /* no MIME charset */
+    if (strstr(l, "18030")) return "GB18030";     /* no MIME charset */
+    if (strstr(l, "Shift_JIS") || strstr(l, "SJIS")) return "Shift_JIS";
+    /* check for conclusive modifier */
+    if (strstr(l, "euro")) return "ISO-8859-15";
+    /* check for language (and perhaps country) codes */
+    if (strstr(l, "zh_TW")) return "Big5";
+    if (strstr(l, "zh_HK")) return "Big5HKSCS";   /* no MIME charset */
+    if (strstr(l, "zh")) return "GB2312";
+    if (strstr(l, "ja")) return "EUC-JP";
+    if (strstr(l, "ko")) return "EUC-KR";
+    if (strstr(l, "ru")) return "KOI8-R";
+    if (strstr(l, "uk")) return "KOI8-U";
+    if (strstr(l, "pl") || strstr(l, "hr") ||
+       strstr(l, "hu") || strstr(l, "cs") ||
+       strstr(l, "sk") || strstr(l, "sl")) return "ISO-8859-2";
+    if (strstr(l, "eo") || strstr(l, "mt")) return "ISO-8859-3";
+    if (strstr(l, "el")) return "ISO-8859-7";
+    if (strstr(l, "he")) return "ISO-8859-8";
+    if (strstr(l, "tr")) return "ISO-8859-9";
+    if (strstr(l, "th")) return "TIS-620";      /* or ISO-8859-11 */
+    if (strstr(l, "lt")) return "ISO-8859-13";
+    if (strstr(l, "cy")) return "ISO-8859-14";
+    if (strstr(l, "ro")) return "ISO-8859-2";   /* or ISO-8859-16 */
+    if (strstr(l, "am") || strstr(l, "vi")) return "UTF-8";
+    /* Send me further rules if you like, but don't forget that we are
+     * *only* interested in locale naming conventions on platforms
+     * that do not already provide an nl_langinfo(CODESET) implementation. */
+    return "ISO-8859-1"; /* should perhaps be "UTF-8" instead */
+  }
+  return C_CODESET;
+}
+
+/* For a demo, compile with "gcc -W -Wall -o langinfo -D TEST langinfo.c" */
+
+#ifdef TEST
+#include <stdio.h>
+int main()
+{
+  printf("%s\n", nl_langinfo(CODESET));
+  return 0;
+}
+#endif
index 9bf18cc47a8353546652ab3edc189c6b48cd7e22..de3d80cef2810e838a3008151713b51445bb6f9a 100644 (file)
--- a/support.c
+++ b/support.c
@@ -137,18 +137,17 @@ charset_init(void)
     }
 #endif
 
-#ifdef HAVE_LANGINFO_CODESET
   /* get charset */
   if( (charset=nl_langinfo(CODESET)) == NULL )
     {
       fprintf(stderr,
              "nl_langinfo() failed using default:" DEFAULT_CHARSET "\n");
+      charset = DEFAULT_CHARSET;
     }
+#ifdef DEBUG
+  fprintf(stderr, "charset: %s\n", charset);
 #endif
   
-  if( charset==NULL )
-    charset = DEFAULT_CHARSET;
-  
 #ifdef HAVE_ICONV
   /* allocate descriptor for character set conversion */
   iconv_from_uft8 = iconv_open(charset, "UTF-8");
index 9e1a1b866da84b2bb9907ec19aa0cd4d57663bd5..fc0e20559dc98442cf5c8056a28f9aa2bf1ce856 100644 (file)
--- a/support.h
+++ b/support.h
@@ -3,6 +3,12 @@
 #include <libgen.h>
 #endif
 
+#ifndef HAVE_LANGINFO_CODESET
+#define CODESET ((nl_item) 1)
+typedef int nl_item;
+char *nl_langinfo(nl_item);
+#endif
+
 char *concat_path(char *p1, char *p2);
 
 #ifndef HAVE_BASENAME