/*************************************************************************** * Copyright (C) 2007 by Raul Fernandes and Karl Grill * * rgbr@yahoo.com.br * * * * 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; either version 2 of the License, or * * (at your option) any later version. * * * * 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. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef BABYLON_H #define BABYLON_H #include #include #include #include const std::string bgl_language[] = { "English", "French", "Italian", "Spanish", "Dutch", "Portuguese", "German", "Russian", "Japanese", "Traditional Chinese", "Simplified Chinese", "Greek", "Korean", "Turkish", "Hebrew", "Arabic", "Thai", "Other", "Other Simplified Chinese dialects", "Other Traditional Chinese dialects", "Other Eastern-European languages", "Other Western-European languages", "Other Russian languages", "Other Japanese languages", "Other Baltic languages", "Other Greek languages", "Other Korean dialects", "Other Turkish dialects", "Other Thai dialects", "Polish", "Hungarian", "Czech", "Lithuanian", "Latvian", "Catalan", "Croatian", "Serbian", "Slovak", "Albanian", "Urdu", "Slovenian", "Estonian", "Bulgarian", "Danish", "Finnish", "Icelandic", "Norwegian", "Romanian", "Swedish", "Ukrainian", "Belarusian", "Farsi", "Basque", "Macedonian", "Afrikaans", "Faeroese", "Latin", "Esperanto", "Tamazight", "Armenian"}; const std::string bgl_charsetname[] = { "Default" , "Latin", "Eastern European", "Cyrillic", "Japanese", "Traditional Chinese", "Simplified Chinese", "Baltic", "Greek", "Korean", "Turkish", "Hebrew", "Arabic", "Thai" }; const std::string bgl_charset[] = { "ISO-8859-1", /*Default*/ "ISO-8859-1", /*Latin*/ "ISO-8859-2", /*Eastern European*/ "WINDOWS-1251", /*Cyriilic*/ "CP932", /*Japanese*/ "BIG5", /*Traditional Chinese*/ "GB18030", /*Simplified Chinese*/ "CP1257", /*Baltic*/ "CP1253", /*Greek*/ "EUC-KR", /*Korean*/ "ISO-8859-9", /*Turkish*/ "WINDOWS-1255", /*Hebrew*/ "CP1256", /*Arabic*/ "CP874" /*Thai*/ }; const std::string partOfSpeech[] = { "n.", "adj.", "v.", "adv.", "interj.", "pron.", "prep.", "conj.", "suff.", "pref.", "art." }; typedef struct { unsigned type; unsigned length; char * data; } bgl_block; typedef struct { std::string headword; std::string definition; std::string displayedHeadword; std::vector alternates; } bgl_entry; class Babylon { public: Babylon( std::string ); ~Babylon(); // Subclass this to store resources class ResourceHandler { public: virtual void handleBabylonResource( std::string const & filename, char const * data, size_t size )=0; virtual ~ResourceHandler() {} }; /// Sets a prefix string to append to each resource reference in hyperlinks. void setResourcePrefix( std::string const & prefix ) { m_resourcePrefix = prefix; } bool open(); void close(); bool readBlock( bgl_block& ); bool read(std::string &source_charset, std::string &target_charset); bgl_entry readEntry( ResourceHandler * = 0 ); inline std::string title() const { return m_title; }; inline std::string author() const { return m_author; }; inline std::string email() const { return m_email; }; inline std::string description() const { return m_description; }; inline std::string copyright() const { return m_copyright; }; inline std::string sourceLang() const { return m_sourceLang; }; inline std::string targetLang() const { return m_targetLang; }; inline unsigned int numEntries() const { return m_numEntries; }; inline std::string charset() const { return m_defaultCharset; }; inline std::string filename() const { return m_filename; }; std::vector< char > const & getIcon() const { return icon; } enum { ParserVersion = 12 }; private: unsigned int bgl_readnum( int ); void convertToUtf8( std::string &, unsigned int = 0 ); std::string m_filename; gzFile file; std::string m_title; std::string m_author; std::string m_email; std::string m_description; std::string m_copyright; std::string m_sourceLang; std::string m_targetLang; unsigned int m_numEntries; std::string m_defaultCharset; std::string m_sourceCharset; std::string m_targetCharset; std::vector< char > icon; std::string m_resourcePrefix; enum CHARSET { DEFAULT_CHARSET, SOURCE_CHARSET, TARGET_CHARSET }; }; #endif // BABYLON_H