// ********************************************************************** // // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef ICE_INCOMING_ASYNC_H #define ICE_INCOMING_ASYNC_H #include #include #ifndef ICE_CPP11_MAPPING namespace Ice { class ICE_API AMDCallback : public Ice::LocalObject { public: virtual ~AMDCallback(); virtual void ice_exception(const ::std::exception&) = 0; virtual void ice_exception() = 0; }; } #endif namespace IceInternal { // // We need virtual inheritance from AMDCallback, because we use multiple // inheritance from Ice::AMDCallback for generated AMD code. // class ICE_API IncomingAsync : public IncomingBase, #ifdef ICE_CPP11_MAPPING public ::std::enable_shared_from_this #else public virtual Ice::AMDCallback #endif { public: IncomingAsync(Incoming&); #ifdef ICE_CPP11_MAPPING static std::shared_ptr create(Incoming&); std::function response() { auto self = shared_from_this(); return [self]() { self->writeEmptyParams(); self->completed(); }; } template std::function response() { auto self = shared_from_this(); return [self](const T& marshaledResult) { self->setMarshaledResult(marshaledResult); self->completed(); }; } std::function exception() { auto self = shared_from_this(); return [self](std::exception_ptr ex) { self->completed(ex); }; } #else virtual void ice_exception(const ::std::exception&); virtual void ice_exception(); #endif void kill(Incoming&); void completed(); #ifdef ICE_CPP11_MAPPING void completed(std::exception_ptr); #endif private: void checkResponseSent(); bool _responseSent; // // We need a separate ConnectionIPtr, because IncomingBase only // holds a ConnectionI* for optimization. // const ResponseHandlerPtr _responseHandlerCopy; }; } #ifndef ICE_CPP11_MAPPING namespace Ice { class ICE_API AMD_Object_ice_invoke : public virtual Ice::AMDCallback { public: virtual ~AMD_Object_ice_invoke(); virtual void ice_response(bool, const std::vector&) = 0; virtual void ice_response(bool, const std::pair&) = 0; }; } namespace IceAsync { namespace Ice { class ICE_API AMD_Object_ice_invoke : public ::Ice::AMD_Object_ice_invoke, public IceInternal::IncomingAsync { public: AMD_Object_ice_invoke(IceInternal::Incoming&); virtual void ice_response(bool, const std::vector< ::Ice::Byte>&); virtual void ice_response(bool, const std::pair&); }; } } #endif #endif