Initial move from C to C++. The functionality of the code should not have

changed at all in this move from C to C++.  To top that off there is a
define wxUSE_GSOCKET_CPLUSPLUS in include/wx/gsocket.h which turns off
all the new code in that file and also gsockunx.h.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25229 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott 2004-01-18 07:46:18 +00:00
parent 1c01bc8e05
commit 09e6e5ec02
3 changed files with 450 additions and 327 deletions

View File

@ -11,6 +11,14 @@
#ifndef __GSOCKET_H
#define __GSOCKET_H
/* DFE: Define this and compile gsocket.cpp instead of gsocket.c and
compile existing GUI gsock*.c as C++ to try out the new GSocket. */
/* #define wxUSE_GSOCKET_CPLUSPLUS 1 */
#undef wxUSE_GSOCKET_CPLUSPLUS
#if !defined(__cplusplus) && defined(wxUSE_GSOCKET_CPLUSPLUS)
#error "You need to compile this file (probably a GUI gsock peice) as C++"
#endif
#ifndef __GSOCKET_STANDALONE__
#include "wx/setup.h"
#include "wx/platform.h"
@ -36,11 +44,17 @@
#include <stdlib.h>
#endif
#ifdef wxUSE_GSOCKET_CPLUSPLUS
typedef class GSocketBSD GSocket;
#endif //def wxUSE_GSOCKET_CPLUSPLUS
#ifdef __cplusplus
extern "C" {
#endif
#ifndef wxUSE_GSOCKET_CPLUSPLUS
typedef struct _GSocket GSocket;
#endif //ndef wxUSE_GSOCKET_CPLUSPLUS
typedef struct _GAddress GAddress;
typedef enum {
@ -135,6 +149,7 @@ GSocket *GSocket_new(void);
void GSocket_destroy(GSocket *socket);
#ifndef wxUSE_GSOCKET_CPLUSPLUS
/* GSocket_Shutdown:
* Disallow further read/write operations on this socket, close
@ -271,6 +286,8 @@ void GSocket_SetNonBlocking(GSocket *socket, int non_block);
*/
void GSocket_SetTimeout(GSocket *socket, unsigned long millisec);
#endif //ndef wxUSE_GSOCKET_CPLUSPLUS
/* GSocket_GetError:
* Returns the last error occured for this socket. Note that successful
* operations do not clear this back to GSOCK_NOERROR, so use it only
@ -278,6 +295,7 @@ void GSocket_SetTimeout(GSocket *socket, unsigned long millisec);
*/
GSocketError WXDLLIMPEXP_NET GSocket_GetError(GSocket *socket);
#ifndef wxUSE_GSOCKET_CPLUSPLUS
/* Callbacks */
@ -318,6 +336,8 @@ void GSocket_SetCallback(GSocket *socket, GSocketEventFlags flags,
*/
void GSocket_UnsetCallback(GSocket *socket, GSocketEventFlags flags);
#endif //ndef wxUSE_GSOCKET_CPLUSPLUS
/* GAddress */
@ -355,6 +375,9 @@ GSocketError GAddress_UNIX_GetPath(GAddress *address, char *path, size_t sbuf);
}
#endif /* __cplusplus */
#ifdef wxUSE_GSOCKET_CPLUSPLUS
#include "wx/unix/gsockunx.h"
#endif // def wxUSE_GSOCKET_CPLUSPLUS
#endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */

View File

@ -21,11 +21,6 @@
#include "gsocket.h"
#endif
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#ifndef TRUE
#define TRUE 1
#endif
@ -34,10 +29,59 @@ extern "C" {
#define FALSE 0
#endif
#ifdef wxUSE_GSOCKET_CPLUSPLUS
class GSocketBSD
{
public:
GSocketBSD();
~GSocketBSD();
bool IsOk() { return m_ok; }
void Close();
void Shutdown();
GSocketError SetLocal(GAddress *address);
GSocketError SetPeer(GAddress *address);
GAddress *GetLocal();
GAddress *GetPeer();
GSocketError SetServer();
GSocket *WaitConnection();
GSocketError Connect(GSocketStream stream);
GSocketError SetNonOriented();
int Read(char *buffer, int size);
int Write(const char *buffer, int size);
GSocketEventFlags Select(GSocketEventFlags flags);
void SetNonBlocking(int non_block);
void SetTimeout(unsigned long millisec);
GSocketError GetError();
void SetCallback(GSocketEventFlags flags,
GSocketCallback callback, char *cdata);
void UnsetCallback(GSocketEventFlags flags);
/* API compatibility functions */
static void _GSocket_Detected_Read(GSocket *socket);
static void _GSocket_Detected_Write(GSocket *socket);
protected:
void Enable(GSocketEvent event);
void Disable(GSocketEvent event);
GSocketError Input_Timeout();
GSocketError Output_Timeout();
int Recv_Stream(char *buffer, int size);
int Recv_Dgram(char *buffer, int size);
int Send_Stream(const char *buffer, int size);
int Send_Dgram(const char *buffer, int size);
void Detected_Read();
void Detected_Write();
bool m_ok;
public:
//DFE: We can't protect these data member until the GUI code is updated
//protected:
#else //def wxUSE_GSOCKET_CPLUSPLUS
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* Definition of GSocket */
struct _GSocket
{
#endif //def wxUSE_GSOCKET_CPLUSPLUS
int m_fd;
GAddress *m_local;
GAddress *m_peer;
@ -60,7 +104,15 @@ struct _GSocket
/* Function pointers */
struct GSocketBaseFunctionsTable *m_functions;
};
#ifndef wxUSE_GSOCKET_CPLUSPLUS
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif //ndef wxUSE_GSOCKET_CPLUSPLUS
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* Definition of GAddress */
struct _GAddress
{
@ -72,6 +124,51 @@ struct _GAddress
GSocketError m_error;
};
#ifdef __cplusplus
}
#endif /* __cplusplus */
// Compatibility methods to support old C API (from gsocket.h)
#ifdef wxUSE_GSOCKET_CPLUSPLUS
inline void GSocket_Shutdown(GSocket *socket)
{ socket->Shutdown(); }
inline GSocketError GSocket_SetLocal(GSocket *socket, GAddress *address)
{ return socket->SetLocal(address); }
inline GSocketError GSocket_SetPeer(GSocket *socket, GAddress *address)
{ return socket->SetPeer(address); }
inline GAddress *GSocket_GetLocal(GSocket *socket)
{ return socket->GetLocal(); }
inline GAddress *GSocket_GetPeer(GSocket *socket)
{ return socket->GetPeer(); }
inline GSocketError GSocket_SetServer(GSocket *socket)
{ return socket->SetServer(); }
inline GSocket *GSocket_WaitConnection(GSocket *socket)
{ return socket->WaitConnection(); }
inline GSocketError GSocket_Connect(GSocket *socket, GSocketStream stream)
{ return socket->Connect(stream); }
inline GSocketError GSocket_SetNonOriented(GSocket *socket)
{ return socket->SetNonOriented(); }
inline int GSocket_Read(GSocket *socket, char *buffer, int size)
{ return socket->Read(buffer,size); }
inline int GSocket_Write(GSocket *socket, const char *buffer, int size)
{ return socket->Write(buffer,size); }
inline GSocketEventFlags GSocket_Select(GSocket *socket, GSocketEventFlags flags)
{ return socket->Select(flags); }
inline void GSocket_SetNonBlocking(GSocket *socket, int non_block)
{ socket->SetNonBlocking(non_block); }
inline void GSocket_SetTimeout(GSocket *socket, unsigned long millisec)
{ socket->SetTimeout(millisec); }
inline void GSocket_SetCallback(GSocket *socket, GSocketEventFlags flags,
GSocketCallback fallback, char *cdata)
{ socket->SetCallback(flags,fallback,cdata); }
inline void GSocket_UnsetCallback(GSocket *socket, GSocketEventFlags flags)
{ socket->UnsetCallback(flags); }
#endif //def wxUSE_GSOCKET_CPLUSPLUS
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* Input / Output */
@ -97,8 +194,11 @@ void _GSocket_Uninstall_Callback(GSocket *socket, GSocketEvent event);
void _GSocket_Enable(GSocket *socket, GSocketEvent event);
void _GSocket_Disable(GSocket *socket, GSocketEvent event);
#ifndef wxUSE_GSOCKET_CPLUSPLUS
void _GSocket_Detected_Read(GSocket *socket);
void _GSocket_Detected_Write(GSocket *socket);
#endif //ndef wxUSE_GSOCKET_CPLUSPLUS
/* GAddress */

File diff suppressed because it is too large Load Diff