summaryrefslogtreecommitdiff
path: root/cppe/include/IceE/ProxyHandle.h
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/include/IceE/ProxyHandle.h')
-rw-r--r--cppe/include/IceE/ProxyHandle.h306
1 files changed, 0 insertions, 306 deletions
diff --git a/cppe/include/IceE/ProxyHandle.h b/cppe/include/IceE/ProxyHandle.h
deleted file mode 100644
index dc9808db4a4..00000000000
--- a/cppe/include/IceE/ProxyHandle.h
+++ /dev/null
@@ -1,306 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice-E is licensed to you under the terms described in the
-// ICEE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-#ifndef ICEE_PROXY_HANDLE_H
-#define ICEE_PROXY_HANDLE_H
-
-#include <IceE/Handle.h>
-#include <IceE/Config.h>
-
-namespace IceProxy
-{
-namespace Ice
-{
-
-class Object;
-
-}
-
-}
-
-namespace IceInternal
-{
-
-template<typename T> class ProxyHandle;
-template<typename T> class Handle;
-
-inline ::IceProxy::Ice::Object*
-upCast(::IceProxy::Ice::Object* o)
-{
- return o;
-}
-
-}
-
-namespace Ice
-{
-
-typedef ::IceInternal::ProxyHandle< ::IceProxy::Ice::Object> ObjectPrx;
-
-class ObjectAdapter;
-typedef ::IceInternal::Handle< ::Ice::ObjectAdapter> ObjectAdapterPtr;
-
-typedef ::std::map< ::std::string, ::std::string> Context;
-}
-
-namespace IceInternal
-{
-
-template<typename P> P
-checkedCastImpl(const ::Ice::ObjectPrx&);
-
-template<typename P> P
-checkedCastImpl(const ::Ice::ObjectPrx&, const std::string&);
-
-template<typename P> P
-checkedCastImpl(const ::Ice::ObjectPrx&, const ::Ice::Context&);
-
-template<typename P> P
-checkedCastImpl(const ::Ice::ObjectPrx&, const std::string&, const ::Ice::Context&);
-
-template<typename P> P
-uncheckedCastImpl(const ::Ice::ObjectPrx&);
-
-template<typename P> P
-uncheckedCastImpl(const ::Ice::ObjectPrx&, const std::string&);
-
-//
-// Upcast
-//
-template<typename T, typename Y> inline ProxyHandle<T>
-checkedCastHelper(const ::IceInternal::ProxyHandle<Y>& b, T*)
-{
- return b;
-}
-
-template<typename T, typename Y> inline ProxyHandle<T>
-checkedCastHelper(const ::IceInternal::ProxyHandle<Y>& b, T*, const ::Ice::Context&)
-{
- return b;
-}
-
-template<typename T, typename Y> inline ProxyHandle<T>
-uncheckedCastHelper(const ::IceInternal::ProxyHandle<Y>& b, T*)
-{
- return b;
-}
-
-//
-// Downcast
-//
-template<typename T, typename Y> inline ProxyHandle<T>
-checkedCastHelper(const ::IceInternal::ProxyHandle<Y>& b, void*)
-{
- return checkedCastImpl<ProxyHandle<T> >(b);
-}
-
-template<typename T, typename Y> inline ProxyHandle<T>
-checkedCastHelper(const ::IceInternal::ProxyHandle<Y>& b, const ::Ice::Context& ctx)
-{
- return checkedCastImpl<ProxyHandle<T> >(b, ctx);
-}
-
-template<typename T, typename Y> inline ProxyHandle<T>
-checkedCastHelper(const ::IceInternal::ProxyHandle<Y>& b, void*, const ::Ice::Context& ctx)
-{
- return checkedCastImpl<ProxyHandle<T> >(b, ctx);
-}
-
-template<typename T, typename Y> inline ProxyHandle<T>
-uncheckedCastHelper(const ::IceInternal::ProxyHandle<Y>& b, void*)
-{
- return uncheckedCastImpl<ProxyHandle<T> >(b);
-}
-
-
-//
-// Like IceInternal::Handle, but specifically for proxies, with
-// support for checkedCast() and uncheckedCast() instead of
-// dynamicCast().
-//
-template<typename T>
-class ProxyHandle : public ::IceUtil::HandleBase<T>
-{
-public:
-
- ProxyHandle(T* p = 0)
- {
- this->_ptr = p;
-
- if(this->_ptr)
- {
- upCast(this->_ptr)->__incRef();
- }
- }
-
- template<typename Y>
- ProxyHandle(const ProxyHandle<Y>& r)
- {
- this->_ptr = r._ptr;
-
- if(this->_ptr)
- {
- upCast(this->_ptr)->__incRef();
- }
- }
-
- template<typename Y>
- ProxyHandle(const ::IceUtil::Handle<Y>& r)
- {
- this->_ptr = r._ptr;
-
- if(this->_ptr)
- {
- upCast(this->_ptr)->__incRef();
- }
- }
-
- ProxyHandle(const ProxyHandle& r)
- {
- this->_ptr = r._ptr;
-
- if(this->_ptr)
- {
- upCast(this->_ptr)->__incRef();
- }
- }
-
- ~ProxyHandle()
- {
- if(this->_ptr)
- {
- upCast(this->_ptr)->__decRef();
- }
- }
-
- ProxyHandle& operator=(T* p)
- {
- if(this->_ptr != p)
- {
- if(p)
- {
- upCast(p)->__incRef();
- }
-
- if(this->_ptr)
- {
- upCast(this->_ptr)->__decRef();
- }
-
- this->_ptr = p;
- }
- return *this;
- }
-
- template<typename Y>
- ProxyHandle& operator=(const ProxyHandle<Y>& r)
- {
- if(this->_ptr != r._ptr)
- {
- if(r._ptr)
- {
- upCast(r._ptr)->__incRef();
- }
-
- if(this->_ptr)
- {
- upCast(this->_ptr)->__decRef();
- }
-
- this->_ptr = r._ptr;
- }
- return *this;
- }
-
- template<typename Y>
- ProxyHandle& operator=(const ::IceUtil::Handle<Y>& r)
- {
- if(this->_ptr != r._ptr)
- {
- if(r._ptr)
- {
- upCast(r._ptr)->__incRef();
- }
-
- if(this->_ptr)
- {
- upCast(this->_ptr)->__decRef();
- }
-
- this->_ptr = r._ptr;
- }
- return *this;
- }
-
- ProxyHandle& operator=(const ProxyHandle& r)
- {
- if(this->_ptr != r._ptr)
- {
- if(r._ptr)
- {
- upCast(r._ptr)->__incRef();
- }
-
- if(this->_ptr)
- {
- upCast(this->_ptr)->__decRef();
- }
-
- this->_ptr = r._ptr;
- }
- return *this;
- }
-
- ::IceProxy::Ice::Object* __upCast() const
- {
- return upCast(this->_ptr);
- }
-
- template<class Y>
- static ProxyHandle checkedCast(const ProxyHandle<Y>& r)
- {
- Y* tag = 0;
- return ::IceInternal::checkedCastHelper<T>(r, tag);
- }
-
- template<class Y>
- static ProxyHandle checkedCast(const ProxyHandle<Y>& r, const std::string& f)
- {
- return ::IceInternal::checkedCastImpl<ProxyHandle>(r, f);
- }
-
- template<class Y>
- static ProxyHandle checkedCast(const ProxyHandle<Y>& r, const ::Ice::Context& ctx)
- {
- return ::IceInternal::checkedCastHelper<T>(r, ctx);
- }
-
- template<class Y>
- static ProxyHandle checkedCast(const ProxyHandle<Y>& r, const std::string& f, const ::Ice::Context& ctx)
- {
- return ::IceInternal::checkedCastImpl<ProxyHandle>(r, f, ctx);
- }
-
- template<class Y>
- static ProxyHandle uncheckedCast(const ProxyHandle<Y>& r)
- {
- Y* tag = 0;
- return::IceInternal::uncheckedCastHelper<T>(r, tag);
- }
-
- template<class Y>
- static ProxyHandle uncheckedCast(const ProxyHandle<Y>& r, const std::string& f)
- {
- return ::IceInternal::uncheckedCastImpl<ProxyHandle>(r, f);
- }
-};
-
-}
-
-#endif