-
Notifications
You must be signed in to change notification settings - Fork 156
/
main.cpp
307 lines (252 loc) · 9.56 KB
/
main.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
/*********************************************************************************
NixNote - An open-source client for the Evernote service.
Copyright (C) 2013 Randy Baumgarte
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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
***********************************************************************************/
#include <QApplication>
#include "nixnote.h"
#include "global.h"
#include "settings/startupconfig.h"
#include "cmdtools/cmdlinetool.h"
//#include "cmdtools/cmdlineapp.h"
#include "logger/qslog.h"
#include <QDir>
#include <iostream>
#include <QMessageBox>
#include <QSharedMemory>
// Windows Check
#ifndef _WIN32
#include <execinfo.h>
#endif
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <QNetworkProxy>
#include "application.h"
NixNote *w;
using namespace std;
//*********************************************
//* This is the main entry point for NixNote.
//*********************************************
extern Global global;
//*********************************************************************
//* Segmentation fault. This is triggered to print a stack trace.
//*********************************************************************
// Windows Check
#ifndef _WIN32
void fault_handler(int sig) {
void *array[30];
size_t size;
// get void*'s for all entries on the stack
size = backtrace(array, 30);
// print out all the frames to stderr
fprintf(stderr, "Error: signal %d:\n", sig);
backtrace_symbols_fd(array, size, 2);
if (w!=NULL) {
fprintf(stderr, "Forcing save\n");
w->saveState();
}
exit(1);
}
void sighup_handler(int sig) {
// print out all the frames to stderr
fprintf(stderr, "Error: signal %d:\n", sig);
if (w!=NULL) {
fprintf(stderr, "Forcing save\n");
w->saveState();
}
}
#endif // End Windows check
//using namespace cv;
//*********************************************************************
//* Main entry point to the program.
//*********************************************************************
int main(int argc, char *argv[])
{
w = NULL;
bool guiAvailable = true;
// Windows Check
#ifndef _WIN32
signal(SIGSEGV, fault_handler); // install our handler
#endif
// Begin setting up the environment
StartupConfig startupConfig;
global.argc = argc;
global.argv = argv;
int retval = startupConfig.init(argc,argv, guiAvailable);
if (retval != 0)
return retval;
// Setup the application. If we have a GUI, then we use Application.
// If we don't, then we just use a derivative of QCoreApplication
QCoreApplication *a = NULL;
if (guiAvailable) {
Application *app = new Application(argc, argv);
a = app;
} else {
a = new QCoreApplication(argc, argv);
}
global.application = a;
// Setup the QLOG functions for debugging & messages
QsLogging::Logger& logger = QsLogging::Logger::instance();
logger.setLoggingLevel(QsLogging::TraceLevel);
QsLogging::DestinationPtr debugDestination(
QsLogging::DestinationFactory::MakeDebugOutputDestination() );
logger.addDestination(debugDestination.get());
startupConfig.programDirPath = global.getProgramDirPath() + QDir().separator();
startupConfig.name = "NixNote";
global.setup(startupConfig, guiAvailable);
// global.syncAndExit=startupConfig.syncAndExit;
// We were passed a SQL command
if (startupConfig.sqlExec) {
DatabaseConnection *db = new DatabaseConnection("nixnote"); // Startup the database
QLOG_DEBUG() << "Starting DB";
QSqlQuery query(db->conn);
QLOG_DEBUG() << "After DB Start";
if (!query.exec(startupConfig.sqlString)) {
QLOG_FATAL() << query.lastError();
delete db;
exit(16);
}
while (query.next()) {
QString result = "";
for (int i=0; i<query.record().count(); i++) {
result = result + query.value(i).toString() + " | ";
}
QLOG_INFO() << result;
}
delete db;
QLOG_INFO() << "Ok" << endl;
exit(0);
}
// If we want something other than the GUI, try let the CmdLineTool deal with it.
if (!startupConfig.gui()) {
global.purgeTemporaryFilesOnShutdown=startupConfig.purgeTemporaryFiles;
CmdLineTool cmdline;
startupConfig.purgeTemporaryFiles=false;
int retval = cmdline.run(startupConfig);
if (global.sharedMemory->isAttached())
global.sharedMemory->detach();
QLOG_DEBUG() << "Exiting: RC=" << retval;
if (a!=NULL)
delete a;
exit(retval);
}
QString logPath = global.fileManager.getLogsDirPath("")+"messages.log";
QsLogging::DestinationPtr fileDestination(
QsLogging::DestinationFactory::MakeFileDestination(logPath) ) ;
logger.addDestination(fileDestination.get());
// Show Qt version. This is useful for debugging
QLOG_DEBUG() << "Program Home: " << global.fileManager.getProgramDirPath("");
QLOG_DEBUG() << "Built on " << __DATE__ << " at " << __TIME__;
QLOG_DEBUG() << "Built with Qt" << QT_VERSION_STR << "running on" << qVersion();
// Create a shared memory region. We use this to communicate
// with any other instance that may be running. If another instance
// is found we need to either show that one or kill this one.
bool memInitNeeded = true;
if( !global.sharedMemory->allocate(512*1024) ) {
// Attach to it and detach. This is done in case it crashed.
global.sharedMemory->attach();
global.sharedMemory->detach();
if( !global.sharedMemory->allocate(512*1024) ) {
QLOG_DEBUG() << "segment created";
if (startupConfig.startupNewNote) {
global.sharedMemory->attach();
global.sharedMemory->write(QString("NEW_NOTE"));
global.sharedMemory->detach();
if (a!=NULL)
delete a;
exit(0); // Exit this one
}
if (startupConfig.startupNoteLid > 0) {
global.sharedMemory->attach();
global.sharedMemory->write("OPEN_NOTE"+QString::number(startupConfig.startupNoteLid) + " ");
global.sharedMemory->detach();
if (a!=NULL)
delete a;
exit(0); // Exit this one
}
// If we've gotten this far, we need to either stop this instance or stop the other
QLOG_DEBUG() << "Multiple instance found";
global.settings->beginGroup("Debugging");
QString startup = global.settings->value("onMultipleInstances", "SHOW_OTHER").toString();
global.settings->endGroup();
global.sharedMemory->attach();
if (startup == "SHOW_OTHER") {
global.sharedMemory->write(QString("SHOW_WINDOW"));
global.sharedMemory->detach();
if (a!=NULL)
delete a;
return 0; // Exit this one
}
if (startup == "STOP_OTHER") {
global.sharedMemory->write(QString("IMMEDIATE_SHUTDOWN"));
memInitNeeded = false;
}
}
}
if (memInitNeeded) {
global.sharedMemory->clearMemory();
}
#ifndef _WIN32
if (global.getInterceptSigHup())
signal(SIGHUP, sighup_handler); // install our handler
#endif
QLOG_DEBUG() << "Setting up NN";
w = new NixNote();
w->setAttribute(Qt::WA_QuitOnClose);
bool show = true;
if (global.minimizeToTray() && global.startMinimized)
show = false;
if (show)
w->show();
else
w->hide();
if (global.startMinimized)
w->showMinimized();
// Setup the proxy
QNetworkProxy proxy;
if (global.isProxyEnabled()) {
if (global.isSocks5Enabled())
proxy.setType(QNetworkProxy::Socks5Proxy);
QString host = global.getProxyHost();
int port = global.getProxyPort();
QString user = global.getProxyUserid();
QString password = global.getProxyPassword();
if (host.trimmed() != "")
proxy.setHostName(host.trimmed());
if (port > 0)
proxy.setPort(port);
if (user.trimmed() != "")
proxy.setUser(user.trimmed());
if (password.trimmed() != "")
proxy.setPassword(password.trimmed());
QNetworkProxy::setApplicationProxy(proxy);
} else {
proxy.setType(QNetworkProxy::HttpProxy);
}
QLOG_DEBUG() << "Setting up exit signal";
QObject::connect(a, SIGNAL(aboutToQuit()), w, SLOT(saveOnExit()));
QLOG_DEBUG() << "Launching";
int rc = a->exec();
if (global.sharedMemory->isAttached())
global.sharedMemory->detach();
QLOG_DEBUG() << "Deleting NixNote instance";
delete w;
QLOG_DEBUG() << "Quitting application instance";
a->exit(rc);
QLOG_DEBUG() << "Deleting application instance";
delete a;
QLOG_DEBUG() << "Exiting: RC=" << rc;
exit(rc);
return rc;
}