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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
|
/******************************************************************************
*
* tlitmgrtest.cpp -
*
* $Id: tlitmgrtest.cpp 3618 2019-04-14 22:30:32Z scribe $
*
* 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.
*
*/
/*
* void icu::Transliterator::initializeRegistry(void) {
// Lock first, check registry pointer second
Mutex lock(®istryMutex);
if (registry != 0) {
// We were blocked by another thread in initializeRegistry()
return;
}
UErrorCode status = U_ZERO_ERROR;
registry = new TransliteratorRegistry(status);
if (registry == 0 || U_FAILURE(status)) {
return; // out of memory, no recovery
}
* The following code parses the index table located in
* icu/data/translit_index.txt. The index is an n x 4 table
* that follows this format:
*
* <id>:file:<resource>:<direction>
* <id>:internal:<resource>:<direction>
* <id>:alias:<getInstanceArg>:
*
* <id> is the ID of the system transliterator being defined. These
* are public IDs enumerated by icu::Transliterator.getAvailableIDs(),
* unless the second field is "internal".
*
* <resource> is a ResourceReader resource name. Currently these refer
* to file names under com/ibm/text/resources. This string is passed
* directly to ResourceReader, together with <encoding>.
*
* <direction> is either "FORWARD" or "REVERSE".
*
* <getInstanceArg> is a string to be passed directly to
* icu::Transliterator.getInstance(). The returned icu::Transliterator object
* then has its ID changed to <id> and is returned.
*
* The extra blank field on "alias" lines is to make the array square.
*
static const char translit_index[] = "translit_index";
UResourceBundle *bundle, *transIDs, *colBund;
bundle = ures_openDirect(0, translit_index, &status);
transIDs = ures_getByKey(bundle, RB_RULE_BASED_IDS, 0, &status);
int32_t row, maxRows;
if (U_SUCCESS(status)) {
maxRows = ures_getSize(transIDs);
for (row = 0; row < maxRows; row++) {
colBund = ures_getByIndex(transIDs, row, 0, &status);
if (U_SUCCESS(status) && ures_getSize(colBund) == 4) {
icu::UnicodeString id = icu::ures_getUnicodeStringByIndex(colBund, 0, &status);
UChar type = icu::ures_getUnicodeStringByIndex(colBund, 1, &status).charAt(0);
icu::UnicodeString resString = icu::ures_getUnicodeStringByIndex(colBund, 2, &status);
if (U_SUCCESS(status)) {
switch (type) {
case 0x66: // 'f'
case 0x69: // 'i'
// 'file' or 'internal';
// row[2]=resource, row[3]=direction
{
UBool visible = (type == 0x0066 /f/);
UTransDirection dir =
(icu::ures_getUnicodeStringByIndex(colBund, 3, &status).charAt(0) ==
0x0046 /F/) ?
UTRANS_FORWARD : UTRANS_REVERSE;
registry->put(id, resString, dir, visible);
}
break;
case 0x61: // 'a'
// 'alias'; row[2]=createInstance argument
registry->put(id, resString, TRUE);
break;
}
}
}
ures_close(colBund);
}
}
ures_close(transIDs);
ures_close(bundle);
specialInverses = new Hashtable(TRUE);
specialInverses->setValueDeleter(uhash_deleteUnicodeString);
_registerSpecialInverse(NullTransliterator::SHORT_ID,
NullTransliterator::SHORT_ID, FALSE);
// Manually add prototypes that the system knows about to the
// cache. This is how new non-rule-based transliterators are
// added to the system.
registry->put(new NullTransliterator(), TRUE);
registry->put(new LowercaseTransliterator(), TRUE);
registry->put(new UppercaseTransliterator(), TRUE);
registry->put(new TitlecaseTransliterator(), TRUE);
_registerSpecialInverse("Upper", "Lower", TRUE);
_registerSpecialInverse("Title", "Lower", FALSE);
registry->put(new UnicodeNameTransliterator(), TRUE);
registry->put(new NameUnicodeTransliterator(), TRUE);
RemoveTransliterator::registerIDs();
EscapeTransliterator::registerIDs();
UnescapeTransliterator::registerIDs();
NormalizationTransliterator::registerIDs();
ucln_i18n_registerCleanup();
}
*/
/*icu::Transliterator* TransliteratorRegistry::instantiateEntry(const icu::UnicodeString& ID,
Entry *entry,
TransliteratorAlias* &aliasReturn,
UParseError& parseError,
UErrorCode& status) {
for (;;) {
if (entry->entryType == Entry::RBT_DATA) {
return new RuleBasedTransliterator(ID, entry->u.data);
} else if (entry->entryType == Entry::PROTOTYPE) {
return entry->u.prototype->clone();
} else if (entry->entryType == Entry::ALIAS) {
aliasReturn = new TransliteratorAlias(entry->stringArg);
return 0;
} else if (entry->entryType == Entry::FACTORY) {
return entry->u.factory.function(ID, entry->u.factory.context);
} else if (entry->entryType == Entry::COMPOUND_RBT) {
icu::UnicodeString id("_", "");
icu::Transliterator *t = new RuleBasedTransliterator(id, entry->u.data);
aliasReturn = new TransliteratorAlias(ID, entry->stringArg, t, entry->intArg, entry->compoundFilter);
return 0;
}
TransliteratorParser parser;
if (entry->entryType == Entry::LOCALE_RULES) {
parser.parse(entry->stringArg, (UTransDirection) entry->intArg,
parseError, status);
} else {
{
// At this point entry type must be either RULES_FORWARD or
// RULES_REVERSE. We process the rule data into a
// TransliteratorRuleData object, and possibly also into an
// ::id header and/or footer. Then we modify the registry with
// the parsed data and retry.
UBool isReverse = (entry->entryType == Entry::RULES_REVERSE);
// We use the file name, taken from another resource bundle
// 2-d array at static init time, as a locale language. We're
// just using the locale mechanism to map through to a file
// name; this in no way represents an actual locale.
CharString ch(entry->stringArg);
UResourceBundle *bundle = ures_openDirect(0, ch, &status);
icu::UnicodeString rules = icu::ures_getUnicodeStringByKey(bundle, RB_RULE, &status);
ures_close(bundle);
// If the status indicates a failure, then we don't have any
// rules -- there is probably an installation error. The list
// in the root locale should correspond to all the installed
// transliterators; if it lists something that's not
// installed, we'll get an error from ResourceBundle.
parser.parse(rules, isReverse ? UTRANS_REVERSE : UTRANS_FORWARD,
parseError, status);
}
if (U_FAILURE(status)) {
// We have a failure of some kind. Remove the ID from the
// registry so we don't keep trying. NOTE: This will throw off
// anyone who is, at the moment, trying to iterate over the
// available IDs. That's acceptable since we should never
// really get here except under installation, configuration,
// or unrecoverable run time memory failures.
remove(ID);
break;
}
entry->u.data = parser.orphanData();
entry->stringArg = parser.idBlock;
entry->intArg = parser.idSplitPoint;
entry->compoundFilter = parser.orphanCompoundFilter();
// Reset entry->entryType to something that we process at the
// top of the loop, then loop back to the top. As long as we
// do this, we only loop through twice at most.
// NOTE: The logic here matches that in
// icu::Transliterator::createFromRules().
if (entry->stringArg.length() == 0) {
if (entry->u.data == 0) {
// No idBlock, no data -- this is just an
// alias for Null
entry->entryType = Entry::ALIAS;
entry->stringArg = NullTransliterator::ID;
} else {
// No idBlock, data != 0 -- this is an
// ordinary RBT_DATA
entry->entryType = Entry::RBT_DATA;
return new RuleBasedTransliterator(ID, entry->u.data);
}
} else {
if (entry->u.data == 0) {
// idBlock, no data -- this is an alias. The ID has
// been munged from reverse into forward mode, if
// necessary, so instantiate the ID in the forward
// direction.
entry->entryType = Entry::ALIAS;
} else {
// idBlock and data -- this is a compound
// RBT
entry->entryType = Entry::COMPOUND_RBT;
}
}
}
return 0; // failed
}
*/
//#include "unicode/rbt.h"
#include "unicode/resbund.h"
#include "unicode/translit.h"
#include "unicode/ustream.h"
#include <iostream>
using icu::UnicodeString;
class SWCharString {
public:
inline SWCharString(const icu::UnicodeString& str);
inline ~SWCharString();
inline operator const char*() { return ptr; }
private:
char buf[128];
char* ptr;
};
inline SWCharString::SWCharString(const icu::UnicodeString& str) {
// TODO This isn't quite right -- we should probably do
// preflighting here to determine the real length.
if (str.length() >= (int32_t)sizeof(buf)) {
ptr = new char[str.length() + 8];
} else {
ptr = buf;
}
str.extract(0, 0x7FFFFFFF, ptr, "");
}
inline SWCharString::~SWCharString() {
if (ptr != buf) {
delete[] ptr;
}
}
static const char RB_RULE_BASED_IDS[] = "RuleBasedTransliteratorIDs";
static const char RB_RULE[] = "Rule";
static const char SW_RESDATA[] = "/usr/local/lib/sword/";
#include <map>
using namespace std;
using icu::UnicodeString;
using icu::Transliterator;
struct SWTransData {
icu::UnicodeString resource;
UTransDirection dir;
};
typedef map <const icu::UnicodeString, SWTransData> SWTransMap;
typedef pair<icu::UnicodeString, SWTransData> SWTransPair;
SWTransMap *sw_tmap;
icu::Transliterator * instantiateTrans(const icu::UnicodeString& ID, const icu::UnicodeString& resource,
UTransDirection dir, UParseError &parseError, UErrorCode &status );
icu::Transliterator *SWTransFactory(const icu::UnicodeString &ID, icu::Transliterator::Token context)
{
std::cout << "running factory for " << ID << std::endl;
SWTransMap::iterator swelement;
if ((swelement = sw_tmap->find(ID)) != sw_tmap->end())
{
std::cout << "found element in map" << std::endl;
SWTransData swstuff = (*swelement).second;
UParseError parseError;
UErrorCode status;
std::cout << "unregistering " << ID << std::endl;
icu::Transliterator::unregister(ID);
std::cout << "resource is " << swstuff.resource << std::endl;
icu::Transliterator *trans = instantiateTrans(ID, swstuff.resource, swstuff.dir, parseError, status);
return trans;
}
return NULL;
}
void instantiateTransFactory(const icu::UnicodeString& ID, const icu::UnicodeString& resource, UTransDirection dir, UParseError &parseError, UErrorCode &status) {
std::cout << "making factory for ID " << ID << std::endl;
icu::Transliterator::Token context;
SWTransData swstuff;
swstuff.resource = resource;
swstuff.dir = dir;
SWTransPair swpair;
swpair.first = ID;
swpair.second = swstuff;
sw_tmap->insert(swpair);
icu::Transliterator::registerFactory(ID, &SWTransFactory, context);
}
void registerTrans(const icu::UnicodeString& ID, const icu::UnicodeString& resource, UTransDirection dir, UErrorCode &status ) {
std::cout << "registering ID locally " << ID << std::endl;
SWTransData swstuff;
swstuff.resource = resource;
swstuff.dir = dir;
SWTransPair swpair;
swpair.first = ID;
swpair.second = swstuff;
sw_tmap->insert(swpair);
}
bool checkTrans(const icu::UnicodeString& ID, UErrorCode &status )
{
icu::Transliterator *trans = icu::Transliterator::createInstance(ID, UTRANS_FORWARD, status);
if (!U_FAILURE(status))
{
// already have it, clean up and return true
std::cout << "already have it " << ID << std::endl;
delete trans;
return true;
}
status = U_ZERO_ERROR;
SWTransMap::iterator swelement;
if ((swelement = sw_tmap->find(ID)) != sw_tmap->end())
{
std::cout << "found element in map" << std::endl;
SWTransData swstuff = (*swelement).second;
UParseError parseError;
//UErrorCode status;
//std::cout << "unregistering " << ID << std::endl;
//icu::Transliterator::unregister(ID);
std::cout << "resource is " << swstuff.resource << std::endl;
// Get the rules
//std::cout << "importing: " << ID << ", " << resource << std::endl;
SWCharString ch(swstuff.resource);
UResourceBundle *bundle = ures_openDirect(SW_RESDATA, ch, &status);
const icu::UnicodeString rules = icu::ures_getUnicodeStringByKey(bundle, RB_RULE, &status);
ures_close(bundle);
//parser.parse(rules, isReverse ? UTRANS_REVERSE : UTRANS_FORWARD,
// parseError, status);
if (U_FAILURE(status)) {
std::cout << "Failed to get rules" << std::endl;
std::cout << "status " << u_errorName(status) << std::endl;
return false;
}
icu::Transliterator *trans = icu::Transliterator::createFromRules(ID, rules, swstuff.dir,
parseError,status);
if (U_FAILURE(status)) {
std::cout << "Failed to create transliterator" << std::endl;
std::cout << "status " << u_errorName(status) << std::endl;
std::cout << "Parse error: line " << parseError.line << std::endl;
std::cout << "Parse error: offset " << parseError.offset << std::endl;
std::cout << "Parse error: preContext " << *parseError.preContext << std::endl;
std::cout << "Parse error: postContext " << *parseError.postContext << std::endl;
std::cout << "rules were" << std::endl;
std::cout << rules << std::endl;
return false;
}
icu::Transliterator::registerInstance(trans);
return true;
//icu::Transliterator *trans = instantiateTrans(ID, swstuff.resource, swstuff.dir, parseError, status);
//return trans;
}
else
{
return false;
}
}
icu::Transliterator * createTrans(const icu::UnicodeString& preID, const icu::UnicodeString& ID, const icu::UnicodeString& postID, UTransDirection dir, UErrorCode &status ) {
// extract id to check from ID xxx;id;xxx
if (checkTrans(ID, status)) {
icu::UnicodeString fullID = preID;
fullID += ID;
fullID += postID;
icu::Transliterator *trans = icu::Transliterator::createInstance(fullID,UTRANS_FORWARD,status);
if (U_FAILURE(status)) {
delete trans;
return NULL;
}
else {
return trans;
}
}
else {
return NULL;
}
}
icu::Transliterator * instantiateTrans(const icu::UnicodeString& ID, const icu::UnicodeString& resource, UTransDirection dir, UParseError &parseError, UErrorCode &status )
{
//TransliterationRuleData *ruleData;
//TransliteratorParser parser;
//entry->entryType is 'direction' from translit_index
//UBool isReverse = (entry->entryType == Entry::RULES_REVERSE);
//entry->stringArg is the 'resource'
//CharString ch(entry->stringArg);
std::cout << "importing: " << ID << ", " << resource << std::endl;
SWCharString ch(resource);
UResourceBundle *bundle = ures_openDirect(SW_RESDATA, ch, &status);
const icu::UnicodeString rules = icu::ures_getUnicodeStringByKey(bundle, RB_RULE, &status);
ures_close(bundle);
//parser.parse(rules, isReverse ? UTRANS_REVERSE : UTRANS_FORWARD,
// parseError, status);
if (U_FAILURE(status)) {
std::cout << "Failed to get rules" << std::endl;
return NULL;
}
//ruleData = parser.orphanData();
//entry->stringArg = parser.idBlock;
//entry->intArg = parser.idSplitPoint;
//entry->compoundFilter = parser.orphanCompoundFilter();
//entry->entryType = Entry::RBT_DATA;
//return new RuleBasedTransliterator(ID, ruleData);
icu::Transliterator *trans = icu::Transliterator::createFromRules(ID, rules, dir, parseError, status);
if (U_FAILURE(status)) {
std::cout << "Failed to create transliterator" << std::endl;
std::cout << "status " << u_errorName(status) << std::endl;
std::cout << "Parse error: line " << parseError.line << std::endl;
std::cout << "Parse error: offset " << parseError.offset << std::endl;
std::cout << "Parse error: preContext " << *parseError.preContext << std::endl;
std::cout << "Parse error: postContext " << *parseError.postContext << std::endl;
std::cout << "rules were" << std::endl;
std::cout << rules << std::endl;
return NULL;
}
icu::Transliterator::registerInstance(trans);
return trans;
}
void initiateSwordTransliterators(UErrorCode &status)
{
static const char translit_swordindex[] = "translit_swordindex";
UResourceBundle *bundle, *transIDs, *colBund;
bundle = ures_openDirect(SW_RESDATA, translit_swordindex, &status);
if (U_FAILURE(status)) {
std::cout << "no resource index to load" << std::endl;
return;
}
transIDs = ures_getByKey(bundle, RB_RULE_BASED_IDS, 0, &status);
UParseError parseError;
int32_t row, maxRows;
if (U_SUCCESS(status)) {
maxRows = ures_getSize(transIDs);
for (row = 0; row < maxRows; row++) {
colBund = ures_getByIndex(transIDs, row, 0, &status);
if (U_SUCCESS(status) && ures_getSize(colBund) == 4) {
icu::UnicodeString id = icu::ures_getUnicodeStringByIndex(colBund, 0, &status);
UChar type = icu::ures_getUnicodeStringByIndex(colBund, 1, &status).charAt(0);
icu::UnicodeString resString = icu::ures_getUnicodeStringByIndex(colBund, 2, &status);
if (U_SUCCESS(status)) {
switch (type) {
case 0x66: // 'f'
case 0x69: // 'i'
// 'file' or 'internal';
// row[2]=resource, row[3]=direction
{
//UBool visible = (type == 0x0066 /*f*/);
UTransDirection dir =
(icu::ures_getUnicodeStringByIndex(colBund, 3, &status).charAt(0) ==
0x0046 /*F*/) ?
UTRANS_FORWARD : UTRANS_REVERSE;
//registry->put(id, resString, dir, visible);
std::cout << "instantiating " << resString << std::endl;
instantiateTrans(id, resString, dir, parseError, status);
}
break;
case 0x61: // 'a'
// 'alias'; row[2]=createInstance argument
//registry->put(id, resString, TRUE);
break;
}
}
else std::cout << "Failed to get resString" << std:: endl;
}
else std::cout << "Failed to get row" << std:: endl;
ures_close(colBund);
}
}
else
{
std::cout << "no resource index to load" << std::endl;
}
ures_close(transIDs);
ures_close(bundle);
}
void initiateSwordTransliteratorsByFactory(UErrorCode &status)
{
static const char translit_swordindexf[] = "translit_swordindex";
UResourceBundle *bundle, *transIDs, *colBund;
bundle = ures_openDirect(SW_RESDATA, translit_swordindexf, &status);
if (U_FAILURE(status)) {
std::cout << "no resource index to load" << std::endl;
std::cout << "status " << u_errorName(status) << std::endl;
return;
}
transIDs = ures_getByKey(bundle, RB_RULE_BASED_IDS, 0, &status);
UParseError parseError;
int32_t row, maxRows;
if (U_SUCCESS(status)) {
maxRows = ures_getSize(transIDs);
for (row = 0; row < maxRows; row++) {
colBund = ures_getByIndex(transIDs, row, 0, &status);
if (U_SUCCESS(status) && ures_getSize(colBund) == 4) {
icu::UnicodeString id = icu::ures_getUnicodeStringByIndex(colBund, 0, &status);
UChar type = icu::ures_getUnicodeStringByIndex(colBund, 1, &status).charAt(0);
icu::UnicodeString resString = icu::ures_getUnicodeStringByIndex(colBund, 2, &status);
std::cout << "ok so far" << std::endl;
if (U_SUCCESS(status)) {
switch (type) {
case 0x66: // 'f'
case 0x69: // 'i'
// 'file' or 'internal';
// row[2]=resource, row[3]=direction
{
//UBool visible = (type == 0x0066 /*f*/);
UTransDirection dir =
(icu::ures_getUnicodeStringByIndex(colBund, 3, &status).charAt(0) ==
0x0046 /*F*/) ?
UTRANS_FORWARD : UTRANS_REVERSE;
//registry->put(id, resString, dir, visible);
std::cout << "instantiating " << resString << " ..." << std::endl;
instantiateTransFactory(id, resString, dir, parseError, status);
std::cout << "done." << std::endl;
}
break;
case 0x61: // 'a'
// 'alias'; row[2]=createInstance argument
//registry->put(id, resString, TRUE);
break;
}
}
else std::cout << "Failed to get resString" << std:: endl;
}
else std::cout << "Failed to get row" << std:: endl;
ures_close(colBund);
}
}
else
{
std::cout << "no resource index to load" << std::endl;
std::cout << "status " << u_errorName(status) << std::endl;
}
ures_close(transIDs);
ures_close(bundle);
}
void initiateSwordTransliteratorsToMap(UErrorCode &status)
{
static const char translit_swordindexf[] = "translit_swordindex";
UResourceBundle *bundle, *transIDs, *colBund;
bundle = ures_openDirect(SW_RESDATA, translit_swordindexf, &status);
if (U_FAILURE(status)) {
std::cout << "no resource index to load" << std::endl;
std::cout << "status " << u_errorName(status) << std::endl;
return;
}
transIDs = ures_getByKey(bundle, RB_RULE_BASED_IDS, 0, &status);
//UParseError parseError;
int32_t row, maxRows;
if (U_SUCCESS(status)) {
maxRows = ures_getSize(transIDs);
for (row = 0; row < maxRows; row++) {
colBund = ures_getByIndex(transIDs, row, 0, &status);
if (U_SUCCESS(status) && ures_getSize(colBund) == 4) {
icu::UnicodeString id = icu::ures_getUnicodeStringByIndex(colBund, 0, &status);
UChar type = icu::ures_getUnicodeStringByIndex(colBund, 1, &status).charAt(0);
icu::UnicodeString resString = icu::ures_getUnicodeStringByIndex(colBund, 2, &status);
std::cout << "ok so far" << std::endl;
if (U_SUCCESS(status)) {
switch (type) {
case 0x66: // 'f'
case 0x69: // 'i'
// 'file' or 'internal';
// row[2]=resource, row[3]=direction
{
//UBool visible = (type == 0x0066 /*f*/);
UTransDirection dir =
(icu::ures_getUnicodeStringByIndex(colBund, 3, &status).charAt(0) ==
0x0046 /*F*/) ?
UTRANS_FORWARD : UTRANS_REVERSE;
//registry->put(id, resString, dir, visible);
std::cout << "instantiating " << resString << " ..." << std::endl;
registerTrans(id, resString, dir, status);
std::cout << "done." << std::endl;
}
break;
case 0x61: // 'a'
// 'alias'; row[2]=createInstance argument
//registry->put(id, resString, TRUE);
break;
}
}
else std::cout << "Failed to get resString" << std:: endl;
}
else std::cout << "Failed to get row" << std:: endl;
ures_close(colBund);
}
}
else
{
std::cout << "no resource index to load" << std::endl;
std::cout << "status " << u_errorName(status) << std::endl;
}
ures_close(transIDs);
ures_close(bundle);
}
int main()
{
sw_tmap = new SWTransMap();
UErrorCode status = U_ZERO_ERROR;
std::cout << "Available before: " << icu::Transliterator::countAvailableIDs() << std::endl;
//initiateSwordTransliterators(status);
//initiateSwordTransliteratorsByFactory(status);
initiateSwordTransliteratorsToMap(status);
int32_t cids = icu::Transliterator::countAvailableIDs();
std::cout << "Available after: " << cids << std::endl;
//for ( int32_t i=0;i<cids;i++) {
// std::cout << i << ": " << icu::Transliterator::getAvailableID(i) << std::endl;
//}
//icu::Transliterator *trans = icu::Transliterator::createInstance("NFD;Latin-Gothic;NFC", UTRANS_FORWARD,status);
icu::Transliterator *trans = createTrans("NFD;", "Latin-Gothic", ";NFC", UTRANS_FORWARD,status);
if (U_FAILURE(status)) {
std::cout << "Failed to get Latin-Gothic" << std::endl;
status = U_ZERO_ERROR;
}
else
{
std::cout << "Got Latin-Gothic :)" << std::endl;
delete trans;
}
std::cout << "Available after gothic: " << icu::Transliterator::countAvailableIDs() << std::endl;
//trans = icu::Transliterator::createInstance("NFD;BGreek-Greek;NFC", UTRANS_FORWARD, status);
trans = createTrans("NFD;", "BGreek-Greek", ";NFC", UTRANS_FORWARD, status);
if (U_FAILURE(status)) {
std::cout << "Failed to get BGreek-Greek" << std::endl;
status = U_ZERO_ERROR;
}
else
{
std::cout << "Got BGreek-Greek :)" << std::endl;
delete trans;
}
std::cout << "Available after greek: " << icu::Transliterator::countAvailableIDs() << std::endl;
delete sw_tmap;
return 1;
}
//gcc -I../source/i18n -I../source/common swtest.cpp -L../source/i18n -licui18n -L../source/common -licuuc
|