(get_codepage_index): minor optimizations.
[midnight-commander.git] / lib / charsets.c
blobda8c73238e9669550ff27d014035e3e4b4cd66ce
1 /*
2 Text conversion from one charset to another.
4 Copyright (C) 2001-2018
5 Free Software Foundation, Inc.
7 Written by:
8 Walery Studennikov <despair@sama.ru>
10 This file is part of the Midnight Commander.
12 The Midnight Commander is free software: you can redistribute it
13 and/or modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation, either version 3 of the License,
15 or (at your option) any later version.
17 The Midnight Commander is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 /** \file charsets.c
27 * \brief Source: Text conversion from one charset to another
30 #include <config.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
36 #include "lib/global.h"
37 #include "lib/strutil.h" /* utf-8 functions */
38 #include "lib/fileloc.h"
39 #include "lib/util.h" /* whitespace() */
41 #include "lib/charsets.h"
43 /*** global variables ****************************************************************************/
45 GPtrArray *codepages = NULL;
47 unsigned char conv_displ[256];
48 unsigned char conv_input[256];
50 const char *cp_display = NULL;
51 const char *cp_source = NULL;
53 /*** file scope macro definitions ****************************************************************/
55 #define UNKNCHAR '\001'
57 #define OTHER_8BIT "Other_8_bit"
59 /*** file scope type declarations ****************************************************************/
61 /*** file scope variables ************************************************************************/
63 /*** file scope functions ************************************************************************/
64 /* --------------------------------------------------------------------------------------------- */
66 static codepage_desc *
67 new_codepage_desc (const char *id, const char *name)
69 codepage_desc *desc;
71 desc = g_new (codepage_desc, 1);
72 desc->id = g_strdup (id);
73 desc->name = g_strdup (name);
75 return desc;
78 /* --------------------------------------------------------------------------------------------- */
80 static void
81 free_codepage_desc (gpointer data, gpointer user_data)
83 codepage_desc *desc = (codepage_desc *) data;
84 (void) user_data;
86 g_free (desc->id);
87 g_free (desc->name);
88 g_free (desc);
91 /* --------------------------------------------------------------------------------------------- */
92 /* returns display codepage */
94 static void
95 load_codepages_list_from_file (GPtrArray ** list, const char *fname)
97 FILE *f;
98 char buf[BUF_MEDIUM];
99 char *default_codepage = NULL;
101 f = fopen (fname, "r");
102 if (f == NULL)
103 return;
105 while (fgets (buf, sizeof buf, f) != NULL)
107 /* split string into id and cpname */
108 char *p = buf;
109 size_t buflen = strlen (buf);
111 if (*p == '\n' || *p == '\0' || *p == '#')
112 continue;
114 if (buflen > 0 && buf[buflen - 1] == '\n')
115 buf[buflen - 1] = '\0';
116 while (*p != '\0' && !whitespace (*p))
117 ++p;
118 if (*p == '\0')
119 goto fail;
121 *p++ = '\0';
122 g_strstrip (p);
123 if (*p == '\0')
124 goto fail;
126 if (strcmp (buf, "default") == 0)
127 default_codepage = g_strdup (p);
128 else
130 const char *id = buf;
132 if (*list == NULL)
134 *list = g_ptr_array_sized_new (16);
135 g_ptr_array_add (*list, new_codepage_desc (id, p));
137 else
139 unsigned int i;
141 /* whether id is already present in list */
142 /* if yes, overwrite description */
143 for (i = 0; i < (*list)->len; i++)
145 codepage_desc *desc;
147 desc = (codepage_desc *) g_ptr_array_index (*list, i);
149 if (strcmp (id, desc->id) == 0)
151 /* found */
152 g_free (desc->name);
153 desc->name = g_strdup (p);
154 break;
158 /* not found */
159 if (i == (*list)->len)
160 g_ptr_array_add (*list, new_codepage_desc (id, p));
165 if (default_codepage != NULL)
167 mc_global.display_codepage = get_codepage_index (default_codepage);
168 g_free (default_codepage);
171 fail:
172 fclose (f);
175 /* --------------------------------------------------------------------------------------------- */
177 static char
178 translate_character (GIConv cd, char c)
180 gchar *tmp_buff = NULL;
181 gsize bytes_read, bytes_written = 0;
182 const char *ibuf = &c;
183 char ch = UNKNCHAR;
185 int ibuflen = 1;
187 tmp_buff = g_convert_with_iconv (ibuf, ibuflen, cd, &bytes_read, &bytes_written, NULL);
188 if (tmp_buff)
189 ch = tmp_buff[0];
190 g_free (tmp_buff);
191 return ch;
194 /* --------------------------------------------------------------------------------------------- */
195 /*** public functions ****************************************************************************/
196 /* --------------------------------------------------------------------------------------------- */
198 void
199 load_codepages_list (void)
201 char *fname;
203 /* 1: try load /usr/share/mc/mc.charsets */
204 fname = g_build_filename (mc_global.share_data_dir, CHARSETS_LIST, (char *) NULL);
205 load_codepages_list_from_file (&codepages, fname);
206 g_free (fname);
208 /* 2: try load /etc/mc/mc.charsets */
209 fname = g_build_filename (mc_global.sysconfig_dir, CHARSETS_LIST, (char *) NULL);
210 load_codepages_list_from_file (&codepages, fname);
211 g_free (fname);
213 if (codepages == NULL)
215 /* files are not found, add defaullt codepage */
216 fprintf (stderr, "%s\n", _("Warning: cannot load codepages list"));
218 codepages = g_ptr_array_new ();
219 g_ptr_array_add (codepages, new_codepage_desc (DEFAULT_CHARSET, _("7-bit ASCII")));
223 /* --------------------------------------------------------------------------------------------- */
225 void
226 free_codepages_list (void)
228 g_ptr_array_foreach (codepages, free_codepage_desc, NULL);
229 g_ptr_array_free (codepages, TRUE);
230 /* NULL-ize pointer to make unit tests happy */
231 codepages = NULL;
234 /* --------------------------------------------------------------------------------------------- */
236 const char *
237 get_codepage_id (const int n)
239 return (n < 0) ? OTHER_8BIT : ((codepage_desc *) g_ptr_array_index (codepages, n))->id;
242 /* --------------------------------------------------------------------------------------------- */
245 get_codepage_index (const char *id)
247 size_t i;
249 if (codepages == NULL)
250 return -1;
251 if (strcmp (id, OTHER_8BIT) == 0)
252 return -1;
253 for (i = 0; i < codepages->len; i++)
254 if (strcmp (id, ((codepage_desc *) g_ptr_array_index (codepages, i))->id) == 0)
255 return i;
256 return -1;
259 /* --------------------------------------------------------------------------------------------- */
260 /** Check if specified encoding can be used in mc.
261 * @param encoding name of encoding
262 * @return TRUE if encoding is supported by mc, FALSE otherwise
265 gboolean
266 is_supported_encoding (const char *encoding)
268 gboolean result = FALSE;
269 guint t;
271 for (t = 0; t < codepages->len; t++)
273 const char *id = ((codepage_desc *) g_ptr_array_index (codepages, t))->id;
274 result |= (g_ascii_strncasecmp (encoding, id, strlen (id)) == 0);
277 return result;
280 /* --------------------------------------------------------------------------------------------- */
282 char *
283 init_translation_table (int cpsource, int cpdisplay)
285 int i;
286 GIConv cd;
288 /* Fill inpit <-> display tables */
290 if (cpsource < 0 || cpdisplay < 0 || cpsource == cpdisplay)
292 for (i = 0; i <= 255; ++i)
294 conv_displ[i] = i;
295 conv_input[i] = i;
297 cp_source = cp_display;
298 return NULL;
301 for (i = 0; i <= 127; ++i)
303 conv_displ[i] = i;
304 conv_input[i] = i;
306 cp_source = ((codepage_desc *) g_ptr_array_index (codepages, cpsource))->id;
307 cp_display = ((codepage_desc *) g_ptr_array_index (codepages, cpdisplay))->id;
309 /* display <- inpit table */
311 cd = g_iconv_open (cp_display, cp_source);
312 if (cd == INVALID_CONV)
313 return g_strdup_printf (_("Cannot translate from %s to %s"), cp_source, cp_display);
315 for (i = 128; i <= 255; ++i)
316 conv_displ[i] = translate_character (cd, i);
318 g_iconv_close (cd);
320 /* inpit <- display table */
322 cd = g_iconv_open (cp_source, cp_display);
323 if (cd == INVALID_CONV)
324 return g_strdup_printf (_("Cannot translate from %s to %s"), cp_display, cp_source);
326 for (i = 128; i <= 255; ++i)
328 unsigned char ch;
329 ch = translate_character (cd, i);
330 conv_input[i] = (ch == UNKNCHAR) ? i : ch;
333 g_iconv_close (cd);
335 return NULL;
338 /* --------------------------------------------------------------------------------------------- */
340 void
341 convert_to_display (char *str)
343 if (!str)
344 return;
346 while (*str)
348 *str = conv_displ[(unsigned char) *str];
349 str++;
353 /* --------------------------------------------------------------------------------------------- */
355 GString *
356 str_convert_to_display (const char *str)
358 return str_nconvert_to_display (str, -1);
362 /* --------------------------------------------------------------------------------------------- */
364 GString *
365 str_nconvert_to_display (const char *str, int len)
367 GString *buff;
368 GIConv conv;
370 if (!str)
371 return g_string_new ("");
373 if (cp_display == cp_source)
374 return g_string_new (str);
376 conv = str_crt_conv_from (cp_source);
378 buff = g_string_new ("");
379 str_nconvert (conv, str, len, buff);
380 str_close_conv (conv);
381 return buff;
384 /* --------------------------------------------------------------------------------------------- */
386 void
387 convert_from_input (char *str)
389 if (!str)
390 return;
392 while (*str)
394 *str = conv_input[(unsigned char) *str];
395 str++;
399 /* --------------------------------------------------------------------------------------------- */
401 GString *
402 str_convert_to_input (const char *str)
404 return str_nconvert_to_input (str, -1);
407 /* --------------------------------------------------------------------------------------------- */
409 GString *
410 str_nconvert_to_input (const char *str, int len)
412 GString *buff;
413 GIConv conv;
415 if (!str)
416 return g_string_new ("");
418 if (cp_display == cp_source)
419 return g_string_new (str);
421 conv = str_crt_conv_to (cp_source);
423 buff = g_string_new ("");
424 str_nconvert (conv, str, len, buff);
425 str_close_conv (conv);
426 return buff;
429 /* --------------------------------------------------------------------------------------------- */
431 unsigned char
432 convert_from_utf_to_current (const char *str)
434 unsigned char buf_ch[UTF8_CHAR_LEN + 1];
435 unsigned char ch = '.';
436 GIConv conv;
437 const char *cp_to;
439 if (str == NULL)
440 return '.';
442 cp_to = get_codepage_id (mc_global.source_codepage);
443 conv = str_crt_conv_to (cp_to);
445 if (conv != INVALID_CONV)
447 switch (str_translate_char (conv, str, -1, (char *) buf_ch, sizeof (buf_ch)))
449 case ESTR_SUCCESS:
450 ch = buf_ch[0];
451 break;
452 case ESTR_PROBLEM:
453 case ESTR_FAILURE:
454 ch = '.';
455 break;
456 default:
457 break;
459 str_close_conv (conv);
462 return ch;
465 /* --------------------------------------------------------------------------------------------- */
467 unsigned char
468 convert_from_utf_to_current_c (int input_char, GIConv conv)
470 unsigned char str[UTF8_CHAR_LEN + 1];
471 unsigned char buf_ch[UTF8_CHAR_LEN + 1];
472 unsigned char ch = '.';
473 int res;
475 res = g_unichar_to_utf8 (input_char, (char *) str);
476 if (res == 0)
477 return ch;
479 str[res] = '\0';
481 switch (str_translate_char (conv, (char *) str, -1, (char *) buf_ch, sizeof (buf_ch)))
483 case ESTR_SUCCESS:
484 ch = buf_ch[0];
485 break;
486 case ESTR_PROBLEM:
487 case ESTR_FAILURE:
488 ch = '.';
489 break;
490 default:
491 break;
494 return ch;
497 /* --------------------------------------------------------------------------------------------- */
500 convert_from_8bit_to_utf_c (char input_char, GIConv conv)
502 unsigned char str[2];
503 unsigned char buf_ch[UTF8_CHAR_LEN + 1];
504 int ch;
506 str[0] = (unsigned char) input_char;
507 str[1] = '\0';
509 switch (str_translate_char (conv, (char *) str, -1, (char *) buf_ch, sizeof (buf_ch)))
511 case ESTR_SUCCESS:
513 int res;
515 res = g_utf8_get_char_validated ((char *) buf_ch, -1);
516 ch = res >= 0 ? res : buf_ch[0];
517 break;
519 case ESTR_PROBLEM:
520 case ESTR_FAILURE:
521 default:
522 ch = '.';
523 break;
526 return ch;
529 /* --------------------------------------------------------------------------------------------- */
532 convert_from_8bit_to_utf_c2 (char input_char)
534 unsigned char str[2];
535 int ch = '.';
536 GIConv conv;
537 const char *cp_from;
539 str[0] = (unsigned char) input_char;
540 str[1] = '\0';
542 cp_from = get_codepage_id (mc_global.source_codepage);
543 conv = str_crt_conv_to (cp_from);
545 if (conv != INVALID_CONV)
547 unsigned char buf_ch[UTF8_CHAR_LEN + 1];
549 switch (str_translate_char (conv, (char *) str, -1, (char *) buf_ch, sizeof (buf_ch)))
551 case ESTR_SUCCESS:
553 int res;
555 res = g_utf8_get_char_validated ((char *) buf_ch, -1);
556 ch = res >= 0 ? res : buf_ch[0];
557 break;
559 case ESTR_PROBLEM:
560 case ESTR_FAILURE:
561 default:
562 ch = '.';
563 break;
565 str_close_conv (conv);
568 return ch;
571 /* --------------------------------------------------------------------------------------------- */