27d57b35e17844a914c963e3fd63a9db84623670
[novacoin.git] / src / qt / bitcoin.cpp
1 /*
2  * W.J. van der Laan 2011-2012
3  */
4 #include "bitcoingui.h"
5 #include "clientmodel.h"
6 #include "walletmodel.h"
7 #include "optionsmodel.h"
8
9 #include "headers.h"
10 #include "init.h"
11 #include "qtipcserver.h"
12
13 #include <QApplication>
14 #include <QMessageBox>
15 #include <QThread>
16 #include <QTextCodec>
17 #include <QLocale>
18 #include <QTranslator>
19 #include <QSplashScreen>
20 #include <QLibraryInfo>
21
22 #include <boost/interprocess/ipc/message_queue.hpp>
23
24 // Need a global reference for the notifications to find the GUI
25 BitcoinGUI *guiref;
26 QSplashScreen *splashref;
27
28 int MyMessageBox(const std::string& message, const std::string& caption, int style, wxWindow* parent, int x, int y)
29 {
30     // Message from AppInit2(), always in main thread before main window is constructed
31     QMessageBox::critical(0, QString::fromStdString(caption),
32         QString::fromStdString(message),
33         QMessageBox::Ok, QMessageBox::Ok);
34     return 4;
35 }
36
37 int ThreadSafeMessageBox(const std::string& message, const std::string& caption, int style, wxWindow* parent, int x, int y)
38 {
39     // Message from network thread
40     if(guiref)
41     {
42         QMetaObject::invokeMethod(guiref, "error", Qt::QueuedConnection,
43                                    Q_ARG(QString, QString::fromStdString(caption)),
44                                    Q_ARG(QString, QString::fromStdString(message)));
45     }
46     else
47     {
48         printf("%s: %s\n", caption.c_str(), message.c_str());
49         fprintf(stderr, "%s: %s\n", caption.c_str(), message.c_str());
50     }
51     return 4;
52 }
53
54 bool ThreadSafeAskFee(int64 nFeeRequired, const std::string& strCaption, wxWindow* parent)
55 {
56     if(!guiref)
57         return false;
58     if(nFeeRequired < MIN_TX_FEE || nFeeRequired <= nTransactionFee || fDaemon)
59         return true;
60     bool payFee = false;
61
62     // Call slot on GUI thread.
63     // If called from another thread, use a blocking QueuedConnection.
64     Qt::ConnectionType connectionType = Qt::DirectConnection;
65     if(QThread::currentThread() != QCoreApplication::instance()->thread())
66     {
67         connectionType = Qt::BlockingQueuedConnection;
68     }
69
70     QMetaObject::invokeMethod(guiref, "askFee", connectionType,
71                                Q_ARG(qint64, nFeeRequired),
72                                Q_ARG(bool*, &payFee));
73
74     return payFee;
75 }
76
77 void ThreadSafeHandleURL(const std::string& strURL)
78 {
79     if(!guiref)
80         return;
81
82     // Call slot on GUI thread.
83     // If called from another thread, use a blocking QueuedConnection.
84     Qt::ConnectionType connectionType = Qt::DirectConnection;
85     if(QThread::currentThread() != QCoreApplication::instance()->thread())
86     {
87         connectionType = Qt::BlockingQueuedConnection;
88     }
89     QMetaObject::invokeMethod(guiref, "handleURL", connectionType,
90                                Q_ARG(QString, QString::fromStdString(strURL)));
91 }
92
93 void CalledSetStatusBar(const std::string& strText, int nField)
94 {
95     // Only used for built-in mining, which is disabled, simple ignore
96 }
97
98 void UIThreadCall(boost::function0<void> fn)
99 {
100     // Only used for built-in mining, which is disabled, simple ignore
101 }
102
103 void MainFrameRepaint()
104 {
105     if(guiref)
106         QMetaObject::invokeMethod(guiref, "refreshStatusBar", Qt::QueuedConnection);
107 }
108
109 void InitMessage(const std::string &message)
110 {
111     if(splashref)
112     {
113         splashref->showMessage(QString::fromStdString(message), Qt::AlignBottom|Qt::AlignHCenter, QColor(255,255,200));
114         QApplication::instance()->processEvents();
115     }
116 }
117
118 /*
119    Translate string to current locale using Qt.
120  */
121 std::string _(const char* psz)
122 {
123     return QCoreApplication::translate("bitcoin-core", psz).toStdString();
124 }
125
126 #ifndef BITCOIN_QT_TEST
127 int main(int argc, char *argv[])
128 {
129     // Do this early as we don't want to bother initializing if we are just calling IPC
130     for (int i = 1; i < argc; i++)
131     {
132         if (strlen(argv[i]) > 7 && strncasecmp(argv[i], "bitcoin:", 8) == 0)
133         {
134             const char *strURL = argv[i];
135             try {
136                 boost::interprocess::message_queue mq(boost::interprocess::open_only, "BitcoinURL");
137                 if(mq.try_send(strURL, strlen(strURL), 0))
138                     exit(0);
139                 else
140                     break;
141             }
142             catch (boost::interprocess::interprocess_exception &ex) {
143                 break;
144             }
145         }
146     }
147
148     // Internal string conversion is all UTF-8
149     QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8"));
150     QTextCodec::setCodecForCStrings(QTextCodec::codecForTr());
151
152     Q_INIT_RESOURCE(bitcoin);
153     QApplication app(argc, argv);
154
155     // Command-line options take precedence:
156     ParseParameters(argc, argv);
157
158     // ... then bitcoin.conf:
159     if (!ReadConfigFile(mapArgs, mapMultiArgs))
160     {
161         fprintf(stderr, "Error: Specified directory does not exist\n");
162         return 1;
163     }
164
165     // Application identification (must be set before OptionsModel is initialized,
166     // as it is used to locate QSettings)
167     app.setOrganizationName("Bitcoin");
168     app.setOrganizationDomain("bitcoin.org");
169     if(GetBoolArg("-testnet")) // Separate UI settings for testnet
170         app.setApplicationName("Bitcoin-Qt-testnet");
171     else
172         app.setApplicationName("Bitcoin-Qt");
173
174     // ... then GUI settings:
175     OptionsModel optionsModel;
176
177     // Get desired locale ("en_US") from command line or system locale
178     QString lang_territory = QString::fromStdString(GetArg("-lang", QLocale::system().name().toStdString()));
179     // Load language files for configured locale:
180     // - First load the translator for the base language, without territory
181     // - Then load the more specific locale translator
182     QString lang = lang_territory;
183
184     lang.truncate(lang_territory.lastIndexOf('_')); // "en"
185     QTranslator qtTranslatorBase, qtTranslator, translatorBase, translator;
186
187     qtTranslatorBase.load(QLibraryInfo::location(QLibraryInfo::TranslationsPath) + "/qt_" + lang);
188     if (!qtTranslatorBase.isEmpty())
189         app.installTranslator(&qtTranslatorBase);
190
191     qtTranslator.load(QLibraryInfo::location(QLibraryInfo::TranslationsPath) + "/qt_" + lang_territory);
192     if (!qtTranslator.isEmpty())
193         app.installTranslator(&qtTranslator);
194
195     translatorBase.load(":/translations/"+lang);
196     if (!translatorBase.isEmpty())
197         app.installTranslator(&translatorBase);
198
199     translator.load(":/translations/"+lang_territory);
200     if (!translator.isEmpty())
201         app.installTranslator(&translator);
202
203     QSplashScreen splash(QPixmap(":/images/splash"), 0);
204     if (GetBoolArg("-splash", true) && !GetBoolArg("-min"))
205     {
206         splash.show();
207         splash.setAutoFillBackground(true);
208         splashref = &splash;
209     }
210
211     app.processEvents();
212
213     app.setQuitOnLastWindowClosed(false);
214
215     try
216     {
217         if(AppInit2(argc, argv))
218         {
219             {
220                 // Put this in a block, so that BitcoinGUI is cleaned up properly before
221                 // calling Shutdown() in case of exceptions.
222
223                 optionsModel.Upgrade(); // Must be done after AppInit2
224
225                 BitcoinGUI window;
226                 if (splashref)
227                     splash.finish(&window);
228
229                 ClientModel clientModel(&optionsModel);
230                 WalletModel walletModel(pwalletMain, &optionsModel);
231
232                 guiref = &window;
233                 window.setClientModel(&clientModel);
234                 window.setWalletModel(&walletModel);
235
236                 // If -min option passed, start window minimized.
237                 if(GetBoolArg("-min"))
238                 {
239                     window.showMinimized();
240                 }
241                 else
242                 {
243                     window.show();
244                 }
245
246                 // Place this here as guiref has to be defined if we dont want to lose URLs
247                 ipcInit();
248                 // Check for URL in argv
249                 for (int i = 1; i < argc; i++)
250                 {
251                     if (strlen(argv[i]) > 7 && strncasecmp(argv[i], "bitcoin:", 8) == 0)
252                     {
253                         const char *strURL = argv[i];
254                         try {
255                             boost::interprocess::message_queue mq(boost::interprocess::open_only, "BitcoinURL");
256                             mq.try_send(strURL, strlen(strURL), 0);
257                         }
258                         catch (boost::interprocess::interprocess_exception &ex) {
259                         }
260                     }
261                 }
262
263                 app.exec();
264
265                 guiref = 0;
266             }
267             Shutdown(NULL);
268         }
269         else
270         {
271             return 1;
272         }
273     } catch (std::exception& e) {
274         PrintException(&e, "Runaway exception");
275     } catch (...) {
276         PrintException(NULL, "Runaway exception");
277     }
278     return 0;
279 }
280 #endif // BITCOIN_QT_TEST