/* * This file part of makedict - convertor from any dictionary format to any * http://sdcv.sourceforge.net * Copyright (C) 2005 Evgeniy * * 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 Library 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef PARSER_HPP #define PARSER_HPP #include #include #include #include #include typedef std::map str_map; class makedict_parser { public: makedict_parser() {} virtual ~makedict_parser() {} int run(int argc, char *argv[]); protected: str_map parser_options; virtual int parse(const std::string& url) = 0; void set_parser_info(const std::string& key, const std::string& val); void set_dict_info(const std::string& key, const std::string& val); void begin();//print header void meta_info();//print only part of header: meta info void abbrs_begin(); void abbrs_end(); void abbr(std::vector& keys, const std::string& val); void article(std::vector& keys, const std::string& val); virtual bool is_my_format(const std::string& url) { return false; } //usefull routine for some parsers std::set not_valid_chars; void remove_not_valid(std::string &str); private: str_map parser_info; str_map dict_info; void info(); void end(); }; #endif//!PARSER_HPP