//
// VMime library (http://www.vmime.org)
// Copyright (C) 2002 Vincent Richard <vincent@vmime.org>
//
// 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 3 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.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// Linking this library statically or dynamically with other modules is making
// a combined work based on this library. Thus, the terms and conditions of
// the GNU General Public License cover the whole combination.
//
#ifndef VMIME_NET_SERVICE_HPP_INCLUDED
#define VMIME_NET_SERVICE_HPP_INCLUDED
#include "vmime/config.hpp"
#if VMIME_HAVE_MESSAGING_FEATURES
#include "vmime/types.hpp"
#include "vmime/net/session.hpp"
#include "vmime/net/serviceInfos.hpp"
#include "vmime/net/connectionInfos.hpp"
#include "vmime/net/socket.hpp"
#include "vmime/net/timeoutHandler.hpp"
#include "vmime/net/tracer.hpp"
#if VMIME_HAVE_TLS_SUPPORT
#include "vmime/security/cert/certificateVerifier.hpp"
#endif // VMIME_HAVE_TLS_SUPPORT
#include "vmime/utility/progressListener.hpp"
namespace vmime {
namespace net {
/** Base class for messaging services.
*/
class VMIME_EXPORT service : public object, public enable_shared_from_this <service> {
protected:
service(
const shared_ptr <session>& sess,
const serviceInfos& infos,
const shared_ptr <security::authenticator>& auth
);
public:
virtual ~service();
/** Possible service types. */
enum Type {
TYPE_STORE = 0, /**< The service is a message store. */
TYPE_TRANSPORT /**< The service sends messages. */
};
/** Return the type of service.
*
* @return type of service
*/
virtual Type getType() const = 0;
/** Return the protocol name of this service.
*
* @return protocol name
*/
virtual const string getProtocolName() const = 0;
/** Return the session object associated with this service instance.
*
* @return session object
*/
shared_ptr <const session> getSession() const;
/** Return the session object associated with this service instance.
*
* @return session object
*/
shared_ptr <session> getSession();
/** Return information about this service.
*
* @return information about the service
*/
virtual const serviceInfos& getInfos() const = 0;
/** Connect to service.
*/
virtual void connect() = 0;
/** Disconnect from service.
*/
virtual void disconnect() = 0;
/** Test whether this service is connected.
*
* @return true if the service is connected, false otherwise
*/
virtual bool isConnected() const = 0;
/** Do nothing but ensure the server do not disconnect (for
* example, this can reset the auto-logout timer on the
* server, if one exists).
*/
virtual void noop() = 0;
/** Return the authenticator object used with this service instance.
*
* @return authenticator object
*/
shared_ptr <const security::authenticator> getAuthenticator() const;
/** Return the authenticator object used with this service instance.
*
* @return authenticator object
*/
shared_ptr <security::authenticator> getAuthenticator();
/** Set the authenticator object used with this service instance.
*
* @param auth authenticator object
*/
void setAuthenticator(const shared_ptr <security::authenticator>& auth);
#if VMIME_HAVE_TLS_SUPPORT
/** Set the object responsible for verifying certificates when
* using secured connections (TLS/SSL).
*/
void setCertificateVerifier(const shared_ptr <security::cert::certificateVerifier>& cv);
/** Get the object responsible for verifying certificates when
* using secured connections (TLS/SSL).
*/
shared_ptr <security::cert::certificateVerifier> getCertificateVerifier();
#endif // VMIME_HAVE_TLS_SUPPORT
/** Set the factory used to create socket objects for this
* service.
*
* @param sf socket factory
*/
void setSocketFactory(const shared_ptr <socketFactory>& sf);
/** Return the factory used to create socket objects for this
* service.
*
* @return socket factory
*/
shared_ptr <socketFactory> getSocketFactory();
/** Set the factory used to create timeoutHandler objects for
* this service. By default, the defaultTimeoutHandler class
* is used. Not all services support timeout handling.
*
* @param thf timeoutHandler factory
*/
void setTimeoutHandlerFactory(const shared_ptr <timeoutHandlerFactory>& thf);
/** Return the factory used to create timeoutHandler objects for
* this service.
*
* @return timeoutHandler factory
*/
shared_ptr <timeoutHandlerFactory> getTimeoutHandlerFactory();
void setTracerFactory(const shared_ptr <tracerFactory>& tf);
shared_ptr <tracerFactory> getTracerFactory();
/** Set a property for this service (service prefix is added automatically).
*
* WARNING: this sets the property on the session object, so all service
* instances created with the session object will inherit the property.
*
* @param name property name
* @param value property value
*/
template <typename TYPE>
void setProperty(const string& name, const TYPE& value) {
m_session->getProperties()[getInfos().getPropertyPrefix() + name] = value;
}
/** Check whether the connection is secured.
*
* @return true if the connection is secured, false otherwise
*/
virtual bool isSecuredConnection() const = 0;
/** Get information about the connection.
*
* @return information about the connection
*/
virtual shared_ptr <connectionInfos> getConnectionInfos() const = 0;
private:
shared_ptr <session> m_session;
shared_ptr <security::authenticator> m_auth;
#if VMIME_HAVE_TLS_SUPPORT
shared_ptr <security::cert::certificateVerifier> m_certVerifier;
#endif // VMIME_HAVE_TLS_SUPPORT
shared_ptr <socketFactory> m_socketFactory;
shared_ptr <timeoutHandlerFactory> m_toHandlerFactory;
shared_ptr <tracerFactory> m_tracerFactory;
};
} // net
} // vmime
#endif // VMIME_HAVE_MESSAGING_FEATURES
#endif // VMIME_NET_SERVICE_HPP_INCLUDED