/usr/include/vmime/net/service.hpp is in libvmime-dev 0.9.2-5build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | //
// VMime library (http://www.vmime.org)
// Copyright (C) 2002-2013 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(shared_ptr <session> sess, const serviceInfos& infos, 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(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(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(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(shared_ptr <timeoutHandlerFactory> thf);
/** Return the factory used to create timeoutHandler objects for
* this service.
*
* @return timeoutHandler factory
*/
shared_ptr <timeoutHandlerFactory> getTimeoutHandlerFactory();
void setTracerFactory(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
|