2 // This file is part of the aMule Project.
4 // Copyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Copyright (c) 2004-2008 Angel Vidal (Kry) ( kry@amule.org / http://www.amule.org )
7 // Any parts of this program derived from the xMule, lMule or eMule project,
8 // or contributed by third-party developers are copyrighted by their
11 // This program is free software; you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation; either version 2 of the License, or
14 // (at your option) any later version.
16 // This program is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include "muuli_wdr.h"
28 #include "OScopeCtrl.h"
29 #include "OtherFunctions.h"
30 #include "HTTPDownload.h"
33 #include "Preferences.h"
34 #include "StatisticsDlg.h"
35 #include "ColorFrameCtrl.h"
39 #include "kademlia/kademlia/Kademlia.h"
43 BEGIN_EVENT_TABLE(CKadDlg
, wxPanel
)
44 EVT_TEXT(ID_NODE_IP1
, CKadDlg::OnFieldsChange
)
45 EVT_TEXT(ID_NODE_IP2
, CKadDlg::OnFieldsChange
)
46 EVT_TEXT(ID_NODE_IP3
, CKadDlg::OnFieldsChange
)
47 EVT_TEXT(ID_NODE_IP4
, CKadDlg::OnFieldsChange
)
48 EVT_TEXT(ID_NODE_PORT
, CKadDlg::OnFieldsChange
)
50 EVT_TEXT_ENTER(IDC_NODESLISTURL
,CKadDlg::OnBnClickedUpdateNodeList
)
52 EVT_BUTTON(ID_NODECONNECT
, CKadDlg::OnBnClickedBootstrapClient
)
53 EVT_BUTTON(ID_KNOWNNODECONNECT
, CKadDlg::OnBnClickedBootstrapKnown
)
54 EVT_BUTTON(ID_KADDISCONNECT
, CKadDlg::OnBnClickedDisconnectKad
)
55 EVT_BUTTON(ID_UPDATEKADLIST
, CKadDlg::OnBnClickedUpdateNodeList
)
60 CKadDlg::CKadDlg(wxWindow
* pParent
)
61 : wxPanel(pParent
, -1, wxDefaultPosition
, wxDefaultSize
, wxTAB_TRAVERSAL
, wxT("kadwnd") )
69 m_kad_scope
= CastChild( wxT("kadScope"), COScopeCtrl
);
70 m_kad_scope
->SetRanges(0.0, thePrefs::GetStatsMax());
71 m_kad_scope
->SetYUnits(wxT("Nodes"));
73 SetUpdatePeriod(thePrefs::GetTrafficOMeterInterval());
78 void CKadDlg::SetUpdatePeriod(int step
)
80 // this gets called after the value in Preferences/Statistics/Update delay has been changed
84 m_kad_scope
->Reset(step
);
89 void CKadDlg::SetGraphColors()
91 static const char aTrend
[] = { 2, 1, 0 };
92 static const int aRes
[] = { IDC_C0
, IDC_C0_3
, IDC_C0_2
};
94 m_kad_scope
->SetBackgroundColor(CStatisticsDlg::getColors(0));
95 m_kad_scope
->SetGridColor(CStatisticsDlg::getColors(1));
97 for (size_t i
= 0; i
< 3; ++i
) {
98 m_kad_scope
->SetPlotColor(CStatisticsDlg::getColors(12 + i
), aTrend
[i
]);
100 CColorFrameCtrl
* ctrl
= CastChild(aRes
[i
], CColorFrameCtrl
);
101 ctrl
->SetBackgroundColor(CStatisticsDlg::getColors(12 + i
));
102 ctrl
->SetFrameColor((COLORREF
)RGB(0,0,0));
107 void CKadDlg::UpdateGraph(bool bStatsVisible
, const GraphUpdateInfo
& update
)
109 std::vector
<float *> v(3);
110 v
[0] = const_cast<float *>(&update
.kadnodes
[0]);
111 v
[1] = const_cast<float *>(&update
.kadnodes
[1]);
112 v
[2] = const_cast<float *>(&update
.kadnodes
[2]);
113 const std::vector
<float *> &apfKad(v
);
114 unsigned nodeCount
= static_cast<unsigned>(update
.kadnodes
[2]);
116 if (!bStatsVisible
) {
117 m_kad_scope
->DelayPoints();
119 // Check the current node-count to see if we should increase the graph height
120 if (m_kad_scope
->GetUpperLimit() < update
.kadnodes
[2]) {
121 // Grow the limit by 50 sized increments.
122 m_kad_scope
->SetRanges(0.0, ((nodeCount
+ 49) / 50) * 50);
125 m_kad_scope
->AppendPoints(update
.timestamp
, apfKad
);
128 wxStaticText
* label
= CastChild( wxT("nodesListLabel"), wxStaticText
);
129 wxCHECK_RET(label
, wxT("Failed to find kad-nodes label"));
131 label
->SetLabel(wxString::Format(_("Nodes (%u)"), nodeCount
));
132 label
->GetParent()->Layout();
136 // Enables or disables the node connect button depending on the conents of the text fields
137 void CKadDlg::OnFieldsChange(wxCommandEvent
& WXUNUSED(evt
))
139 // These are the IDs of the search-fields
140 int textfields
[] = { ID_NODE_IP1
, ID_NODE_IP2
, ID_NODE_IP3
, ID_NODE_IP4
, ID_NODE_PORT
};
143 for ( uint16 i
= 0; i
< itemsof(textfields
); i
++ ) {
144 enable
&= !CastChild(textfields
[i
], wxTextCtrl
)->GetValue().IsEmpty();
147 // Enable the node connect button if all fields contain text
148 FindWindowById(ID_NODECONNECT
)->Enable( enable
);
152 void CKadDlg::OnBnClickedBootstrapClient(wxCommandEvent
& WXUNUSED(evt
))
154 if (FindWindowById(ID_NODECONNECT
)->IsEnabled()) {
155 // Ip is reversed since StringIPtoUint32 returns anti-host and kad expects host order
156 uint32 ip
= StringIPtoUint32(
157 ((wxTextCtrl
*)FindWindowById( ID_NODE_IP4
))->GetValue() +
159 ((wxTextCtrl
*)FindWindowById( ID_NODE_IP3
))->GetValue() +
161 ((wxTextCtrl
*)FindWindowById( ID_NODE_IP2
))->GetValue() +
163 ((wxTextCtrl
*)FindWindowById( ID_NODE_IP1
))->GetValue() );
166 wxMessageBox(_("Invalid ip to bootstrap"), _("Warning"), wxOK
| wxICON_EXCLAMATION
, this);
169 if (((wxTextCtrl
*)FindWindowById( ID_NODE_PORT
))->GetValue().ToULong(&port
)) {
170 theApp
->BootstrapKad(ip
, port
);
172 wxMessageBox(_("Invalid port to bootstrap"), _("Warning"), wxOK
| wxICON_EXCLAMATION
, this);
176 wxMessageBox(_("Please fill all fields required"), _("Message"), wxOK
| wxICON_INFORMATION
, this);
181 void CKadDlg::OnBnClickedBootstrapKnown(wxCommandEvent
& WXUNUSED(evt
))
187 void CKadDlg::OnBnClickedDisconnectKad(wxCommandEvent
& WXUNUSED(evt
))
193 void CKadDlg::OnBnClickedUpdateNodeList(wxCommandEvent
& WXUNUSED(evt
))
195 if ( wxMessageBox( wxString(_("Are you sure you want to download a new nodes.dat file?\n")) +
196 _("Doing so will remove your current nodes and restart Kademlia connection.")
197 , _("Continue?"), wxICON_EXCLAMATION
| wxYES_NO
, this) == wxYES
) {
198 wxString strURL
= ((wxTextCtrl
*)FindWindowById( IDC_NODESLISTURL
))->GetValue();
200 thePrefs::SetKadNodesUrl(strURL
);
201 theApp
->UpdateNotesDat(strURL
);
204 // File_checked_for_headers