/***************************************************************************** * Eliot * Copyright (C) 2005-2008 Antoine Fraboulet & Olivier Teulière * Authors: Antoine Fraboulet * Olivier Teulière * * 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 St, Fifth Floor, Boston, MA 02110-1301 USA *****************************************************************************/ #include "config.h" #include #include #include // For memset #if ENABLE_NLS # include # define _(String) gettext(String) #else # define _(String) String #endif #ifdef WIN32 # include #endif #include "dic.h" #include "dic_exception.h" #include "encoding.h" void usage(const char *iBinaryName) { cerr << _("usage: %s dictionary") << iBinaryName << endl; cerr << _(" dictionary: path to eliot dawg dictionary") << endl; } int main(int argc, char* argv[]) { #if HAVE_SETLOCALE // Set locale via LC_ALL setlocale(LC_ALL, ""); #endif #if ENABLE_NLS // Set the message domain #ifdef WIN32 // Get the absolute path, as returned by GetFullPathName() char baseDir[MAX_PATH]; GetFullPathName(argv[0], MAX_PATH, baseDir, NULL); char *pos = strrchr(baseDir, L'\\'); if (pos) *pos = '\0'; const string localeDir = baseDir + string("\\locale"); #else static const string localeDir = LOCALEDIR; #endif bindtextdomain(PACKAGE, localeDir.c_str()); textdomain(PACKAGE); #endif if (argc != 2) { usage(argv[0]); return 0; } try { Dictionary dic(argv[1]); string line; cout << "**************************************************************" << endl; cout << "**************************************************************" << endl; cout << _("Enter a regular expression:") << endl; while (getline(cin, line)) { if (line == "") break; /* Automaton */ vector wordList; try { dic.searchRegExp(wfl(line), wordList, 1, 15); cout << _("result:") << endl; vector::const_iterator it; for (it = wordList.begin(); it != wordList.end(); it++) { cout << lfw(*it) << endl; } } catch (InvalidRegexpException &e) { cout << _("Invalid regular expression: ") << e.what() << endl; } cout << "**************************************************************" << endl; cout << "**************************************************************" << endl; cout << _("Enter a regular expression:") << endl; } return 0; } catch (std::exception &e) { std::cerr << e.what() << endl; return 1; } catch (...) { std::cerr << "Unknown exception taken" << endl; return 1; } }