~ubuntu-branches/ubuntu/hardy/uim/hardy

« back to all changes in this revision

Viewing changes to sumika/gtk2/charset.c

  • Committer: Bazaar Package Importer
  • Author(s): Masahito Omote
  • Date: 2005-12-04 13:10:42 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051204131042-ktzc8b17zi7a3cw8
Tags: 1:0.4.9.1-1
* New upstream release
* libuim0-nox, libuim-nox-dev, and libuim0-dbg-nox is now obsolete.
  Because libuim0 does not depends on X11. They now become dummy package,
  therefore you can safely remove them.
* Add --enable-debug in configure again.
* debian/patches/08_fix_privilage_escalation_CVE_2005_3149: disabled.
* Fix Error on purge because update-uim-config is not found.
  (closes: Bug#339345)
* uim-qt: New package for Qt utilities for uim. qt-immodule does not
  contained yet because of Debian's Qt3 does not support immodule and
  because uim does not recognize libqt4-dev's headers properly. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  $Id:$
3
 
 *  Copyright (c) 2003,2004 Masahito Omote <omote@utyuuzin.net>
4
 
 *
5
 
 *  All rights reserved.
6
 
 *
7
 
 *  Redistribution and use in source and binary forms, with or without
8
 
 *  modification, are permitted provided that the following conditions
9
 
 *  are met:
10
 
 *
11
 
 *  1. Redistributions of source code must retain the above copyright
12
 
 *     notice, this list of conditions and the following disclaimer.
13
 
 *  2. Redistributions in binary form must reproduce the above copyright
14
 
 *     notice, this list of conditions and the following disclaimer in the
15
 
 *     documentation and/or other materials provided with the distribution.
16
 
 *  3. Neither the name of authors nor the names of its contributors
17
 
 *     may be used to endorse or promote products derived from this software
18
 
 *     without specific prior written permission.
19
 
 *
20
 
 *  THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21
 
 *  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
 
 *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23
 
 *  ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24
 
 *  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
 
 *  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26
 
 *  OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27
 
 *  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28
 
 *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29
 
 *  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30
 
 *  SUCH DAMAGE.
31
 
 */
32
 
 
33
 
#include <stdio.h>
34
 
#include "charset.h"
35
 
#include "uim/gettext.h"
36
 
 
37
 
gchar *charset_convert(const gchar *in,
38
 
                       const gchar *incode,
39
 
                       const gchar *outcode)
40
 
{
41
 
    gsize rbytes, wbytes;
42
 
    gchar *out = NULL;
43
 
    GError *error = NULL;
44
 
 
45
 
    g_return_val_if_fail(in, NULL);
46
 
    g_return_val_if_fail(incode && *incode, g_strdup(in));
47
 
    g_return_val_if_fail(outcode && *outcode, g_strdup(in));
48
 
 
49
 
    out = g_convert(in, -1, outcode, incode, &rbytes, &wbytes, &error);
50
 
    if(error != NULL) {
51
 
        g_printerr("g_convert failed: %s\nin: %s out: %s\n",
52
 
                   error->message, in, out);
53
 
    }
54
 
 
55
 
    return out;
56
 
}
57
 
 
58
 
gchar *utf8_convert(const gchar *in) {
59
 
    gsize rbytes, wbytes;
60
 
    gchar *out;
61
 
    GError *error = NULL;
62
 
 
63
 
    g_return_val_if_fail(in, NULL);
64
 
 
65
 
    out = g_locale_to_utf8(in, -1, &rbytes, &wbytes, &error);
66
 
    if(out == NULL && error != NULL) {
67
 
        if(g_utf8_validate(in, -1, NULL)) {
68
 
            out = g_strdup(in);
69
 
        } else {
70
 
            g_printerr("g_locale_to_utf8 failed: %s\n", error->message);
71
 
            out = NULL;
72
 
        }
73
 
    }
74
 
    return out;
75
 
}
76
 
 
77
 
gchar *utf8_to_eucjp(const gchar *utf8) {
78
 
    gchar *eucjp = NULL;
79
 
    g_return_val_if_fail(utf8, NULL);
80
 
 
81
 
    if(g_utf8_validate(utf8, -1, NULL)) {
82
 
        eucjp = charset_convert(utf8, "UTF-8", "EUC-JP");
83
 
    }
84
 
 
85
 
    /* XXX: must prepare fallbacks */
86
 
    return eucjp;
87
 
}
88
 
 
89
 
gchar *eucjp_to_utf8(const gchar *eucjp) {
90
 
    gchar *utf8;
91
 
    g_return_val_if_fail(eucjp, NULL);
92
 
 
93
 
    /* XXX: must check wheter eucjp is really EUC-JP */
94
 
    utf8 = charset_convert(eucjp, "EUC-JP", "UTF-8");
95
 
    return utf8;
96
 
}