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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
/******************************************************************************
*
* translittest.cpp -
*
* $Id: translittest.cpp 2833 2013-06-29 06:40:28Z chrislit $
*
* Copyright 2002-2013 CrossWire Bible Society (http://www.crosswire.org)
* CrossWire Bible Society
* P. O. Box 2528
* Tempe, AZ 85280-2528
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation version 2.
*
* This program 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
* General Public License for more details.
*
*/
#include <iostream>
#include <string>
#include "unicode/udata.h" /* Data structures */
#include "unicode/ures.h" /* Data structures */
#include "unicode/utypes.h" /* Basic ICU data types */
#include "unicode/ucnv.h" /* C Converter API */
#include "unicode/ustring.h" /* some more string fcns*/
#include "unicode/translit.h"
#include "utf8transliterator.h"
using namespace std;
// Print the given string to stdout
void uprintf(const icu::UnicodeString &str) {
char *buf = 0;
int32_t len = str.length();
// int32_t bufLen = str.extract(0, len, buf); // Preflight
/* Preflighting seems to be broken now, so assume 1-1 conversion,
plus some slop. */
int32_t bufLen = len + 16;
int32_t actualLen;
buf = new char[bufLen + 1];
actualLen = str.extract(0, len, buf/*, bufLen*/); // Default codepage conversion
buf[actualLen] = 0;
//printf("%s", buf);
std::cout << buf;
delete buf;
}
int main() {
UErrorCode status = U_ZERO_ERROR;
// UDataMemory *pappData = udata_open("/usr/local/lib/sword/swicu", "res", "root", &status);
if (U_FAILURE(status))
{
std::cout << "error: " << status << ":" <<
u_errorName(status) << std::endl;
return 0;
}
UChar * uBuf;
UChar * target;
UConverter *conv;
//UParseError perr = U_ZERO_ERROR;
int32_t uBufSize = 0, uLength = 0;
// void * pAppData=NULL;
const char * samplestring = "If this compiles and runs without errors, apparently ICU is working.";
//ures_open("/usr/local/lib/sword/swicu.dat",
// NULL, &status);
//UDataMemory *pappData = udata_open("/usr/local/lib/sword/swicu",
// "res", "root", &status);
if (U_FAILURE(status))
{
std::cout << "error: " << status << ":" <<
u_errorName(status) << std::endl;
return 0;
}
//UDataMemory *pappData2 = udata_open("/usr/local/lib/sword/swicu",
// "res", "translit_Latin_Gothic", &status);
std::cout << status << std::endl;
if (U_FAILURE(status))
{
std::cout << "error: " << status << ":" <<
u_errorName(status) << std::endl;
return 0;
}
std::cout << "available " << icu::Transliterator::countAvailableIDs() << std::endl;
//udata_setAppData("/usr/local/lib/sword/swicu.dat" , pAppData, &status);
//if (U_FAILURE(status))
//{
//std::cout << "error: " << status << ":" <<
// u_errorName(status) << std::endl;
//return 0;
//}
int32_t i_ids = icu::Transliterator::countAvailableIDs();
std::cout << "available " << i_ids << std::endl;
for (int i=0; i<i_ids;i++)
{
std::cout << "id " << i << ": ";
uprintf(icu::Transliterator::getAvailableID(i));
std::cout << std::endl;
}
//UTF8Transliterator utran = new UTF8Transliterator();
std::cout << "creating transliterator 2" << std::endl;
icu::Transliterator *btrans = icu::Transliterator::createInstance("NFD;Latin-Greek;NFC",
UTRANS_FORWARD, status);
if (U_FAILURE(status))
{
std::cout << "error: " << status << ":" <<
u_errorName(status) << std::endl;
return 0;
}
std::cout << "creating transliterator 1" << std::endl;
icu::Transliterator *trans = icu::Transliterator::createInstance("NFD;Latin-Gothic;NFC",
UTRANS_FORWARD, status);
if (U_FAILURE(status))
{
delete btrans;
std::cout << "error: " << status << ":" <<
u_errorName(status) << std::endl;
return 0;
}
std::cout << "deleting transliterator 1" << std::endl;
delete trans;
std::cout << "deleting transliterator 2" << std::endl;
delete btrans;
std::cout << "the rest" << std::endl;
uLength = strlen(samplestring);
conv = ucnv_open("utf-8", &status);
if (U_FAILURE(status))
{
std::cout << "error: " << status << ":" <<
u_errorName(status) << std::endl;
return 0;
}
uBufSize = (uLength/ucnv_getMinCharSize(conv));
uBuf = (UChar*)malloc(uBufSize * sizeof(UChar));
target = uBuf;
ucnv_toUChars(conv, target, uLength,
samplestring, uLength, &status);
if (U_FAILURE(status))
{
std::cout << "error: " << status << ":" <<
u_errorName(status) << std::endl;
return 0;
}
cout << samplestring << endl;
return 0;
}
|