]>
git.saurik.com Git - wxWidgets.git/blob - samples/wxsocket/client.cpp
e2bfdf6201b442f6b8d9e474fcf64b6c26a26b5c
3 * Purpose: wxSocket: client demo
4 * Author: LAVAUX Guilhem (from minimal.cc)
7 * Copyright: (c) 1993, AIAI, University of Edinburgh
8 * (C) 1997, LAVAUX Guilhem
11 #pragma implementation
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
25 #include "wx/socket.h"
27 #include "wx/protocol/http.h"
29 // Define a new application type
30 class MyApp
: public wxApp
32 virtual bool OnInit(void);
37 // Define a new frame type
38 class MyFrame
: public wxFrame
40 DECLARE_CLASS(MyFrame
)
46 void OnCloseTest(wxCommandEvent
& evt
);
47 void OnExecTest1(wxCommandEvent
& evt
);
48 void OnExecUrlTest(wxCommandEvent
& evt
);
49 void OnQuitApp(wxCommandEvent
& evt
);
50 void OnExecOpenConnection(wxCommandEvent
& evt
);
51 void OnExecCloseConnection(wxCommandEvent
& evt
);
58 IMPLEMENT_CLASS(MyFrame
, wxFrame
)
61 * Define a new derived SocketClient
63 class MyClient
: public wxSocketClient
68 void OnNotify(wxRequestNotify
WXUNUSED(flags
)) { frame
->UpdateStatus(); }
71 // ID for the menu quit command
72 const SKDEMO_QUIT
= 101;
73 const SKDEMO_CONNECT
= 102;
74 const SKDEMO_TEST1
= 103;
75 const SKDEMO_TEST2
= 104;
76 const SKDEMO_CLOSE
= 105;
77 const SKDEMO_TEST3
= 106;
78 const ID_TEST_CLOSE
= 107;
83 * `Main program' equivalent, creating windows and returning main app frame
85 bool MyApp::OnInit(void)
87 // Create the main frame window
88 MyFrame
*frame
= new MyFrame();
92 frame
->SetIcon(new wxIcon("mondrian"));
95 frame
->SetIcon(new wxIcon("mondrian.xbm"));
99 wxMenu
*file_menu
= new wxMenu();
101 file_menu
->Append(SKDEMO_QUIT
, "Exit");
102 wxMenuBar
*menu_bar
= new wxMenuBar
;
103 menu_bar
->Append(file_menu
, "File");
105 wxMenu
*socket_menu
= new wxMenu();
106 socket_menu
->Append(SKDEMO_CONNECT
, "Open session");
107 socket_menu
->AppendSeparator();
108 socket_menu
->Append(SKDEMO_TEST1
, "Start test 1");
109 socket_menu
->Append(SKDEMO_TEST2
, "Start test 2");
110 socket_menu
->AppendSeparator();
111 socket_menu
->Append(SKDEMO_CLOSE
, "Close session");
112 socket_menu
->AppendSeparator();
113 socket_menu
->Append(SKDEMO_TEST3
, "Start URL test");
115 menu_bar
->Append(socket_menu
, "Socket");
117 frame
->SetMenuBar(menu_bar
);
119 // Make a panel with a message
120 (void)new wxPanel(frame
, 0, 0, 300, 100);
125 // Return the main frame window
130 * MyFrame Constructor
133 wxFrame(NULL
, -1, "wxSocket client demo",
134 wxDefaultPosition
, wxSize(300, 200), wxDEFAULT_FRAME_STYLE
)
137 wxSocketHandler::Master();
139 sock
= new MyClient();
140 sock
->SetFlags(wxSocketBase::WAITALL
);
141 wxSocketHandler::Master().Register(sock
);
143 sock
->SetNotify(wxSocketBase::REQ_LOST
);
153 void MyFrame::OnQuitApp(wxCommandEvent
& WXUNUSED(evt
))
158 void MyFrame::OnExecOpenConnection(wxCommandEvent
& WXUNUSED(evt
))
162 if (sock
->IsConnected())
165 wxString hname
= wxGetTextFromUser("Enter the address of the wxSocket Sample Server",
166 "Connect ...", "localhost");
167 addr
.Hostname(hname
);
170 sock
->Connect(addr
, TRUE
);
171 if (!sock
->IsConnected())
172 wxMessageBox("Can't connect to the specified host", "Alert !");
177 void MyFrame::OnExecCloseConnection(wxCommandEvent
& WXUNUSED(evt
))
184 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
185 EVT_BUTTON(ID_TEST_CLOSE
, MyFrame::OnCloseTest
)
186 EVT_MENU(SKDEMO_TEST1
, MyFrame::OnExecTest1
)
187 EVT_MENU(SKDEMO_TEST3
, MyFrame::OnExecUrlTest
)
188 EVT_MENU(SKDEMO_QUIT
, MyFrame::OnQuitApp
)
189 EVT_MENU(SKDEMO_CONNECT
, MyFrame::OnExecOpenConnection
)
190 EVT_MENU(SKDEMO_CLOSE
, MyFrame::OnExecCloseConnection
)
193 void MyFrame::OnCloseTest(wxCommandEvent
& evt
)
195 wxButton
*button
= (wxButton
*)evt
.GetEventObject();
196 wxDialog
*dlg
= (wxDialog
*)button
->GetParent();
201 void MyFrame::UpdateStatus()
203 if (!sock
->IsConnected()) {
204 SetStatusText("Not connected", 0);
205 SetStatusText("", 1);
211 sprintf(s
, "Connected to %s", (const char *)addr
.Hostname());
213 sprintf(s
, "Service: %d", addr
.Service());
218 void MyFrame::OnExecTest1(wxCommandEvent
& WXUNUSED(evt
))
220 if (!sock
->IsConnected())
223 wxDialog
*dlgbox
= new wxDialog(this, -1, "Test 1", wxDefaultPosition
, wxSize(410, 270));
224 wxTextCtrl
*text_win
= new wxTextCtrl(dlgbox
, -1, "",
225 wxPoint(0, 0), wxSize(400, 200),
227 (void)new wxButton(dlgbox
, ID_TEST_CLOSE
, "Close",
228 wxPoint(100, 210), wxSize(100, 40));
234 text_win
->WriteText("Initializing test 1 ...\n");
237 buf
= copystring("Salut ! Salut ! Salut ! Salut Toto\n");
238 buf2
= new char[strlen(buf
)+1];
240 sock
->WriteMsg(&c
, 1);
243 text_win
->WriteText("Sending some byte to the server ...");
244 sock
->Write(buf
, strlen(buf
)+1);
245 text_win
->WriteText("done\n");
246 text_win
->WriteText("Receiving some byte from the server ...");
247 sock
->Read(buf2
, strlen(buf
)+1);
248 text_win
->WriteText("done\n");
250 text_win
->WriteText("Comparing the two buffers ...");
251 if (memcmp(buf
, buf2
, strlen(buf
)+1) != 0) {
252 text_win
->WriteText("Fail\n");
256 text_win
->WriteText("done\nTest 1 passed !\n");
267 void MyFrame::OnExecUrlTest(wxCommandEvent
& WXUNUSED(evt
))
269 wxString urlname
= wxGetTextFromUser("Enter the address of the wxSocket Sample Server",
270 "Connect ...", "localhost");
273 wxInputStream
*datas
= url
.GetInputStream();
276 wxMessageBox("Error in getting data from the URL.", "Alert !");
278 wxMessageBox("Success !!", "OK !");