Support Forum       Library Source       SourceForge Page       G3D Web Page     
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Classes | Public Member Functions | Static Public Member Functions | Friends | List of all members
G3D::NetworkDevice Class Reference

Abstraction of network (socket) functionality. More...

Classes

class  EthernetAdapter
 Description of an ethernet or wireless ethernet adapter. More...
 

Public Member Functions

 ~NetworkDevice ()
 
const Array< EthernetAdapter > & adapterArray () const
 Returns the available ethernet adapters for the current machine that are online.
 
const Array< uint32 > & broadcastAddressArray () const
 Returns the (unique) IP addresses for UDP broadcasting extracted from adapterArray().
 
void describeSystem (TextOutput &t)
 Prints a human-readable description of this machine to the text output stream.
 
void describeSystem (std::string &s)
 
void localHostAddresses (Array< NetAddress > &array) const
 There is often more than one address for the local host.
 
std::string localHostName () const
 Returns the name (or one of the names) of this computer.
 

Static Public Member Functions

static void cleanup ()
 Shuts down the network device (destroying the global instance).
 
static std::string formatIP (uint32 ip)
 Prints an IP address to a string.
 
static std::string formatMAC (const uint8 mac[6])
 Prints a MAC address to a string.
 
static NetworkDeviceinstance ()
 Returns NULL if there was a problem initializing the network.
 

Friends

class Conduit
 
class LightweightConduit
 
class NetListener
 
class ReliableConduit
 

Detailed Description

Abstraction of network (socket) functionality.

An abstraction over sockets that provides a message-based network infrastructure optimized for sending many small (~500 bytes) messages. All functions always return immediately.

Create only one NetworkDevice per process (a WinSock restriction).

NetworkDevice is technically not thread safe. However, as long as you use different conduits on different threads (or lock conduits before sending), you will encounter no problems sharing the single NetworkDevice across multiple threads. That is, do not invoke the same Conduit's send or receive method on two threads at once.

This assumes that the underlying WinSock/BSD sockets implementation is thread safe. That is not guaranteed, but in practice seems to always be true (see http://tangentsoft.net/wskfaq/intermediate.html#threadsafety)


IP networks use "network byte order" (big-endian) for communicating integers. "Host byte order" is the endian-ness of the local machine (typically little-endian; see System::endian). The C functions htonl() and ntohl() convert 32-bit values between these formats. G3D only ever exposes host byte order, so programmers rarely need to be aware of the distinction.

Constructor & Destructor Documentation

G3D::NetworkDevice::~NetworkDevice ( )

Member Function Documentation

const Array<EthernetAdapter>& G3D::NetworkDevice::adapterArray ( ) const
inline

Returns the available ethernet adapters for the current machine that are online.

Does not include the loopback adapter for localhost.

const Array<uint32>& G3D::NetworkDevice::broadcastAddressArray ( ) const
inline

Returns the (unique) IP addresses for UDP broadcasting extracted from adapterArray().

All are in host byte order.

static void G3D::NetworkDevice::cleanup ( )
static

Shuts down the network device (destroying the global instance).

void G3D::NetworkDevice::describeSystem ( TextOutput t)

Prints a human-readable description of this machine to the text output stream.

void G3D::NetworkDevice::describeSystem ( std::string s)
static std::string G3D::NetworkDevice::formatIP ( uint32  ip)
static

Prints an IP address to a string.

Parameters
ipIn host byte order.
static std::string G3D::NetworkDevice::formatMAC ( const uint8  mac[6])
static

Prints a MAC address to a string.

static NetworkDevice* G3D::NetworkDevice::instance ( )
static

Returns NULL if there was a problem initializing the network.

void G3D::NetworkDevice::localHostAddresses ( Array< NetAddress > &  array) const

There is often more than one address for the local host.

This returns all of them.

Deprecated:
Use adapterArray()
std::string G3D::NetworkDevice::localHostName ( ) const

Returns the name (or one of the names) of this computer.

Friends And Related Function Documentation

friend class Conduit
friend
friend class LightweightConduit
friend
friend class NetListener
friend
friend class ReliableConduit
friend

documentation generated on Sat Jan 12 2013 22:49:56 using doxygen 1.8.2