summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/exceptions/TestAMDI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/exceptions/TestAMDI.cpp')
-rw-r--r--cpp/test/Ice/exceptions/TestAMDI.cpp200
1 files changed, 200 insertions, 0 deletions
diff --git a/cpp/test/Ice/exceptions/TestAMDI.cpp b/cpp/test/Ice/exceptions/TestAMDI.cpp
new file mode 100644
index 00000000000..1d426eb3b6d
--- /dev/null
+++ b/cpp/test/Ice/exceptions/TestAMDI.cpp
@@ -0,0 +1,200 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2011 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.
+//
+// **********************************************************************
+
+#include <Ice/Ice.h>
+#include <TestAMDI.h>
+
+using namespace Test;
+
+ThrowerI::ThrowerI()
+{
+}
+
+void
+ThrowerI::shutdown_async(const AMD_Thrower_shutdownPtr& cb,
+ const Ice::Current& current)
+{
+ current.adapter->getCommunicator()->shutdown();
+ cb->ice_response();
+}
+
+void
+ThrowerI::supportsUndeclaredExceptions_async(const AMD_Thrower_supportsUndeclaredExceptionsPtr& cb,
+ const Ice::Current&)
+{
+ cb->ice_response(true);
+}
+
+void
+ThrowerI::supportsAssertException_async(const AMD_Thrower_supportsAssertExceptionPtr& cb,
+ const Ice::Current&)
+{
+ cb->ice_response(false);
+}
+
+void
+ThrowerI::throwAasA_async(const AMD_Thrower_throwAasAPtr& cb,
+ Ice::Int a, const Ice::Current&)
+{
+ A ex;
+ ex.aMem = a;
+ cb->ice_exception(ex);
+}
+
+void
+ThrowerI::throwAorDasAorD_async(const AMD_Thrower_throwAorDasAorDPtr& cb,
+ Ice::Int a, const Ice::Current&)
+{
+ if(a > 0)
+ {
+ A ex;
+ ex.aMem = a;
+ cb->ice_exception(ex);
+ }
+ else
+ {
+ D ex;
+ ex.dMem = a;
+ cb->ice_exception(ex);
+ }
+}
+
+void
+ThrowerI::throwBasA_async(const AMD_Thrower_throwBasAPtr& cb,
+ Ice::Int a, Ice::Int b, const Ice::Current& current)
+{
+ B ex;
+ ex.aMem = a;
+ ex.bMem = b;
+ throw ex;
+ //cb->ice_exception(ex);
+}
+
+void
+ThrowerI::throwCasA_async(const AMD_Thrower_throwCasAPtr& cb,
+ Ice::Int a, Ice::Int b, Ice::Int c, const Ice::Current& current)
+{
+ C ex;
+ ex.aMem = a;
+ ex.bMem = b;
+ ex.cMem = c;
+ cb->ice_exception(ex);
+}
+
+void
+ThrowerI::throwBasB_async(const AMD_Thrower_throwBasBPtr& cb,
+ Ice::Int a, Ice::Int b, const Ice::Current&)
+{
+ B ex;
+ ex.aMem = a;
+ ex.bMem = b;
+ throw ex;
+ //cb->ice_exception(ex);
+}
+
+void
+ThrowerI::throwCasB_async(const AMD_Thrower_throwCasBPtr& cb,
+ Ice::Int a, Ice::Int b, Ice::Int c, const Ice::Current& current)
+{
+ C ex;
+ ex.aMem = a;
+ ex.bMem = b;
+ ex.cMem = c;
+ cb->ice_exception(ex);
+}
+
+void
+ThrowerI::throwCasC_async(const AMD_Thrower_throwCasCPtr& cb,
+ Ice::Int a, Ice::Int b, Ice::Int c, const Ice::Current&)
+{
+ C ex;
+ ex.aMem = a;
+ ex.bMem = b;
+ ex.cMem = c;
+ cb->ice_exception(ex);
+}
+
+void
+ThrowerI::throwModA_async(const AMD_Thrower_throwModAPtr& cb,
+ Ice::Int a, Ice::Int a2, const Ice::Current&)
+{
+ Mod::A ex;
+ ex.aMem = a;
+ ex.a2Mem = a2;
+ throw ex;
+}
+
+
+void
+ThrowerI::throwUndeclaredA_async(const AMD_Thrower_throwUndeclaredAPtr& cb,
+ Ice::Int a, const Ice::Current&)
+{
+ A ex;
+ ex.aMem = a;
+ cb->ice_exception(ex);
+}
+
+void
+ThrowerI::throwUndeclaredB_async(const AMD_Thrower_throwUndeclaredBPtr& cb,
+ Ice::Int a, Ice::Int b, const Ice::Current&)
+{
+ B ex;
+ ex.aMem = a;
+ ex.bMem = b;
+ throw ex;
+// cb->ice_exception(ex);
+}
+
+void
+ThrowerI::throwUndeclaredC_async(const AMD_Thrower_throwUndeclaredCPtr& cb,
+ Ice::Int a, Ice::Int b, Ice::Int c, const Ice::Current&)
+{
+ C ex;
+ ex.aMem = a;
+ ex.bMem = b;
+ ex.cMem = c;
+ cb->ice_exception(ex);
+}
+
+void
+ThrowerI::throwLocalException_async(const AMD_Thrower_throwLocalExceptionPtr& cb,
+ const Ice::Current&)
+{
+ cb->ice_exception(Ice::TimeoutException(__FILE__, __LINE__));
+}
+
+void
+ThrowerI::throwNonIceException_async(const AMD_Thrower_throwNonIceExceptionPtr&,
+ const Ice::Current&)
+{
+ throw int(12345);
+}
+
+void
+ThrowerI::throwAssertException_async(const AMD_Thrower_throwAssertExceptionPtr&,
+ const Ice::Current&)
+{
+ assert(false); // Not supported in C++.
+}
+
+void
+ThrowerI::throwAfterResponse_async(const AMD_Thrower_throwAfterResponsePtr& cb, const Ice::Current&)
+{
+ cb->ice_response();
+
+ throw std::string();
+}
+
+void
+ThrowerI::throwAfterException_async(const AMD_Thrower_throwAfterExceptionPtr& cb, const Ice::Current&)
+{
+ cb->ice_exception(A());
+
+ throw std::string();
+}