0
|
1 |
/**
|
|
2 |
* Relational pipes
|
|
3 |
* Copyright © 2019 František Kučera (Frantovo.cz, GlobalCode.info)
|
|
4 |
*
|
|
5 |
* This program is free software: you can redistribute it and/or modify
|
|
6 |
* it under the terms of the GNU General Public License as published by
|
|
7 |
* the Free Software Foundation, version 3 of the License.
|
|
8 |
*
|
|
9 |
* This program is distributed in the hope that it will be useful,
|
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12 |
* GNU General Public License for more details.
|
|
13 |
*
|
|
14 |
* You should have received a copy of the GNU General Public License
|
|
15 |
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
16 |
*/
|
|
17 |
#include <cstdlib>
|
|
18 |
#include <fstream>
|
|
19 |
#include <memory>
|
|
20 |
#include <regex>
|
|
21 |
#include <algorithm>
|
|
22 |
#include <unistd.h>
|
|
23 |
|
|
24 |
#include <libxml++-2.6/libxml++/libxml++.h>
|
|
25 |
|
|
26 |
#include <relpipe/writer/RelationalWriter.h>
|
|
27 |
#include <relpipe/writer/RelpipeWriterException.h>
|
|
28 |
#include <relpipe/writer/Factory.h>
|
|
29 |
#include <relpipe/writer/TypeId.h>
|
|
30 |
|
|
31 |
#include <relpipe/cli/CLI.h>
|
|
32 |
|
|
33 |
#include "XMLTableCommand.h"
|
|
34 |
#include "CLIParser.h"
|
|
35 |
#include "Configuration.h"
|
|
36 |
|
|
37 |
using namespace relpipe::cli;
|
|
38 |
using namespace relpipe::writer;
|
|
39 |
using namespace relpipe::in::xmltable;
|
|
40 |
|
|
41 |
int main(int argc, char** argv) {
|
|
42 |
setlocale(LC_ALL, "");
|
|
43 |
CLI::untieStdIO();
|
|
44 |
CLI cli(argc, argv);
|
|
45 |
|
|
46 |
int resultCode = CLI::EXIT_CODE_UNEXPECTED_ERROR;
|
|
47 |
|
|
48 |
try {
|
|
49 |
CLIParser cliParser;
|
|
50 |
Configuration configuration = cliParser.parse(cli.arguments());
|
|
51 |
XMLCommand command;
|
|
52 |
command.process(cin, cout, configuration);
|
|
53 |
resultCode = CLI::EXIT_CODE_SUCCESS;
|
|
54 |
} catch (RelpipeWriterException& e) {
|
|
55 |
fwprintf(stderr, L"Caught Writer exception: %ls\n", e.getMessge().c_str());
|
|
56 |
fwprintf(stderr, L"Debug: Input stream: eof=%ls, lastRead=%d\n", (cin.eof() ? L"true" : L"false"), cin.gcount());
|
|
57 |
resultCode = CLI::EXIT_CODE_DATA_ERROR;
|
|
58 |
} catch (RelpipeCLIException& e) {
|
|
59 |
fwprintf(stderr, L"Caught CLI exception: %ls\n", e.getMessge().c_str());
|
|
60 |
fwprintf(stderr, L"Debug: Input stream: eof=%ls, lastRead=%d\n", (cin.eof() ? L"true" : L"false"), cin.gcount());
|
|
61 |
resultCode = e.getExitCode();
|
|
62 |
} // TODO: catch xmlpp::exception
|
|
63 |
|
|
64 |
return resultCode;
|
|
65 |
}
|