ParCompMark::Network Class Reference

#include <PCMNetwork.h>

Inheritance diagram for ParCompMark::Network:

Inheritance graph
[legend]
Collaboration diagram for ParCompMark::Network:

Collaboration graph
[legend]
List of all members.

Detailed Description

Class for network routines.

Definition at line 70 of file PCMNetwork.h.


Getters & setters

const bool & getInitialized () const
 Getter of mInitialized.
const int & getStreamSocket () const
 Getter of mStreamSocket.
void setStreamSocket (const int &streamsocket)
 Setter of mStreamSocket.
const int & getBroadcastSocket () const
 Getter of mBroadcastSocket.
const std::string & getOwnIP () const
 Getter of mOwnIP.
static Container< Network::IfConf,
DummyLock >::Pointer
getIfConfs ()
 Getter of mIfConfs.
static const unsigned short & getCommunicationPort ()
 Getter of mCommunicationPort.
static void setCommunicationPort (const unsigned short &communicationport)
 Setter of mCommunicationPort.
static const unsigned short & getBroadcastPort ()
 Getter of mBroadcastPort.
static void setBroadcastPort (const unsigned short &broadcastport)
 Setter of mBroadcastPort.

Public Types

typedef Pointer< Network,
DummyLock
Pointer
 Type for pointer to this class.
typedef ParCompMark::Network::IfConf IfConf
 Struct for network interfaces IP information.

Public Member Functions

Constructors & destructor
 Network (const std::string &name)
 Create network class.
virtual ~Network ()
 The destructor.

Static Public Member Functions

Class methods
static void getIP ()
 Get local machine IP address-es.
static std::string getHostName ()
 Get local machine name.

Protected Attributes

Variables
bool mInitialized
 Indicates initialized the class.
int mStreamSocket
 The client socket number.
int mBroadcastSocket
 The broadcast socket number.
std::string mOwnIP
 IP address of the master node.

Static Protected Attributes

Class variables
static Container< Network::IfConf,
DummyLock >::Pointer 
mIfConfs
 Configurations of network interfaces of a host.
static unsigned short mCommunicationPort = 1234
 The communication port number.
static unsigned short mBroadcastPort = 1235
 The broadcast port number.

Classes

struct  IfConf
 Struct for network interfaces IP information. More...

Member Typedef Documentation

Struct for network interfaces IP information.

Type for pointer to this class.

Reimplemented in ParCompMark::Client, ParCompMark::HandleClient, ParCompMark::NetClient, and ParCompMark::NetServer.

Definition at line 88 of file PCMNetwork.h.


Constructor & Destructor Documentation

ParCompMark::Network::Network ( const std::string &  name  ) 

Create network class.

Parameters:
[in] name Name of the network.

Definition at line 46 of file PCMNetwork.cpp.

References ParCompMark::Singleton< T >::getInstance(), mBroadcastSocket, mInitialized, mOwnIP, mStreamSocket, and ParCompMark::Logger::NOTICE.

Here is the call graph for this function:

ParCompMark::Network::~Network (  )  [virtual]

The destructor.

This class has virtual destructor.

Definition at line 71 of file PCMNetwork.cpp.


Member Function Documentation

const unsigned short & ParCompMark::Network::getBroadcastPort (  )  [inline, static]

Getter of mBroadcastPort.

Returns value of mBroadcastPort.

Returns:
The value of mBroadcastPort

Definition at line 368 of file PCMNetwork.h.

const int & ParCompMark::Network::getBroadcastSocket (  )  const [inline]

Getter of mBroadcastSocket.

Returns value of mBroadcastSocket.

Returns:
The value of mBroadcastSocket

Definition at line 396 of file PCMNetwork.h.

const unsigned short & ParCompMark::Network::getCommunicationPort (  )  [inline, static]

Getter of mCommunicationPort.

Returns value of mCommunicationPort.

Returns:
The value of mCommunicationPort

Definition at line 354 of file PCMNetwork.h.

std::string ParCompMark::Network::getHostName (  )  [static]

Container< Network::IfConf, DummyLock >::Pointer & ParCompMark::Network::getIfConfs (  )  [inline, static]

Getter of mIfConfs.

Returns value of mIfConfs.

Returns:
The value of mIfConfs

Definition at line 340 of file PCMNetwork.h.

Referenced by ParCompMark::Logger::Logger(), and ParCompMark::Logger::translateException().

const bool & ParCompMark::Network::getInitialized (  )  const [inline]

Getter of mInitialized.

Returns value of mInitialized.

Returns:
The value of mInitialized

Definition at line 347 of file PCMNetwork.h.

void ParCompMark::Network::getIP (  )  [static]

const std::string & ParCompMark::Network::getOwnIP (  )  const [inline]

Getter of mOwnIP.

Returns value of mOwnIP.

Returns:
The value of mOwnIP

Definition at line 403 of file PCMNetwork.h.

const int & ParCompMark::Network::getStreamSocket (  )  const [inline]

Getter of mStreamSocket.

Returns value of mStreamSocket.

Returns:
The value of mStreamSocket

Definition at line 382 of file PCMNetwork.h.

void ParCompMark::Network::setBroadcastPort ( const unsigned short &  broadcastport  )  [inline, static]

Setter of mBroadcastPort.

Sets value of mBroadcastPort.

Parameters:
[in] broadcastport The value of mBroadcastPort

Definition at line 375 of file PCMNetwork.h.

Referenced by ParCompMark::Application::setFromConfigOptions().

void ParCompMark::Network::setCommunicationPort ( const unsigned short &  communicationport  )  [inline, static]

Setter of mCommunicationPort.

Sets value of mCommunicationPort.

Parameters:
[in] communicationport The value of mCommunicationPort

Definition at line 361 of file PCMNetwork.h.

Referenced by ParCompMark::Application::setFromConfigOptions().

void ParCompMark::Network::setStreamSocket ( const int &  streamsocket  )  [inline]

Setter of mStreamSocket.

Sets value of mStreamSocket.

Parameters:
[in] streamsocket The value of mStreamSocket

Definition at line 389 of file PCMNetwork.h.

Referenced by ParCompMark::NetServer::task().


Member Data Documentation

unsigned short ParCompMark::Network::mBroadcastPort = 1235 [static, protected]

The broadcast port number.

Remarks:
This is own attribute of this class.

Definition at line 133 of file PCMNetwork.h.

Referenced by ParCompMark::NetServer::initialize(), and ParCompMark::NetClient::initialize().

unsigned short ParCompMark::Network::mCommunicationPort = 1234 [static, protected]

The communication port number.

Remarks:
This is own attribute of this class.

Definition at line 126 of file PCMNetwork.h.

Referenced by ParCompMark::NetServer::initialize(), and ParCompMark::Client::openConnection().

Configurations of network interfaces of a host.

Remarks:
This is own attribute of this class.

Definition at line 119 of file PCMNetwork.h.

Referenced by getIP(), ParCompMark::NetServer::initialize(), and ParCompMark::NetClient::NetClient().

std::string ParCompMark::Network::mOwnIP [protected]

IP address of the master node.

Remarks:
This is own attribute of this class.

Definition at line 172 of file PCMNetwork.h.

Referenced by ParCompMark::NetClient::NetClient(), Network(), and ParCompMark::NetServer::task().


The documentation for this class was generated from the following files: