FreeLing
4.0
|
00001 00002 // 00003 // FreeLing - Open Source Language Analyzers 00004 // 00005 // Copyright (C) 2014 TALP Research Center 00006 // Universitat Politecnica de Catalunya 00007 // 00008 // This library is free software; you can redistribute it and/or 00009 // modify it under the terms of the GNU Affero General Public 00010 // License as published by the Free Software Foundation; either 00011 // version 3 of the License, or (at your option) any later version. 00012 // 00013 // This library is distributed in the hope that it will be useful, 00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 // Affero General Public License for more details. 00017 // 00018 // You should have received a copy of the GNU Affero General Public 00019 // License along with this library; if not, write to the Free Software 00020 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00021 // 00022 // contact: Lluis Padro (padro@lsi.upc.es) 00023 // TALP Research Center 00024 // despatx C6.212 - Campus Nord UPC 00025 // 08034 Barcelona. SPAIN 00026 // 00028 00029 #ifndef _SEMDB 00030 #define _SEMDB 00031 00032 #include <string> 00033 #include <list> 00034 00035 #include "freeling/windll.h" 00036 #include "freeling/morfo/database.h" 00037 #include "freeling/morfo/language.h" 00038 00039 namespace freeling { 00040 00044 00045 class WINDLL sense_info { 00046 public: 00048 std::wstring sense; 00050 std::list<std::wstring> parents; 00052 std::wstring semfile; 00054 std::list<std::wstring> words; 00056 std::list<std::wstring> tonto; 00058 std::wstring sumo; 00060 std::wstring cyc; 00061 00063 sense_info(const std::wstring &,const std::wstring &); 00065 std::wstring get_parents_string() const; 00066 }; 00067 00071 00072 class posmaprule { 00073 public: 00075 std::wstring pos; 00077 std::wstring wnpos; 00079 std::wstring lemma; 00080 }; 00081 00082 00086 00087 class WINDLL semanticDB { 00088 private: 00090 std::list<posmaprule> posmap; 00092 database *form_dict; 00093 00095 database *sensesdb; 00096 database *wndb; 00097 00098 public: 00100 semanticDB(const std::wstring &); 00102 ~semanticDB(); 00103 00105 void get_WN_keys(const std::wstring &, const std::wstring &, const std::wstring &, std::list<std::pair<std::wstring,std::wstring> > &) const; 00107 std::list<std::wstring> get_sense_words(const std::wstring &) const; 00109 std::list<std::wstring> get_word_senses(const std::wstring &, const std::wstring &, const std::wstring &) const; 00111 sense_info get_sense_info(const std::wstring &) const; 00112 }; 00113 00114 } // namespace 00115 00116 #endif 00117