summaryrefslogtreecommitdiff
path: root/TAO/examples/CSD_Strategy/ThreadPool4/Foo_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/CSD_Strategy/ThreadPool4/Foo_i.cpp')
-rw-r--r--TAO/examples/CSD_Strategy/ThreadPool4/Foo_i.cpp302
1 files changed, 0 insertions, 302 deletions
diff --git a/TAO/examples/CSD_Strategy/ThreadPool4/Foo_i.cpp b/TAO/examples/CSD_Strategy/ThreadPool4/Foo_i.cpp
deleted file mode 100644
index ad128eb15d6..00000000000
--- a/TAO/examples/CSD_Strategy/ThreadPool4/Foo_i.cpp
+++ /dev/null
@@ -1,302 +0,0 @@
-// $Id$
-#include "Foo_i.h"
-#include "OrbShutdownTask.h"
-#include "ace/OS.h"
-
-Foo_i::Foo_i(const char* servant_name)
-: value_(0),
- count_op1_(0),
- count_op2_(0),
- count_op3_(0),
- count_op4_(0),
- count_op5_(0),
- servant_name_(servant_name)
-{
-}
-
-
-Foo_i::~Foo_i()
-{
-}
-
-
-void
-Foo_i::op1(ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC((CORBA::SystemException))
-{
- ++this->count_op1_;
- // Sleep for 10 milliseconds (10,000 microseconds)
- //ACE_OS::sleep(ACE_Time_Value(0,10000));
-}
-
-
-void
-Foo_i::op2(CORBA::Long value ACE_ENV_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC((CORBA::SystemException))
-{
- ++this->count_op2_;
- this->value_ = value;
-}
-
-
-CORBA::Long
-Foo_i::op3(ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC((CORBA::SystemException))
-{
- ++this->count_op3_;
- return this->value_;
-}
-
-
-void
-Foo_i::op4(CORBA::Long value ACE_ENV_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC((CORBA::SystemException))
-{
- ++this->count_op4_;
- this->value_ = value;
-
- if (this->count_op4_ % 1 == 0)
- {
- ACE_DEBUG((LM_DEBUG,
- "(%P|%t) op4() has been called %d times now. value == %d\n",
- this->count_op4_, this->value_));
- }
-
- // Sleep for 10 milliseconds (10,000 microseconds)
- //ACE_OS::sleep(ACE_Time_Value(0,10000));
-}
-
-
-void
-Foo_i::op5(ACE_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC((CORBA::SystemException, FooException))
-{
- ACE_DEBUG((LM_DEBUG, "(%P|%t) Foo_i::op5() - ENTER\n"));
- ACE_DEBUG((LM_DEBUG, "(%P|%t) Foo_i::op5() - Increment counter.\n"));
- unsigned newcount = ++this->count_op5_;
- ACE_DEBUG((LM_DEBUG, "(%P|%t) Foo_i::op5() - Counter is now %d.\n", newcount));
- ACE_DEBUG((LM_DEBUG, "(%P|%t) Foo_i::op5() - EXIT - Raise a FooException.\n"));
- ACE_THROW_SPEC (FooException());
-}
-
-
-CORBA::Boolean
-Foo_i::op6 (
- const char * user_name,
- char *& message
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
- CORBA::SystemException
-))
-{
- ACE_CString str(message);
- str += user_name;
- CORBA::string_free (message);
- message = CORBA::string_dup (str.c_str ());
- return 1;
-}
-
-
-void
-Foo_i::test_unbounded_string_arg (
- const char * message
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
-CORBA::SystemException
-))
-{
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_unbounded_string_arg ")
- ACE_TEXT("got unbounded string %s\n"),
- message));
-}
-
-
-void
-Foo_i::test_bounded_string_arg (
- const char * message
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
-CORBA::SystemException
-))
-{
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_bounded_string_arg ")
- ACE_TEXT("got bounded string %s\n"),
- message));
-}
-
-
-void
-Foo_i::test_fixed_array_arg (
- const ::Fixed_Array message
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
- CORBA::SystemException
-))
-{
- for (CORBA::ULong i = 0; i < 20; i++)
- {
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_fixed_array_arg ")
- ACE_TEXT("got fixed_array[i] = %d\n"),
- i, message[i]));
- }
-}
-
-
-void
-Foo_i::test_bounded_var_size_arg (
- const ::Bounded_Var_Size & message
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
- CORBA::SystemException
-))
-{
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_bounded_var_size_arg ")
- ACE_TEXT("got var array chars %s\n"),
- message.get_buffer ()));
-}
-
-
-void
-Foo_i::test_unbounded_var_size_arg (
- const ::Unbounded_Var_Size & message
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
- CORBA::SystemException
-))
-{
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_unbounded_var_size_arg ")
- ACE_TEXT("got var array chars %s\n"),
- message.get_buffer ()));
-}
-
-
-void
-Foo_i::test_fixed_size_arg (
- const ::TimeOfDay & t
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
- CORBA::SystemException
-))
-{
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_fixed_size_arg ")
- ACE_TEXT("got timeofday %d:%d:%d\n"),
- t.hour, t.minute, t.second));
-}
-
-void
-Foo_i::test_fixed_size_arg_two_way (
- const ::TimeOfDay & t
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
- CORBA::SystemException
-))
-{
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_fixed_size_arg_two_way ")
- ACE_TEXT("got timeofday %d:%d:%d\n"),
- t.hour, t.minute, t.second));
-}
-
-void
-Foo_i::test_var_array_arg (
- const ::Var_Array messages
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
- CORBA::SystemException
-))
-{
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_var_array_arg ")
- ACE_TEXT(" %s \n"), messages[0].in ()));
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_var_array_arg ")
- ACE_TEXT(" %s \n"), messages[1].in ()));
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_var_array_arg ")
- ACE_TEXT(" %s \n"), messages[2].in ()));
-}
-
-
-void
-Foo_i::test_special_basic_arg (
- ::CORBA::Boolean value
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
- CORBA::SystemException
-))
-{
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_special_basic_arg ")
- ACE_TEXT(" got special basic arg: %d \n"), value));
-}
-
-
-void
-Foo_i::test_objref_arg (
- ::Callback_ptr cb
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
- CORBA::SystemException
-))
-{
- this->callback_ = Callback::_duplicate (cb);
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_i::test_objref_arg ")
- ACE_TEXT(" got callback object. \n")));
-}
-
-
-void
-Foo_i::callback_object (
- ::Callback_ptr cb
- ACE_ENV_ARG_DECL_NOT_USED
-)
-ACE_THROW_SPEC ((
- CORBA::SystemException
-))
-{
- this->callback_ = Callback::_duplicate (cb);
-}
-
-void
-Foo_i::test_callback (
- ACE_ENV_SINGLE_ARG_DECL
-)
-ACE_THROW_SPEC ((
- CORBA::SystemException, FooException
-))
-{
- if (CORBA::is_nil (this->callback_.in ()))
- {
- ACE_THROW (FooException ());
- }
- else
- {
- this->callback_->test_method (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK;
- }
-}
-
-
-void
-Foo_i::done(ACE_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC((CORBA::SystemException))
-{
- static ACE_Atomic_Op <ACE_SYNCH_MUTEX, unsigned> num_clients = 2;
-
- num_clients --;
-
- if (num_clients == 0)
- {
- if (TheOrbShutdownTask::instance()->open(0) != 0)
- {
- ACE_ERROR((LM_ERROR, "(%P|%t)Foo_i::done: "
- "failed to create orb shutdown thread.\n"));
- }
- }
-}