These are taken care of
[apertium.git] / lttoolbox-unicode / lttoolbox / lt_comp.cc
blobb93e17d630b7479597df2dcbae5ed1e5c7e829fb
1 /*
2 * Copyright (C) 2005 Universitat d'Alacant / Universidad de Alicante
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17 * 02111-1307, USA.
19 #include <lttoolbox/compiler.h>
20 #include <lttoolbox/lttools_config.h>
22 #include <cstdlib>
23 #include <iostream>
24 #include <libgen.h>
25 #include <string>
27 using namespace std;
29 void endProgram(char *name)
31 if(name != NULL)
33 cout << basename(name) << " v" << PACKAGE_VERSION <<": build a letter transducer from a dictionary" << endl;
34 cout << "USAGE: " << basename(name) << " lr | rl dictionary_file output_file" << endl;
35 cout << "Modes:" << endl;
36 cout << " lr: left-to-right compilation" << endl;
37 cout << " rl: right-to-left compilation" << endl;
39 exit(EXIT_FAILURE);
43 int main(int argc, char *argv[])
45 if(argc != 4)
47 endProgram(argv[0]);
49 string opc = argv[1];
51 Compiler c;
52 if(opc == "lr")
54 c.parse(argv[2], Compiler::COMPILER_RESTRICTION_LR_VAL);
56 else if(opc == "rl")
58 c.parse(argv[2], Compiler::COMPILER_RESTRICTION_RL_VAL);
60 else
62 endProgram(argv[0]);
65 FILE *output = fopen(argv[3], "w");
66 if(!output)
68 cerr << "Error: Cannot open file '" << argv[2] << "'." << endl;
69 exit(EXIT_FAILURE);
71 c.write(output);
72 fclose(output);