123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- // Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #ifndef _ISC_SESSION_H
- #define _ISC_SESSION_H 1
- #include <string>
- #include <boost/function.hpp>
- #include <exceptions/exceptions.h>
- #include <cc/data.h>
- #include <cc/session_config.h>
- namespace asio {
- class io_service;
- }
- namespace isc {
- namespace cc {
- class SessionImpl;
- class SessionError : public isc::Exception {
- public:
- SessionError(const char* file, size_t line, const char* what) :
- isc::Exception(file, line, what) {}
- };
- /// \brief A standard Exception class that is thrown when a
- /// blocking readData call does not read the given number of
- /// bytes before the timeout expires
- class SessionTimeout : public isc::Exception {
- public:
- SessionTimeout(const char* file, size_t line, const char* what) :
- isc::Exception(file, line, what) {}
- };
- /// \brief The AbstractSession class is an abstract base class that
- /// defines the interfaces of Session.
- /// The intended primary usage of abstraction is to allow tests for the
- /// user class of Session without requiring actual communication
- /// channels.
- /// For simplicity we only define the methods that are necessary for
- /// existing test cases that use this base class. Eventually we'll
- /// probably have to extend them.
- class AbstractSession {
- ///
- /// \name Constructors, Assignment Operator and Destructor.
- ///
- /// Note: The copy constructor and the assignment operator are
- /// intentionally defined as private to make it explicit that
- /// this is a pure base class.
- //@{
- private:
- AbstractSession(const AbstractSession& source);
- AbstractSession& operator=(const AbstractSession& source);
- protected:
- /// \brief The default constructor.
- ///
- /// This is intentionally defined as \c protected as this base
- /// class should never be instantiated (except as part of a
- /// derived class).
- AbstractSession() {}
- public:
- /// \brief The destructor.
- virtual ~AbstractSession() {}
- //@}
- virtual void establish(const char* socket_file) = 0;
- virtual void disconnect() = 0;
- virtual int group_sendmsg(isc::data::ConstElementPtr msg,
- std::string group,
- std::string instance = "*",
- std::string to = "*") = 0;
- virtual bool group_recvmsg(isc::data::ConstElementPtr& envelope,
- isc::data::ConstElementPtr& msg,
- bool nonblock = true,
- int seq = -1) = 0;
- virtual void subscribe(std::string group,
- std::string instance = "*") = 0;
- virtual void unsubscribe(std::string group,
- std::string instance = "*") = 0;
- virtual void startRead(boost::function<void()> read_callback) = 0;
- virtual int reply(isc::data::ConstElementPtr envelope,
- isc::data::ConstElementPtr newmsg) = 0;
- virtual bool hasQueuedMsgs() const = 0;
- /// \brief Sets the default timeout for blocking reads
- /// in this session to the given number of milliseconds
- /// \param milliseconds the timeout for blocking reads in
- /// milliseconds; if this is set to 0, reads will block
- /// forever.
- virtual void setTimeout(size_t milliseconds) = 0;
- /// \brief Returns the current timeout for blocking reads
- /// \return The timeout (in milliseconds)
- virtual size_t getTimeout() const = 0;
- };
- class Session : public AbstractSession {
- private:
- SessionImpl* impl_;
- private:
- Session(const Session& source);
- Session& operator=(const Session& source);
- public:
- Session(asio::io_service& ioservice);
- virtual ~Session();
- virtual void startRead(boost::function<void()> read_callback);
- virtual void establish(const char* socket_file = NULL);
- virtual void disconnect();
- virtual void subscribe(std::string group,
- std::string instance = "*");
- virtual void unsubscribe(std::string group,
- std::string instance = "*");
- virtual int group_sendmsg(isc::data::ConstElementPtr msg,
- std::string group,
- std::string instance = "*",
- std::string to = "*");
- virtual bool group_recvmsg(isc::data::ConstElementPtr& envelope,
- isc::data::ConstElementPtr& msg,
- bool nonblock = true,
- int seq = -1);
- virtual int reply(isc::data::ConstElementPtr envelope,
- isc::data::ConstElementPtr newmsg);
- virtual bool hasQueuedMsgs() const;
- virtual void setTimeout(size_t milliseconds);
- virtual size_t getTimeout() const;
- private:
- void sendmsg(isc::data::ConstElementPtr msg);
- void sendmsg(isc::data::ConstElementPtr env,
- isc::data::ConstElementPtr msg);
- bool recvmsg(isc::data::ConstElementPtr& msg,
- bool nonblock = true,
- int seq = -1);
- bool recvmsg(isc::data::ConstElementPtr& env,
- isc::data::ConstElementPtr& msg,
- bool nonblock = true,
- int seq = -1);
- };
- } // namespace cc
- } // namespace isc
- #endif // _ISC_SESSION_H
- // Local Variables:
- // mode: c++
- // End:
|