Skip to main content
Email Password   helpLost your password?

Contents

Introduction

This class is designed to replace the buggy MFC CCeSocket class for the WinCE (Pocket PC) platform. However, it works even on Win32 systems (tested on Win2K and WinXP).

It allows to create both TCP or UDP socket types operating in client or server configuration, integrates a dynamic buffer that stores all incoming data allowing delayed access, and provides async events notification.

Asynchronous notifications are triggered for:

To read incoming data, there are four possibilities:

To send data, you can choose between:

Other functions let you specify the string EOL format, to query socket state, to change UDP or TCP receiving buffer, and to query internal data buffer state.

Background

The first time I wrote a network application for a PDA, I realized that the CCeSocket, that comes with MFC, was completely useless. It not only lacks asynchronous notifications but it also consumes more resources than is really necessary, and must be wrapped in the CSocketFile/CArchive framework to use advanced load/store operations. So I decided to write a completely new socket wrapper for the WinCE OS that is small, efficient, general purpose, and with advanced read/send functions. I use it extensively in a human robot interface for the RoboCup Robot@Home league.

Using the code

Before explaining in detail how to use every single function of the class, I think you should known that the CCESocket uses two independent threads, one for receiving data, and another for accepting connections (if the socket is accepting). Both threads use blocking calls to Winsock API functions to minimize CPU usage. You should be aware of the existence of these threads because they call events (virtual functions, see Notifications), so when you receive an event, you're on a different thread than the main one.

Creating a socket

To use CCESocket, you first have to call the Create function:

bool Create(int socketType, int bufferSize = 0);

//Examples:

mySocket->Create(SOCK_STREAM);
mySocket->Create(SOCK_DGRAM);
mySocket->Create(SOCK_STREAM, 4096);

Return value is TRUE if the socket is created successfully, FALSE if an error occurs. You can always query the last error code with the function:

int GetLastError()
//returned error is obtained from a WSAGetLastError() call

Now, you can decide to make a client or a server socket.

Making a client socket

To make a client socket, call:

bool Connect(CString &addr, UINT remotePort);

//Examples:

mySocket->Connect("192.168.0.20", 3000);
mySocket->Connect("www.someServer.com", 5003);

Return value is TRUE if the connection was successfully established, FALSE if an error occurs.

Now, you can use your socket to send and read data. However, you should first learn how notifications (events) work, otherwise you won't know when new data is available for reading or if your socket is disconnected for some reason.

Making a server socket

To make a server socket, call:

bool Accept(UINT localPort, int maxConn = SOMAXCONN);

//Examples:

mySocket->Accept(3000);
mySocket->Accept(5003, 1);

Return value is TRUE if Accept is successful, FALSE if an error occurs. This function will bind the socket to a local port waiting for connections.

It provides a service socket that can be used to accept the connection.

You'll notice that this is a virtual function. All events are virtual functions. In fact, you cannot use CCESocket as is, you must subclass it and redefine virtual functions for the events that you want to catch.

So, when CCESocket calls your OnAccept function, you can refuse the connection, returning FALSE, or accept the connection, returning TRUE. If you accept the connection, you must create a new (subclassed) CCESocket and pass the service socket to its AcceptServiceSocket function (you do not have to call the Create function first):

void AcceptServiceSocket(SOCKET serviceSocket);

Now, you can use this new socket to receive and send messages.

A quick example (for TCP)

This is a quick example to explain the OnAccept/AcceptServiceSocket functions.

//This is a subclassed CCESocket

class CMySocket : public CCESocket  
{
public:
    CMySocket();
    CMySocket(CWnd* parent);
    virtual ~CMySocket();

    void SetParent(CWnd* parent) {m_parent = parent;}
    
    virtual bool OnAccept(SOCKET serviceSocket);
    virtual void OnReceive();
    virtual void OnClose(int closeEvent);

protected:
    CWnd* m_parent;
};

CMySocket::CMySocket() : CCESocket()
{
    m_parent = NULL;
}

CMySocket::CMySocket(CWnd* parent) : CCESocket()
{
    m_parent = parent;
}

CMySocket::~CMySocket()
{
}

bool CMySocket::OnAccept(SOCKET serviceSocket)
{
    if(m_parent)
    {
        ::PostMessage(m_parent->m_hWnd, ON_ACCEPT, 
                     (WPARAM) serviceSocket, (LPARAM) this);
        return TRUE;
    }
    return FALSE;
}

void CMySocket::OnReceive()
{
    if(m_parent)
        ::PostMessage(m_parent->m_hWnd, 
                      ON_RECEIVE, NULL, (LPARAM) this);
}

void CMySocket::OnClose(int closeEvent)
{
    if(m_parent)
        ::PostMessage(m_parent->m_hWnd, ON_CLOSE, 
                     (WPARAM) closeEvent, (LPARAM) this);
}

ON_ACCEPT, ON_RECEIVE, and ON_CLOSE are window messages passed to the main application. The latter could be something like this (note: the code is dirty and is intended only to show the necessary steps to set up a server):

class MyApp : public CDialog
{
public:
    ...
    afx_msg LRESULT OnAccept(WPARAM wParam, LPARAM lParam);
    afx_msg LRESULT OnReceiveData(WPARAM wParam, LPARAM lParam);
    afx_msg LRESULT OnDisconnected(WPARAM wParam, LPARAM lParam);
    ...
protected:
    CMySocket *m_server;
    CMySocket *m_serviceSocket;
    ...
};


BOOL MyApp::OnInitDialog()
{
    bool serverStarted;
    ...
    m_server = new CMySocket(this);
    if(serverStarted = m_server->Create(SOCK_STREAM))
        serverStarted = m_server->Accept(somePortNumber);
    if(!serverStarted)
        //Recovery code

    ...
}
LRESULT MyApp::OnAccept(WPARAM wParam, LPARAM lParam)
{
    m_serviceSocket = new CMySocket(this);
    m_serviceSocket->AcceptServiceSocket((SOCKET) wParam);
    m_serviceSocket->SendLine("Hello!");
    return 0;
}

OnAccept, OnReceiveData, and OnDisconnect are triggered by the ON_ACCEPT, ON_RECEIVE, and ON_CLOSE events posted by CMySocket. However, I only defined the OnAccept function for this example. I think the code is so simple that it doesn't need any comment :-)

Disconnecting

To disconnect a socket, you can call:

void Disconnect();

//Example:

mySocket->Disconnect();

After a disconnect, you must call Create again if you want to use the socket again.

Notifications

We have already seen the OnAccept event. Let's now analyse OnReceive and OnClose. To receive these events, you have to subclass CCESocket and provide new virtual functions, as already seen in the CMySocket example class.

As soon as you get new data, the following event is called (if you have redefined its virtual function):

virtual bool OnReceive(char* buf, int len);

This notification is called directly from the receiving thread to notify that there is new data in the queue. This is the first notification of this kind, and offers the possibility to get the data without buffering it. If you accept the packet, then return TRUE. In this case, you're responsible for deleting the buffer after its use. If you refuse the data, then return FALSE. In this case, the packet will be stored in the internal buffer and you'll receive a new notification:

virtual void OnReceive();

This event only notifies you that there is data in the buffer. I'll show you later how to read data from the buffer.

If a connection closes, for any reason, you receive:

virtual void OnClose(int closeEvent);

If your socket is a server and, for some reason, the read (UDP) or accept (TCP) thread fails, both TCP or UDP sockets will return an EVN_SERVERDOWN event. In this case, to respawn the server, you must call Create (only if TCP) followed by Accept:

//Respawning a TCP server: (OnDisconnected 

//implementation of MyApp example class)

LRESULT MyApp::OnDisconnected(WPARAM wParam, LPARAM lParam)
{
    CCESocket *disconnectedSocket = (CCESocket*) lParam;

    if(disconnectedSocket == m_server)
    {
        Sleep(100);
        if(m_server->Create(SOCK_STREAM))
            if(m_server->Accept(somePortNumber))
                return 0;

        //Recovery code

    }
    return 0;
}

As stated at the beginning, keep in mind that these functions are called from another thread, not from the main application thread. If you need to execute something in the window thread, you should send a message to it with PostMessage (as seen in the CMySocket example). This is required for MFC objects. They don't work if passed among threads, you should use these objects in the same thread where they are defined.

Reading data

You already know one of the four ways to read data: direct read through the first OnReceive event. The remaining functions access data directly from the internal buffer. You'll typically call one of them after receiving the OnReceive event. Data remains available even after a socket disconnection.

You can read binary data using:

int Read(char* buf, int len);

//Example:

char *buf = NULL;
int count;
int len = mySocket->GetDataSize();
if(len > 0)
{
    buf = new char[len];
    count = mySocket->Read(buf, len);
}

Return value is the number of bytes actually read.

To read a string, use the following function:

bool ReadString(CString &str);

//Example:

CString str;
while(mySocket->GetDataSize() > 0 && 
      mySocket->ReadString(str))
    doSomethingWithTheString(str);

Return value is TRUE if the string was read, FALSE if there was no string to read. A string is an array of bytes that begins at the current buffer location and terminates with an EOL. This value can be set with the SetEolFormat function (see later).

To read the head packet stored in the buffer, use:

bool GetPacket(char*& buf, int* len);

//Example:

char *buf = NULL;
int len;
while(mySocket->GetNumPackets() > 0)
{
    if(mySocket->GetPacket(buf, &len))
        useTheData(buf, len);
    if(buf != NULL)
        delete[] buf;
}

Return value is TRUE if the packet was successfully retrieved, FALSE if there was no packet to retrieve.

Sending data

You have three functions to send data.

Binary send:

int Send(const char* buf, int len);

//Example:

int count;
count = mySocket->Send(myBuffer, myBufferSize);

Return value is the number of bytes sent, or SOCKET_ERROR if an error occurs. Note: you cannot send data with a listening TCP socket.

To send a string, use one of the following functions:

int Send(CString& str);
int SendLine(CString &str);

//Examples:

CString msg = "My beautiful string";
mySocket->Send(msg);
mySocket->Send("Hello!");
mySocket->SendLine(msg);

Both send the string str. However, the latter adds an EOL to the string. The EOL is set with the SetEolFormat function (see later).

Other functionalities

Data query functions

int GetDataSize();

Returns the total data size queued in the buffer.

int GetNumPackets();

Returns the number of packets queued in the buffer.

int GetPacketSize();

Returns the size of the head packet in the queue (next packet to to be retrieved).

Socket query functions

int GetLastError();
//returned error is obtained from a WSAGetLastError() call

Returns the error code of the last error.

int GetSocketType();

Returns SOCK_STREAM for TCP sockets, SOCK_DGRAM for UDP sockets.

int GetSocketState();

Returns one of the following states:

Other functions

void SetBufferSize(int bufSize);

Call this function to modify the buffer size. You can call it at any time, even if the socket is already connected. This is useful if you want to change the buffer size after a AcceptServiceSocket call.

void SetEolFormat(eolFormat eol);

Sets the new EOL format for SendLine and ReadString functions.

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralConnect timeout question Pin
RCush
3:41 30 May '09  
GeneralRe: Connect timeout question Pin
mac_cz
10:46 12 Nov '09  
GeneralIt wont run under WCE Pin
AndySprfe
3:43 7 Apr '09  
Generalhi ,could you update your code and make a wince project? Pin
lanmanck
19:16 27 Feb '09  
GeneralApplication Crashing Pin
Dave Brooks
5:16 24 Oct '08  
GeneralRe: Application Crashing Pin
Greg Nash
13:34 9 Jun '09  
QuestionSomething Wrong with recvfrom Pin
dr4cul4
13:01 19 Jun '08  
GeneralFile send/recv Pin
Mehmet Suyuti Dindar
0:44 14 Dec '07  
GeneralMemory Leak: Thread handles are not being closed. Pin
eisenhut
12:31 27 Nov '07  
GeneralCan't read the incoming string Pin
waqasdanish
19:52 8 Oct '07  
GeneralHow can I use my own buffer? Pin
junkito
0:10 25 Jul '07  
GeneralCould not see it working Pin
AlexEvans
12:51 17 May '07  
QuestionSending message in UDP server mode Pin
Xav_1
2:02 21 Mar '07  
GeneralSmall Memory Leak [modified] Pin
king minger
2:50 20 Dec '06  
QuestionRe: Small Memory Leak Pin
signuphere
17:42 6 Jan '07  
AnswerRe: Small Memory Leak Pin
king minger
22:49 7 Jan '07  
GeneralRe: Small Memory Leak Pin
eisenhut
10:46 27 Nov '07  
GeneralRun on Pocet PC 2003/Mobile 5.0 Pin
djgann
13:43 15 Nov '06  
GeneralRe: Run on Pocet PC 2003/Mobile 5.0 Pin
Marco Zaratti
10:53 16 Nov '06  
GeneralRe: Run on Pocet PC 2003/Mobile 5.0 Pin
David!
14:57 9 Feb '09  
GeneralRe: Run on Pocet PC 2003/Mobile 5.0 Pin
Marco Zaratti
16:43 9 Feb '09  
GeneralEVC Project Pin
radiomanoz
1:36 24 Jul '06  
GeneralRe: EVC Project Pin
mikitens
21:25 31 Jul '06  
GeneralRe: EVC Project Pin
Marco Zaratti
2:04 5 Aug '06  
GeneralRe: EVC Project Pin
mikitens
10:41 6 Aug '06  


Last Updated 27 Jun 2006 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009