]>
Commit | Line | Data |
---|---|---|
f85d901f GRG |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: client.cpp | |
3 | // Purpose: Client for wxSocket demo | |
4 | // Author: Guillermo Rodriguez Garcia <guille@iies.es> | |
5 | // Modified by: | |
6 | // Created: 1999/09/19 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1999 Guillermo Rodriguez Garcia | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ========================================================================== | |
13 | // declarations | |
14 | // ========================================================================== | |
15 | ||
16 | // -------------------------------------------------------------------------- | |
17 | // headers | |
18 | // -------------------------------------------------------------------------- | |
e2a6f233 | 19 | |
f85d901f | 20 | // For compilers that support precompilation, includes "wx/wx.h". |
f4ada568 GL |
21 | #include "wx/wxprec.h" |
22 | ||
23 | #ifdef __BORLANDC__ | |
f85d901f | 24 | # pragma hdrstop |
f4ada568 GL |
25 | #endif |
26 | ||
925e9792 | 27 | // for all others, include the necessary headers |
f4ada568 | 28 | #ifndef WX_PRECOMP |
f85d901f | 29 | # include "wx/wx.h" |
09fb22cf JS |
30 | #endif |
31 | ||
6097c3a2 GRG |
32 | #include "wx/socket.h" |
33 | #include "wx/url.h" | |
1e4080f0 | 34 | #include "wx/sstream.h" |
1e4080f0 | 35 | #include <memory> |
e2a6f233 | 36 | |
f85d901f GRG |
37 | // -------------------------------------------------------------------------- |
38 | // resources | |
39 | // -------------------------------------------------------------------------- | |
f4ada568 | 40 | |
f85d901f | 41 | // the application icon |
2804f77d | 42 | #include "mondrian.xpm" |
e2a6f233 | 43 | |
f85d901f GRG |
44 | // -------------------------------------------------------------------------- |
45 | // classes | |
46 | // -------------------------------------------------------------------------- | |
f4ada568 | 47 | |
f85d901f GRG |
48 | // Define a new application type |
49 | class MyApp : public wxApp | |
50 | { | |
f4ada568 | 51 | public: |
f85d901f | 52 | virtual bool OnInit(); |
f4ada568 GL |
53 | }; |
54 | ||
f85d901f GRG |
55 | // Define a new frame type: this is going to be our main frame |
56 | class MyFrame : public wxFrame | |
f4ada568 GL |
57 | { |
58 | public: | |
f85d901f GRG |
59 | MyFrame(); |
60 | ~MyFrame(); | |
61 | ||
25ba2b89 | 62 | // event handlers for File menu |
f85d901f GRG |
63 | void OnQuit(wxCommandEvent& event); |
64 | void OnAbout(wxCommandEvent& event); | |
25ba2b89 GRG |
65 | |
66 | // event handlers for Socket menu | |
f85d901f GRG |
67 | void OnOpenConnection(wxCommandEvent& event); |
68 | void OnTest1(wxCommandEvent& event); | |
69 | void OnTest2(wxCommandEvent& event); | |
70 | void OnTest3(wxCommandEvent& event); | |
71 | void OnCloseConnection(wxCommandEvent& event); | |
25ba2b89 | 72 | |
16cafacf | 73 | #if wxUSE_URL |
25ba2b89 GRG |
74 | // event handlers for Protocols menu |
75 | void OnTestURL(wxCommandEvent& event); | |
16cafacf | 76 | #endif |
8575ff50 VZ |
77 | #if wxUSE_IPV6 |
78 | void OnOpenConnectionIPv6(wxCommandEvent& event); | |
79 | #endif | |
80 | ||
778f682e | 81 | void OpenConnection(wxSockAddress::Family family); |
25ba2b89 | 82 | |
e51b0130 | 83 | // event handlers for DatagramSocket menu (stub) |
6097c3a2 | 84 | void OnDatagram(wxCommandEvent& event); |
f85d901f | 85 | |
25ba2b89 GRG |
86 | // socket event handler |
87 | void OnSocketEvent(wxSocketEvent& event); | |
88 | ||
f85d901f GRG |
89 | // convenience functions |
90 | void UpdateStatusBar(); | |
91 | ||
92 | private: | |
93 | wxSocketClient *m_sock; | |
f85d901f GRG |
94 | wxTextCtrl *m_text; |
95 | wxMenu *m_menuFile; | |
96 | wxMenu *m_menuSocket; | |
6097c3a2 | 97 | wxMenu *m_menuDatagramSocket; |
25ba2b89 | 98 | wxMenu *m_menuProtocols; |
f85d901f GRG |
99 | wxMenuBar *m_menuBar; |
100 | bool m_busy; | |
101 | ||
be5a51fb | 102 | // any class wishing to process wxWidgets events must use this macro |
f85d901f | 103 | DECLARE_EVENT_TABLE() |
f4ada568 GL |
104 | }; |
105 | ||
f98f168e VZ |
106 | // simple helper class to log start and end of each test |
107 | class TestLogger | |
108 | { | |
109 | public: | |
110 | TestLogger(const wxString& name) : m_name(name) | |
111 | { | |
112 | wxLogMessage("=== %s test begins ===", m_name); | |
113 | } | |
114 | ||
115 | ~TestLogger() | |
116 | { | |
117 | wxLogMessage("=== %s test ends ===", m_name); | |
118 | } | |
119 | ||
120 | private: | |
121 | const wxString m_name; | |
122 | }; | |
123 | ||
f85d901f GRG |
124 | // -------------------------------------------------------------------------- |
125 | // constants | |
126 | // -------------------------------------------------------------------------- | |
f4ada568 | 127 | |
f85d901f GRG |
128 | // IDs for the controls and the menu commands |
129 | enum | |
f4ada568 | 130 | { |
f85d901f | 131 | // menu items |
91b07357 JS |
132 | CLIENT_QUIT = wxID_EXIT, |
133 | CLIENT_ABOUT = wxID_ABOUT, | |
134 | CLIENT_OPEN = 100, | |
8575ff50 VZ |
135 | #if wxUSE_IPV6 |
136 | CLIENT_OPENIPV6, | |
137 | #endif | |
f85d901f GRG |
138 | CLIENT_TEST1, |
139 | CLIENT_TEST2, | |
140 | CLIENT_TEST3, | |
141 | CLIENT_CLOSE, | |
16cafacf | 142 | #if wxUSE_URL |
25ba2b89 | 143 | CLIENT_TESTURL, |
16cafacf | 144 | #endif |
6097c3a2 | 145 | CLIENT_DGRAM, |
f85d901f GRG |
146 | |
147 | // id for socket | |
148 | SOCKET_ID | |
149 | }; | |
f4ada568 | 150 | |
f85d901f | 151 | // -------------------------------------------------------------------------- |
be5a51fb | 152 | // event tables and other macros for wxWidgets |
f85d901f | 153 | // -------------------------------------------------------------------------- |
f4ada568 | 154 | |
f85d901f | 155 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) |
25ba2b89 GRG |
156 | EVT_MENU(CLIENT_QUIT, MyFrame::OnQuit) |
157 | EVT_MENU(CLIENT_ABOUT, MyFrame::OnAbout) | |
158 | EVT_MENU(CLIENT_OPEN, MyFrame::OnOpenConnection) | |
8575ff50 VZ |
159 | #if wxUSE_IPV6 |
160 | EVT_MENU(CLIENT_OPENIPV6, MyFrame::OnOpenConnectionIPv6) | |
161 | #endif | |
25ba2b89 GRG |
162 | EVT_MENU(CLIENT_TEST1, MyFrame::OnTest1) |
163 | EVT_MENU(CLIENT_TEST2, MyFrame::OnTest2) | |
164 | EVT_MENU(CLIENT_TEST3, MyFrame::OnTest3) | |
165 | EVT_MENU(CLIENT_CLOSE, MyFrame::OnCloseConnection) | |
166 | EVT_MENU(CLIENT_DGRAM, MyFrame::OnDatagram) | |
16cafacf | 167 | #if wxUSE_URL |
25ba2b89 | 168 | EVT_MENU(CLIENT_TESTURL, MyFrame::OnTestURL) |
16cafacf | 169 | #endif |
25ba2b89 | 170 | EVT_SOCKET(SOCKET_ID, MyFrame::OnSocketEvent) |
f85d901f | 171 | END_EVENT_TABLE() |
f4ada568 | 172 | |
f85d901f | 173 | IMPLEMENT_APP(MyApp) |
f4ada568 | 174 | |
f85d901f GRG |
175 | // ========================================================================== |
176 | // implementation | |
177 | // ========================================================================== | |
f4ada568 | 178 | |
f85d901f GRG |
179 | // -------------------------------------------------------------------------- |
180 | // the application class | |
181 | // -------------------------------------------------------------------------- | |
f4ada568 | 182 | |
f85d901f GRG |
183 | bool MyApp::OnInit() |
184 | { | |
45e6e6f8 VZ |
185 | if ( !wxApp::OnInit() ) |
186 | return false; | |
187 | ||
f85d901f GRG |
188 | // Create the main application window |
189 | MyFrame *frame = new MyFrame(); | |
f4ada568 | 190 | |
f85d901f | 191 | // Show it and tell the application that it's our main window |
b62ca03d | 192 | frame->Show(true); |
f85d901f GRG |
193 | SetTopWindow(frame); |
194 | ||
195 | // success | |
b62ca03d | 196 | return true; |
f4ada568 GL |
197 | } |
198 | ||
f85d901f GRG |
199 | // -------------------------------------------------------------------------- |
200 | // main frame | |
201 | // -------------------------------------------------------------------------- | |
202 | ||
203 | // frame constructor | |
b62ca03d | 204 | MyFrame::MyFrame() : wxFrame((wxFrame *)NULL, wxID_ANY, |
25ba2b89 | 205 | _("wxSocket demo: Client"), |
f85d901f | 206 | wxDefaultPosition, wxSize(300, 200)) |
f4ada568 | 207 | { |
f85d901f GRG |
208 | // Give the frame an icon |
209 | SetIcon(wxICON(mondrian)); | |
210 | ||
211 | // Make menus | |
212 | m_menuFile = new wxMenu(); | |
25ba2b89 | 213 | m_menuFile->Append(CLIENT_ABOUT, _("&About...\tCtrl-A"), _("Show about dialog")); |
f85d901f | 214 | m_menuFile->AppendSeparator(); |
25ba2b89 | 215 | m_menuFile->Append(CLIENT_QUIT, _("E&xit\tAlt-X"), _("Quit client")); |
f85d901f GRG |
216 | |
217 | m_menuSocket = new wxMenu(); | |
9c22ef28 | 218 | m_menuSocket->Append(CLIENT_OPEN, _("&Open session\tCtrl-O"), _("Connect to server")); |
8575ff50 | 219 | #if wxUSE_IPV6 |
9c22ef28 | 220 | m_menuSocket->Append(CLIENT_OPENIPV6, _("&Open session(IPv6)\tShift-Ctrl-O"), _("Connect to server(IPv6)")); |
8575ff50 | 221 | #endif |
f85d901f | 222 | m_menuSocket->AppendSeparator(); |
9c22ef28 VZ |
223 | m_menuSocket->Append(CLIENT_TEST1, _("Test &1\tCtrl-F1"), _("Test basic functionality")); |
224 | m_menuSocket->Append(CLIENT_TEST2, _("Test &2\tCtrl-F2"), _("Test ReadMsg and WriteMsg")); | |
225 | m_menuSocket->Append(CLIENT_TEST3, _("Test &3\tCtrl-F3"), _("Test large data transfer")); | |
f85d901f | 226 | m_menuSocket->AppendSeparator(); |
9c22ef28 | 227 | m_menuSocket->Append(CLIENT_CLOSE, _("&Close session\tCtrl-Q"), _("Close connection")); |
f85d901f | 228 | |
6097c3a2 | 229 | m_menuDatagramSocket = new wxMenu(); |
25ba2b89 GRG |
230 | m_menuDatagramSocket->Append(CLIENT_DGRAM, _("Send Datagram"), _("Test UDP sockets")); |
231 | ||
16cafacf | 232 | #if wxUSE_URL |
25ba2b89 | 233 | m_menuProtocols = new wxMenu(); |
1e4080f0 VZ |
234 | m_menuProtocols->Append(CLIENT_TESTURL, _("Test URL\tCtrl-U"), |
235 | _("Get data from the specified URL")); | |
16cafacf | 236 | #endif |
6097c3a2 | 237 | |
f85d901f GRG |
238 | // Append menus to the menubar |
239 | m_menuBar = new wxMenuBar(); | |
25ba2b89 GRG |
240 | m_menuBar->Append(m_menuFile, _("&File")); |
241 | m_menuBar->Append(m_menuSocket, _("&SocketClient")); | |
242 | m_menuBar->Append(m_menuDatagramSocket, _("&DatagramSocket")); | |
16cafacf | 243 | #if wxUSE_URL |
25ba2b89 | 244 | m_menuBar->Append(m_menuProtocols, _("&Protocols")); |
16cafacf | 245 | #endif |
f85d901f GRG |
246 | SetMenuBar(m_menuBar); |
247 | ||
8520f137 | 248 | #if wxUSE_STATUSBAR |
f85d901f | 249 | // Status bar |
f4ada568 | 250 | CreateStatusBar(2); |
8520f137 | 251 | #endif // wxUSE_STATUSBAR |
f85d901f | 252 | |
bd4d918f | 253 | // Make a textctrl for logging |
b62ca03d | 254 | m_text = new wxTextCtrl(this, wxID_ANY, |
4693b20c | 255 | _("Welcome to wxSocket demo: Client\nClient ready\n"), |
bd4d918f | 256 | wxDefaultPosition, wxDefaultSize, |
f85d901f | 257 | wxTE_MULTILINE | wxTE_READONLY); |
1e4080f0 | 258 | delete wxLog::SetActiveTarget(new wxLogTextCtrl(m_text)); |
f85d901f GRG |
259 | |
260 | // Create the socket | |
261 | m_sock = new wxSocketClient(); | |
bd4d918f GRG |
262 | |
263 | // Setup the event handler and subscribe to most events | |
f85d901f GRG |
264 | m_sock->SetEventHandler(*this, SOCKET_ID); |
265 | m_sock->SetNotify(wxSOCKET_CONNECTION_FLAG | | |
266 | wxSOCKET_INPUT_FLAG | | |
267 | wxSOCKET_LOST_FLAG); | |
b62ca03d | 268 | m_sock->Notify(true); |
f85d901f | 269 | |
b62ca03d | 270 | m_busy = false; |
f85d901f | 271 | UpdateStatusBar(); |
f4ada568 GL |
272 | } |
273 | ||
274 | MyFrame::~MyFrame() | |
275 | { | |
bd4d918f | 276 | // No delayed deletion here, as the frame is dying anyway |
f85d901f | 277 | delete m_sock; |
f4ada568 GL |
278 | } |
279 | ||
f85d901f GRG |
280 | // event handlers |
281 | ||
282 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) | |
f4ada568 | 283 | { |
b62ca03d WS |
284 | // true is to force the frame to close |
285 | Close(true); | |
f4ada568 GL |
286 | } |
287 | ||
f85d901f GRG |
288 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) |
289 | { | |
4693b20c | 290 | wxMessageBox(_("wxSocket demo: Client\n(c) 1999 Guillermo Rodriguez Garcia\n"), |
25ba2b89 | 291 | _("About Client"), |
f85d901f GRG |
292 | wxOK | wxICON_INFORMATION, this); |
293 | } | |
294 | ||
295 | void MyFrame::OnOpenConnection(wxCommandEvent& WXUNUSED(event)) | |
f4ada568 | 296 | { |
778f682e | 297 | OpenConnection(wxSockAddress::IPV4); |
8575ff50 VZ |
298 | } |
299 | #if wxUSE_IPV6 | |
300 | void MyFrame::OnOpenConnectionIPv6(wxCommandEvent& WXUNUSED(event)) | |
301 | { | |
778f682e | 302 | OpenConnection(wxSockAddress::IPV6); |
8575ff50 VZ |
303 | } |
304 | #endif // wxUSE_IPV6 | |
305 | ||
778f682e | 306 | void MyFrame::OpenConnection(wxSockAddress::Family family) |
8575ff50 | 307 | { |
778f682e VZ |
308 | wxUnusedVar(family); // unused in !wxUSE_IPV6 case |
309 | ||
8575ff50 | 310 | wxIPaddress * addr; |
25248cb6 | 311 | wxIPV4address addr4; |
8575ff50 VZ |
312 | #if wxUSE_IPV6 |
313 | wxIPV6address addr6; | |
778f682e | 314 | if ( family == wxSockAddress::IPV6 ) |
25248cb6 VZ |
315 | addr = &addr6; |
316 | else | |
8575ff50 | 317 | #endif |
778f682e | 318 | addr = &addr4; |
f4ada568 | 319 | |
b62ca03d | 320 | m_menuSocket->Enable(CLIENT_OPEN, false); |
8575ff50 VZ |
321 | #if wxUSE_IPV6 |
322 | m_menuSocket->Enable(CLIENT_OPENIPV6, false); | |
323 | #endif | |
b62ca03d | 324 | m_menuSocket->Enable(CLIENT_CLOSE, false); |
f85d901f | 325 | |
25ba2b89 | 326 | // Ask user for server address |
f85d901f | 327 | wxString hostname = wxGetTextFromUser( |
25ba2b89 GRG |
328 | _("Enter the address of the wxSocket demo server:"), |
329 | _("Connect ..."), | |
330 | _("localhost")); | |
f85d901f | 331 | |
8575ff50 VZ |
332 | addr->Hostname(hostname); |
333 | addr->Service(3000); | |
f4ada568 | 334 | |
25ba2b89 GRG |
335 | // Mini-tutorial for Connect() :-) |
336 | // --------------------------- | |
337 | // | |
338 | // There are two ways to use Connect(): blocking and non-blocking, | |
339 | // depending on the value passed as the 'wait' (2nd) parameter. | |
340 | // | |
b62ca03d WS |
341 | // Connect(addr, true) will wait until the connection completes, |
342 | // returning true on success and false on failure. This call blocks | |
25ba2b89 GRG |
343 | // the GUI (this might be changed in future releases to honour the |
344 | // wxSOCKET_BLOCK flag). | |
345 | // | |
b62ca03d WS |
346 | // Connect(addr, false) will issue a nonblocking connection request |
347 | // and return immediately. If the return value is true, then the | |
3103e8a9 | 348 | // connection has been already successfully established. If it is |
b62ca03d | 349 | // false, you must wait for the request to complete, either with |
25ba2b89 GRG |
350 | // WaitOnConnect() or by watching wxSOCKET_CONNECTION / LOST |
351 | // events (please read the documentation). | |
352 | // | |
353 | // WaitOnConnect() itself never blocks the GUI (this might change | |
354 | // in the future to honour the wxSOCKET_BLOCK flag). This call will | |
b62ca03d | 355 | // return false on timeout, or true if the connection request |
bd4d918f GRG |
356 | // completes, which in turn might mean: |
357 | // | |
358 | // a) That the connection was successfully established | |
359 | // b) That the connection request failed (for example, because | |
360 | // it was refused by the peer. | |
361 | // | |
25ba2b89 GRG |
362 | // Use IsConnected() to distinguish between these two. |
363 | // | |
364 | // So, in a brief, you should do one of the following things: | |
365 | // | |
366 | // For blocking Connect: | |
367 | // | |
b62ca03d | 368 | // bool success = client->Connect(addr, true); |
25ba2b89 GRG |
369 | // |
370 | // For nonblocking Connect: | |
371 | // | |
b62ca03d | 372 | // client->Connect(addr, false); |
bd4d918f | 373 | // |
b62ca03d | 374 | // bool waitmore = true; |
a85139a1 | 375 | // while (! client->WaitOnConnect(seconds, millis) && waitmore ) |
bd4d918f GRG |
376 | // { |
377 | // // possibly give some feedback to the user, | |
378 | // // update waitmore if needed. | |
379 | // } | |
a85139a1 | 380 | // bool success = client->IsConnected(); |
925e9792 | 381 | // |
25ba2b89 | 382 | // And that's all :-) |
e51b0130 | 383 | |
25ba2b89 | 384 | m_text->AppendText(_("\nTrying to connect (timeout = 10 sec) ...\n")); |
8575ff50 | 385 | m_sock->Connect(*addr, false); |
25ba2b89 | 386 | m_sock->WaitOnConnect(10); |
f85d901f GRG |
387 | |
388 | if (m_sock->IsConnected()) | |
25ba2b89 | 389 | m_text->AppendText(_("Succeeded ! Connection established\n")); |
f85d901f GRG |
390 | else |
391 | { | |
392 | m_sock->Close(); | |
25ba2b89 GRG |
393 | m_text->AppendText(_("Failed ! Unable to connect\n")); |
394 | wxMessageBox(_("Can't connect to the specified host"), _("Alert !")); | |
f85d901f | 395 | } |
925e9792 | 396 | |
f85d901f | 397 | UpdateStatusBar(); |
f4ada568 GL |
398 | } |
399 | ||
f85d901f | 400 | void MyFrame::OnTest1(wxCommandEvent& WXUNUSED(event)) |
f4ada568 | 401 | { |
f85d901f | 402 | // Disable socket menu entries (exception: Close Session) |
b62ca03d | 403 | m_busy = true; |
f85d901f GRG |
404 | UpdateStatusBar(); |
405 | ||
25ba2b89 | 406 | m_text->AppendText(_("\n=== Test 1 begins ===\n")); |
f85d901f GRG |
407 | |
408 | // Tell the server which test we are running | |
f4d5e009 | 409 | unsigned char c = 0xBE; |
f85d901f GRG |
410 | m_sock->Write(&c, 1); |
411 | ||
412 | // Send some data and read it back. We know the size of the | |
413 | // buffer, so we can specify the exact number of bytes to be | |
6097c3a2 GRG |
414 | // sent or received and use the wxSOCKET_WAITALL flag. Also, |
415 | // we have disabled menu entries which could interfere with | |
416 | // the test, so we can safely avoid the wxSOCKET_BLOCK flag. | |
f85d901f GRG |
417 | // |
418 | // First we send a byte with the length of the string, then | |
419 | // we send the string itself (do NOT try to send any integral | |
6097c3a2 | 420 | // value larger than a byte "as is" across the network, or |
f85d901f GRG |
421 | // you might be in trouble! Ever heard about big and little |
422 | // endian computers?) | |
e51b0130 | 423 | |
f85d901f GRG |
424 | m_sock->SetFlags(wxSOCKET_WAITALL); |
425 | ||
9c22ef28 VZ |
426 | const char *buf1 = "Test string (less than 256 chars!)"; |
427 | unsigned char len = (unsigned char)(wxStrlen(buf1) + 1); | |
428 | wxCharBuffer buf2(wxStrlen(buf1)); | |
f85d901f | 429 | |
25ba2b89 | 430 | m_text->AppendText(_("Sending a test buffer to the server ...")); |
f187448d | 431 | m_sock->Write(&len, 1); |
f85d901f | 432 | m_sock->Write(buf1, len); |
25ba2b89 | 433 | m_text->AppendText(m_sock->Error() ? _("failed !\n") : _("done\n")); |
f85d901f | 434 | |
25ba2b89 | 435 | m_text->AppendText(_("Receiving the buffer back from server ...")); |
9c22ef28 | 436 | m_sock->Read(buf2.data(), len); |
25ba2b89 | 437 | m_text->AppendText(m_sock->Error() ? _("failed !\n") : _("done\n")); |
f85d901f | 438 | |
25ba2b89 | 439 | m_text->AppendText(_("Comparing the two buffers ...")); |
f85d901f GRG |
440 | if (memcmp(buf1, buf2, len) != 0) |
441 | { | |
25ba2b89 GRG |
442 | m_text->AppendText(_("failed!\n")); |
443 | m_text->AppendText(_("Test 1 failed !\n")); | |
f85d901f GRG |
444 | } |
445 | else | |
446 | { | |
25ba2b89 GRG |
447 | m_text->AppendText(_("done\n")); |
448 | m_text->AppendText(_("Test 1 passed !\n")); | |
f85d901f | 449 | } |
25ba2b89 | 450 | m_text->AppendText(_("=== Test 1 ends ===\n")); |
f4ada568 | 451 | |
b62ca03d | 452 | m_busy = false; |
f85d901f GRG |
453 | UpdateStatusBar(); |
454 | } | |
f4ada568 | 455 | |
f85d901f GRG |
456 | void MyFrame::OnTest2(wxCommandEvent& WXUNUSED(event)) |
457 | { | |
f85d901f | 458 | // Disable socket menu entries (exception: Close Session) |
b62ca03d | 459 | m_busy = true; |
f85d901f GRG |
460 | UpdateStatusBar(); |
461 | ||
25ba2b89 | 462 | m_text->AppendText(_("\n=== Test 2 begins ===\n")); |
f85d901f GRG |
463 | |
464 | // Tell the server which test we are running | |
f4d5e009 | 465 | unsigned char c = 0xCE; |
f85d901f GRG |
466 | m_sock->Write(&c, 1); |
467 | ||
468 | // Here we use ReadMsg and WriteMsg to send messages with | |
469 | // a header with size information. Also, the reception is | |
470 | // event triggered, so we test input events as well. | |
471 | // | |
472 | // We need to set no flags here (ReadMsg and WriteMsg are | |
473 | // not affected by flags) | |
e51b0130 | 474 | |
f85d901f GRG |
475 | m_sock->SetFlags(wxSOCKET_WAITALL); |
476 | ||
477 | wxString s = wxGetTextFromUser( | |
25ba2b89 GRG |
478 | _("Enter an arbitrary string to send to the server:"), |
479 | _("Test 2 ..."), | |
be5a51fb | 480 | _("Yes I like wxWidgets!")); |
f85d901f | 481 | |
9c22ef28 VZ |
482 | const wxUTF8Buf msg1(s.utf8_str()); |
483 | size_t len = wxStrlen(msg1) + 1; | |
484 | wxCharBuffer msg2(wxStrlen(msg1)); | |
f85d901f | 485 | |
25ba2b89 | 486 | m_text->AppendText(_("Sending the string with WriteMsg ...")); |
f85d901f | 487 | m_sock->WriteMsg(msg1, len); |
25ba2b89 GRG |
488 | m_text->AppendText(m_sock->Error() ? _("failed !\n") : _("done\n")); |
489 | m_text->AppendText(_("Waiting for an event (timeout = 2 sec)\n")); | |
f85d901f GRG |
490 | |
491 | // Wait until data available (will also return if the connection is lost) | |
492 | m_sock->WaitForRead(2); | |
493 | ||
494 | if (m_sock->IsData()) | |
495 | { | |
25ba2b89 | 496 | m_text->AppendText(_("Reading the string back with ReadMsg ...")); |
9c22ef28 | 497 | m_sock->ReadMsg(msg2.data(), len); |
25ba2b89 GRG |
498 | m_text->AppendText(m_sock->Error() ? _("failed !\n") : _("done\n")); |
499 | m_text->AppendText(_("Comparing the two buffers ...")); | |
f85d901f GRG |
500 | if (memcmp(msg1, msg2, len) != 0) |
501 | { | |
925e9792 | 502 | m_text->AppendText(_("failed!\n")); |
25ba2b89 | 503 | m_text->AppendText(_("Test 2 failed !\n")); |
f85d901f GRG |
504 | } |
505 | else | |
506 | { | |
25ba2b89 GRG |
507 | m_text->AppendText(_("done\n")); |
508 | m_text->AppendText(_("Test 2 passed !\n")); | |
f85d901f | 509 | } |
765e386b | 510 | } |
f85d901f | 511 | else |
25ba2b89 | 512 | m_text->AppendText(_("Timeout ! Test 2 failed.\n")); |
765e386b | 513 | |
25ba2b89 | 514 | m_text->AppendText(_("=== Test 2 ends ===\n")); |
765e386b | 515 | |
b62ca03d | 516 | m_busy = false; |
f85d901f | 517 | UpdateStatusBar(); |
765e386b GL |
518 | } |
519 | ||
f85d901f | 520 | void MyFrame::OnTest3(wxCommandEvent& WXUNUSED(event)) |
f4ada568 | 521 | { |
6097c3a2 | 522 | // Disable socket menu entries (exception: Close Session) |
b62ca03d | 523 | m_busy = true; |
6097c3a2 GRG |
524 | UpdateStatusBar(); |
525 | ||
25ba2b89 | 526 | m_text->AppendText(_("\n=== Test 3 begins ===\n")); |
6097c3a2 GRG |
527 | |
528 | // Tell the server which test we are running | |
f4d5e009 | 529 | unsigned char c = 0xDE; |
6097c3a2 GRG |
530 | m_sock->Write(&c, 1); |
531 | ||
532 | // This test also is similar to the first one but it sends a | |
533 | // large buffer so that wxSocket is actually forced to split | |
534 | // it into pieces and take care of sending everything before | |
535 | // returning. | |
e51b0130 | 536 | |
6097c3a2 GRG |
537 | m_sock->SetFlags(wxSOCKET_WAITALL); |
538 | ||
539 | // Note that len is in kbytes here! | |
9c22ef28 VZ |
540 | const unsigned char len = 32; |
541 | wxCharBuffer buf1(len * 1024), | |
542 | buf2(len * 1024); | |
6097c3a2 | 543 | |
9c22ef28 VZ |
544 | for (size_t i = 0; i < len * 1024; i ++) |
545 | buf1.data()[i] = (char)(i % 256); | |
6097c3a2 | 546 | |
25ba2b89 | 547 | m_text->AppendText(_("Sending a large buffer (32K) to the server ...")); |
f187448d | 548 | m_sock->Write(&len, 1); |
6097c3a2 | 549 | m_sock->Write(buf1, len * 1024); |
25ba2b89 | 550 | m_text->AppendText(m_sock->Error() ? _("failed !\n") : _("done\n")); |
6097c3a2 | 551 | |
25ba2b89 | 552 | m_text->AppendText(_("Receiving the buffer back from server ...")); |
9c22ef28 | 553 | m_sock->Read(buf2.data(), len * 1024); |
25ba2b89 | 554 | m_text->AppendText(m_sock->Error() ? _("failed !\n") : _("done\n")); |
6097c3a2 | 555 | |
25ba2b89 | 556 | m_text->AppendText(_("Comparing the two buffers ...")); |
6097c3a2 GRG |
557 | if (memcmp(buf1, buf2, len) != 0) |
558 | { | |
25ba2b89 GRG |
559 | m_text->AppendText(_("failed!\n")); |
560 | m_text->AppendText(_("Test 3 failed !\n")); | |
6097c3a2 GRG |
561 | } |
562 | else | |
563 | { | |
25ba2b89 GRG |
564 | m_text->AppendText(_("done\n")); |
565 | m_text->AppendText(_("Test 3 passed !\n")); | |
6097c3a2 | 566 | } |
25ba2b89 | 567 | m_text->AppendText(_("=== Test 3 ends ===\n")); |
6097c3a2 | 568 | |
b62ca03d | 569 | m_busy = false; |
6097c3a2 | 570 | UpdateStatusBar(); |
f4ada568 GL |
571 | } |
572 | ||
f85d901f | 573 | void MyFrame::OnCloseConnection(wxCommandEvent& WXUNUSED(event)) |
f4ada568 | 574 | { |
f85d901f GRG |
575 | m_sock->Close(); |
576 | UpdateStatusBar(); | |
f4ada568 GL |
577 | } |
578 | ||
6097c3a2 GRG |
579 | void MyFrame::OnDatagram(wxCommandEvent& WXUNUSED(event)) |
580 | { | |
f187448d | 581 | m_text->AppendText(_("\n=== Datagram test begins ===\n")); |
36bec0ac GRG |
582 | m_text->AppendText(_("Sorry, not implemented\n")); |
583 | m_text->AppendText(_("=== Datagram test ends ===\n")); | |
6097c3a2 GRG |
584 | } |
585 | ||
16cafacf RN |
586 | #if wxUSE_URL |
587 | ||
25ba2b89 GRG |
588 | void MyFrame::OnTestURL(wxCommandEvent& WXUNUSED(event)) |
589 | { | |
1e4080f0 VZ |
590 | // Ask for the URL |
591 | static wxString s_urlname("http://www.google.com/"); | |
592 | wxString urlname = wxGetTextFromUser | |
593 | ( | |
594 | _("Enter an URL to get"), | |
595 | _("URL:"), | |
596 | s_urlname | |
597 | ); | |
598 | if ( urlname.empty() ) | |
599 | return; // cancelled by user | |
600 | ||
601 | s_urlname = urlname; | |
602 | ||
603 | ||
f98f168e | 604 | TestLogger logtest("URL"); |
1e4080f0 VZ |
605 | |
606 | // Parse the URL | |
607 | wxURL url(urlname); | |
608 | if ( url.GetError() != wxURL_NOERR ) | |
609 | { | |
610 | wxLogError("Failed to parse URL \"%s\"", urlname); | |
611 | return; | |
612 | } | |
25ba2b89 | 613 | |
1e4080f0 VZ |
614 | // Try to get the input stream (connects to the given URL) |
615 | wxLogMessage("Establishing connection to \"%s\"...", urlname); | |
616 | const std::auto_ptr<wxInputStream> data(url.GetInputStream()); | |
617 | if ( !data.get() ) | |
618 | { | |
619 | wxLogError("Failed to retrieve URL \"%s\"", urlname); | |
620 | return; | |
621 | } | |
25ba2b89 | 622 | |
1e4080f0 VZ |
623 | // Print the contents type and file size |
624 | wxLogMessage("Contents type: %s\nFile size: %i\nStarting to download...", | |
625 | url.GetProtocol().GetContentType(), | |
626 | data->GetSize()); | |
6f505cae | 627 | |
1e4080f0 VZ |
628 | // Get the data |
629 | wxStringOutputStream sout; | |
630 | if ( data->Read(sout).GetLastError() != wxSTREAM_EOF ) | |
631 | wxLogError("Error reading the input stream."); | |
25ba2b89 | 632 | |
1e4080f0 VZ |
633 | wxLogMessage("Text retrieved from URL \"%s\" follows:\n%s", |
634 | urlname, sout.GetString()); | |
25ba2b89 GRG |
635 | } |
636 | ||
1e4080f0 | 637 | #endif // wxUSE_URL |
16cafacf | 638 | |
f85d901f | 639 | void MyFrame::OnSocketEvent(wxSocketEvent& event) |
f4ada568 | 640 | { |
25ba2b89 | 641 | wxString s = _("OnSocketEvent: "); |
f85d901f | 642 | |
bc7e88ae | 643 | switch(event.GetSocketEvent()) |
f85d901f | 644 | { |
25ba2b89 GRG |
645 | case wxSOCKET_INPUT : s.Append(_("wxSOCKET_INPUT\n")); break; |
646 | case wxSOCKET_LOST : s.Append(_("wxSOCKET_LOST\n")); break; | |
647 | case wxSOCKET_CONNECTION : s.Append(_("wxSOCKET_CONNECTION\n")); break; | |
648 | default : s.Append(_("Unexpected event !\n")); break; | |
f85d901f | 649 | } |
f4ada568 | 650 | |
f85d901f GRG |
651 | m_text->AppendText(s); |
652 | UpdateStatusBar(); | |
f4ada568 GL |
653 | } |
654 | ||
f85d901f | 655 | // convenience functions |
a324a7bc | 656 | |
f85d901f | 657 | void MyFrame::UpdateStatusBar() |
a324a7bc | 658 | { |
f85d901f | 659 | wxString s; |
a324a7bc | 660 | |
f85d901f GRG |
661 | if (!m_sock->IsConnected()) |
662 | { | |
25ba2b89 | 663 | s.Printf(_("Not connected")); |
a324a7bc | 664 | } |
f85d901f GRG |
665 | else |
666 | { | |
8575ff50 VZ |
667 | #if wxUSE_IPV6 |
668 | wxIPV6address addr; | |
669 | #else | |
f85d901f | 670 | wxIPV4address addr; |
8575ff50 | 671 | #endif |
a324a7bc | 672 | |
f85d901f | 673 | m_sock->GetPeer(addr); |
25ba2b89 | 674 | s.Printf(_("%s : %d"), (addr.Hostname()).c_str(), addr.Service()); |
f85d901f | 675 | } |
f4ada568 | 676 | |
8520f137 | 677 | #if wxUSE_STATUSBAR |
f85d901f | 678 | SetStatusText(s, 1); |
8520f137 | 679 | #endif // wxUSE_STATUSBAR |
a737331d | 680 | |
f85d901f | 681 | m_menuSocket->Enable(CLIENT_OPEN, !m_sock->IsConnected() && !m_busy); |
8575ff50 VZ |
682 | #if wxUSE_IPV6 |
683 | m_menuSocket->Enable(CLIENT_OPENIPV6, !m_sock->IsConnected() && !m_busy); | |
684 | #endif | |
f85d901f GRG |
685 | m_menuSocket->Enable(CLIENT_TEST1, m_sock->IsConnected() && !m_busy); |
686 | m_menuSocket->Enable(CLIENT_TEST2, m_sock->IsConnected() && !m_busy); | |
687 | m_menuSocket->Enable(CLIENT_TEST3, m_sock->IsConnected() && !m_busy); | |
688 | m_menuSocket->Enable(CLIENT_CLOSE, m_sock->IsConnected()); | |
f4ada568 | 689 | } |