]>
git.saurik.com Git - wxWidgets.git/blob - samples/sockets/client.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Client for wxSocket demo
4 // Author: Guillermo Rodriguez Garcia <guille@iies.es>
8 // Copyright: (c) 1999 Guillermo Rodriguez Garcia
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ==========================================================================
14 // ==========================================================================
16 // --------------------------------------------------------------------------
18 // --------------------------------------------------------------------------
21 # pragma implementation "client.cpp"
22 # pragma interface "client.cpp"
25 // For compilers that support precompilation, includes "wx/wx.h".
26 #include "wx/wxprec.h"
32 // for all others, include the necessary headers
37 #include "wx/socket.h"
39 #include "wx/wfstream.h"
41 // --------------------------------------------------------------------------
43 // --------------------------------------------------------------------------
45 // the application icon
46 #if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__)
47 # include "mondrian.xpm"
50 // --------------------------------------------------------------------------
52 // --------------------------------------------------------------------------
54 // Define a new application type
55 class MyApp
: public wxApp
58 virtual bool OnInit();
61 // Define a new frame type: this is going to be our main frame
62 class MyFrame
: public wxFrame
68 // event handlers for File menu
69 void OnQuit(wxCommandEvent
& event
);
70 void OnAbout(wxCommandEvent
& event
);
72 // event handlers for Socket menu
73 void OnOpenConnection(wxCommandEvent
& event
);
74 void OnTest1(wxCommandEvent
& event
);
75 void OnTest2(wxCommandEvent
& event
);
76 void OnTest3(wxCommandEvent
& event
);
77 void OnCloseConnection(wxCommandEvent
& event
);
79 // event handlers for Protocols menu
80 void OnTestURL(wxCommandEvent
& event
);
82 // event handlers for DatagramSocket menu (stub)
83 void OnDatagram(wxCommandEvent
& event
);
85 // socket event handler
86 void OnSocketEvent(wxSocketEvent
& event
);
88 // convenience functions
89 void UpdateStatusBar();
92 wxSocketClient
*m_sock
;
96 wxMenu
*m_menuDatagramSocket
;
97 wxMenu
*m_menuProtocols
;
101 // any class wishing to process wxWindows events must use this macro
102 DECLARE_EVENT_TABLE()
105 // --------------------------------------------------------------------------
107 // --------------------------------------------------------------------------
109 // IDs for the controls and the menu commands
127 // --------------------------------------------------------------------------
128 // event tables and other macros for wxWindows
129 // --------------------------------------------------------------------------
131 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
132 EVT_MENU(CLIENT_QUIT
, MyFrame::OnQuit
)
133 EVT_MENU(CLIENT_ABOUT
, MyFrame::OnAbout
)
134 EVT_MENU(CLIENT_OPEN
, MyFrame::OnOpenConnection
)
135 EVT_MENU(CLIENT_TEST1
, MyFrame::OnTest1
)
136 EVT_MENU(CLIENT_TEST2
, MyFrame::OnTest2
)
137 EVT_MENU(CLIENT_TEST3
, MyFrame::OnTest3
)
138 EVT_MENU(CLIENT_CLOSE
, MyFrame::OnCloseConnection
)
139 EVT_MENU(CLIENT_DGRAM
, MyFrame::OnDatagram
)
140 EVT_MENU(CLIENT_TESTURL
, MyFrame::OnTestURL
)
141 EVT_SOCKET(SOCKET_ID
, MyFrame::OnSocketEvent
)
146 // ==========================================================================
148 // ==========================================================================
150 // --------------------------------------------------------------------------
151 // the application class
152 // --------------------------------------------------------------------------
156 // Create the main application window
157 MyFrame
*frame
= new MyFrame();
159 // Show it and tell the application that it's our main window
167 // --------------------------------------------------------------------------
169 // --------------------------------------------------------------------------
172 MyFrame::MyFrame() : wxFrame((wxFrame
*)NULL
, -1,
173 _("wxSocket demo: Client"),
174 wxDefaultPosition
, wxSize(300, 200))
176 // Give the frame an icon
177 SetIcon(wxICON(mondrian
));
180 m_menuFile
= new wxMenu();
181 m_menuFile
->Append(CLIENT_ABOUT
, _("&About...\tCtrl-A"), _("Show about dialog"));
182 m_menuFile
->AppendSeparator();
183 m_menuFile
->Append(CLIENT_QUIT
, _("E&xit\tAlt-X"), _("Quit client"));
185 m_menuSocket
= new wxMenu();
186 m_menuSocket
->Append(CLIENT_OPEN
, _("&Open session"), _("Connect to server"));
187 m_menuSocket
->AppendSeparator();
188 m_menuSocket
->Append(CLIENT_TEST1
, _("Test &1"), _("Test basic functionality"));
189 m_menuSocket
->Append(CLIENT_TEST2
, _("Test &2"), _("Test ReadMsg and WriteMsg"));
190 m_menuSocket
->Append(CLIENT_TEST3
, _("Test &3"), _("Test large data transfer"));
191 m_menuSocket
->AppendSeparator();
192 m_menuSocket
->Append(CLIENT_CLOSE
, _("&Close session"), _("Close connection"));
194 m_menuDatagramSocket
= new wxMenu();
195 m_menuDatagramSocket
->Append(CLIENT_DGRAM
, _("Send Datagram"), _("Test UDP sockets"));
197 m_menuProtocols
= new wxMenu();
198 m_menuProtocols
->Append(CLIENT_TESTURL
, _("Test URL"), _("Get data from the specified URL"));
200 // Append menus to the menubar
201 m_menuBar
= new wxMenuBar();
202 m_menuBar
->Append(m_menuFile
, _("&File"));
203 m_menuBar
->Append(m_menuSocket
, _("&SocketClient"));
204 m_menuBar
->Append(m_menuDatagramSocket
, _("&DatagramSocket"));
205 m_menuBar
->Append(m_menuProtocols
, _("&Protocols"));
206 SetMenuBar(m_menuBar
);
211 // Make a textctrl for logging
212 m_text
= new wxTextCtrl(this, -1,
213 _("Welcome to wxSocket demo: Client\nClient ready\n"),
214 wxDefaultPosition
, wxDefaultSize
,
215 wxTE_MULTILINE
| wxTE_READONLY
);
218 m_sock
= new wxSocketClient();
220 // Setup the event handler and subscribe to most events
221 m_sock
->SetEventHandler(*this, SOCKET_ID
);
222 m_sock
->SetNotify(wxSOCKET_CONNECTION_FLAG
|
223 wxSOCKET_INPUT_FLAG
|
225 m_sock
->Notify(TRUE
);
233 // No delayed deletion here, as the frame is dying anyway
239 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
241 // TRUE is to force the frame to close
245 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
247 wxMessageBox(_("wxSocket demo: Client\n(c) 1999 Guillermo Rodriguez Garcia\n"),
249 wxOK
| wxICON_INFORMATION
, this);
252 void MyFrame::OnOpenConnection(wxCommandEvent
& WXUNUSED(event
))
256 m_menuSocket
->Enable(CLIENT_OPEN
, FALSE
);
257 m_menuSocket
->Enable(CLIENT_CLOSE
, FALSE
);
259 // Ask user for server address
260 wxString hostname
= wxGetTextFromUser(
261 _("Enter the address of the wxSocket demo server:"),
265 addr
.Hostname(hostname
);
268 // Mini-tutorial for Connect() :-)
269 // ---------------------------
271 // There are two ways to use Connect(): blocking and non-blocking,
272 // depending on the value passed as the 'wait' (2nd) parameter.
274 // Connect(addr, TRUE) will wait until the connection completes,
275 // returning TRUE on success and FALSE on failure. This call blocks
276 // the GUI (this might be changed in future releases to honour the
277 // wxSOCKET_BLOCK flag).
279 // Connect(addr, FALSE) will issue a nonblocking connection request
280 // and return immediately. If the return value is TRUE, then the
281 // connection has been already succesfully established. If it is
282 // FALSE, you must wait for the request to complete, either with
283 // WaitOnConnect() or by watching wxSOCKET_CONNECTION / LOST
284 // events (please read the documentation).
286 // WaitOnConnect() itself never blocks the GUI (this might change
287 // in the future to honour the wxSOCKET_BLOCK flag). This call will
288 // return FALSE on timeout, or TRUE if the connection request
289 // completes, which in turn might mean:
291 // a) That the connection was successfully established
292 // b) That the connection request failed (for example, because
293 // it was refused by the peer.
295 // Use IsConnected() to distinguish between these two.
297 // So, in a brief, you should do one of the following things:
299 // For blocking Connect:
301 // bool success = client->Connect(addr, TRUE);
303 // For nonblocking Connect:
305 // client->Connect(addr, FALSE);
307 // bool waitmore = TRUE;
308 // while (! client->WaitOnConnect(seconds, millis) && waitmore )
310 // // possibly give some feedback to the user,
311 // // update waitmore if needed.
313 // bool success = client->IsConnected();
315 // And that's all :-)
317 m_text
->AppendText(_("\nTrying to connect (timeout = 10 sec) ...\n"));
318 m_sock
->Connect(addr
, FALSE
);
319 m_sock
->WaitOnConnect(10);
321 if (m_sock
->IsConnected())
322 m_text
->AppendText(_("Succeeded ! Connection established\n"));
326 m_text
->AppendText(_("Failed ! Unable to connect\n"));
327 wxMessageBox(_("Can't connect to the specified host"), _("Alert !"));
333 void MyFrame::OnTest1(wxCommandEvent
& WXUNUSED(event
))
339 // Disable socket menu entries (exception: Close Session)
343 m_text
->AppendText(_("\n=== Test 1 begins ===\n"));
345 // Tell the server which test we are running
346 unsigned char c
= 0xBE;
347 m_sock
->Write(&c
, 1);
349 // Send some data and read it back. We know the size of the
350 // buffer, so we can specify the exact number of bytes to be
351 // sent or received and use the wxSOCKET_WAITALL flag. Also,
352 // we have disabled menu entries which could interfere with
353 // the test, so we can safely avoid the wxSOCKET_BLOCK flag.
355 // First we send a byte with the length of the string, then
356 // we send the string itself (do NOT try to send any integral
357 // value larger than a byte "as is" across the network, or
358 // you might be in trouble! Ever heard about big and little
359 // endian computers?)
361 m_sock
->SetFlags(wxSOCKET_WAITALL
);
363 buf1
= _("Test string (less than 256 chars!)");
364 len
= (wxStrlen(buf1
) + 1) * sizeof(wxChar
);
365 buf2
= new wxChar
[wxStrlen(buf1
) + 1];
367 m_text
->AppendText(_("Sending a test buffer to the server ..."));
368 m_sock
->Write(&len
, 1);
369 m_sock
->Write(buf1
, len
);
370 m_text
->AppendText(m_sock
->Error() ? _("failed !\n") : _("done\n"));
372 m_text
->AppendText(_("Receiving the buffer back from server ..."));
373 m_sock
->Read(buf2
, len
);
374 m_text
->AppendText(m_sock
->Error() ? _("failed !\n") : _("done\n"));
376 m_text
->AppendText(_("Comparing the two buffers ..."));
377 if (memcmp(buf1
, buf2
, len
) != 0)
379 m_text
->AppendText(_("failed!\n"));
380 m_text
->AppendText(_("Test 1 failed !\n"));
384 m_text
->AppendText(_("done\n"));
385 m_text
->AppendText(_("Test 1 passed !\n"));
387 m_text
->AppendText(_("=== Test 1 ends ===\n"));
394 void MyFrame::OnTest2(wxCommandEvent
& WXUNUSED(event
))
400 // Disable socket menu entries (exception: Close Session)
404 m_text
->AppendText(_("\n=== Test 2 begins ===\n"));
406 // Tell the server which test we are running
407 unsigned char c
= 0xCE;
408 m_sock
->Write(&c
, 1);
410 // Here we use ReadMsg and WriteMsg to send messages with
411 // a header with size information. Also, the reception is
412 // event triggered, so we test input events as well.
414 // We need to set no flags here (ReadMsg and WriteMsg are
415 // not affected by flags)
417 m_sock
->SetFlags(wxSOCKET_WAITALL
);
419 wxString s
= wxGetTextFromUser(
420 _("Enter an arbitrary string to send to the server:"),
422 _("Yes I like wxWindows!"));
425 len
= (wxStrlen(msg1
) + 1) * sizeof(wxChar
);
426 msg2
= new wxChar
[wxStrlen(msg1
) + 1];
428 m_text
->AppendText(_("Sending the string with WriteMsg ..."));
429 m_sock
->WriteMsg(msg1
, len
);
430 m_text
->AppendText(m_sock
->Error() ? _("failed !\n") : _("done\n"));
431 m_text
->AppendText(_("Waiting for an event (timeout = 2 sec)\n"));
433 // Wait until data available (will also return if the connection is lost)
434 m_sock
->WaitForRead(2);
436 if (m_sock
->IsData())
438 m_text
->AppendText(_("Reading the string back with ReadMsg ..."));
439 m_sock
->ReadMsg(msg2
, len
);
440 m_text
->AppendText(m_sock
->Error() ? _("failed !\n") : _("done\n"));
441 m_text
->AppendText(_("Comparing the two buffers ..."));
442 if (memcmp(msg1
, msg2
, len
) != 0)
444 m_text
->AppendText(_("failed!\n"));
445 m_text
->AppendText(_("Test 2 failed !\n"));
449 m_text
->AppendText(_("done\n"));
450 m_text
->AppendText(_("Test 2 passed !\n"));
454 m_text
->AppendText(_("Timeout ! Test 2 failed.\n"));
456 m_text
->AppendText(_("=== Test 2 ends ===\n"));
463 void MyFrame::OnTest3(wxCommandEvent
& WXUNUSED(event
))
469 // Disable socket menu entries (exception: Close Session)
473 m_text
->AppendText(_("\n=== Test 3 begins ===\n"));
475 // Tell the server which test we are running
476 unsigned char c
= 0xDE;
477 m_sock
->Write(&c
, 1);
479 // This test also is similar to the first one but it sends a
480 // large buffer so that wxSocket is actually forced to split
481 // it into pieces and take care of sending everything before
484 m_sock
->SetFlags(wxSOCKET_WAITALL
);
486 // Note that len is in kbytes here!
488 buf1
= new char[len
* 1024];
489 buf2
= new char[len
* 1024];
491 for (int i
= 0; i
< len
* 1024; i
++)
492 buf1
[i
] = (char)(i
% 256);
494 m_text
->AppendText(_("Sending a large buffer (32K) to the server ..."));
495 m_sock
->Write(&len
, 1);
496 m_sock
->Write(buf1
, len
* 1024);
497 m_text
->AppendText(m_sock
->Error() ? _("failed !\n") : _("done\n"));
499 m_text
->AppendText(_("Receiving the buffer back from server ..."));
500 m_sock
->Read(buf2
, len
* 1024);
501 m_text
->AppendText(m_sock
->Error() ? _("failed !\n") : _("done\n"));
503 m_text
->AppendText(_("Comparing the two buffers ..."));
504 if (memcmp(buf1
, buf2
, len
) != 0)
506 m_text
->AppendText(_("failed!\n"));
507 m_text
->AppendText(_("Test 3 failed !\n"));
511 m_text
->AppendText(_("done\n"));
512 m_text
->AppendText(_("Test 3 passed !\n"));
514 m_text
->AppendText(_("=== Test 3 ends ===\n"));
521 void MyFrame::OnCloseConnection(wxCommandEvent
& WXUNUSED(event
))
527 void MyFrame::OnDatagram(wxCommandEvent
& WXUNUSED(event
))
529 m_text
->AppendText(_("\n=== Datagram test begins ===\n"));
530 m_text
->AppendText(_("Sorry, not implemented\n"));
531 m_text
->AppendText(_("=== Datagram test ends ===\n"));
534 void MyFrame::OnTestURL(wxCommandEvent
& WXUNUSED(event
))
536 // Note that we are creating a new socket here, so this
537 // won't mess with the client/server demo.
540 m_text
->AppendText(_("\n=== URL test begins ===\n"));
541 wxString urlname
= wxGetTextFromUser(_("Enter an URL to get"),
543 _T("http://localhost"));
547 if (url
.GetError() != wxURL_NOERR
)
549 m_text
->AppendText(_("Error: couldn't parse URL\n"));
550 m_text
->AppendText(_("=== URL test ends ===\n"));
554 // Try to get the input stream (connects to the given URL)
555 m_text
->AppendText(_("Trying to establish connection...\n"));
557 wxInputStream
*data
= url
.GetInputStream();
560 m_text
->AppendText(_("Error: couldn't read from URL\n"));
561 m_text
->AppendText(_("=== URL test ends ===\n"));
565 // Print the contents type and file size
567 s
.Printf(_("Contents type: %s\nFile size: %i\nStarting to download...\n"),
568 url
.GetProtocol().GetContentType().c_str(),
570 m_text
->AppendText(s
);
574 wxFileOutputStream
sout(wxString("test.url"));
577 m_text
->AppendText(_("Error: couldn't open file for output\n"));
578 m_text
->AppendText(_("=== URL test ends ===\n"));
583 m_text
->AppendText(_("Results written to file: test.url\n"));
584 m_text
->AppendText(_("Done.\n"));
585 m_text
->AppendText(_("=== URL test ends ===\n"));
590 void MyFrame::OnSocketEvent(wxSocketEvent
& event
)
592 wxString s
= _("OnSocketEvent: ");
594 switch(event
.GetSocketEvent())
596 case wxSOCKET_INPUT
: s
.Append(_("wxSOCKET_INPUT\n")); break;
597 case wxSOCKET_LOST
: s
.Append(_("wxSOCKET_LOST\n")); break;
598 case wxSOCKET_CONNECTION
: s
.Append(_("wxSOCKET_CONNECTION\n")); break;
599 default : s
.Append(_("Unexpected event !\n")); break;
602 m_text
->AppendText(s
);
606 // convenience functions
608 void MyFrame::UpdateStatusBar()
612 if (!m_sock
->IsConnected())
614 s
.Printf(_("Not connected"));
620 m_sock
->GetPeer(addr
);
621 s
.Printf(_("%s : %d"), (addr
.Hostname()).c_str(), addr
.Service());
626 m_menuSocket
->Enable(CLIENT_OPEN
, !m_sock
->IsConnected() && !m_busy
);
627 m_menuSocket
->Enable(CLIENT_TEST1
, m_sock
->IsConnected() && !m_busy
);
628 m_menuSocket
->Enable(CLIENT_TEST2
, m_sock
->IsConnected() && !m_busy
);
629 m_menuSocket
->Enable(CLIENT_TEST3
, m_sock
->IsConnected() && !m_busy
);
630 m_menuSocket
->Enable(CLIENT_CLOSE
, m_sock
->IsConnected());