| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
|
|
| #include "bgl_babylon.hh" |
| #include "dictionary.hh" |
| #include "globalregex.hh" |
| #include "htmlescape.hh" |
| #include "iconv.hh" |
| #include "ufile.hh" |
|
|
| #include <algorithm> |
| #include <stdio.h> |
| #include <string.h> |
|
|
| #include <QString> |
| #include <QtEndian> |
|
|
| #ifdef _WIN32 |
| #include <io.h> |
| #define DUP _dup |
| #else |
| #include <unistd.h> |
| #define DUP dup |
| #endif |
|
|
| using std::string; |
|
|
| DEF_EX( exUserAbort, "User abort", Dictionary::Ex ) |
| DEF_EX( exIconv, "Iconv library error", Dictionary::Ex ) |
| DEF_EX( exAllocation, "Error memory allocation", Dictionary::Ex ) |
|
|
| Babylon::Babylon( const std::string & filename ): |
| m_filename( filename ), |
| m_sourceLang( 0 ), |
| m_targetLang( 0 ), |
| m_numEntries( 0 ) |
| { |
| file = nullptr; |
| } |
|
|
|
|
| Babylon::~Babylon() |
| { |
| close(); |
| } |
|
|
|
|
| bool Babylon::open() |
| { |
| unsigned char buf[ 6 ]; |
|
|
| FILE * f = gd_fopen( m_filename.c_str(), "rb" ); |
| if ( f == nullptr ) { |
| return false; |
| } |
|
|
| int i = fread( buf, 1, 6, f ); |
|
|
| |
| if ( i < 6 || memcmp( buf, "\x12\x34\x00", 3 ) || buf[ 3 ] == 0 || buf[ 3 ] > 2 ) { |
| fclose( f ); |
| return false; |
| } |
|
|
| |
|
|
| i = buf[ 4 ] << 8 | buf[ 5 ]; |
|
|
| if ( i < 6 ) { |
| fclose( f ); |
| return false; |
| } |
|
|
| if ( ferror( f ) || feof( f ) ) { |
| fclose( f ); |
| return false; |
| } |
|
|
| |
| |
|
|
| fflush( f ); |
|
|
| |
| int fn = DUP( fileno( f ) ); |
| lseek( fn, i, SEEK_SET ); |
| file = gzdopen( fn, "r" ); |
|
|
| fclose( f ); |
|
|
| if ( file == nullptr ) { |
| return false; |
| } |
|
|
| return true; |
| } |
|
|
|
|
| void Babylon::close() |
| { |
| if ( file ) { |
| gzclose( file ); |
| file = nullptr; |
| } |
| } |
|
|
|
|
| bool Babylon::readBlock( bgl_block & block ) |
| { |
| if ( file == nullptr || gzeof( file ) ) { |
| return false; |
| } |
|
|
| block.length = bgl_readnum( 1 ); |
| block.type = block.length & 0xf; |
| if ( block.type == 4 ) { |
| return false; |
| } |
| block.length >>= 4; |
| block.length = block.length < 4 ? bgl_readnum( block.length + 1 ) : block.length - 4; |
| if ( block.length ) { |
| block.data = (char *)malloc( block.length ); |
| if ( !block.data ) { |
| throw exAllocation(); |
| } |
|
|
| unsigned res = gzread( file, block.data, block.length ); |
| if ( block.length != res ) { |
| free( block.data ); |
| block.length = 0; |
| gzclearerr( file ); |
| return false; |
| } |
| } |
|
|
| return true; |
| } |
|
|
|
|
| unsigned int Babylon::bgl_readnum( int bytes ) |
| { |
| unsigned char buf[ 4 ]; |
| unsigned val = 0; |
|
|
| if ( bytes < 1 || bytes > 4 ) { |
| return 0; |
| } |
|
|
| if ( const int res = gzread( file, buf, bytes ); res != bytes ) { |
| gzclearerr( file ); |
| return 4; |
| } |
|
|
| for ( int i = 0; i < bytes; i++ ) { |
| val = ( val << 8 ) | buf[ i ]; |
| } |
| return val; |
| } |
|
|
|
|
| bool Babylon::read( const std::string & source_charset, const std::string & target_charset ) |
| { |
| if ( file == nullptr ) { |
| return false; |
| } |
|
|
| bgl_block block; |
| unsigned int pos; |
| unsigned int type; |
| std::string headword; |
| std::string definition; |
|
|
| bool isUtf8File = false; |
|
|
| m_sourceCharset = source_charset; |
| m_targetCharset = target_charset; |
| m_numEntries = 0; |
| while ( readBlock( block ) ) { |
| headword.clear(); |
| definition.clear(); |
|
|
| switch ( block.type ) { |
| case 0: |
| switch ( block.data[ 0 ] ) { |
| case 8: |
| type = (unsigned int)block.data[ 2 ]; |
| if ( type > 64 ) { |
| type -= 65; |
| } |
| if ( type >= 14 ) { |
| type = 0; |
| } |
| m_defaultCharset = bgl_charset[ type ]; |
| break; |
| default: |
| break; |
| } |
| break; |
| case 1: |
| case 7: |
| case 10: |
| case 11: |
| |
| m_numEntries++; |
| break; |
| case 3: |
| pos = 2; |
| switch ( block.data[ 1 ] ) { |
| case 1: |
| headword.reserve( block.length - 2 ); |
| for ( unsigned int a = 0; a < block.length - 2; a++ ) { |
| headword += block.data[ pos++ ]; |
| } |
| m_title = headword; |
| break; |
| case 2: |
| headword.reserve( block.length - 2 ); |
| for ( unsigned int a = 0; a < block.length - 2; a++ ) { |
| headword += block.data[ pos++ ]; |
| } |
| m_author = headword; |
| break; |
| case 3: |
| headword.reserve( block.length - 2 ); |
| for ( unsigned int a = 0; a < block.length - 2; a++ ) { |
| headword += block.data[ pos++ ]; |
| } |
| m_email = headword; |
| break; |
| case 4: |
| headword.reserve( block.length - 2 ); |
| for ( unsigned int a = 0; a < block.length - 2; a++ ) { |
| headword += block.data[ pos++ ]; |
| } |
| m_copyright = headword; |
| break; |
| case 7: |
| m_sourceLang = bgl_language[ (unsigned char)( block.data[ 5 ] ) ]; |
| |
| break; |
| case 8: |
| m_targetLang = bgl_language[ (unsigned char)( block.data[ 5 ] ) ]; |
| break; |
| case 9: |
| headword.reserve( block.length - 2 ); |
| for ( unsigned int a = 0; a < block.length - 2; a++ ) { |
| if ( block.data[ pos ] == '\r' ) {} |
| else if ( block.data[ pos ] == '\n' ) { |
| headword += "<br>"; |
| } |
| else { |
| headword += block.data[ pos ]; |
| } |
| pos++; |
| } |
| m_description = headword; |
| break; |
| case 11: |
| icon.resize( block.length - 2 ); |
| memcpy( &icon.front(), &( block.data[ 2 ] ), icon.size() ); |
| break; |
| case 17: |
| if ( block.length >= 5 && ( (unsigned char)block.data[ 4 ] & 0x80 ) != 0 ) { |
| isUtf8File = true; |
| } |
| break; |
| case 26: |
| type = (unsigned int)block.data[ 2 ]; |
| if ( type > 64 ) { |
| type -= 65; |
| } |
| if ( type >= 14 ) { |
| type = 0; |
| } |
| if ( m_sourceCharset.empty() ) { |
| m_sourceCharset = bgl_charset[ type ]; |
| } |
| break; |
| case 27: |
| type = (unsigned int)block.data[ 2 ]; |
| if ( type > 64 ) { |
| type -= 65; |
| } |
| if ( type >= 14 ) { |
| type = 0; |
| } |
| if ( m_targetCharset.empty() ) { |
| m_targetCharset = bgl_charset[ type ]; |
| } |
| break; |
| default: |
| break; |
| } |
| break; |
| default:; |
| } |
| if ( block.length ) { |
| free( block.data ); |
| } |
| } |
| gzseek( file, 0, SEEK_SET ); |
|
|
| if ( isUtf8File ) { |
| m_defaultCharset = "UTF-8"; |
| m_sourceCharset = "UTF-8"; |
| m_targetCharset = "UTF-8"; |
| } |
|
|
| convertToUtf8( m_title, BGL_TARGET_CHARSET ); |
| convertToUtf8( m_author, BGL_TARGET_CHARSET ); |
| convertToUtf8( m_email, BGL_TARGET_CHARSET ); |
| convertToUtf8( m_copyright, BGL_TARGET_CHARSET ); |
| convertToUtf8( m_description, BGL_TARGET_CHARSET ); |
| qDebug( "Default charset: %s\nSource Charset: %s\nTargetCharset: %s", |
| m_defaultCharset.c_str(), |
| m_sourceCharset.c_str(), |
| m_targetCharset.c_str() ); |
| return true; |
| } |
|
|
|
|
| bgl_entry Babylon::readEntry( ResourceHandler * resourceHandler ) |
| { |
| bgl_entry entry; |
|
|
| if ( file == nullptr ) { |
| entry.headword = ""; |
| return entry; |
| } |
|
|
| bgl_block block; |
| unsigned int len, pos; |
| unsigned int alts_num; |
| std::string headword, displayedHeadword; |
| std::string definition; |
| std::string temp; |
| std::vector< std::string > alternates; |
| std::string alternate; |
| std::string root; |
| bool defBodyEnded = false; |
| std::string transcription; |
|
|
| while ( readBlock( block ) ) { |
| switch ( block.type ) { |
| case 2: { |
| |
| if ( block.length == 0 ) { |
| break; |
| } |
| pos = 0; |
| len = (unsigned char)block.data[ pos++ ]; |
| if ( pos + len > block.length ) { |
| break; |
| } |
| std::string filename( block.data + pos, len ); |
| pos += len; |
| if ( resourceHandler ) { |
| resourceHandler->handleBabylonResource( filename, block.data + pos, block.length - pos ); |
| } |
| break; |
| } |
| case 1: |
| case 7: |
| case 10: |
| case 11: |
| alternate.clear(); |
| headword.clear(); |
| displayedHeadword.clear(); |
| root.clear(); |
| definition.clear(); |
| temp.clear(); |
| pos = 0; |
|
|
| |
| if ( block.type == 11 ) { |
| pos = 1; |
| if ( pos + 4 > block.length ) { |
| break; |
| } |
| len = qFromBigEndian( *reinterpret_cast< quint32 * >( block.data + pos ) ); |
| pos += 4; |
| } |
| else { |
| if ( pos + 1 > block.length ) { |
| break; |
| } |
| len = (unsigned char)block.data[ pos++ ]; |
| } |
|
|
| if ( pos + len > block.length ) { |
| break; |
| } |
|
|
| headword.reserve( len ); |
| for ( unsigned int a = 0; a < len; a++ ) { |
| headword += block.data[ pos++ ]; |
| } |
|
|
| convertToUtf8( headword, BGL_SOURCE_CHARSET ); |
|
|
| |
| if ( RX::Html::containHtmlEntity( headword ) ) { |
| headword = Html::unescapeUtf8( headword ); |
| } |
|
|
| if ( block.type == 11 ) { |
| |
| if ( pos + 4 >= block.length ) { |
| break; |
| } |
|
|
| alts_num = qFromBigEndian( *reinterpret_cast< quint32 * >( block.data + pos ) ); |
| pos += 4; |
|
|
| for ( unsigned j = 0; j < alts_num; j++ ) { |
| if ( pos + 4 > block.length ) { |
| break; |
| } |
| len = qFromBigEndian( *reinterpret_cast< quint32 * >( block.data + pos ) ); |
| pos += 4; |
|
|
| if ( pos + len >= block.length ) { |
| break; |
| } |
| alternate.reserve( len ); |
| for ( unsigned int a = 0; a < len; a++ ) { |
| alternate += block.data[ pos++ ]; |
| } |
| convertToUtf8( alternate, BGL_SOURCE_CHARSET ); |
|
|
| |
| if ( RX::Html::containHtmlEntity( alternate ) ) { |
| alternate = Html::unescapeUtf8( alternate ); |
| } |
|
|
| alternates.push_back( alternate ); |
| alternate.clear(); |
| } |
| } |
|
|
| |
|
|
| if ( block.type == 11 ) { |
| if ( pos + 4 > block.length ) { |
| break; |
| } |
| len = qFromBigEndian( *reinterpret_cast< quint32 * >( block.data + pos ) ); |
| pos += 4; |
| } |
| else { |
| len = qFromBigEndian( *reinterpret_cast< quint16 * >( block.data + pos ) ); |
| pos += 2; |
| } |
|
|
| if ( pos + len > block.length ) { |
| break; |
| } |
|
|
| definition.reserve( len ); |
|
|
| for ( unsigned int a = 0; a < len; a++ ) { |
| if ( (unsigned char)block.data[ pos ] == 0x0a ) { |
| definition += "<br>"; |
| pos++; |
| } |
| else if ( (unsigned char)block.data[ pos ] == 6 ) { |
| |
| pos += 2; |
| ++a; |
| definition += " "; |
| } |
| else if ( (unsigned char)block.data[ pos ] >= 0x40 && len - a >= 2 |
| && (unsigned char)block.data[ pos + 1 ] == 0x18 ) { |
| |
| |
| unsigned length = (unsigned char)block.data[ pos ] - 0x3F; |
|
|
| if ( length > len - a - 2 ) { |
| qWarning( "Hidden displayed headword is too large %s", headword.c_str() ); |
| pos += len - a; |
| break; |
| } |
|
|
| pos += length + 2; |
| a += length + 1; |
| } |
| else if ( (unsigned char)block.data[ pos ] == 0x18 ) { |
| |
| unsigned length = (unsigned char)block.data[ pos + 1 ]; |
|
|
| if ( length > len - a - 2 ) { |
| qWarning( "Displayed headword's length is too large for headword %s", headword.c_str() ); |
| pos += len - a; |
| break; |
| } |
|
|
| displayedHeadword = std::string( block.data + pos + 2, length ); |
| pos += length + 2; |
| a += length + 1; |
| } |
| else if ( block.data[ pos ] == 0x28 && defBodyEnded && len - a >= 3 ) { |
| |
| unsigned length = qFromBigEndian( *reinterpret_cast< quint16 * >( block.data + pos + 1 ) ); |
|
|
| if ( length > len - a - 3 ) { |
| qWarning( "2-byte sized displayed headword for %s is too large", headword.c_str() ); |
| pos += len - a; |
| break; |
| } |
|
|
| displayedHeadword = std::string( block.data + pos + 3, length ); |
|
|
| pos += length + 3; |
| a += length + 2; |
| } |
| else if ( (unsigned char)block.data[ pos ] == 0x50 && len - a - 1 >= 2 |
| && (unsigned char)block.data[ pos + 1 ] == 0x1B ) { |
| |
| unsigned length = (unsigned char)block.data[ pos + 2 ]; |
|
|
| if ( length > len - a - 3 ) { |
| qWarning( "1-byte-sized transcription's length is too large for headword %s\n", headword.c_str() ); |
| pos += len - a; |
| break; |
| } |
|
|
| if ( m_targetCharset.compare( "UTF-8" ) != 0 ) { |
| try { |
| transcription = Iconv::toUtf8( "Windows-1252", block.data + pos + 3, length ); |
| } |
| catch ( Iconv::Ex & e ) { |
| qWarning( "Bgl: charset conversion error, no trancription processing's done: %s", e.what() ); |
| transcription = std::string( block.data + pos + 3, length ); |
| } |
| } |
| else { |
| transcription = std::string( block.data + pos + 3, length ); |
| } |
|
|
| pos += length + 3; |
| a += length + 2; |
| } |
| else if ( (unsigned char)block.data[ pos ] == 0x60 && len - a - 1 >= 3 |
| && (unsigned char)block.data[ pos + 1 ] == 0x1B ) { |
| |
| unsigned length = qFromBigEndian( *reinterpret_cast< quint16 * >( block.data + pos + 2 ) ); |
|
|
| if ( length > len - a - 4 ) { |
| qWarning( "2-byte-sized transcription's length is too large for headword %s\n", headword.c_str() ); |
| pos += len - a; |
| break; |
| } |
|
|
| if ( m_targetCharset.compare( "UTF-8" ) != 0 ) { |
| try { |
| transcription = Iconv::toUtf8( "Windows-1252", block.data + pos + 4, length ); |
| } |
| catch ( Iconv::Ex & e ) { |
| qWarning( "Bgl: charset conversion error, no transcription processing's done: %s", e.what() ); |
| transcription = std::string( block.data + pos + 4, length ); |
| } |
| } |
| else { |
| transcription = std::string( block.data + pos + 4, length ); |
| } |
|
|
| pos += length + 4; |
| a += length + 3; |
| } |
| else if ( (unsigned char)block.data[ pos ] >= 0x40 && len - a >= 2 |
| && (unsigned char)block.data[ pos + 1 ] == 0x1B ) { |
| |
| |
| unsigned length = (unsigned char)block.data[ pos ] - 0x3F; |
|
|
| if ( length > len - a - 2 ) { |
| qWarning( "Hidden transcription is too large %s", headword.c_str() ); |
| pos += len - a; |
| break; |
| } |
|
|
| pos += length + 2; |
| a += length + 1; |
| } |
| else if ( (unsigned char)block.data[ pos ] == 0x1E ) { |
| |
| definition += m_resourcePrefix; |
| ++pos; |
| } |
| else if ( (unsigned char)block.data[ pos ] == 0x1F ) { |
| |
| ++pos; |
| } |
| else if ( (unsigned char)block.data[ pos ] < 0x20 ) { |
| if ( a <= len - 3 && block.data[ pos ] == 0x14 && block.data[ pos + 1 ] == 0x02 ) { |
| int index = (unsigned char)block.data[ pos + 2 ] - 0x30; |
| if ( index >= 0 && index <= 10 ) { |
| definition = "<span class=\"bglpos\">" + partOfSpeech[ index ] + "</span> " + definition; |
| } |
| pos += 3; |
| a += 2; |
| |
| |
| } |
| else { |
| if ( block.data[ pos ] == 0x14 ) { |
| defBodyEnded = true; |
| pos++; |
| } |
| else if ( (unsigned char)block.data[ pos ] == 0x1A ) { |
| unsigned length = (unsigned char)block.data[ pos + 1 ]; |
| if ( length <= 10 ) { |
| |
| |
| |
| |
| root = std::string( block.data + pos + 2, length ); |
| std::reverse( root.begin(), root.end() ); |
| definition += " (" + root + ")"; |
| pos += length + 2; |
| a += length + 1; |
| } |
| else { |
| pos++; |
| } |
| } |
| else { |
| definition += block.data[ pos++ ]; |
| } |
| } |
| } |
| else { |
| definition += block.data[ pos++ ]; |
| } |
| } |
| convertToUtf8( definition, BGL_TARGET_CHARSET ); |
| if ( !transcription.empty() ) { |
| definition = std::string( "<span class=\"bgltrn\">" ) + transcription + "</span>" + definition; |
| } |
|
|
| if ( displayedHeadword.size() ) { |
| convertToUtf8( displayedHeadword, BGL_TARGET_CHARSET ); |
| } |
|
|
| |
| while ( pos < block.length ) { |
| len = (unsigned char)block.data[ pos++ ]; |
| if ( pos + len > block.length ) { |
| break; |
| } |
| alternate.reserve( len ); |
| for ( unsigned int a = 0; a < len; a++ ) { |
| alternate += block.data[ pos++ ]; |
| } |
| convertToUtf8( alternate, BGL_SOURCE_CHARSET ); |
|
|
| |
| if ( RX::Html::containHtmlEntity( alternate ) ) { |
| alternate = Html::unescapeUtf8( alternate ); |
| } |
|
|
| alternates.push_back( alternate ); |
| alternate.clear(); |
| } |
|
|
| |
| if ( headword != displayedHeadword ) { |
| |
| |
| |
| int totalDigits = 0; |
|
|
| for ( const char * p = headword.c_str(); *p; ++p ) { |
| if ( *p >= '0' && *p <= '9' ) { |
| if ( ++totalDigits > 1 ) { |
| break; |
| } |
| } |
| } |
|
|
| if ( totalDigits > 1 ) { |
| |
|
|
| |
| if ( displayedHeadword.find( '<' ) != string::npos || displayedHeadword.find( '&' ) != string::npos ) { |
| string result = Html::unescapeUtf8( displayedHeadword ); |
|
|
| if ( result != headword ) { |
| alternates.push_back( result ); |
| } |
| } |
| else { |
| alternates.push_back( displayedHeadword ); |
| } |
| } |
| } |
|
|
| entry.headword = headword; |
|
|
| entry.displayedHeadword = displayedHeadword; |
| entry.definition = definition; |
|
|
| entry.alternates = alternates; |
|
|
| if ( block.length ) { |
| free( block.data ); |
| } |
|
|
| |
| |
| if ( entry.headword.empty() ) { |
| entry.headword += ' '; |
| } |
|
|
| return entry; |
|
|
| break; |
| default:; |
| } |
| if ( block.length ) { |
| free( block.data ); |
| } |
| } |
| entry.headword = ""; |
| return entry; |
| } |
|
|
|
|
| void Babylon::convertToUtf8( std::string & s, unsigned int type ) |
| { |
| if ( s.size() < 1 ) { |
| return; |
| } |
| if ( type > 2 ) { |
| return; |
| } |
|
|
| if ( s.compare( 0, 13, "<charset c=U>" ) == 0 ) { |
| return; |
| } |
|
|
| std::string charset; |
| switch ( type ) { |
| case BGL_DEFAULT_CHARSET: |
| if ( !m_defaultCharset.empty() ) { |
| charset = m_defaultCharset; |
| } |
| else { |
| charset = m_sourceCharset; |
| } |
| break; |
| case BGL_SOURCE_CHARSET: |
| if ( !m_sourceCharset.empty() ) { |
| charset = m_sourceCharset; |
| } |
| else { |
| charset = m_defaultCharset; |
| } |
| break; |
| case BGL_TARGET_CHARSET: |
| if ( !m_targetCharset.empty() ) { |
| charset = m_targetCharset; |
| } |
| else { |
| charset = m_defaultCharset; |
| } |
| break; |
| default:; |
| } |
|
|
| if ( charset == "UTF-8" ) { |
| return; |
| } |
|
|
| Iconv conv_( charset.c_str() ); |
|
|
| size_t inbufbytes = s.size(); |
|
|
| char * inbuf = (char *)s.data(); |
| const void * test = inbuf; |
|
|
| const QString convStr = conv_.convert( test, inbufbytes ); |
| s = convStr.toStdString(); |
| } |
|
|