File: testiconvert.cpp

package info (click to toggle)
scim 1.4.7-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 20,368 kB
  • ctags: 12,834
  • sloc: cpp: 51,239; sh: 22,370; ansic: 18,716; makefile: 1,258; xml: 641; yacc: 288
file content (85 lines) | stat: -rw-r--r-- 2,644 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * Smart Common Input Method
 * 
 * Copyright (c) 2004 James Su <suzhe@tsinghua.org.cn>
 *
 *
 * This library 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 of the License, or (at your option) any later version.
 *
 * This library 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., 59 Temple Place, Suite 330,
 * Boston, MA  02111-1307  USA
 *
 * $Id: testiconvert.cpp,v 1.2 2005/01/05 13:41:13 suzhe Exp $
 *
 */

#define Uses_SCIM_ICONV

#include "scim.h"

static const char * utf8_strings [] = 
{
  "Hello World! 世界你好!アカハザカダハフカハサダフワエロイアカサダジフハワエハラカジハサダフ",
  "Hello World! 世界你好!世界你好!世界你好!世界你好!",
  "Hello World! 世界你好!世界你好!世界你好!",
  "Hello World! 世界你好!世界你好!",
  "Hello World! 世界你好!",
  "Japanese いあえらかそいだはふあ",
  NULL
};

int main ()
{
	scim::IConvert to_utf8 ("UTF-8");
	scim::IConvert to_gb18030 ("GB18030");
	scim::IConvert to_big5 ("BIG5");
	scim::IConvert to_eucjp ("EUC-JP");

	scim::String mbs, utf;
	scim::WideString wcs;

	const char **ptr = utf8_strings;
	while (*ptr) {
		std::cout << "Convert: " << *ptr << "\n";

		if (to_utf8.convert (wcs, *ptr, strlen (*ptr))) {
			std::cout << "--> UTF-8 OK! ";
			if (to_gb18030.convert (mbs, wcs) && to_gb18030.convert (wcs, mbs)) {
				std::cout << "--> GB18030 OK!\n";
				std::cout << "  GB18030: " << mbs << "\n";
			} else {
				std::cout << "--> GB18030 Failed!\n";
			}
			if (to_big5.convert (mbs, wcs) && to_big5.convert (wcs, mbs)) {
				std::cout << "--> BIG5 OK!\n";
				std::cout << "  BIG5: " << mbs << "\n";
			} else {
				std::cout << "--> BIG5 Failed!\n";
			}
			if (to_eucjp.convert (mbs, wcs) && to_eucjp.convert (wcs, mbs)) {
				std::cout << "--> EUC-JP OK!\n";
				std::cout << "  EUC-JP: " << mbs << "\n";
			} else {
				std::cout << "--> EUC-JP Failed!\n";
			}
		} else {
			std::cout << "--> UTF-8 Failed!\n";
		}
		if (to_utf8.test_convert (*ptr, strlen (*ptr))) {
			std::cout << "Test UTF-8 OK!\n";
		} else {
			std::cout << "Test UTF-8 Failed!\n";
		}
		++ptr;
	}
}