/****************************************************************************** * swlocale.cpp - implementation of Class SWLocale used for retrieval * of locale lookups * * $Id$ * * Copyright 2000 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 #include #include #include #include SWORD_NAMESPACE_START typedef std::map < SWBuf, SWBuf, std::less < SWBuf > >LookupMap; // I have bridge patterns, but this hides swconfig and map from lots o stuff class SWLocale::Private { public: LookupMap lookupTable; }; SWLocale::SWLocale(const char * ifilename) { p = new Private; ConfigEntMap::iterator confEntry; name = 0; description = 0; encoding = 0; bookAbbrevs = 0; BMAX = 0; books = 0; localeSource = new SWConfig(ifilename); confEntry = localeSource->Sections["Meta"].find("Name"); if (confEntry != localeSource->Sections["Meta"].end()) stdstr(&name, (*confEntry).second.c_str()); confEntry = localeSource->Sections["Meta"].find("Description"); if (confEntry != localeSource->Sections["Meta"].end()) stdstr(&description, (*confEntry).second.c_str()); confEntry = localeSource->Sections["Meta"].find("Encoding"); //Either empty (==Latin1) or UTF-8 if (confEntry != localeSource->Sections["Meta"].end()) stdstr(&encoding, (*confEntry).second.c_str()); } SWLocale::~SWLocale() { delete localeSource; if (encoding) delete [] encoding; if (description) delete [] description; if (name) delete [] name; if (bookAbbrevs) delete [] bookAbbrevs; if (BMAX) { for (int i = 0; i < 2; i++) delete [] books[i]; delete [] BMAX; delete [] books; } delete p; } const char *SWLocale::translate(const char *text) { LookupMap::iterator entry; entry = p->lookupTable.find(text); if (entry == p->lookupTable.end()) { ConfigEntMap::iterator confEntry; confEntry = localeSource->Sections["Text"].find(text); if (confEntry == localeSource->Sections["Text"].end()) p->lookupTable.insert(LookupMap::value_type(text, text)); else {//valid value found /* - If Encoding==Latin1 and we have a StringHelper, convert to UTF-8 - If StringHelper present and Encoding is UTF-8, use UTF8 - If StringHelper not present and Latin1, use Latin1 - If StringHelper not present and UTF-8, no idea what to do. Should't happen */ /* if (StringHelper::getSystemStringHelper()) { if (!strcmp(encoding, "UTF-8")) { p->lookupTable.insert(LookupMap::value_type(text, (*confEntry).second.c_str())); } else { //latin1 expected, convert to UTF-8 SWBuf t((*confEntry).second.c_str()); t = StringHelper::getSystemStringHelper()->latin2unicode( t ); p->lookupTable.insert(LookupMap::value_type(text, t.c_str())); } } else { //no stringhelper, just insert. Nothing we can do*/ p->lookupTable.insert(LookupMap::value_type(text, (*confEntry).second.c_str())); // } } entry = p->lookupTable.find(text); } return (*entry).second.c_str(); } const char *SWLocale::getName() { return name; } const char *SWLocale::getDescription() { return description; } const char *SWLocale::getEncoding() { return encoding; } void SWLocale::augment(SWLocale &addFrom) { *localeSource += *addFrom.localeSource; } //#define NONNUMERICLOCALETHING 1 const struct abbrev *SWLocale::getBookAbbrevs() { static const char *nullstr = ""; if (!bookAbbrevs) { ConfigEntMap::iterator it; int i, j; int size = localeSource->Sections["Book Abbrevs"].size(); bookAbbrevs = new struct abbrev[size + 1]; for (i = 0, j = 0, it = localeSource->Sections["Book Abbrevs"].begin(); it != localeSource->Sections["Book Abbrevs"].end(); it++, i++) { #ifdef NONNUMERICLOCALETHING int booknum = VerseKey::getOSISBookNum((*it).second.c_str()); if (booknum != -1) { bookAbbrevs[j].ab = (*it).first.c_str(); bookAbbrevs[j].book = booknum; j++; } #else bookAbbrevs[i].ab = (*it).first.c_str(); bookAbbrevs[i].book = atoi((*it).second.c_str()); j++; #endif //printf("SWLocale::getBookAbbrevs %s:%s %d\n",bookAbbrevs[i].ab, // (*it).second.c_str(), bookAbbrevs[i].book); } bookAbbrevs[j].ab = nullstr; bookAbbrevs[j].book = -1; } return bookAbbrevs; } void SWLocale::getBooks(char **iBMAX, struct sbook ***ibooks) { if (!BMAX) { BMAX = new char [2]; BMAX[0] = VerseKey::builtin_BMAX[0]; BMAX[1] = VerseKey::builtin_BMAX[1]; books = new struct sbook *[2]; books[0] = new struct sbook[BMAX[0]]; books[1] = new struct sbook[BMAX[1]]; for (int i = 0; i < 2; i++) { for (int j = 0; j < BMAX[i]; j++) { books[i][j] = VerseKey::builtin_books[i][j]; books[i][j].name = translate(VerseKey::builtin_books[i][j].name); } } } *iBMAX = BMAX; *ibooks = books; } SWORD_NAMESPACE_END