You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bibletime/bibletime/backend/cswordlexiconmoduleinfo.cpp

184 lines
4.6 KiB

/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2006 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/
//BibleTime includes
#include "cswordlexiconmoduleinfo.h"
//#include "frontend/cbtconfig.h"
//TQt includes
#include <tqfile.h>
#include <tqdatastream.h>
#include <tqtextcodec.h>
//Sword includes
#include <swmodule.h>
#include <tdeglobal.h>
#include <kstandarddirs.h>
//STL includes
#include <algorithm>
//Change it once the format changed to make all
//systems rebuild their caches
#define CACHE_FORMAT "2"
CSwordLexiconModuleInfo::CSwordLexiconModuleInfo( sword::SWModule* module, CSwordBackend* const backend ) : CSwordModuleInfo(module, backend) {
m_entryList = 0;
}
CSwordLexiconModuleInfo::CSwordLexiconModuleInfo( const CSwordLexiconModuleInfo& m ) : CSwordModuleInfo(m) {
delete m_entryList;
m_entryList = 0;
if (m.m_entryList) {
m_entryList = new TQStringList();
*m_entryList = *m.m_entryList;//copy list items
}
}
CSwordLexiconModuleInfo::~CSwordLexiconModuleInfo() {
delete m_entryList;
m_entryList = 0;
}
/** Returns the entries of the module. */
TQStringList* const CSwordLexiconModuleInfo::entries() {
if (!module()) {
return 0;
}
sword::SWModule* my_module = module();
bool is_unicode = isUnicode();
if (!m_entryList) {
m_entryList = new TQStringList();
bool read = false;
//Check for buggy modules! They will not be loaded any more.
if ( name() == TQString("ZhEnglish")) {
tqWarning("Module ZhEnglish is buggy and will not be loaded.");
return m_entryList;
}
TQString dir( TDEGlobal::dirs()->saveLocation("data", "bibletime/cache/") );
TQFile f1(
TQString(dir)
.append("/")
.append(name())
);
if ( f1.open( IO_ReadOnly ) ) {
TQDataStream s( &f1 );
TQString mod_ver, prog_ver;
s >> mod_ver;
s >> prog_ver;
if ((mod_ver == config(ModuleVersion)) && (prog_ver == CACHE_FORMAT)) {
s >> *m_entryList;
read = true;
}
f1.close();
// tqWarning("read entries %d",m_entryList->count());
}
// Q_ASSERT(read);
// Q_ASSERT(m_entryList->count());
if (!read || !m_entryList->count()) {
my_module->setSkipConsecutiveLinks(true);
(*my_module) = sword::TOP;
snap(); //snap to top entry
// tqWarning("Reading in module" );
int i = 0;
do {
if ( is_unicode ) {
m_entryList->append(TQString::fromUtf8(my_module->KeyText()));
// tqWarning("Entry: %s", my_module->KeyText() );
}
else { //for latin1 modules use fromLatin1 because of speed
// m_entryList->append(TQString::fromLatin1(my_module->KeyText()));
TQTextCodec *codec = TQTextCodec::codecForName("CP1252");
m_entryList->append(codec->toUnicode(my_module->KeyText()));
}
(*my_module)++;
i++;
}
while ( !my_module->Error() );
// tqWarning("Reading finished. Module has %d entries.", i );
(*my_module) = sword::TOP; //back to the first entry
my_module->setSkipConsecutiveLinks(false);
if (m_entryList->count()) {
m_entryList->first().simplifyWhiteSpace();
if (m_entryList->first().stripWhiteSpace().isEmpty()) {
m_entryList->remove
( m_entryList->begin() );
}
//now sort the list, this is necesssary because Sword doesn't do Unicode ordering
// tqWarning("sorting");
// TQStringList::iterator start(m_entryList->begin());
// TQStringList::iterator end(m_entryList->end());
// std::sort( start, end, myLocaleAwareCompare() ); //stl sort
// m_entryList->sort(); //make sure the module is sorted by utf-8
}
tqWarning("Writing cache file.");
if (m_entryList->count()) {
//create cache
TQString dir = TDEGlobal::dirs()->saveLocation("data", "bibletime/cache/");
//TQFile f2( TQString::fromLatin1("%1/%2").arg(dir).arg( name() ) );
TQFile f2( TQString(dir).append("/").append(name()) );
if (f2.open( IO_WriteOnly )) {
TQDataStream s( &f2 );
s << config(CSwordModuleInfo::ModuleVersion); //store module version
s << TQString(CACHE_FORMAT); //store BT version -- format may change
s << *m_entryList;
f2.close();
}
}
// // tqWarning("Writing finished." );
}
}
return m_entryList;
}
/** Jumps to the closest entry in the module. */
const bool CSwordLexiconModuleInfo::snap() {
if(module()->getRawEntry()) { // Snap to the current entry
return true;
}
return false;
}
/** No descriptions */
CSwordModuleInfo* CSwordLexiconModuleInfo::clone() {
return new CSwordLexiconModuleInfo(*this);
}