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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466 | //
// This file is part of the aMule Project.
//
// Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
// Copyright (c) 2002-2011 Merkur ( devs@emule-project.net / http://www.emule-project.net )
//
// Any parts of this program derived from the xMule, lMule or eMule project,
// or contributed by third-party developers are copyrighted by their
// respective authors.
//
// 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 St, Fifth Floor, Boston, MA 02110-1301, USA
//
#ifndef AMULE_H
#define AMULE_H
#include <wx/app.h> // Needed for wxApp
#include <wx/intl.h> // Needed for wxLocale
#include "Types.h" // Needed for int32, uint16 and uint64
#include <map>
#ifndef __WINDOWS__
#include <signal.h>
#endif // __WINDOWS__
#include "config.h" // Needed for ASIO_SOCKETS
class CAbstractFile;
class CKnownFile;
class ExternalConn;
class CamuleDlg;
class CPreferences;
class CDownloadQueue;
class CUploadQueue;
class CServerConnect;
class CSharedFileList;
class CServer;
class CFriend;
class CMD4Hash;
class CServerList;
class CListenSocket;
class CClientList;
class CKnownFileList;
class CCanceledFileList;
class CSearchList;
class CClientCreditsList;
class CFriendList;
class CClientUDPSocket;
class CIPFilter;
class UploadBandwidthThrottler;
#ifdef ASIO_SOCKETS
class CAsioService;
#else
class wxSocketEvent;
#endif
#ifdef ENABLE_UPNP
class CUPnPControlPoint;
class CUPnPPortMapping;
#endif
class CStatistics;
class wxCommandEvent;
class wxCloseEvent;
class wxFFileOutputStream;
class CTimer;
class CTimerEvent;
class wxSingleInstanceChecker;
class CHashingEvent;
class CMuleInternalEvent;
class CCompletionEvent;
class CAllocFinishedEvent;
class wxExecuteData;
class CLoggingEvent;
namespace MuleNotify {
class CMuleGUIEvent;
}
using MuleNotify::CMuleGUIEvent;
namespace Kademlia {
class CUInt128;
}
#ifdef AMULE_DAEMON
#define AMULE_APP_BASE wxAppConsole
#define CORE_TIMER_PERIOD 300
#else
#define AMULE_APP_BASE wxApp
#define CORE_TIMER_PERIOD 100
#endif
#define CONNECTED_ED2K (1<<0)
#define CONNECTED_KAD_NOT (1<<1)
#define CONNECTED_KAD_OK (1<<2)
#define CONNECTED_KAD_FIREWALLED (1<<3)
void OnShutdownSignal( int /* sig */ );
// Base class common to amule, aamuled and amulegui
class CamuleAppCommon
{
private:
// Used to detect a previous running instance of aMule
wxSingleInstanceChecker* m_singleInstance;
bool CheckPassedLink(const wxString &in, wxString &out, int cat);
protected:
wxString FullMuleVersion;
wxString OSDescription;
wxString OSType;
bool enable_daemon_fork;
bool ec_config;
bool m_skipConnectionDialog;
bool m_geometryEnabled;
wxString m_geometryString;
wxString m_logFile;
wxString m_appName;
wxString m_PidFile;
bool InitCommon(int argc, wxChar ** argv);
void RefreshSingleInstanceChecker();
bool CheckMuleDirectory(const wxString& desc, const class CPath& directory, const wxString& alternative, class CPath& outDir);
public:
wxString m_configFile;
CamuleAppCommon();
~CamuleAppCommon();
void AddLinksFromFile();
// URL functions
wxString CreateMagnetLink(const CAbstractFile *f);
wxString CreateED2kLink(const CAbstractFile* f, bool add_source = false, bool use_hostname = false, bool add_cryptoptions = false, bool add_AICH = false);
// Who am I ?
#ifdef AMULE_DAEMON
bool IsDaemon() const { return true; }
#else
bool IsDaemon() const { return false; }
#endif
#ifdef CLIENT_GUI
bool IsRemoteGui() const { return true; }
#else
bool IsRemoteGui() const { return false; }
#endif
const wxString& GetMuleAppName() const { return m_appName; }
const wxString GetFullMuleVersion() const;
};
class CamuleApp : public AMULE_APP_BASE, public CamuleAppCommon
{
private:
enum APPState {
APP_STATE_RUNNING = 0,
APP_STATE_SHUTTINGDOWN,
APP_STATE_STARTING
};
public:
CamuleApp();
virtual ~CamuleApp();
virtual bool OnInit();
int OnExit();
#if wxUSE_ON_FATAL_EXCEPTION
void OnFatalException();
#endif
bool ReinitializeNetwork(wxString *msg);
// derived classes may override those
virtual int InitGui(bool geometry_enable, wxString &geometry_string);
#ifndef ASIO_SOCKETS
// Socket handlers
void ListenSocketHandler(wxSocketEvent& event);
void UDPSocketHandler(wxSocketEvent& event);
#endif
virtual int ShowAlert(wxString msg, wxString title, int flags) = 0;
// Barry - To find out if app is running or shutting/shut down
bool IsRunning() const { return (m_app_state == APP_STATE_RUNNING); }
bool IsOnShutDown() const { return (m_app_state == APP_STATE_SHUTTINGDOWN); }
// Check ED2K and Kademlia state
bool IsFirewalled() const;
// Are we connected to at least one network?
bool IsConnected() const;
// Connection to ED2K
bool IsConnectedED2K() const;
// What about Kad? Is it running?
bool IsKadRunning() const;
// Connection to Kad
bool IsConnectedKad() const;
// Check Kad state (TCP)
bool IsFirewalledKad() const;
// Check Kad state (UDP)
bool IsFirewalledKadUDP() const;
// Check Kad state (LAN mode)
bool IsKadRunningInLanMode() const;
// Kad stats
uint32 GetKadUsers() const;
uint32 GetKadFiles() const;
uint32 GetKadIndexedSources() const;
uint32 GetKadIndexedKeywords() const;
uint32 GetKadIndexedNotes() const;
uint32 GetKadIndexedLoad() const;
// True IP of machine
uint32 GetKadIPAdress() const;
// Buddy status
uint8 GetBuddyStatus() const;
uint32 GetBuddyIP() const;
uint32 GetBuddyPort() const;
// Kad ID
const Kademlia::CUInt128& GetKadID() const;
// Check if we should callback this client
bool CanDoCallback(uint32 clientServerIP, uint16 clientServerPort);
// Misc functions
void OnlineSig(bool zero = false);
void Localize_mule();
void Trigger_New_version(wxString newMule);
// shakraw - new EC code using wxSocketBase
ExternalConn* ECServerHandler;
// return current (valid) public IP or 0 if unknown
// If ignorelocal is true, don't use m_localip
uint32 GetPublicIP(bool ignorelocal = false) const;
void SetPublicIP(const uint32 dwIP);
uint32 GetED2KID() const;
uint32 GetID() const;
// Other parts of the interface and such
CPreferences* glob_prefs;
CDownloadQueue* downloadqueue;
CUploadQueue* uploadqueue;
CServerConnect* serverconnect;
CSharedFileList* sharedfiles;
CServerList* serverlist;
CListenSocket* listensocket;
CClientList* clientlist;
CKnownFileList* knownfiles;
CCanceledFileList* canceledfiles;
CSearchList* searchlist;
CClientCreditsList* clientcredits;
CFriendList* friendlist;
CClientUDPSocket* clientudp;
CStatistics* m_statistics;
CIPFilter* ipfilter;
UploadBandwidthThrottler* uploadBandwidthThrottler;
#ifdef ASIO_SOCKETS
CAsioService* m_AsioService;
#endif
#ifdef ENABLE_UPNP
CUPnPControlPoint* m_upnp;
std::vector<CUPnPPortMapping> m_upnpMappings;
#endif
wxLocale m_locale;
void ShutDown();
wxString GetLog(bool reset = false);
wxString GetServerLog(bool reset = false);
wxString GetDebugLog(bool reset = false);
bool AddServer(CServer *srv, bool fromUser = false);
void AddServerMessageLine(wxString &msg);
#ifdef __DEBUG__
void AddSocketDeleteDebug(uint32 socket_pointer, uint32 creation_time);
#endif
void SetOSFiles(const wxString& new_path);
const wxString& GetOSType() const { return OSType; }
void ShowUserCount();
void ShowConnectionState(bool forceUpdate = false);
void StartKad();
void StopKad();
/** Bootstraps kad from the specified IP (must be in hostorder). */
void BootstrapKad(uint32 ip, uint16 port);
/** Updates the nodes.dat file from the specified url. */
void UpdateNotesDat(const wxString& str);
void DisconnectED2K();
bool CryptoAvailable() const;
protected:
#ifdef __WXDEBUG__
/**
* Handles asserts in a thread-safe manner.
*/
virtual void OnAssertFailure(const wxChar* file, int line,
const wxChar* func, const wxChar* cond, const wxChar* msg);
#endif
void OnUDPDnsDone(CMuleInternalEvent& evt);
void OnSourceDnsDone(CMuleInternalEvent& evt);
void OnServerDnsDone(CMuleInternalEvent& evt);
void OnTCPTimer(CTimerEvent& evt);
void OnCoreTimer(CTimerEvent& evt);
void OnFinishedHashing(CHashingEvent& evt);
void OnFinishedAICHHashing(CHashingEvent& evt);
void OnFinishedCompletion(CCompletionEvent& evt);
void OnFinishedAllocation(CAllocFinishedEvent& evt);
void OnFinishedHTTPDownload(CMuleInternalEvent& evt);
void OnHashingShutdown(CMuleInternalEvent&);
void OnNotifyEvent(CMuleGUIEvent& evt);
void SetTimeOnTransfer();
APPState m_app_state;
wxString m_emulesig_path;
wxString m_amulesig_path;
uint32 m_dwPublicIP;
long webserver_pid;
wxString server_msg;
CTimer* core_timer;
private:
virtual void OnUnhandledException();
void CheckNewVersion(uint32 result);
uint32 m_localip;
};
#ifndef AMULE_DAEMON
class CamuleGuiBase {
public:
CamuleGuiBase();
virtual ~CamuleGuiBase();
wxString m_FrameTitle;
CamuleDlg* amuledlg;
bool CopyTextToClipboard( wxString strText );
void ResetTitle();
virtual int InitGui(bool geometry_enable, wxString &geometry_string);
virtual int ShowAlert(wxString msg, wxString title, int flags);
void AddGuiLogLine(const wxString& line);
protected:
/**
* This list is used to contain log messages that are to be displayed
* on the GUI, when it is currently impossible to do so. This is in order
* to allows us to queue messages till after the dialog has been created.
*/
std::list<wxString> m_logLines;
};
#ifndef CLIENT_GUI
class CamuleGuiApp : public CamuleApp, public CamuleGuiBase
{
virtual int InitGui(bool geometry_enable, wxString &geometry_string);
int OnExit();
bool OnInit();
public:
virtual int ShowAlert(wxString msg, wxString title, int flags);
void ShutDown(wxCloseEvent &evt);
wxString GetLog(bool reset = false);
wxString GetServerLog(bool reset = false);
void AddServerMessageLine(wxString &msg);
DECLARE_EVENT_TABLE()
};
DECLARE_APP(CamuleGuiApp)<--- There is an unknown macro here somewhere. Configuration is required. If DECLARE_APP is a macro then please configure it.
extern CamuleGuiApp *theApp;
#else /* !CLIENT_GUI */
#include "amule-remote-gui.h"
#endif // CLIENT_GUI
#define CALL_APP_DATA_LOCK
#else /* ! AMULE_DAEMON */
class CamuleDaemonApp : public CamuleApp
{
private:
bool OnInit();
int OnRun();
int OnExit();
virtual int InitGui(bool geometry_enable, wxString &geometry_string);
// The GTK wxApps sets its file name conversion properly
// in wxApp::Initialize(), while wxAppConsole::Initialize()
// does not, leaving wxConvFile being set to wxConvLibc. File
// name conversion should be set otherwise amuled will abort to
// handle non-ASCII file names which monolithic amule can handle.
// This function are overridden to perform this.
virtual bool Initialize(int& argc_, wxChar **argv_);
public:
bool CopyTextToClipboard(wxString strText);
virtual int ShowAlert(wxString msg, wxString title, int flags);
DECLARE_EVENT_TABLE()
};
DECLARE_APP(CamuleDaemonApp)<--- There is an unknown macro here somewhere. Configuration is required. If DECLARE_APP is a macro then please configure it.
extern CamuleDaemonApp *theApp;
#endif /* ! AMULE_DAEMON */
#endif // AMULE_H
// File_checked_for_headers
|