-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstoapMain.cpp
106 lines (89 loc) · 3.2 KB
/
stoapMain.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
*
* Copyright (C) 2006-2015 Jedox AG
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License (Version 2) as published
* by the Free Software Foundation at http://www.gnu.org/copyleft/gpl.html.
*
* 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., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*
* If you are developing and distributing open source applications under the
* GPL License, then you are free to use Palo under the GPL License. For OEMs,
* ISVs, and VARs who distribute Palo with their products, and do not license
* and distribute their source code under the GPL, Jedox provides a flexible
* OEM Commercial License.
*
* \author Jerome Meinke, University of Freiburg, Germany
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <iostream>
#include <string>
#include <vector>
#include "Olap.h"
#include "glog/logging.h"
#include "Stoap/AggregationEnvironment.h"
using std::string;
using std::vector;
using std::endl;
void signalHandler(int signal) {
LOG(INFO) << "Signaled to stop.";
exit(0);
}
// Main function.
int main(int argc, char** argv) {
cout << "====================================================================" << endl;
cout << "== " << PACKAGE_NAME << endl;
cout << "== Version " << PACKAGE_VERSION << endl;
cout << "== Author " << PACKAGE_AUTHOR << endl;
cout << "== " << PACKAGE_BUGREPORT << endl;
cout << "====================================================================" << endl;
cout << "" << endl;
// prevent memory from being paged to the swap area
mlockall(MCL_CURRENT | MCL_FUTURE);
// Initialize the singleton
AggrEnv& aggrEnv = AggrEnv::instance();
// parse cmdline arguments
aggrEnv.parseCommandLineArguments(argc, argv);
// set up logging - some flags for this have been set by above function
google::InitGoogleLogging(argv[0]);
// handle failure signals
google::InstallFailureSignalHandler();
// handle exit signals
signal(SIGINT, &signalHandler); // SIGINT is produced when pressing Ctrl-C
signal(SIGQUIT, &signalHandler); // SIGQUIT is produced when pressing Ctrl-backslash
FLAGS_logbufsecs = 1;
FLAGS_logtostderr = 1;
if(aggrEnv.isServerMode()){
// write to a file instead of stderr
google::SetLogSymlink(0, string("StOAP").c_str());
google::SetLogDestination(0, string("StOAP").c_str());
FLAGS_logtostderr = 0;
}
// read the dimensions and elements
aggrEnv.loadDimensions();
// get the list of available cubes
aggrEnv.collectCubeInfo();
// select and load the cube
aggrEnv.selectAndLoadCube();
// if --server-mode is enabled, a pipe will be opened for listening
if(aggrEnv.isServerMode()) {
aggrEnv.openPipe();
} else {
aggrEnv.askQuery();
}
google::FlushLogFiles(0);
cout << "" << endl;
cout << "Good bye!" << endl;
exit(0);
}