Disable bitcoin: URI handling on Windows for the 0.6 release
[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 #if !defined(MAC_OSX) && !defined(WIN32)
130 // TODO: implement qtipcserver.cpp for Mac and Windows
131
132     // Do this early as we don't want to bother initializing if we are just calling IPC
133     for (int i = 1; i < argc; i++)
134     {
135         if (strlen(argv[i]) > 7 && strncasecmp(argv[i], "bitcoin:", 8) == 0)
136         {
137             const char *strURL = argv[i];
138             try {
139                 boost::interprocess::message_queue mq(boost::interprocess::open_only, "BitcoinURL");
140                 if(mq.try_send(strURL, strlen(strURL), 0))
141                     exit(0);
142                 else
143                     break;
144             }
145             catch (boost::interprocess::interprocess_exception &ex) {
146                 break;
147             }
148         }
149     }
150 #endif
151
152     // Internal string conversion is all UTF-8
153     QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8"));
154     QTextCodec::setCodecForCStrings(QTextCodec::codecForTr());
155
156     Q_INIT_RESOURCE(bitcoin);
157     QApplication app(argc, argv);
158
159     // Command-line options take precedence:
160     ParseParameters(argc, argv);
161
162     // ... then bitcoin.conf:
163     if (!ReadConfigFile(mapArgs, mapMultiArgs))
164     {
165         fprintf(stderr, "Error: Specified directory does not exist\n");
166         return 1;
167     }
168
169     // Application identification (must be set before OptionsModel is initialized,
170     // as it is used to locate QSettings)
171     app.setOrganizationName("Bitcoin");
172     app.setOrganizationDomain("bitcoin.org");
173     if(GetBoolArg("-testnet")) // Separate UI settings for testnet
174         app.setApplicationName("Bitcoin-Qt-testnet");
175     else
176         app.setApplicationName("Bitcoin-Qt");
177
178     // ... then GUI settings:
179     OptionsModel optionsModel;
180
181     // Get desired locale ("en_US") from command line or system locale
182     QString lang_territory = QString::fromStdString(GetArg("-lang", QLocale::system().name().toStdString()));
183     // Load language files for configured locale:
184     // - First load the translator for the base language, without territory
185     // - Then load the more specific locale translator
186     QString lang = lang_territory;
187
188     lang.truncate(lang_territory.lastIndexOf('_')); // "en"
189     QTranslator qtTranslatorBase, qtTranslator, translatorBase, translator;
190
191     qtTranslatorBase.load(QLibraryInfo::location(QLibraryInfo::TranslationsPath) + "/qt_" + lang);
192     if (!qtTranslatorBase.isEmpty())
193         app.installTranslator(&qtTranslatorBase);
194
195     qtTranslator.load(QLibraryInfo::location(QLibraryInfo::TranslationsPath) + "/qt_" + lang_territory);
196     if (!qtTranslator.isEmpty())
197         app.installTranslator(&qtTranslator);
198
199     translatorBase.load(":/translations/"+lang);
200     if (!translatorBase.isEmpty())
201         app.installTranslator(&translatorBase);
202
203     translator.load(":/translations/"+lang_territory);
204     if (!translator.isEmpty())
205         app.installTranslator(&translator);
206
207     QSplashScreen splash(QPixmap(":/images/splash"), 0);
208     if (GetBoolArg("-splash", true) && !GetBoolArg("-min"))
209     {
210         splash.show();
211         splash.setAutoFillBackground(true);
212         splashref = &splash;
213     }
214
215     app.processEvents();
216
217     app.setQuitOnLastWindowClosed(false);
218
219     try
220     {
221         if(AppInit2(argc, argv))
222         {
223             {
224                 // Put this in a block, so that BitcoinGUI is cleaned up properly before
225                 // calling Shutdown() in case of exceptions.
226
227                 optionsModel.Upgrade(); // Must be done after AppInit2
228
229                 BitcoinGUI window;
230                 if (splashref)
231                     splash.finish(&window);
232
233                 ClientModel clientModel(&optionsModel);
234                 WalletModel walletModel(pwalletMain, &optionsModel);
235
236                 guiref = &window;
237                 window.setClientModel(&clientModel);
238                 window.setWalletModel(&walletModel);
239
240                 // If -min option passed, start window minimized.
241                 if(GetBoolArg("-min"))
242                 {
243                     window.showMinimized();
244                 }
245                 else
246                 {
247                     window.show();
248                 }
249
250                 // Place this here as guiref has to be defined if we dont want to lose URLs
251                 ipcInit();
252
253 #if !defined(MAC_OSX) && !defined(WIN32)
254 // TODO: implement qtipcserver.cpp for Mac and Windows
255
256                 // Check for URL in argv
257                 for (int i = 1; i < argc; i++)
258                 {
259                     if (strlen(argv[i]) > 7 && strncasecmp(argv[i], "bitcoin:", 8) == 0)
260                     {
261                         const char *strURL = argv[i];
262                         try {
263                             boost::interprocess::message_queue mq(boost::interprocess::open_only, "BitcoinURL");
264                             mq.try_send(strURL, strlen(strURL), 0);
265                         }
266                         catch (boost::interprocess::interprocess_exception &ex) {
267                         }
268                     }
269                 }
270 #endif
271                 app.exec();
272
273                 guiref = 0;
274             }
275             Shutdown(NULL);
276         }
277         else
278         {
279             return 1;
280         }
281     } catch (std::exception& e) {
282         PrintException(&e, "Runaway exception");
283     } catch (...) {
284         PrintException(NULL, "Runaway exception");
285     }
286     return 0;
287 }
288 #endif // BITCOIN_QT_TEST