00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifdef HAVE_CONFIG_H
00023 # include "config.h"
00024 #endif
00025
00026
00027 #include "stringprep.h"
00028
00029
00030 #include <stdio.h>
00031
00032
00033 #include <stdlib.h>
00034
00035
00036 #include <string.h>
00037
00038
00039 #include "iconvme.h"
00040
00041 #ifdef _LIBC
00042 # define HAVE_ICONV 1
00043 # define HAVE_LOCALE_H 1
00044 # define HAVE_LANGINFO_CODESET 1
00045 #endif
00046
00047 #if HAVE_LOCALE_H
00048 # include <locale.h>
00049 #endif
00050
00051 #if HAVE_LANGINFO_CODESET
00052 # include <langinfo.h>
00053 #endif
00054
00055 #ifdef _LIBC
00056 # define stringprep_locale_charset() nl_langinfo (CODESET)
00057 #else
00058
00078 const char *
00079 stringprep_locale_charset (void)
00080 {
00081 const char *charset = getenv ("CHARSET");
00082
00083 if (charset && *charset)
00084 return charset;
00085
00086 # ifdef HAVE_LANGINFO_CODESET
00087 charset = nl_langinfo (CODESET);
00088
00089 if (charset && *charset)
00090 return charset;
00091 # endif
00092
00093 return "ASCII";
00094 }
00095 #endif
00096
00109 char *
00110 stringprep_convert (const char *str,
00111 const char *to_codeset, const char *from_codeset)
00112 {
00113 #if HAVE_ICONV
00114 return iconv_string (str, from_codeset, to_codeset);
00115 #else
00116 char *p;
00117 fprintf (stderr, "libidn: warning: libiconv not installed, cannot "
00118 "convert data to UTF-8\n");
00119 p = malloc (strlen (str) + 1);
00120 if (!p)
00121 return NULL;
00122 return strcpy (p, str);
00123 #endif
00124 }
00125
00136 char *
00137 stringprep_locale_to_utf8 (const char *str)
00138 {
00139 return stringprep_convert (str, "UTF-8", stringprep_locale_charset ());
00140 }
00141
00152 char *
00153 stringprep_utf8_to_locale (const char *str)
00154 {
00155 return stringprep_convert (str, stringprep_locale_charset (), "UTF-8");
00156 }