emailrelay/src/gnet/gaddress.h
Graeme Walker def9081f44 v1.2
2003-11-06 12:00:00 +00:00

190 lines
5.7 KiB
C++

//
// Copyright (C) 2001-2003 Graeme Walker <graeme_walker@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later
// version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
// ===
//
// gaddress.h
//
#ifndef G_ADDRESS_H
#define G_ADDRESS_H
#include "gdef.h"
#include "gnet.h"
#include "gexception.h"
#include <string>
class GAddressImp ;
namespace GNet
{
class Address ;
class AddressImp ;
}
// Class: GNet::Address
//
// Description: The Address class encapsulates an IP
// transport address. The address is stored internally
// as a 'sockaddr_in/sockaddr_in6' structure.
//
// See also: GNet::Resolver
//
class GNet::Address
{
public:
G_EXCEPTION( Error , "address error" ) ;
G_EXCEPTION( BadFamily , "unsupported address family" ) ;
G_EXCEPTION( BadString , "invalid ip address string" ) ;
class Localhost // An overload discriminator class for GNet::Address.
{} ;
class Broadcast // An overload discriminator class for GNet::Address.
{} ;
Address( const Address & addr ) ;
// Copy constructor.
Address( const sockaddr * addr , int len ) ;
// Constructor using a given sockaddr.
//
// The given sockaddr address must be an Internet
// address (ie. 'addr->sa_family' must be AF_INET
// or AF_INET6, and 'len' must be the sizeof sockaddr_in
// or sockaddr_in6).
//
// Throws an exception if an invalid structure.
Address( const hostent & h , unsigned int port ) ;
// Constructor taking the host part from the
// first address in the given hostent's list of
// alternatives. Throws an exception if
// an invalid port number. See also: validPort()
Address( const hostent & h , const servent & s ) ;
// Constructor taking the host part from the
// first address in the given hostent's list of
// alternatives, and the port number from
// the given servent structure.
explicit Address( const servent & s ) ;
// Constructor for a local INADDR_ANY address, taking
// the port from the given 'servent' structure.
explicit Address( unsigned int port ) ;
// Constructor for a local INADDR_ANY address with the
// given port number. Throws an exception if
// an invalid port number. See also: validPort()
Address( unsigned int port , Localhost ) ;
// Constructor for a local INADDR_LOOPBACK address with
// the given port number. Throws an exception if
// an invalid port number. See also: validPort()
Address( unsigned int port , Broadcast ) ;
// Constructor for a local INADDR_BROADCAST address with
// the given port number. Throws an exception if
// an invalid port number. See also: validPort()
explicit Address( const std::string & display_string ) ;
// Constructor taking a string originally obtained
// from displayString().
//
// Throws an exception if an invalid string.
//
// See also validString().
Address( const std::string & ip , unsigned int port ) ;
// Constructor taking an ip-address and
// a port number.
//
// Throws an exception if an invalid string.
~Address() ;
// Destructor.
static Address invalidAddress() ;
// Returns an invalid address. Should only be
// needed by socket and resolver classes.
static Address broadcastAddress( unsigned int port ) ;
// Returns a broadcast address. Only useful
// for datagram sockets.
static Address localhost( unsigned int port = 0U ) ;
// Returns a localhost ("loopback") address.
// This is a convenience function as an
// alternative to the Localhost constructor.
void operator=( const Address &addr ) ;
// Assignment operator.
const sockaddr * address() const ;
// Returns the sockaddr address. Typically used when making
// socket system calls. Never returns NULL.
sockaddr * address() ;
// This is a non-const version of address() for compiling on
// systems which are not properly const-clean.
int length() const;
// Returns the size of the sockaddr address.
// See address().
std::string displayString( bool with_port = true ) const ;
// Returns a string which represents the address for
// debugging and diagnostics purposes.
std::string hostString() const ;
// Returns a string which represents the host part
// of the address for debugging and diagnostics purposes.
unsigned int port() const;
// Returns port part of address.
static bool validPort( unsigned int n ) ;
// Returns true if the port number is within the
// valid range. This can be used to avoid exceptions from
// the relevant constructors.
static bool validString( const std::string & display_string , std::string * reason = NULL ) ;
// Returns true if the display string is valid.
// This can be used to avoid exceptions from
// the relevant constructor.
bool operator==( const Address &other ) const ;
// Comparison operator.
bool sameHost( const Address &other ) const ;
// Returns true if the two addresses have the
// same host part (ie. ignoring the port).
// (But note that a host can have more than
// one host address.)
void setPort( unsigned int port ) ;
// Sets the port number. Throws an exception
// if an invalid port number (ie. too big).
private:
void setHost( const hostent & ) ;
private:
AddressImp * m_imp ;
} ;
#endif