2013-05-08 13:39:47 +00:00
|
|
|
/* This file is (c) 2013 Timon Wong <timon86.wang AT gmail DOT com>
|
2013-04-23 12:07:05 +00:00
|
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
|
|
|
|
#include "mdx.hh"
|
|
|
|
#include "btreeidx.hh"
|
|
|
|
#include "folding.hh"
|
|
|
|
#include "utf8.hh"
|
|
|
|
#include "file.hh"
|
|
|
|
#include "wstring.hh"
|
|
|
|
#include "wstring_qt.hh"
|
|
|
|
#include "chunkedstorage.hh"
|
2013-11-16 18:34:09 +00:00
|
|
|
#include "gddebug.hh"
|
2013-04-23 12:07:05 +00:00
|
|
|
#include "langcoder.hh"
|
|
|
|
#include "fsencoding.hh"
|
|
|
|
#include "audiolink.hh"
|
2013-04-28 08:26:04 +00:00
|
|
|
#include "ex.hh"
|
2013-04-23 12:07:05 +00:00
|
|
|
#include "mdictparser.hh"
|
2013-05-23 14:01:50 +00:00
|
|
|
#include "filetype.hh"
|
2014-04-16 16:18:28 +00:00
|
|
|
#include "ftshelpers.hh"
|
|
|
|
#include "htmlescape.hh"
|
2013-04-23 12:07:05 +00:00
|
|
|
|
2013-06-17 15:30:20 +00:00
|
|
|
#include <algorithm>
|
2013-04-23 12:07:05 +00:00
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <list>
|
|
|
|
#include <ctype.h>
|
2013-04-24 11:35:03 +00:00
|
|
|
#include <stdlib.h>
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <stub_msvc.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
#include <QString>
|
|
|
|
#include <QSemaphore>
|
|
|
|
#include <QThreadPool>
|
|
|
|
#include <QAtomicInt>
|
|
|
|
#include <QTextDocument>
|
|
|
|
#include <QCryptographicHash>
|
|
|
|
|
2018-02-27 16:42:21 +00:00
|
|
|
#include <QRegularExpression>
|
|
|
|
|
2022-04-04 15:50:33 +00:00
|
|
|
#include "tiff.hh"
|
2021-11-27 07:17:33 +00:00
|
|
|
#include "utils.hh"
|
2022-06-05 02:44:40 +00:00
|
|
|
#include "base/globalregex.hh"
|
2022-06-19 12:24:34 +00:00
|
|
|
#include <QtConcurrent>
|
2013-05-30 13:24:21 +00:00
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
namespace Mdx
|
|
|
|
{
|
|
|
|
|
|
|
|
using std::map;
|
|
|
|
using std::multimap;
|
|
|
|
using std::set;
|
|
|
|
using gd::wstring;
|
|
|
|
using gd::wchar;
|
|
|
|
using std::list;
|
|
|
|
using std::pair;
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
using BtreeIndexing::WordArticleLink;
|
|
|
|
using BtreeIndexing::IndexedWords;
|
|
|
|
using BtreeIndexing::IndexInfo;
|
|
|
|
|
2013-04-28 08:26:04 +00:00
|
|
|
using namespace Mdict;
|
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
kSignature = 0x4349444d, // MDIC
|
2018-04-08 14:57:10 +00:00
|
|
|
kCurrentFormatVersion = 11 + BtreeIndexing::FormatVersion + Folding::Version
|
2013-04-23 12:07:05 +00:00
|
|
|
};
|
|
|
|
|
2013-05-22 03:15:47 +00:00
|
|
|
DEF_EX( exCorruptDictionary, "dictionary file was tampered or corrupted", std::exception )
|
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
struct IdxHeader
|
|
|
|
{
|
|
|
|
uint32_t signature; // First comes the signature, MDIC
|
|
|
|
uint32_t formatVersion; // File format version, currently 1.
|
|
|
|
uint32_t parserVersion; // Version of the parser used to parse the MDIC file.
|
|
|
|
// Version of the folding algorithm used when building
|
|
|
|
// index. If it's different from the current one,
|
|
|
|
// the file is to be rebuilt.
|
|
|
|
uint32_t foldingVersion;
|
|
|
|
|
|
|
|
uint32_t articleCount; // Total number of articles, for informative purposes only
|
|
|
|
uint32_t wordCount; // Total number of words, for informative purposes only
|
|
|
|
|
|
|
|
uint32_t isRightToLeft; // Right to left
|
|
|
|
uint32_t chunksOffset; // The offset to chunks' storage
|
|
|
|
|
|
|
|
uint32_t descriptionAddress; // Address of the dictionary description in the chunks' storage
|
|
|
|
uint32_t descriptionSize; // Size of the description in the chunks' storage, 0 = no description
|
|
|
|
|
|
|
|
uint32_t styleSheetAddress;
|
|
|
|
uint32_t styleSheetCount;
|
|
|
|
|
|
|
|
uint32_t indexBtreeMaxElements; // Two fields from IndexInfo
|
|
|
|
uint32_t indexRootOffset;
|
|
|
|
|
|
|
|
uint32_t langFrom; // Source language
|
|
|
|
uint32_t langTo; // Target language
|
|
|
|
|
2013-05-08 13:39:47 +00:00
|
|
|
uint32_t mddIndexInfosOffset; // address of IndexInfos for resource files (.mdd)
|
|
|
|
uint32_t mddIndexInfosCount; // count of IndexInfos for resource files
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
#ifndef _MSC_VER
|
|
|
|
__attribute__( ( packed ) )
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
|
|
|
// A helper method to read resources from .mdd file
|
|
|
|
class IndexedMdd: public BtreeIndexing::BtreeIndex
|
|
|
|
{
|
|
|
|
Mutex & idxMutex;
|
2014-04-16 16:18:28 +00:00
|
|
|
Mutex fileMutex;
|
2013-04-23 12:07:05 +00:00
|
|
|
ChunkedStorage::Reader & chunks;
|
|
|
|
QFile mddFile;
|
|
|
|
bool isFileOpen;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
IndexedMdd( Mutex & idxMutex, ChunkedStorage::Reader & chunks ):
|
|
|
|
idxMutex( idxMutex ),
|
|
|
|
chunks( chunks ),
|
|
|
|
isFileOpen( false )
|
|
|
|
{}
|
|
|
|
|
|
|
|
/// Opens the index. The values are those previously returned by buildIndex().
|
|
|
|
using BtreeIndexing::BtreeIndex::openIndex;
|
|
|
|
|
|
|
|
/// Opens the mdd file itself. Returns true if succeeded, false otherwise.
|
|
|
|
bool open( const char * fileName )
|
|
|
|
{
|
|
|
|
mddFile.setFileName( QString::fromUtf8( fileName ) );
|
|
|
|
isFileOpen = mddFile.open( QFile::ReadOnly );
|
|
|
|
return isFileOpen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns true if the mdd is open, false otherwise.
|
|
|
|
inline bool isOpen() const
|
|
|
|
{
|
|
|
|
return isFileOpen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks whether the given file exists in the mdd file or not.
|
|
|
|
/// Note that this function is thread-safe, since it does not access mdd file.
|
|
|
|
bool hasFile( gd::wstring const & name )
|
|
|
|
{
|
|
|
|
if ( !isFileOpen )
|
|
|
|
return false;
|
|
|
|
vector< WordArticleLink > links = findArticles( name );
|
|
|
|
return !links.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempts loading the given file into the given vector. Returns true on
|
|
|
|
/// success, false otherwise.
|
|
|
|
bool loadFile( gd::wstring const & name, std::vector< char > & result )
|
|
|
|
{
|
|
|
|
if ( !isFileOpen )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
vector< WordArticleLink > links = findArticles( name );
|
|
|
|
if ( links.empty() )
|
|
|
|
return false;
|
|
|
|
|
2013-04-28 08:26:04 +00:00
|
|
|
MdictParser::RecordInfo indexEntry;
|
|
|
|
vector< char > chunk;
|
2022-06-13 14:12:03 +00:00
|
|
|
// Mutex::Lock _( idxMutex );
|
2013-04-28 08:26:04 +00:00
|
|
|
const char * indexEntryPtr = chunks.getBlock( links[ 0 ].articleOffset, chunk );
|
|
|
|
memcpy( &indexEntry, indexEntryPtr, sizeof( indexEntry ) );
|
|
|
|
|
2022-01-09 10:09:53 +00:00
|
|
|
//corrupted file or broken entry.
|
|
|
|
if (indexEntry.decompressedBlockSize < indexEntry.recordOffset + indexEntry.recordSize)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
QByteArray decompressed;
|
2022-06-19 05:26:41 +00:00
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2022-06-19 05:26:41 +00:00
|
|
|
Mutex::Lock _( idxMutex );
|
|
|
|
ScopedMemMap compressed( mddFile, indexEntry.compressedBlockPos, indexEntry.compressedBlockSize );
|
|
|
|
if( !compressed.startAddress() )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !MdictParser::parseCompressedBlock( indexEntry.compressedBlockSize,
|
|
|
|
(char *)compressed.startAddress(),
|
|
|
|
indexEntry.decompressedBlockSize,
|
|
|
|
decompressed ) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
2013-04-28 08:26:04 +00:00
|
|
|
result.resize( indexEntry.recordSize );
|
|
|
|
memcpy( &result.front(), decompressed.constData() + indexEntry.recordOffset, indexEntry.recordSize );
|
2013-04-23 12:07:05 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class MdxDictionary: public BtreeIndexing::BtreeDictionary
|
|
|
|
{
|
|
|
|
Mutex idxMutex;
|
|
|
|
File::Class idx;
|
|
|
|
IdxHeader idxHeader;
|
|
|
|
string dictionaryName;
|
2013-04-28 08:26:04 +00:00
|
|
|
string encoding;
|
2013-04-23 12:07:05 +00:00
|
|
|
ChunkedStorage::Reader chunks;
|
2013-04-28 08:26:04 +00:00
|
|
|
QFile dictFile;
|
2013-05-08 13:39:47 +00:00
|
|
|
vector< sptr< IndexedMdd > > mddResources;
|
2013-04-23 12:07:05 +00:00
|
|
|
MdictParser::StyleSheets styleSheets;
|
|
|
|
|
|
|
|
QAtomicInt deferredInitDone;
|
|
|
|
Mutex deferredInitMutex;
|
|
|
|
bool deferredInitRunnableStarted;
|
|
|
|
|
|
|
|
string initError;
|
2021-11-12 18:26:46 +00:00
|
|
|
QString cacheDirName;
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
MdxDictionary( string const & id, string const & indexFile, vector<string> const & dictionaryFiles );
|
|
|
|
|
|
|
|
~MdxDictionary();
|
|
|
|
|
|
|
|
virtual void deferredInit();
|
|
|
|
|
2022-06-03 13:28:41 +00:00
|
|
|
virtual string getName() noexcept
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
return dictionaryName;
|
|
|
|
}
|
|
|
|
|
2022-06-03 13:28:41 +00:00
|
|
|
virtual map< Dictionary::Property, string > getProperties() noexcept
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
return map< Dictionary::Property, string >();
|
|
|
|
}
|
|
|
|
|
2022-06-03 13:28:41 +00:00
|
|
|
virtual unsigned long getArticleCount() noexcept
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
return idxHeader.articleCount;
|
|
|
|
}
|
|
|
|
|
2022-06-03 13:28:41 +00:00
|
|
|
virtual unsigned long getWordCount() noexcept
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
return idxHeader.wordCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline virtual quint32 getLangFrom() const
|
|
|
|
{
|
|
|
|
return idxHeader.langFrom;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline virtual quint32 getLangTo() const
|
|
|
|
{
|
|
|
|
return idxHeader.langTo;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual sptr< Dictionary::DataRequest > getArticle( wstring const & word,
|
|
|
|
vector< wstring > const & alts,
|
2018-06-13 16:00:42 +00:00
|
|
|
wstring const &,
|
2022-01-09 08:35:07 +00:00
|
|
|
bool ignoreDiacritics ) ;
|
|
|
|
virtual sptr< Dictionary::DataRequest > getResource( string const & name ) ;
|
2013-04-23 12:07:05 +00:00
|
|
|
virtual QString const & getDescription();
|
|
|
|
|
2014-04-16 16:18:28 +00:00
|
|
|
virtual sptr< Dictionary::DataRequest > getSearchResults( QString const & searchString,
|
|
|
|
int searchMode, bool matchCase,
|
|
|
|
int distanceBetweenWords,
|
2017-07-25 15:28:29 +00:00
|
|
|
int maxResults,
|
2018-04-10 14:49:52 +00:00
|
|
|
bool ignoreWordsOrder,
|
|
|
|
bool ignoreDiacritics );
|
2014-04-16 16:18:28 +00:00
|
|
|
virtual void getArticleText( uint32_t articleAddress, QString & headword, QString & text );
|
|
|
|
|
|
|
|
virtual void makeFTSIndex(QAtomicInt & isCancelled, bool firstIteration );
|
|
|
|
|
2014-04-17 14:31:51 +00:00
|
|
|
virtual void setFTSParameters( Config::FullTextSearch const & fts )
|
|
|
|
{
|
2022-05-19 12:42:46 +00:00
|
|
|
if( ensureInitDone().size() )
|
|
|
|
return;
|
2014-04-17 14:31:51 +00:00
|
|
|
|
|
|
|
can_FTS = fts.enabled
|
|
|
|
&& !fts.disabledTypes.contains( "MDICT", Qt::CaseInsensitive )
|
|
|
|
&& ( fts.maxDictionarySize == 0 || getArticleCount() <= fts.maxDictionarySize );
|
|
|
|
}
|
2021-11-12 18:26:46 +00:00
|
|
|
|
|
|
|
QString getCachedFileName( QString name );
|
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
protected:
|
|
|
|
|
2022-06-03 13:28:41 +00:00
|
|
|
virtual void loadIcon() noexcept;
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
virtual string const & ensureInitDone();
|
|
|
|
void doDeferredInit();
|
|
|
|
|
|
|
|
/// Loads an article with the given offset, filling the given strings.
|
2014-04-29 13:55:48 +00:00
|
|
|
void loadArticle( uint32_t offset, string & articleText, bool noFilter = false );
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
/// Process resource links (images, audios, etc)
|
2013-05-22 03:15:47 +00:00
|
|
|
QString & filterResource( QString const & articleId, QString & article );
|
2013-04-23 12:07:05 +00:00
|
|
|
|
2021-11-12 18:26:46 +00:00
|
|
|
void removeDirectory( QString const & directory );
|
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
friend class MdxHeadwordsRequest;
|
|
|
|
friend class MdxArticleRequest;
|
|
|
|
friend class MddResourceRequest;
|
|
|
|
};
|
|
|
|
|
|
|
|
MdxDictionary::MdxDictionary( string const & id, string const & indexFile,
|
|
|
|
vector<string> const & dictionaryFiles ):
|
|
|
|
BtreeDictionary( id, dictionaryFiles ),
|
|
|
|
idx( indexFile, "rb" ),
|
|
|
|
idxHeader( idx.read< IdxHeader >() ),
|
|
|
|
chunks( idx, idxHeader.chunksOffset ),
|
2022-03-20 10:49:58 +00:00
|
|
|
deferredInitRunnableStarted( false )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
// Read the dictionary's name
|
2013-04-28 08:26:04 +00:00
|
|
|
idx.seek( sizeof( idxHeader ) );
|
2013-04-23 12:07:05 +00:00
|
|
|
size_t len = idx.read< uint32_t >();
|
2013-04-28 08:26:04 +00:00
|
|
|
vector< char > buf( len );
|
2019-01-17 14:53:13 +00:00
|
|
|
if( len > 0 )
|
|
|
|
{
|
|
|
|
idx.read( &buf.front(), len );
|
|
|
|
dictionaryName = string( &buf.front(), len );
|
|
|
|
}
|
2013-04-28 08:26:04 +00:00
|
|
|
|
|
|
|
// then read the dictionary's encoding
|
|
|
|
len = idx.read< uint32_t >();
|
2019-01-17 14:53:13 +00:00
|
|
|
if( len > 0 )
|
|
|
|
{
|
|
|
|
buf.resize( len );
|
|
|
|
idx.read( &buf.front(), len );
|
|
|
|
encoding = string( &buf.front(), len );
|
|
|
|
}
|
2013-04-28 08:26:04 +00:00
|
|
|
|
|
|
|
dictFile.setFileName( QString::fromUtf8( dictionaryFiles[ 0 ].c_str() ) );
|
|
|
|
dictFile.open( QIODevice::ReadOnly );
|
2014-04-16 16:18:28 +00:00
|
|
|
|
|
|
|
// Full-text search parameters
|
|
|
|
|
|
|
|
can_FTS = true;
|
|
|
|
|
2014-05-08 12:38:00 +00:00
|
|
|
ftsIdxName = indexFile + "_FTS";
|
2014-04-16 16:18:28 +00:00
|
|
|
|
2014-05-08 12:38:00 +00:00
|
|
|
if( !Dictionary::needToRebuildIndex( dictionaryFiles, ftsIdxName )
|
2014-11-22 14:22:04 +00:00
|
|
|
&& !FtsHelpers::ftsIndexIsOldOrBad( ftsIdxName, this ) )
|
2014-05-08 12:38:00 +00:00
|
|
|
FTS_index_completed.ref();
|
2021-11-12 18:26:46 +00:00
|
|
|
|
|
|
|
cacheDirName = QDir::tempPath() + QDir::separator()
|
|
|
|
+ QString::fromUtf8( getId().c_str() )
|
|
|
|
+ ".cache";
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MdxDictionary::~MdxDictionary()
|
|
|
|
{
|
|
|
|
Mutex::Lock _( deferredInitMutex );
|
|
|
|
|
2013-04-28 08:26:04 +00:00
|
|
|
dictFile.close();
|
2021-11-12 18:26:46 +00:00
|
|
|
|
|
|
|
removeDirectory( cacheDirName );
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//////// MdxDictionary::deferredInit()
|
|
|
|
|
|
|
|
void MdxDictionary::deferredInit()
|
|
|
|
{
|
2021-11-27 07:17:33 +00:00
|
|
|
if ( !Utils::AtomicInt::loadAcquire( deferredInitDone ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
Mutex::Lock _( deferredInitMutex );
|
|
|
|
|
2021-11-27 07:17:33 +00:00
|
|
|
if ( Utils::AtomicInt::loadAcquire( deferredInitDone ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if ( !deferredInitRunnableStarted )
|
|
|
|
{
|
2022-04-09 07:41:33 +00:00
|
|
|
QThreadPool::globalInstance()->start( [ this ]() { this->doDeferredInit(); },-1000 );
|
2013-04-23 12:07:05 +00:00
|
|
|
deferredInitRunnableStarted = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
string const & MdxDictionary::ensureInitDone()
|
|
|
|
{
|
|
|
|
doDeferredInit();
|
|
|
|
return initError;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MdxDictionary::doDeferredInit()
|
|
|
|
{
|
2021-11-27 07:17:33 +00:00
|
|
|
if ( !Utils::AtomicInt::loadAcquire( deferredInitDone ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
Mutex::Lock _( deferredInitMutex );
|
|
|
|
|
2021-11-27 07:17:33 +00:00
|
|
|
if ( Utils::AtomicInt::loadAcquire( deferredInitDone ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Do deferred init
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// Retrieve stylesheets
|
|
|
|
idx.seek( idxHeader.styleSheetAddress );
|
|
|
|
for ( uint32_t i = 0; i < idxHeader.styleSheetCount; i++ )
|
|
|
|
{
|
2013-06-04 16:17:55 +00:00
|
|
|
qint32 key = idx.read< qint32 >();
|
2013-04-23 12:07:05 +00:00
|
|
|
vector< char > buf;
|
2013-06-04 16:17:55 +00:00
|
|
|
quint32 sz;
|
2013-04-23 12:07:05 +00:00
|
|
|
|
2013-06-04 16:17:55 +00:00
|
|
|
sz = idx.read< quint32 >();
|
2013-04-23 12:07:05 +00:00
|
|
|
buf.resize( sz );
|
|
|
|
idx.read( &buf.front(), sz );
|
|
|
|
QString styleBegin = QString::fromUtf8( buf.data() );
|
|
|
|
|
2013-06-04 16:17:55 +00:00
|
|
|
sz = idx.read< quint32 >();
|
2013-04-23 12:07:05 +00:00
|
|
|
buf.resize( sz );
|
|
|
|
idx.read( &buf.front(), sz );
|
|
|
|
QString styleEnd = QString::fromUtf8( buf.data() );
|
|
|
|
|
|
|
|
styleSheets[ key ] = pair<QString, QString>( styleBegin, styleEnd );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize the index
|
|
|
|
openIndex( IndexInfo( idxHeader.indexBtreeMaxElements,
|
|
|
|
idxHeader.indexRootOffset ), idx, idxMutex );
|
|
|
|
|
2013-05-08 13:39:47 +00:00
|
|
|
vector< string > mddFileNames;
|
|
|
|
vector< IndexInfo > mddIndexInfos;
|
|
|
|
idx.seek( idxHeader.mddIndexInfosOffset );
|
|
|
|
for ( uint32_t i = 0; i < idxHeader.mddIndexInfosCount; i++ )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2013-06-04 16:17:55 +00:00
|
|
|
quint32 sz = idx.read< quint32 >();
|
2013-05-08 13:39:47 +00:00
|
|
|
vector< char > buf( sz );
|
|
|
|
idx.read( &buf.front(), sz );
|
|
|
|
uint32_t btreeMaxElements = idx.read<uint32_t>();
|
|
|
|
uint32_t rootOffset = idx.read<uint32_t>();
|
2022-08-09 12:47:10 +00:00
|
|
|
mddFileNames.emplace_back(&buf.front());
|
|
|
|
mddIndexInfos.emplace_back(btreeMaxElements, rootOffset);
|
2013-05-08 13:39:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vector< string > const dictFiles = getDictionaryFilenames();
|
|
|
|
for ( uint32_t i = 1; i < dictFiles.size() && i < mddFileNames.size() + 1; i++ )
|
|
|
|
{
|
2013-06-04 16:17:55 +00:00
|
|
|
QFileInfo fi( QString::fromUtf8( dictFiles[ i ].c_str() ) );
|
|
|
|
QString mddFileName = QString::fromUtf8( mddFileNames[ i - 1 ].c_str() );
|
|
|
|
|
|
|
|
if ( fi.fileName() != mddFileName || !fi.exists() )
|
2013-05-08 13:39:47 +00:00
|
|
|
continue;
|
|
|
|
|
2013-05-11 05:41:26 +00:00
|
|
|
sptr< IndexedMdd > mdd = new IndexedMdd( idxMutex, chunks );
|
2013-05-08 13:39:47 +00:00
|
|
|
mdd->openIndex( mddIndexInfos[ i - 1 ], idx, idxMutex );
|
|
|
|
mdd->open( dictFiles[ i ].c_str() );
|
|
|
|
mddResources.push_back( mdd );
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch ( std::exception & e )
|
|
|
|
{
|
|
|
|
initError = e.what();
|
|
|
|
}
|
|
|
|
catch ( ... )
|
|
|
|
{
|
|
|
|
initError = "Unknown error";
|
|
|
|
}
|
|
|
|
|
|
|
|
deferredInitDone.ref();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-16 16:18:28 +00:00
|
|
|
void MdxDictionary::makeFTSIndex( QAtomicInt & isCancelled, bool firstIteration )
|
|
|
|
{
|
|
|
|
if( !( Dictionary::needToRebuildIndex( getDictionaryFilenames(), ftsIdxName )
|
2014-11-22 14:22:04 +00:00
|
|
|
|| FtsHelpers::ftsIndexIsOldOrBad( ftsIdxName, this ) ) )
|
2014-04-16 16:18:28 +00:00
|
|
|
FTS_index_completed.ref();
|
|
|
|
|
|
|
|
if( haveFTSIndex() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( ensureInitDone().size() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( firstIteration && getArticleCount() > FTS::MaxDictionarySizeForFastSearch )
|
|
|
|
return;
|
|
|
|
|
2022-05-15 04:41:24 +00:00
|
|
|
gdDebug( "MDict: Building the full-text index for dictionary: %s",
|
2014-04-16 16:18:28 +00:00
|
|
|
getName().c_str() );
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
FtsHelpers::makeFTSIndex( this, isCancelled );
|
2014-04-17 14:31:51 +00:00
|
|
|
FTS_index_completed.ref();
|
2014-04-16 16:18:28 +00:00
|
|
|
}
|
|
|
|
catch( std::exception &ex )
|
|
|
|
{
|
2022-05-15 04:41:24 +00:00
|
|
|
gdWarning( "MDict: Failed building full-text search index for \"%s\", reason: %s", getName().c_str(), ex.what() );
|
2014-04-16 16:18:28 +00:00
|
|
|
QFile::remove( FsEncoding::decode( ftsIdxName.c_str() ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MdxDictionary::getArticleText( uint32_t articleAddress, QString & headword, QString & text )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
headword.clear();
|
|
|
|
string articleText;
|
|
|
|
|
2014-04-29 13:55:48 +00:00
|
|
|
loadArticle( articleAddress, articleText, true );
|
2014-04-16 16:18:28 +00:00
|
|
|
text = Html::unescape( QString::fromUtf8( articleText.data(), articleText.size() ) );
|
|
|
|
}
|
|
|
|
catch( std::exception &ex )
|
|
|
|
{
|
2022-05-15 04:41:24 +00:00
|
|
|
gdWarning( "MDict: Failed retrieving article from \"%s\", reason: %s", getName().c_str(), ex.what() );
|
2014-04-16 16:18:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sptr< Dictionary::DataRequest > MdxDictionary::getSearchResults( QString const & searchString,
|
|
|
|
int searchMode, bool matchCase,
|
|
|
|
int distanceBetweenWords,
|
2017-07-25 15:28:29 +00:00
|
|
|
int maxResults,
|
2018-04-10 14:49:52 +00:00
|
|
|
bool ignoreWordsOrder,
|
|
|
|
bool ignoreDiacritics )
|
2014-04-16 16:18:28 +00:00
|
|
|
{
|
2018-04-10 14:49:52 +00:00
|
|
|
return new FtsHelpers::FTSResultsRequest( *this, searchString,searchMode, matchCase, distanceBetweenWords, maxResults, ignoreWordsOrder, ignoreDiacritics );
|
2014-04-16 16:18:28 +00:00
|
|
|
}
|
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
/// MdxDictionary::getArticle
|
|
|
|
|
|
|
|
class MdxArticleRequest: public Dictionary::DataRequest
|
|
|
|
{
|
|
|
|
wstring word;
|
|
|
|
vector< wstring > alts;
|
|
|
|
MdxDictionary & dict;
|
2018-06-13 16:00:42 +00:00
|
|
|
bool ignoreDiacritics;
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
QAtomicInt isCancelled;
|
|
|
|
QSemaphore hasExited;
|
2022-06-19 12:24:34 +00:00
|
|
|
QFuture< void > f;
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
MdxArticleRequest( wstring const & word_,
|
|
|
|
vector< wstring > const & alts_,
|
2018-06-13 16:00:42 +00:00
|
|
|
MdxDictionary & dict_,
|
|
|
|
bool ignoreDiacritics_ ):
|
2013-04-23 12:07:05 +00:00
|
|
|
word( word_ ),
|
|
|
|
alts( alts_ ),
|
2018-06-13 16:00:42 +00:00
|
|
|
dict( dict_ ),
|
|
|
|
ignoreDiacritics( ignoreDiacritics_ )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2022-06-19 12:24:34 +00:00
|
|
|
f = QtConcurrent::run( [ this ]() { this->run(); } );
|
|
|
|
// QThreadPool::globalInstance()->start( );
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void run();
|
|
|
|
|
|
|
|
virtual void cancel()
|
|
|
|
{
|
|
|
|
isCancelled.ref();
|
|
|
|
}
|
|
|
|
|
|
|
|
~MdxArticleRequest()
|
|
|
|
{
|
|
|
|
isCancelled.ref();
|
2022-06-19 12:24:34 +00:00
|
|
|
f.waitForFinished();
|
|
|
|
// hasExited.acquire();
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void MdxArticleRequest::run()
|
|
|
|
{
|
2021-11-27 07:17:33 +00:00
|
|
|
if ( Utils::AtomicInt::loadAcquire( isCancelled ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( dict.ensureInitDone().size() )
|
|
|
|
{
|
|
|
|
setErrorString( QString::fromUtf8( dict.ensureInitDone().c_str() ) );
|
|
|
|
finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-13 16:00:42 +00:00
|
|
|
vector< WordArticleLink > chain = dict.findArticles( word, ignoreDiacritics );
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
for ( unsigned x = 0; x < alts.size(); ++x )
|
|
|
|
{
|
|
|
|
/// Make an additional query for each alt
|
2018-06-13 16:00:42 +00:00
|
|
|
vector< WordArticleLink > altChain = dict.findArticles( alts[ x ], ignoreDiacritics );
|
2013-04-23 12:07:05 +00:00
|
|
|
chain.insert( chain.end(), altChain.begin(), altChain.end() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Some synonims make it that the articles appear several times. We combat this
|
|
|
|
// by only allowing them to appear once.
|
|
|
|
set< uint32_t > articlesIncluded;
|
|
|
|
// Sometimes the articles are physically duplicated. We store hashes of
|
|
|
|
// the bodies to account for this.
|
|
|
|
set< QByteArray > articleBodiesIncluded;
|
|
|
|
string articleText;
|
|
|
|
|
|
|
|
for ( unsigned x = 0; x < chain.size(); ++x )
|
|
|
|
{
|
2021-11-27 07:17:33 +00:00
|
|
|
if ( Utils::AtomicInt::loadAcquire( isCancelled ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( articlesIncluded.find( chain[ x ].articleOffset ) != articlesIncluded.end() )
|
|
|
|
continue; // We already have this article in the body.
|
|
|
|
|
|
|
|
// Grab that article
|
|
|
|
string articleBody;
|
2013-05-22 03:15:47 +00:00
|
|
|
bool hasError = false;
|
|
|
|
QString errorMessage;
|
2013-04-23 12:07:05 +00:00
|
|
|
|
2013-05-22 03:15:47 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
dict.loadArticle( chain[ x ].articleOffset, articleBody );
|
|
|
|
}
|
|
|
|
catch ( exCorruptDictionary & )
|
|
|
|
{
|
2013-05-22 11:56:28 +00:00
|
|
|
errorMessage = tr( "Dictionary file was tampered or corrupted" );
|
2013-05-22 03:15:47 +00:00
|
|
|
hasError = true;
|
|
|
|
}
|
|
|
|
catch ( std::exception & e )
|
|
|
|
{
|
|
|
|
errorMessage = e.what();
|
|
|
|
hasError = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( hasError )
|
|
|
|
{
|
|
|
|
setErrorString( tr( "Failed loading article from %1, reason: %2" )
|
2022-04-11 11:10:40 +00:00
|
|
|
.arg( QString::fromUtf8( dict.getDictionaryFilenames()[ 0 ].c_str() ), errorMessage ) );
|
2013-05-22 03:15:47 +00:00
|
|
|
finish();
|
|
|
|
return;
|
|
|
|
}
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
if ( articlesIncluded.find( chain[ x ].articleOffset ) != articlesIncluded.end() )
|
|
|
|
continue; // We already have this article in the body.
|
|
|
|
|
|
|
|
QCryptographicHash hash( QCryptographicHash::Md5 );
|
|
|
|
hash.addData( articleBody.data(), articleBody.size() );
|
|
|
|
if ( !articleBodiesIncluded.insert( hash.result() ).second )
|
|
|
|
continue; // Already had this body
|
|
|
|
|
|
|
|
// Handle internal redirects
|
|
|
|
if ( strncmp( articleBody.c_str(), "@@@LINK=", 8 ) == 0 )
|
|
|
|
{
|
|
|
|
wstring target = Utf8::decode( articleBody.c_str() + 8 );
|
|
|
|
target = Folding::trimWhitespace( target );
|
|
|
|
// Make an additional query for this redirection
|
|
|
|
vector< WordArticleLink > altChain = dict.findArticles( target );
|
|
|
|
chain.insert( chain.end(), altChain.begin(), altChain.end() );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-04-25 20:41:10 +00:00
|
|
|
// See Issue #271: A mechanism to clean-up invalid HTML cards.
|
2022-04-10 12:07:00 +00:00
|
|
|
string cleaner = "</font>""</font>""</font>""</font>""</font>""</font>"
|
|
|
|
"</font>""</font>""</font>""</font>""</font>""</font>"
|
|
|
|
"</b></b></b></b></b></b></b></b>"
|
|
|
|
"</i></i></i></i></i></i></i></i>"
|
|
|
|
"</a></a></a></a></a></a></a></a>";
|
2013-04-25 20:41:10 +00:00
|
|
|
articleText += "<div class=\"mdict\">" + articleBody + cleaner + "</div>\n";
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
2019-11-19 16:20:44 +00:00
|
|
|
if ( !articleText.empty() )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2022-04-10 12:40:09 +00:00
|
|
|
articleText+="</div></div></div></div></div></div></div></div></div>";
|
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
Mutex::Lock _( dataMutex );
|
|
|
|
data.insert( data.end(), articleText.begin(), articleText.end() );
|
2019-11-19 16:20:44 +00:00
|
|
|
hasAnyData = true;
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
sptr<Dictionary::DataRequest> MdxDictionary::getArticle( const wstring & word, const vector<wstring> & alts,
|
2022-01-09 08:35:07 +00:00
|
|
|
const wstring &, bool ignoreDiacritics )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2018-06-13 16:00:42 +00:00
|
|
|
return new MdxArticleRequest( word, alts, *this, ignoreDiacritics );
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// MdxDictionary::getResource
|
|
|
|
class MddResourceRequest: public Dictionary::DataRequest
|
|
|
|
{
|
|
|
|
MdxDictionary & dict;
|
|
|
|
wstring resourceName;
|
|
|
|
QAtomicInt isCancelled;
|
|
|
|
QSemaphore hasExited;
|
2022-06-19 12:24:34 +00:00
|
|
|
QFuture< void > f;
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
MddResourceRequest( MdxDictionary & dict_,
|
|
|
|
string const & resourceName_ ):
|
|
|
|
dict( dict_ ),
|
|
|
|
resourceName( Utf8::decode( resourceName_ ) )
|
|
|
|
{
|
2022-06-19 12:24:34 +00:00
|
|
|
f = QtConcurrent::run( [ this ]() { this->run(); } );
|
|
|
|
// QThreadPool::globalInstance()->start( [ this ]() { this->run(); } );
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
2022-05-08 08:44:59 +00:00
|
|
|
void run();
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
virtual void cancel()
|
|
|
|
{
|
|
|
|
isCancelled.ref();
|
|
|
|
}
|
|
|
|
|
|
|
|
~MddResourceRequest()
|
|
|
|
{
|
|
|
|
isCancelled.ref();
|
2022-06-19 12:24:34 +00:00
|
|
|
f.waitForFinished();
|
2022-04-09 07:41:33 +00:00
|
|
|
//hasExited.acquire();
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void MddResourceRequest::run()
|
|
|
|
{
|
2021-11-27 07:17:33 +00:00
|
|
|
if ( Utils::AtomicInt::loadAcquire( isCancelled ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( dict.ensureInitDone().size() )
|
|
|
|
{
|
|
|
|
setErrorString( QString::fromUtf8( dict.ensureInitDone().c_str() ) );
|
|
|
|
finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// In order to prevent recursive internal redirection...
|
|
|
|
set< QByteArray > resourceIncluded;
|
|
|
|
|
|
|
|
for ( ;; )
|
|
|
|
{
|
|
|
|
// Some runnables linger enough that they are cancelled before they start
|
2021-11-27 07:17:33 +00:00
|
|
|
if ( Utils::AtomicInt::loadAcquire( isCancelled ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-05-08 13:39:47 +00:00
|
|
|
string u8ResourceName = Utf8::encode( resourceName );
|
|
|
|
QCryptographicHash hash( QCryptographicHash::Md5 );
|
|
|
|
hash.addData( u8ResourceName.data(), u8ResourceName.size() );
|
|
|
|
if ( !resourceIncluded.insert( hash.result() ).second )
|
|
|
|
continue;
|
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
// Convert to the Windows separator
|
|
|
|
std::replace( resourceName.begin(), resourceName.end(), '/', '\\' );
|
2022-01-19 13:01:35 +00:00
|
|
|
if(resourceName[0]=='.'){
|
|
|
|
resourceName.erase(0,1);
|
|
|
|
}
|
2013-04-23 12:07:05 +00:00
|
|
|
if ( resourceName[ 0 ] != '\\' )
|
|
|
|
{
|
|
|
|
resourceName.insert( 0, 1, '\\' );
|
|
|
|
}
|
|
|
|
|
|
|
|
Mutex::Lock _( dataMutex );
|
|
|
|
data.clear();
|
2013-05-08 13:39:47 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// local file takes precedence
|
|
|
|
string fn = FsEncoding::dirname( dict.getDictionaryFilenames()[ 0 ] ) +
|
|
|
|
FsEncoding::separator() + u8ResourceName;
|
|
|
|
File::loadFromFile( fn, data );
|
|
|
|
}
|
|
|
|
catch ( File::exCantOpen & )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2013-05-08 13:39:47 +00:00
|
|
|
for ( vector< sptr< IndexedMdd > >::const_iterator i = dict.mddResources.begin();
|
2022-02-16 13:47:03 +00:00
|
|
|
i != dict.mddResources.end(); ++i )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2013-05-08 13:39:47 +00:00
|
|
|
sptr< IndexedMdd > mddResource = *i;
|
|
|
|
if ( mddResource->loadFile( resourceName, data ) )
|
|
|
|
break;
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
2013-05-08 13:39:47 +00:00
|
|
|
}
|
2013-04-23 12:07:05 +00:00
|
|
|
|
2013-05-08 13:39:47 +00:00
|
|
|
// Check if this file has a redirection
|
|
|
|
// Always encoded in UTF16-LE
|
|
|
|
// L"@@@LINK="
|
|
|
|
static const char pattern[16] =
|
|
|
|
{
|
|
|
|
'@', '\0', '@', '\0', '@', '\0', 'L', '\0', 'I', '\0', 'N', '\0', 'K', '\0', '=', '\0'
|
|
|
|
};
|
2013-04-23 12:07:05 +00:00
|
|
|
|
2013-05-08 13:39:47 +00:00
|
|
|
if ( data.size() > sizeof( pattern ) )
|
|
|
|
{
|
|
|
|
if ( memcmp( &data.front(), pattern, sizeof( pattern ) ) == 0 )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2013-05-08 13:39:47 +00:00
|
|
|
data.push_back( '\0' );
|
|
|
|
data.push_back( '\0' );
|
|
|
|
QString target = MdictParser::toUtf16( "UTF-16LE", &data.front() + sizeof( pattern ),
|
|
|
|
data.size() - sizeof( pattern ) );
|
|
|
|
resourceName = gd::toWString( target.trimmed() );
|
|
|
|
continue;
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-08 13:39:47 +00:00
|
|
|
if ( data.size() > 0 )
|
2013-05-27 06:12:46 +00:00
|
|
|
{
|
2013-05-08 13:39:47 +00:00
|
|
|
hasAnyData = true;
|
2013-04-23 12:07:05 +00:00
|
|
|
|
2013-06-04 16:17:55 +00:00
|
|
|
if ( Filetype::isNameOfCSS( u8ResourceName ) )
|
2013-05-23 14:01:50 +00:00
|
|
|
{
|
|
|
|
QString css = QString::fromUtf8( data.data(), data.size() );
|
2016-04-01 22:50:19 +00:00
|
|
|
|
2022-06-18 10:16:37 +00:00
|
|
|
// QRegularExpression links( "url\\(\\s*(['\"]?)([^'\"]*)(['\"]?)\\s*\\)",
|
|
|
|
// QRegularExpression::CaseInsensitiveOption );
|
2021-11-19 13:47:22 +00:00
|
|
|
|
2016-04-01 22:50:19 +00:00
|
|
|
QString id = QString::fromUtf8( dict.getId().c_str() );
|
|
|
|
int pos = 0;
|
2018-02-27 16:42:21 +00:00
|
|
|
|
|
|
|
QString newCSS;
|
2022-06-18 10:16:37 +00:00
|
|
|
QRegularExpressionMatchIterator it = RX::Mdx::links.globalMatch( css );
|
2018-02-27 16:42:21 +00:00
|
|
|
while ( it.hasNext() )
|
|
|
|
{
|
|
|
|
QRegularExpressionMatch match = it.next();
|
2022-02-27 05:17:37 +00:00
|
|
|
newCSS += css.mid( pos, match.capturedStart() - pos );
|
2018-02-27 16:42:21 +00:00
|
|
|
pos = match.capturedEnd();
|
|
|
|
QString url = match.captured( 2 );
|
2021-11-19 13:47:22 +00:00
|
|
|
|
2016-04-01 22:50:19 +00:00
|
|
|
|
2016-04-14 15:51:00 +00:00
|
|
|
if( url.indexOf( ":/" ) >= 0 || url.indexOf( "data:" ) >= 0)
|
2016-04-01 22:50:19 +00:00
|
|
|
{
|
2016-04-14 15:51:00 +00:00
|
|
|
// External link or base64-encoded data
|
2018-02-27 16:42:21 +00:00
|
|
|
newCSS += match.captured();
|
2021-11-19 13:47:22 +00:00
|
|
|
|
2016-04-01 22:50:19 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-27 16:42:21 +00:00
|
|
|
QString newUrl = QString( "url(" ) + match.captured( 1 ) + "bres://"
|
|
|
|
+ id + "/" + url + match.captured( 3 ) + ")";
|
|
|
|
newCSS += newUrl;
|
2016-04-01 22:50:19 +00:00
|
|
|
}
|
2018-02-27 16:42:21 +00:00
|
|
|
if( pos )
|
|
|
|
{
|
2022-02-27 05:17:37 +00:00
|
|
|
newCSS += css.mid( pos );
|
2018-02-27 16:42:21 +00:00
|
|
|
css = newCSS;
|
|
|
|
newCSS.clear();
|
|
|
|
}
|
2013-05-28 07:00:36 +00:00
|
|
|
dict.isolateCSS( css, ".mdict" );
|
2013-05-23 14:01:50 +00:00
|
|
|
QByteArray bytes = css.toUtf8();
|
|
|
|
data.resize( bytes.size() );
|
|
|
|
memcpy( &data.front(), bytes.constData(), bytes.size() );
|
|
|
|
}
|
2022-04-04 15:50:33 +00:00
|
|
|
if( Filetype::isNameOfTiff( u8ResourceName ) )
|
|
|
|
{
|
|
|
|
// Convert it
|
2022-04-05 13:25:07 +00:00
|
|
|
Mutex::Lock _( dataMutex );
|
|
|
|
GdTiff::tiff2img( data );
|
2022-04-04 15:50:33 +00:00
|
|
|
}
|
2013-05-22 17:42:41 +00:00
|
|
|
}
|
2013-04-23 12:07:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
2022-01-09 08:35:07 +00:00
|
|
|
sptr<Dictionary::DataRequest> MdxDictionary::getResource( const string & name )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
return new MddResourceRequest( *this, name );
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString & MdxDictionary::getDescription()
|
|
|
|
{
|
|
|
|
if ( !dictionaryDescription.isEmpty() )
|
|
|
|
return dictionaryDescription;
|
|
|
|
|
|
|
|
if ( idxHeader.descriptionSize == 0 )
|
|
|
|
{
|
|
|
|
dictionaryDescription = "NONE";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-06-13 14:12:03 +00:00
|
|
|
// Mutex::Lock _( idxMutex );
|
2013-04-23 12:07:05 +00:00
|
|
|
vector< char > chunk;
|
|
|
|
char * dictDescription = chunks.getBlock( idxHeader.descriptionAddress, chunk );
|
|
|
|
string str( dictDescription );
|
|
|
|
dictionaryDescription = QString::fromUtf8( str.c_str(), str.size() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return dictionaryDescription;
|
|
|
|
}
|
|
|
|
|
2022-06-03 13:28:41 +00:00
|
|
|
void MdxDictionary::loadIcon() noexcept
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
if ( dictionaryIconLoaded )
|
|
|
|
return;
|
|
|
|
|
|
|
|
QString fileName =
|
|
|
|
QDir::fromNativeSeparators( FsEncoding::decode( getDictionaryFilenames()[ 0 ].c_str() ) );
|
|
|
|
|
|
|
|
// Remove the extension
|
|
|
|
fileName.chop( 3 );
|
2022-07-31 08:17:57 +00:00
|
|
|
QString text = QString::fromStdString( dictionaryName );
|
2013-04-23 12:07:05 +00:00
|
|
|
|
2022-07-31 08:17:57 +00:00
|
|
|
if( !loadIconFromFile( fileName ) && !loadIconFromText( text ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
// Use default icons
|
|
|
|
dictionaryIcon = dictionaryNativeIcon = QIcon( ":/icons/mdict.png" );
|
|
|
|
}
|
|
|
|
|
|
|
|
dictionaryIconLoaded = true;
|
|
|
|
}
|
|
|
|
|
2014-04-29 13:55:48 +00:00
|
|
|
void MdxDictionary::loadArticle( uint32_t offset, string & articleText, bool noFilter )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
vector< char > chunk;
|
2022-06-13 14:12:03 +00:00
|
|
|
// Mutex::Lock _( idxMutex );
|
2013-04-23 12:07:05 +00:00
|
|
|
|
2013-04-28 08:26:04 +00:00
|
|
|
// Load record info from index
|
|
|
|
MdictParser::RecordInfo recordInfo;
|
|
|
|
char * pRecordInfo = chunks.getBlock( offset, chunk );
|
|
|
|
memcpy( &recordInfo, pRecordInfo, sizeof( recordInfo ) );
|
2013-04-24 11:35:03 +00:00
|
|
|
|
2013-05-22 03:15:47 +00:00
|
|
|
// Make a sub unique id for this article
|
2013-04-25 13:52:23 +00:00
|
|
|
QString articleId;
|
2013-04-28 08:26:04 +00:00
|
|
|
articleId.setNum( ( quint64 )pRecordInfo, 16 );
|
2013-04-24 11:35:03 +00:00
|
|
|
|
2013-05-22 03:15:47 +00:00
|
|
|
QByteArray decompressed;
|
2022-06-18 08:24:30 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
Mutex::Lock _( idxMutex );
|
|
|
|
ScopedMemMap compressed( dictFile, recordInfo.compressedBlockPos, recordInfo.compressedBlockSize );
|
|
|
|
if( !compressed.startAddress() )
|
|
|
|
throw exCorruptDictionary();
|
|
|
|
|
|
|
|
if( !MdictParser::parseCompressedBlock( recordInfo.compressedBlockSize,
|
|
|
|
(char *)compressed.startAddress(),
|
|
|
|
recordInfo.decompressedBlockSize,
|
|
|
|
decompressed ) )
|
|
|
|
throw exCorruptDictionary();
|
|
|
|
}
|
2013-04-28 08:26:04 +00:00
|
|
|
|
2013-05-22 03:15:47 +00:00
|
|
|
QString article = MdictParser::toUtf16( encoding.c_str(),
|
|
|
|
decompressed.constData() + recordInfo.recordOffset,
|
|
|
|
recordInfo.recordSize );
|
2013-04-28 08:26:04 +00:00
|
|
|
|
2014-04-29 13:55:48 +00:00
|
|
|
if( !noFilter )
|
2022-06-11 02:29:21 +00:00
|
|
|
{
|
|
|
|
article = MdictParser::substituteStylesheet( article, styleSheets );
|
2014-04-29 13:55:48 +00:00
|
|
|
article = filterResource( articleId, article );
|
2022-06-11 02:29:21 +00:00
|
|
|
}
|
2016-05-11 15:56:37 +00:00
|
|
|
|
2022-06-21 23:52:02 +00:00
|
|
|
// articleText = article.toStdString();
|
|
|
|
articleText = string( article.toUtf8().constData() );
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
2018-02-27 16:42:21 +00:00
|
|
|
QString & MdxDictionary::filterResource( QString const & articleId, QString & article )
|
|
|
|
{
|
|
|
|
QString id = QString::fromStdString( getId() );
|
|
|
|
QString uniquePrefix = QString::fromLatin1( "g" ) + id + "_" + articleId + "_";
|
|
|
|
|
|
|
|
QString articleNewText;
|
|
|
|
int linkPos = 0;
|
2022-06-05 02:44:40 +00:00
|
|
|
QRegularExpressionMatchIterator it = RX::Mdx::allLinksRe.globalMatch( article );
|
2022-04-16 12:30:46 +00:00
|
|
|
QMap<QString,QString> idMap;
|
2018-02-27 16:42:21 +00:00
|
|
|
while( it.hasNext() )
|
|
|
|
{
|
|
|
|
QRegularExpressionMatch allLinksMatch = it.next();
|
|
|
|
|
|
|
|
if( allLinksMatch.capturedEnd() < linkPos )
|
|
|
|
continue;
|
|
|
|
|
2022-02-27 05:17:37 +00:00
|
|
|
articleNewText += article.mid( linkPos, allLinksMatch.capturedStart() - linkPos );
|
2018-02-27 16:42:21 +00:00
|
|
|
linkPos = allLinksMatch.capturedEnd();
|
|
|
|
|
|
|
|
QString linkTxt = allLinksMatch.captured();
|
|
|
|
QString linkType = allLinksMatch.captured( 1 ).toLower();
|
|
|
|
QString newLink;
|
|
|
|
|
|
|
|
if( !linkType.isEmpty() && linkType.at( 0 ) == 'a' )
|
|
|
|
{
|
2022-06-05 02:44:40 +00:00
|
|
|
QRegularExpressionMatch match = RX::Mdx::anchorIdRe.match( linkTxt );
|
2018-02-27 16:42:21 +00:00
|
|
|
if( match.hasMatch() )
|
|
|
|
{
|
2022-06-05 02:44:40 +00:00
|
|
|
auto wordMatch = RX::Mdx::anchorIdReWord.match( linkTxt );
|
2022-04-16 12:30:46 +00:00
|
|
|
if( wordMatch.hasMatch() )
|
|
|
|
{
|
|
|
|
idMap.insert( wordMatch.captured( 3 ), uniquePrefix + wordMatch.captured( 3 ) );
|
|
|
|
}
|
2018-02-27 16:42:21 +00:00
|
|
|
QString newText = match.captured( 1 ) + match.captured( 2 ) + uniquePrefix;
|
|
|
|
newLink = linkTxt.replace( match.capturedStart(), match.capturedLength(), newText );
|
|
|
|
}
|
|
|
|
else
|
2022-06-05 02:44:40 +00:00
|
|
|
newLink = linkTxt.replace( RX::Mdx::anchorIdRe2, "\\1\"" + uniquePrefix + "\\2\"" );
|
2018-02-27 16:42:21 +00:00
|
|
|
|
2022-06-05 02:44:40 +00:00
|
|
|
newLink = newLink.replace( RX::Mdx::anchorLinkRe, "\\1#" + uniquePrefix );
|
2018-02-27 16:42:21 +00:00
|
|
|
|
2022-06-05 02:44:40 +00:00
|
|
|
match = RX::Mdx::audioRe.match( newLink );
|
2018-02-27 16:42:21 +00:00
|
|
|
if( match.hasMatch() )
|
|
|
|
{
|
|
|
|
// sounds and audio link script
|
|
|
|
QString newTxt = match.captured( 1 ) + match.captured( 2 )
|
|
|
|
+ "gdau://" + id + "/"
|
|
|
|
+ match.captured( 3 ) + match.captured( 2 );
|
|
|
|
newLink = QString::fromUtf8( addAudioLink( "\"gdau://" + getId() + "/" + match.captured( 3 ).toUtf8().data() + "\"", getId() ).c_str() )
|
|
|
|
+ newLink.replace( match.capturedStart(), match.capturedLength(), newTxt );
|
|
|
|
}
|
|
|
|
|
2022-06-05 02:44:40 +00:00
|
|
|
match = RX::Mdx::wordCrossLink.match( newLink );
|
2018-02-27 16:42:21 +00:00
|
|
|
if( match.hasMatch() )
|
|
|
|
{
|
|
|
|
QString newTxt = match.captured( 1 ) + match.captured( 2 )
|
|
|
|
+ "gdlookup://localhost/"
|
|
|
|
+ match.captured( 3 );
|
|
|
|
|
2018-07-04 15:10:22 +00:00
|
|
|
if( match.lastCapturedIndex() >= 4 && !match.captured( 4 ).isEmpty() )
|
2018-02-27 16:42:21 +00:00
|
|
|
newTxt += QString( "?gdanchor=" ) + uniquePrefix + match.captured( 4 ).mid( 1 );
|
|
|
|
|
|
|
|
newTxt += match.captured( 2 );
|
|
|
|
newLink.replace( match.capturedStart(), match.capturedLength(), newTxt );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if( linkType.compare( "link" ) == 0 )
|
|
|
|
{
|
|
|
|
// stylesheets
|
2022-06-05 02:44:40 +00:00
|
|
|
QRegularExpressionMatch match = RX::Mdx::stylesRe.match( linkTxt );
|
2018-02-27 16:42:21 +00:00
|
|
|
if( match.hasMatch() )
|
|
|
|
{
|
|
|
|
QString newText = match.captured( 1 ) + match.captured( 2 )
|
|
|
|
+ "bres://" + id + "/"
|
|
|
|
+ match.captured( 3 ) + match.captured( 2 );
|
|
|
|
newLink = linkTxt.replace( match.capturedStart(), match.capturedLength(), newText );
|
|
|
|
}
|
|
|
|
else
|
2022-06-05 02:44:40 +00:00
|
|
|
newLink = linkTxt.replace( RX::Mdx::stylesRe2,
|
2018-02-27 16:42:21 +00:00
|
|
|
"\\1\"bres://" + id + "/\\2\"" );
|
|
|
|
}
|
|
|
|
else
|
2021-11-12 18:26:46 +00:00
|
|
|
if( linkType.compare( "script" ) == 0 || linkType.compare( "img" ) == 0
|
|
|
|
|| linkType.compare( "source" ) == 0 )
|
2018-02-27 16:42:21 +00:00
|
|
|
{
|
|
|
|
// javascripts and images
|
2022-06-05 02:44:40 +00:00
|
|
|
QRegularExpressionMatch match = RX::Mdx::inlineScriptRe.match( linkTxt );
|
2021-11-12 18:26:46 +00:00
|
|
|
if( linkType.at( 1 ) == 'c' // "script" tag
|
2018-04-08 14:48:46 +00:00
|
|
|
&& match.hasMatch() && match.capturedLength() == linkTxt.length() )
|
2018-02-27 16:42:21 +00:00
|
|
|
{
|
|
|
|
// skip inline scripts
|
|
|
|
articleNewText += linkTxt;
|
2022-06-05 02:44:40 +00:00
|
|
|
match = RX::Mdx::closeScriptTagRe.match( article, linkPos );
|
2018-04-08 14:48:46 +00:00
|
|
|
if( match.hasMatch() )
|
2018-02-27 16:42:21 +00:00
|
|
|
{
|
2022-02-27 05:17:37 +00:00
|
|
|
articleNewText += article.mid( linkPos, match.capturedEnd() - linkPos );
|
2018-04-08 14:48:46 +00:00
|
|
|
linkPos = match.capturedEnd();
|
2018-02-27 16:42:21 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-06-05 02:44:40 +00:00
|
|
|
match = RX::Mdx::srcRe.match( linkTxt );
|
2018-02-27 16:42:21 +00:00
|
|
|
if( match.hasMatch() )
|
|
|
|
{
|
2021-11-12 18:26:46 +00:00
|
|
|
QString newText;
|
|
|
|
if( linkType.at( 1 ) == 'o' ) // "source" tag
|
|
|
|
{
|
|
|
|
QString filename = match.captured( 3 );
|
|
|
|
QString newName = getCachedFileName( filename );
|
|
|
|
newName.replace( '\\', '/' );
|
|
|
|
newText = match.captured( 1 ) + match.captured( 2 )
|
|
|
|
+ "file:///" + newName + match.captured( 2 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
newText = match.captured( 1 ) + match.captured( 2 )
|
|
|
|
+ "bres://" + id + "/"
|
|
|
|
+ match.captured( 3 ) + match.captured( 2 );
|
|
|
|
}
|
2018-02-27 16:42:21 +00:00
|
|
|
newLink = linkTxt.replace( match.capturedStart(), match.capturedLength(), newText );
|
|
|
|
}
|
|
|
|
else
|
2022-06-05 02:44:40 +00:00
|
|
|
newLink = linkTxt.replace( RX::Mdx::srcRe2,
|
2018-02-27 16:42:21 +00:00
|
|
|
"\\1\"bres://" + id + "/\\2\"" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( !newLink.isEmpty() )
|
|
|
|
{
|
|
|
|
articleNewText += newLink;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
articleNewText += allLinksMatch.captured();
|
|
|
|
}
|
|
|
|
if( linkPos )
|
|
|
|
{
|
2022-02-27 05:17:37 +00:00
|
|
|
articleNewText += article.mid( linkPos );
|
2018-02-27 16:42:21 +00:00
|
|
|
article = articleNewText;
|
|
|
|
}
|
|
|
|
|
2022-04-16 12:30:46 +00:00
|
|
|
//some built-in javascript may reference this id. replace "idxxx" with "unique_idxxx"
|
|
|
|
foreach ( const auto& key, idMap.keys() )
|
|
|
|
{
|
|
|
|
const auto& value = idMap[ key ];
|
|
|
|
article.replace("\""+key+"\"","\""+value+"\"");
|
|
|
|
}
|
|
|
|
|
2018-02-27 16:42:21 +00:00
|
|
|
return article;
|
|
|
|
}
|
2015-10-28 19:56:58 +00:00
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
|
2021-11-12 18:26:46 +00:00
|
|
|
QString MdxDictionary::getCachedFileName( QString filename )
|
|
|
|
{
|
|
|
|
QDir dir;
|
|
|
|
QFileInfo info( cacheDirName );
|
|
|
|
if( !info.exists() || !info.isDir() )
|
|
|
|
{
|
|
|
|
if( !dir.mkdir( cacheDirName ) )
|
|
|
|
{
|
|
|
|
gdWarning( "Mdx: can't create cache directory \"%s\"", cacheDirName.toUtf8().data() );
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create subfolders if needed
|
|
|
|
|
|
|
|
QString name = filename;
|
|
|
|
name.replace( '/', '\\' );
|
|
|
|
QStringList list = name.split( '\\' );
|
|
|
|
int subFolders = list.size() - 1;
|
|
|
|
if( subFolders > 0 )
|
|
|
|
{
|
|
|
|
QString dirName = cacheDirName;
|
|
|
|
for( int i = 0; i < subFolders; i++ )
|
|
|
|
{
|
|
|
|
dirName += QDir::separator() + list.at( i );
|
|
|
|
QFileInfo dirInfo( dirName );
|
|
|
|
if( !dirInfo.exists() )
|
|
|
|
{
|
|
|
|
if( !dir.mkdir( dirName ) )
|
|
|
|
{
|
|
|
|
gdWarning( "Mdx: can't create cache directory \"%s\"", dirName.toUtf8().data() );
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString fullName = cacheDirName + QDir::separator() + filename;
|
|
|
|
|
|
|
|
info.setFile( fullName );
|
|
|
|
if( !info.exists() )
|
|
|
|
{
|
|
|
|
QFile f( fullName );
|
|
|
|
if( f.open( QFile::WriteOnly ) )
|
|
|
|
{
|
|
|
|
gd::wstring resourceName = FsEncoding::decode( filename.toStdString() );
|
|
|
|
vector< char > data;
|
|
|
|
|
|
|
|
// In order to prevent recursive internal redirection...
|
|
|
|
set< QByteArray > resourceIncluded;
|
|
|
|
|
|
|
|
for ( ;; )
|
|
|
|
{
|
|
|
|
string u8ResourceName = Utf8::encode( resourceName );
|
|
|
|
QCryptographicHash hash( QCryptographicHash::Md5 );
|
|
|
|
hash.addData( u8ResourceName.data(), u8ResourceName.size() );
|
|
|
|
if ( !resourceIncluded.insert( hash.result() ).second )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Convert to the Windows separator
|
|
|
|
std::replace( resourceName.begin(), resourceName.end(), '/', '\\' );
|
|
|
|
if ( resourceName[ 0 ] != '\\' )
|
|
|
|
{
|
|
|
|
resourceName.insert( 0, 1, '\\' );
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// local file takes precedence
|
|
|
|
string fn = FsEncoding::dirname( getDictionaryFilenames()[ 0 ] ) +
|
|
|
|
FsEncoding::separator() + u8ResourceName;
|
|
|
|
File::loadFromFile( fn, data );
|
|
|
|
}
|
|
|
|
catch ( File::exCantOpen & )
|
|
|
|
{
|
|
|
|
for ( vector< sptr< IndexedMdd > >::const_iterator i = mddResources.begin();
|
2022-02-16 13:47:03 +00:00
|
|
|
i != mddResources.end(); ++i )
|
2021-11-12 18:26:46 +00:00
|
|
|
{
|
|
|
|
sptr< IndexedMdd > mddResource = *i;
|
|
|
|
if ( mddResource->loadFile( resourceName, data ) )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if this file has a redirection
|
|
|
|
// Always encoded in UTF16-LE
|
|
|
|
// L"@@@LINK="
|
|
|
|
static const char pattern[16] =
|
|
|
|
{
|
|
|
|
'@', '\0', '@', '\0', '@', '\0', 'L', '\0', 'I', '\0', 'N', '\0', 'K', '\0', '=', '\0'
|
|
|
|
};
|
|
|
|
|
|
|
|
if ( data.size() > sizeof( pattern ) )
|
|
|
|
{
|
|
|
|
if ( memcmp( &data.front(), pattern, sizeof( pattern ) ) == 0 )
|
|
|
|
{
|
|
|
|
data.push_back( '\0' );
|
|
|
|
data.push_back( '\0' );
|
|
|
|
QString target = MdictParser::toUtf16( "UTF-16LE", &data.front() + sizeof( pattern ),
|
|
|
|
data.size() - sizeof( pattern ) );
|
|
|
|
resourceName = gd::toWString( target.trimmed() );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 n = 0;
|
|
|
|
if( !data.empty() )
|
|
|
|
n = f.write( data.data(), data.size() );
|
|
|
|
|
|
|
|
f.close();
|
|
|
|
|
|
|
|
if( n < (qint64)data.size() )
|
|
|
|
{
|
|
|
|
gdWarning( "Mdx: file \"%s\" writing error: \"%s\"", fullName.toUtf8().data(),
|
|
|
|
f.errorString().toUtf8().data() );
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdWarning( "Mdx: file \"%s\" creating error: \"%s\"", fullName.toUtf8().data(),
|
|
|
|
f.errorString().toUtf8().data() );
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fullName;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MdxDictionary::removeDirectory( QString const & directory )
|
|
|
|
{
|
|
|
|
QDir dir( directory );
|
|
|
|
Q_FOREACH( QFileInfo info, dir.entryInfoList( QDir::NoDotAndDotDot
|
|
|
|
| QDir::AllDirs
|
|
|
|
| QDir::Files,
|
|
|
|
QDir::DirsFirst))
|
|
|
|
{
|
|
|
|
if( info.isDir() )
|
|
|
|
removeDirectory( info.absoluteFilePath() );
|
|
|
|
else
|
|
|
|
QFile::remove( info.absoluteFilePath() );
|
|
|
|
}
|
|
|
|
|
|
|
|
dir.rmdir( directory );
|
|
|
|
}
|
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
static void addEntryToIndex( QString const & word, uint32_t offset, IndexedWords & indexedWords )
|
|
|
|
{
|
|
|
|
// Strip any leading or trailing whitespaces
|
|
|
|
QString wordTrimmed = word.trimmed();
|
|
|
|
indexedWords.addWord( gd::toWString( wordTrimmed ), offset );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void addEntryToIndexSingle( QString const & word, uint32_t offset, IndexedWords & indexedWords )
|
|
|
|
{
|
|
|
|
// Strip any leading or trailing whitespaces
|
|
|
|
QString wordTrimmed = word.trimmed();
|
|
|
|
indexedWords.addSingleWord( gd::toWString( wordTrimmed ), offset );
|
|
|
|
}
|
|
|
|
|
2013-04-28 08:26:04 +00:00
|
|
|
class ArticleHandler: public MdictParser::RecordHandler
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ArticleHandler( ChunkedStorage::Writer & chunks, IndexedWords & indexedWords ) :
|
|
|
|
chunks( chunks ),
|
2013-04-28 08:26:04 +00:00
|
|
|
indexedWords( indexedWords )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-04-28 08:26:04 +00:00
|
|
|
virtual void handleRecord( QString const & headWord, MdictParser::RecordInfo const & recordInfo )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2013-04-28 08:26:04 +00:00
|
|
|
// Save the article's record info
|
2013-04-23 12:07:05 +00:00
|
|
|
uint32_t articleAddress = chunks.startNewBlock();
|
2013-04-28 08:26:04 +00:00
|
|
|
chunks.addToBlock( &recordInfo, sizeof( recordInfo ) );
|
2013-04-23 12:07:05 +00:00
|
|
|
// Add entries to the index
|
|
|
|
addEntryToIndex( headWord, articleAddress, indexedWords );
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ChunkedStorage::Writer & chunks;
|
|
|
|
IndexedWords & indexedWords;
|
|
|
|
};
|
|
|
|
|
2013-04-28 08:26:04 +00:00
|
|
|
class ResourceHandler: public MdictParser::RecordHandler
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ResourceHandler( ChunkedStorage::Writer & chunks, IndexedWords & indexedWords ):
|
|
|
|
chunks( chunks ),
|
|
|
|
indexedWords( indexedWords )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-04-28 08:26:04 +00:00
|
|
|
virtual void handleRecord( QString const & fileName, MdictParser::RecordInfo const & recordInfo )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
uint32_t resourceInfoAddress = chunks.startNewBlock();
|
2013-04-28 08:26:04 +00:00
|
|
|
chunks.addToBlock( &recordInfo, sizeof( recordInfo ) );
|
2013-04-23 12:07:05 +00:00
|
|
|
// Add entries to the index
|
|
|
|
addEntryToIndexSingle( fileName, resourceInfoAddress, indexedWords );
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ChunkedStorage::Writer & chunks;
|
|
|
|
IndexedWords & indexedWords;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-05-08 13:39:47 +00:00
|
|
|
static bool indexIsOldOrBad( vector< string > const & dictFiles, string const & indexFile )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
File::Class idx( indexFile, "rb" );
|
|
|
|
IdxHeader header;
|
|
|
|
|
|
|
|
return idx.readRecords( &header, sizeof( header ), 1 ) != 1 ||
|
|
|
|
header.signature != kSignature ||
|
|
|
|
header.formatVersion != kCurrentFormatVersion ||
|
|
|
|
header.parserVersion != MdictParser::kParserVersion ||
|
|
|
|
header.foldingVersion != Folding::Version ||
|
2013-05-08 13:39:47 +00:00
|
|
|
header.mddIndexInfosCount != dictFiles.size() - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void findResourceFiles( string const & mdx, vector< string > & dictFiles )
|
|
|
|
{
|
|
|
|
string base( mdx, 0, mdx.size() - 4 );
|
|
|
|
// Check if there' is any file end with .mdd, which is the resource file for the dictionary
|
|
|
|
string resFile;
|
|
|
|
if ( File::tryPossibleName( base + ".mdd", resFile ) )
|
|
|
|
{
|
|
|
|
dictFiles.push_back( resFile );
|
|
|
|
// Find complementary .mdd file (volumes), like follows:
|
|
|
|
// demo.mdx <- main dictionary file
|
|
|
|
// demo.mdd <- main resource file ( 1st volume )
|
|
|
|
// demo.1.mdd <- 2nd volume
|
|
|
|
// ...
|
|
|
|
// demo.n.mdd <- nth volume
|
|
|
|
QString baseU8 = QString::fromUtf8( base.c_str() );
|
|
|
|
int vol = 1;
|
|
|
|
while ( File::tryPossibleName( string( QString( "%1.%2.mdd" ).arg( baseU8 ).arg( vol )
|
|
|
|
.toUtf8().constBegin() ), resFile ) )
|
|
|
|
{
|
|
|
|
dictFiles.push_back( resFile );
|
|
|
|
vol++;
|
|
|
|
}
|
|
|
|
}
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
2022-04-13 15:29:36 +00:00
|
|
|
vector< sptr< Dictionary::Class > > makeDictionaries( vector< string > const & fileNames,
|
2013-04-23 12:07:05 +00:00
|
|
|
string const & indicesDir,
|
2022-01-09 08:35:07 +00:00
|
|
|
Dictionary::Initializing & initializing )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
vector< sptr< Dictionary::Class > > dictionaries;
|
|
|
|
|
2022-04-13 15:29:36 +00:00
|
|
|
for ( vector< string >::const_iterator i = fileNames.begin(); i != fileNames.end(); ++i )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
// Skip files with the extensions different to .mdx to speed up the
|
|
|
|
// scanning
|
|
|
|
if ( i->size() < 4 || strcasecmp( i->c_str() + ( i->size() - 4 ), ".mdx" ) != 0 )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
vector< string > dictFiles( 1, *i );
|
2013-05-08 13:39:47 +00:00
|
|
|
findResourceFiles( *i, dictFiles );
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
string dictId = Dictionary::makeDictionaryId( dictFiles );
|
|
|
|
string indexFile = indicesDir + dictId;
|
|
|
|
|
|
|
|
if ( Dictionary::needToRebuildIndex( dictFiles, indexFile ) ||
|
2013-05-08 13:39:47 +00:00
|
|
|
indexIsOldOrBad( dictFiles, indexFile ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
|
|
|
// Building the index
|
2013-09-20 14:25:44 +00:00
|
|
|
|
2013-11-16 18:34:09 +00:00
|
|
|
gdDebug( "MDict: Building the index for dictionary: %s\n", i->c_str() );
|
2013-09-20 14:25:44 +00:00
|
|
|
|
2013-05-11 05:41:26 +00:00
|
|
|
MdictParser parser;
|
2013-05-08 13:39:47 +00:00
|
|
|
list< sptr< MdictParser > > mddParsers;
|
2013-04-23 12:07:05 +00:00
|
|
|
|
2013-05-11 05:41:26 +00:00
|
|
|
if ( !parser.open( i->c_str() ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
continue;
|
|
|
|
|
2022-06-06 12:16:13 +00:00
|
|
|
string title = parser.title().toStdString();
|
2013-05-08 13:39:47 +00:00
|
|
|
initializing.indexingDictionary( title );
|
|
|
|
|
|
|
|
for ( vector< string >::const_iterator mddIter = dictFiles.begin() + 1;
|
2022-02-16 13:47:03 +00:00
|
|
|
mddIter != dictFiles.end(); ++mddIter )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2013-05-08 13:39:47 +00:00
|
|
|
if ( File::exists( *mddIter ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2013-05-11 05:41:26 +00:00
|
|
|
sptr< MdictParser > mddParser = new MdictParser();
|
|
|
|
if ( !mddParser->open( mddIter->c_str() ) )
|
2013-05-08 13:39:47 +00:00
|
|
|
{
|
2017-06-22 15:02:04 +00:00
|
|
|
gdWarning( "Broken mdd (resource) file: %s\n", mddIter->c_str() );
|
2013-05-08 13:39:47 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
mddParsers.push_back( mddParser );
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
File::Class idx( indexFile, "wb" );
|
|
|
|
IdxHeader idxHeader;
|
|
|
|
memset( &idxHeader, 0, sizeof( idxHeader ) );
|
|
|
|
// We write a dummy header first. At the end of the process the header
|
|
|
|
// will be rewritten with the right values.
|
|
|
|
idx.write( idxHeader );
|
2013-04-28 08:26:04 +00:00
|
|
|
|
|
|
|
// Write the title first
|
2013-04-23 12:07:05 +00:00
|
|
|
idx.write< uint32_t >( title.size() );
|
|
|
|
idx.write( title.data(), title.size() );
|
|
|
|
|
2013-04-28 08:26:04 +00:00
|
|
|
// then the encoding
|
|
|
|
{
|
2022-06-06 12:16:13 +00:00
|
|
|
string encoding = parser.encoding().toStdString();
|
2013-04-28 08:26:04 +00:00
|
|
|
idx.write< uint32_t >( encoding.size() );
|
|
|
|
idx.write( encoding.data(), encoding.size() );
|
|
|
|
}
|
|
|
|
|
2013-04-23 12:07:05 +00:00
|
|
|
// This is our index data that we accumulate during the loading process.
|
|
|
|
// For each new word encountered, we emit the article's body to the file
|
|
|
|
// immediately, inserting the word itself and its offset in this map.
|
|
|
|
// This map maps folded words to the original words and the corresponding
|
|
|
|
// articles' offsets.
|
|
|
|
IndexedWords indexedWords;
|
|
|
|
ChunkedStorage::Writer chunks( idx );
|
|
|
|
|
|
|
|
idxHeader.isRightToLeft = parser.isRightToLeft();
|
|
|
|
|
|
|
|
// Save dictionary description if there's one
|
|
|
|
{
|
2022-06-06 12:16:13 +00:00
|
|
|
string description = parser.description().toStdString();
|
2013-04-23 12:07:05 +00:00
|
|
|
idxHeader.descriptionAddress = chunks.startNewBlock();
|
|
|
|
chunks.addToBlock( description.c_str(), description.size() + 1 );
|
2013-04-28 08:26:04 +00:00
|
|
|
idxHeader.descriptionSize = description.size() + 1;
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ArticleHandler articleHandler( chunks, indexedWords );
|
|
|
|
MdictParser::HeadWordIndex headWordIndex;
|
|
|
|
|
|
|
|
// enumerating word and its definition
|
2022-08-07 03:03:46 +00:00
|
|
|
while ( parser.readNextHeadWordIndex( headWordIndex ) )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2022-08-07 03:03:46 +00:00
|
|
|
parser.readRecordBlock( headWordIndex, articleHandler );
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// enumerating resources if there's any
|
2013-05-08 13:39:47 +00:00
|
|
|
vector< sptr< IndexedWords > > mddIndices;
|
|
|
|
vector< string > mddFileNames;
|
|
|
|
while ( !mddParsers.empty() )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2013-05-08 13:39:47 +00:00
|
|
|
sptr< MdictParser > mddParser = mddParsers.front();
|
2013-05-11 05:41:26 +00:00
|
|
|
sptr< IndexedWords > mddIndexedWords = new IndexedWords();
|
2018-04-08 14:57:10 +00:00
|
|
|
MdictParser::HeadWordIndex resourcesIndex;
|
2013-04-23 12:07:05 +00:00
|
|
|
ResourceHandler resourceHandler( chunks, *mddIndexedWords );
|
|
|
|
|
|
|
|
while ( mddParser->readNextHeadWordIndex( headWordIndex ) )
|
|
|
|
{
|
2018-04-08 14:57:10 +00:00
|
|
|
resourcesIndex.insert( resourcesIndex.end(), headWordIndex.begin(), headWordIndex.end() );
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
2018-04-08 14:57:10 +00:00
|
|
|
mddParser->readRecordBlock( resourcesIndex, resourceHandler );
|
2013-05-08 13:39:47 +00:00
|
|
|
|
|
|
|
mddIndices.push_back( mddIndexedWords );
|
2013-06-04 16:17:55 +00:00
|
|
|
// Save filename for .mdd files only
|
|
|
|
QFileInfo fi( mddParser->filename() );
|
2022-06-06 12:16:13 +00:00
|
|
|
mddFileNames.push_back( fi.fileName().toStdString() );
|
2013-05-08 13:39:47 +00:00
|
|
|
mddParsers.pop_front();
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Finish with the chunks
|
|
|
|
idxHeader.chunksOffset = chunks.finish();
|
|
|
|
|
2014-05-10 21:02:31 +00:00
|
|
|
GD_DPRINTF( "Writing index...\n" );
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
// Good. Now build the index
|
|
|
|
IndexInfo idxInfo = BtreeIndexing::buildIndex( indexedWords, idx );
|
|
|
|
idxHeader.indexBtreeMaxElements = idxInfo.btreeMaxElements;
|
|
|
|
idxHeader.indexRootOffset = idxInfo.rootOffset;
|
|
|
|
|
|
|
|
// Save dictionary stylesheets
|
|
|
|
{
|
|
|
|
MdictParser::StyleSheets const & styleSheets = parser.styleSheets();
|
|
|
|
idxHeader.styleSheetAddress = idx.tell();
|
|
|
|
idxHeader.styleSheetCount = styleSheets.size();
|
|
|
|
|
|
|
|
for ( MdictParser::StyleSheets::const_iterator iter = styleSheets.begin();
|
2022-02-16 13:47:03 +00:00
|
|
|
iter != styleSheets.end(); ++iter )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2022-06-06 12:16:13 +00:00
|
|
|
string styleBegin(iter->second.first.toStdString());
|
|
|
|
string styleEnd( iter->second.second.toStdString() );
|
2013-04-23 12:07:05 +00:00
|
|
|
|
|
|
|
// key
|
2013-06-04 16:17:55 +00:00
|
|
|
idx.write<qint32>( iter->first );
|
2013-04-23 12:07:05 +00:00
|
|
|
// styleBegin
|
2013-06-04 16:17:55 +00:00
|
|
|
idx.write<quint32>( ( quint32 )styleBegin.size() + 1 );
|
2013-04-23 12:07:05 +00:00
|
|
|
idx.write( styleBegin.c_str(), styleBegin.size() + 1 );
|
|
|
|
// styleEnd
|
2013-06-04 16:17:55 +00:00
|
|
|
idx.write<quint32>( ( quint32 )styleEnd.size() + 1 );
|
2013-04-23 12:07:05 +00:00
|
|
|
idx.write( styleEnd.c_str(), styleEnd.size() + 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// read languages
|
|
|
|
QPair<quint32, quint32> langs = LangCoder::findIdsForFilename( QString::fromStdString( *i ) );
|
|
|
|
|
|
|
|
// if no languages found, try dictionary's name
|
|
|
|
if ( langs.first == 0 || langs.second == 0 )
|
|
|
|
{
|
|
|
|
langs = LangCoder::findIdsForFilename( parser.title() );
|
|
|
|
}
|
|
|
|
|
|
|
|
idxHeader.langFrom = langs.first;
|
|
|
|
idxHeader.langTo = langs.second;
|
|
|
|
|
2013-05-08 13:39:47 +00:00
|
|
|
// Build index info for each mdd file
|
|
|
|
vector< IndexInfo > mddIndexInfos;
|
|
|
|
for ( vector< sptr< IndexedWords > >::const_iterator mddIndexIter = mddIndices.begin();
|
2022-02-16 13:47:03 +00:00
|
|
|
mddIndexIter != mddIndices.end(); ++mddIndexIter )
|
2013-04-23 12:07:05 +00:00
|
|
|
{
|
2013-05-08 13:39:47 +00:00
|
|
|
IndexInfo resourceIdxInfo = BtreeIndexing::buildIndex( *( *mddIndexIter ), idx );
|
|
|
|
mddIndexInfos.push_back( resourceIdxInfo );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save address of IndexInfos for resource files
|
|
|
|
idxHeader.mddIndexInfosOffset = idx.tell();
|
|
|
|
idxHeader.mddIndexInfosCount = mddIndexInfos.size();
|
|
|
|
for ( uint32_t mi = 0; mi < mddIndexInfos.size(); mi++ )
|
|
|
|
{
|
|
|
|
const string & mddfile = mddFileNames[ mi ];
|
|
|
|
|
2013-06-04 16:17:55 +00:00
|
|
|
idx.write<quint32>( ( quint32 )mddfile.size() + 1 );
|
2013-05-08 13:39:47 +00:00
|
|
|
idx.write( mddfile.c_str(), mddfile.size() + 1 );
|
|
|
|
idx.write<uint32_t>( mddIndexInfos[ mi ].btreeMaxElements );
|
|
|
|
idx.write<uint32_t>( mddIndexInfos[ mi ].rootOffset );
|
2013-04-23 12:07:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// That concludes it. Update the header.
|
|
|
|
idxHeader.signature = kSignature;
|
|
|
|
idxHeader.formatVersion = kCurrentFormatVersion;
|
|
|
|
idxHeader.parserVersion = MdictParser::kParserVersion;
|
|
|
|
idxHeader.foldingVersion = Folding::Version;
|
2013-04-28 08:26:04 +00:00
|
|
|
idxHeader.articleCount = parser.wordCount();
|
2013-04-23 12:07:05 +00:00
|
|
|
idxHeader.wordCount = parser.wordCount();
|
|
|
|
|
|
|
|
idx.rewind();
|
|
|
|
idx.write( &idxHeader, sizeof( idxHeader ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
dictionaries.push_back( new MdxDictionary( dictId, indexFile, dictFiles ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return dictionaries;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|