X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fclient_wrapper.hxx;h=672308e7cd17484e3f46393eec95a8de654aa52f;hp=08cd39706ffe7e1b196586543386e8ae3ca59c92;hb=4c3662a0b083759056b93c21e747e5551a8ddfcc;hpb=45508d07e1c407d1148ce7340c55f2a28a3a3368 diff --git a/src/client_wrapper.hxx b/src/client_wrapper.hxx index 08cd397..672308e 100644 --- a/src/client_wrapper.hxx +++ b/src/client_wrapper.hxx @@ -22,7 +22,6 @@ #include #include -#include #include #include #include @@ -30,30 +29,56 @@ #include #include -#ifndef T2NWRAPPER_MAX_ARGS -#define T2NWRAPPER_MAX_ARGS 9 +#ifndef T2N_SINGLETON_WRAPPER_MAX_ARGS +#define T2N_SINGLETON_WRAPPER_MAX_ARGS 9 #endif namespace libt2n { -class ConnectionInitData +class ConnectionWrapper { - public: + private: + long long command_timeout_usec; + long long hello_timeout_usec; - virtual std::auto_ptr createConnection()=0; + protected: + log_level_values log_level; + std::ostream *logstream; + void set_logging_on_connection(client_connection& c); - virtual ~ConnectionInitData() + public: + ConnectionWrapper() + : log_level(none), logstream(NULL), + command_timeout_usec(command_client::command_timeout_usec_default), + hello_timeout_usec(command_client::hello_timeout_usec_default) { } -}; -class TrivialHandler -{ - public: - static void handle( boost::function< void() > f) + virtual ~ConnectionWrapper() + { } + + virtual client_connection* get_connection()=0; + + virtual void handle(command_client* stubBase, boost::function< void() > f) { f(); } + + long long get_command_timeout_usec(void) + { return command_timeout_usec; } + + void set_command_timeout_usec(long long _command_timeout_usec) + { command_timeout_usec=_command_timeout_usec; } + + long long get_hello_timeout_usec(void) + { return hello_timeout_usec; } + + void set_hello_timeout_usec(long long _hello_timeout_usec) + { hello_timeout_usec=_hello_timeout_usec; } + + void set_logging(std::ostream *_logstream, log_level_values _log_level); + + std::ostream* get_logstream(log_level_values level); }; // contains the internal stuff needed for T2nWrapper @@ -107,19 +132,20 @@ namespace detail }; } // eo namespace detail -template< - class Client, - class Handler = TrivialHandler -> -class T2nWrapper +class T2nSingletonWrapperMessages { - private: + protected: + static const char* NotInitializedMessage; +}; - std::auto_ptr conndConn; - std::auto_ptr client; +template< class Client > +class T2nSingletonWrapper : public T2nSingletonWrapperMessages +{ + private: + std::auto_ptr Stub; - static std::auto_ptr singletonObject; - static std::auto_ptr initData; + static std::auto_ptr SingletonObject; + static std::auto_ptr WrappedConnection; // create a prep-method for each possible number of parameters #define _GEN_ARG(z,n,d) Arg ## n arg ##n @@ -138,47 +164,57 @@ class T2nWrapper ); \ } // eo prep - BOOST_PP_REPEAT( BOOST_PP_ADD(T2NWRAPPER_MAX_ARGS,1) , _GEN_PREP, ~ ) + BOOST_PP_REPEAT( BOOST_PP_ADD(T2N_SINGLETON_WRAPPER_MAX_ARGS,1) , _GEN_PREP, ~ ) #undef _GEN_PREP #undef _GEN_ARG - static void ensureSingletonThere(void) + T2nSingletonWrapper(std::auto_ptr stub) { - if (singletonObject.get() == NULL) - { - // we need to initialize + Stub=stub; + } - if (initData.get() == NULL) - throw std::logic_error("T2nWrapper singleton used before setting initData"); + static void init() + { + if (WrappedConnection.get() == NULL) + throw std::logic_error(NotInitializedMessage); - std::auto_ptr myConndConn=initData->createConnection(); + std::auto_ptr stub(new Client(*(WrappedConnection->get_connection()), + WrappedConnection->get_command_timeout_usec(), + WrappedConnection->get_hello_timeout_usec())); - } + SingletonObject=std::auto_ptr(new T2nSingletonWrapper(stub)); } template< typename R > static typename detail::TypeWrap::type real_exec( boost::function< R(Client*) > f) { - ensureSingletonThere(); + ensure_singleton_there(); typename detail::TypeWrap::type result; - detail::Call call( boost::bind( f, &(*(singletonObject->client))), result ); - Handler::handle( call ); + detail::Call call( boost::bind( f, SingletonObject->Stub.get()), result ); + WrappedConnection->handle(SingletonObject->Stub.get(),call); return result; } public: - static void setInitData(std::auto_ptr newInitData) - { initData=newInitData; } - static ConnectionInitData* getInitData(void) - { return initData.get(); } + static void set_connection(std::auto_ptr wrappedConnection) + { + WrappedConnection=wrappedConnection; - T2nWrapper() + // reset the singleton to NULL because the singleton must be constructed with current WrappedConnection + if (SingletonObject.get() != NULL) + SingletonObject.reset(); + } + static ConnectionWrapper* get_connection_wrapper(void) + { return WrappedConnection.get(); } + + static void ensure_singleton_there(void) { - client=std::auto_ptr(new Client(*conndConn)); + if (SingletonObject.get() == NULL) + init(); } // create an exec-method for each possible number of parameters @@ -192,21 +228,37 @@ class T2nWrapper { \ boost::function(*p)(R(Client::*)( BOOST_PP_ENUM_PARAMS(n,Arg) ) \ BOOST_PP_COMMA_IF(n) BOOST_PP_ENUM_PARAMS(n,Arg)) \ - = &T2nWrapper::template prep; \ + = &T2nSingletonWrapper::template prep; \ return boost::bind \ ( \ - T2nWrapper::template real_exec, \ + T2nSingletonWrapper::template real_exec, \ boost::bind( p, f BOOST_PP_COMMA_IF(n) \ BOOST_PP_ENUM(n, _GEN_PLACEHOLDER, ~ ) ) \ ); \ } // eo exec - BOOST_PP_REPEAT( BOOST_PP_ADD(T2NWRAPPER_MAX_ARGS,1), _GEN_EXEC, ~ ) + BOOST_PP_REPEAT( BOOST_PP_ADD(T2N_SINGLETON_WRAPPER_MAX_ARGS,1), _GEN_EXEC, ~ ) #undef _GEN_EXEC #undef _GEN_PLACEHOLDER }; +// create an t2n_exec-method for each possible number of parameters +#define _GEN_EXEC(z,n,d) \ + template< class Client, typename R BOOST_PP_COMMA_IF(n) BOOST_PP_ENUM_PARAMS(n,typename Arg) > \ + static boost::function< R( BOOST_PP_ENUM_PARAMS(n,Arg) ) > t2n_exec \ + ( \ + R(Client::*f)( BOOST_PP_ENUM_PARAMS(n,Arg) ) \ + ) \ + { \ + return T2nSingletonWrapper::exec(f); \ + } // eo exec + + BOOST_PP_REPEAT( BOOST_PP_ADD(T2N_SINGLETON_WRAPPER_MAX_ARGS,1), _GEN_EXEC, ~ ) + +#undef _GEN_EXEC +#undef _GEN_PLACEHOLDER + } #endif