summaryrefslogtreecommitdiff
path: root/TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp')
-rw-r--r--TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp79
1 files changed, 79 insertions, 0 deletions
diff --git a/TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp b/TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp
new file mode 100644
index 00000000000..7cb44068e63
--- /dev/null
+++ b/TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp
@@ -0,0 +1,79 @@
+/**
+ * @file Client_Peer.cpp
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan <coryan@atdesk.com>
+ *
+ */
+#include "Client_Peer.h"
+#include "Clock_Ticks.h"
+#include "tao/ORB_Core.h"
+#include "ace/Reactor.h"
+
+ACE_RCSID(Nested_Upcall_Crash, Client_Peer, "$Id$")
+
+class Crasher : public ACE_Event_Handler
+{
+public:
+ Crasher (void);
+
+ virtual int handle_timeout (ACE_Time_Value const & current_time,
+ void const * arg);
+};
+
+Client_Peer::Client_Peer (CORBA::ORB_ptr orb)
+ : orb_(CORBA::ORB::_duplicate(orb))
+{
+}
+
+void
+Client_Peer::callme(Test::Peer_ptr callback,
+ CORBA::ULong max_depth,
+ Test::Payload const &)
+{
+ // ACE_DEBUG ((LM_DEBUG, "Received call, depth = %d\n", max_depth));
+ if (max_depth > 0)
+ {
+ Test::Peer_var me = this->_this ();
+
+ Test::Payload return_data;
+
+ callback->callme(me.in(), max_depth - 1, return_data);
+ }
+}
+
+void
+Client_Peer::crash(void)
+{
+ Crasher * crasher = new Crasher;
+
+ ACE_Time_Value clk_tck (0, Clock_Ticks::get_usecs_per_tick ());
+ ACE_Reactor * reactor = this->orb_->orb_core()->reactor();
+ reactor->schedule_timer(crasher, 0, clk_tck);
+}
+
+void
+Client_Peer::noop(void)
+{
+}
+
+Crasher::Crasher(void)
+{
+}
+
+int
+Crasher::handle_timeout (ACE_Time_Value const & ,
+ void const *)
+{
+ // ACE_DEBUG ((LM_DEBUG, "(%P|%t) Performing intentional crash
+ // %a\n"));
+ // This tests hangs on OpenVMS when abort() is used.
+ // Also see Crashed_Callback test.
+#if defined (ACE_OPENVMS)
+ ACE_OS::_exit ();
+#else
+ ACE_OS::abort();
+#endif
+ return 0;
+}