summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/bank/AccountManager_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/bank/AccountManager_i.cpp')
-rw-r--r--TAO/examples/Simple/bank/AccountManager_i.cpp154
1 files changed, 0 insertions, 154 deletions
diff --git a/TAO/examples/Simple/bank/AccountManager_i.cpp b/TAO/examples/Simple/bank/AccountManager_i.cpp
deleted file mode 100644
index 6a28b463130..00000000000
--- a/TAO/examples/Simple/bank/AccountManager_i.cpp
+++ /dev/null
@@ -1,154 +0,0 @@
-// $Id$
-
-#include "AccountManager_i.h"
-#include "Account_i.h"
-
-ACE_RCSID(AccountManager, AccountManager_i, "$Id$")
-
-// Constructor
-
-AccountManager_i::AccountManager_i (void)
-{
- // no-op
-}
-
-// Destructor
-
-AccountManager_i::~AccountManager_i (void)
-{
- // no-op
-}
-
-// Set the ORB pointer
-
-void
-AccountManager_i::orb (CORBA::ORB_ptr o)
-{
- this->orb_ = CORBA::ORB::_duplicate (o);
-}
-
-void
-AccountManager_i::poa (PortableServer::POA_ptr poa)
-{
- this->poa_ = poa;
-}
-
-void
-AccountManager_i::set_orb_manager (TAO_ORB_Manager *orb_manager)
-{
- this->orb_manager_ = orb_manager;
-}
-
-// Open an account for the given name.
-
-Bank::Account_ptr
-AccountManager_i::open (const char *name,
- CORBA::Float initial_balance,
- CORBA::Environment &_env)
-{
- Account_i *result = 0;
-
- // If name is already in the map, <find> will assign <result> to the
- // appropriate value.
- TAO_TRY
- {
- if (hash_map_.find (name, result) != 0)
- {
- ACE_DEBUG ((LM_DEBUG,
- "(%P|%t) Opening a new Account for %s with balance %f\n",
- name,
- initial_balance));
-
- ACE_NEW_THROW_RETURN (result,
- Account_i (name,
- initial_balance),
- CORBA::NO_MEMORY (CORBA::COMPLETED_NO),
- Bank::Account::_nil ());
-
- // Enter the new Account in the hash map. If the <bind>
- // fails throw an UNKNOWN exception. <result> may be valid
- // but since it is not properly bound, it's behaviour may be
- // off, so delete it to be safe.
-
- if (hash_map_.bind (name, result) == -1)
- {
- delete result;
- TAO_THROW_RETURN (CORBA::UNKNOWN (CORBA::COMPLETED_NO),
- Bank::Account::_nil ());
- }
- }
- else
- if (TAO_debug_level > 0)
- ACE_DEBUG ((LM_DEBUG,
- "\nAccount already exists for %s\n",
- name));
- // Generate an IOR for the result object and register it with
- // the POA. In case the object already exists then the
- // previously generated IOR is returned.
-
- }
- TAO_CATCHANY
- {
- _env.print_exception("Exception in OPen");
- }
- TAO_ENDTRY;
-
- return result->_this ();
-}
-
-// Shutdown.
-
-void
-AccountManager_i::close (Bank::Account_ptr account,
- CORBA::Environment &TAO_TRY_ENV)
-{
- TAO_TRY
- {
- CORBA::String_var name =
- CORBA::string_dup (account->name (TAO_TRY_ENV));
-
- TAO_CHECK_ENV;
-
- if (hash_map_.unbind ((const char *) name) == -1)
- {
- if (TAO_debug_level > 0)
- ACE_DEBUG((LM_DEBUG,
- "Unable to close account\n"));
- }
- else if (TAO_debug_level > 0)
- ACE_DEBUG((LM_DEBUG,
- "Closing Account for %s\n",
- (char *) name));
-
- }
- TAO_CATCHANY
- {
- TAO_TRY_ENV.print_exception ("Unable to close Account\n");
- }
- TAO_ENDTRY;
-}
-
-void
-AccountManager_i::shutdown (CORBA::Environment &)
-{
- ACE_DEBUG ((LM_DEBUG,
- "%s\n",
- "AccountManager_i is shutting down"));
-
- // Instruct the ORB to shutdown.
- this->orb_->shutdown ();
-}
-
-#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-template class ACE_Hash_Map_Manager <ACE_CString,Account_i *,ACE_Null_Mutex>;
-template class ACE_Hash_Map_Iterator <ACE_CString,Account_i *,ACE_Null_Mutex>;
-template class ACE_Hash_Map_Entry<ACE_CString, Account_i *>;
-template class ACE_Hash_Map_Reverse_Iterator<ACE_CString, Account_i *, ACE_Null_Mutex>;
-template class ACE_Hash_Map_Iterator_Base<ACE_CString, Account_i *, ACE_Null_Mutex>;
-#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-#pragma instantiate ACE_Hash_Map_Manager <ACE_CString,Account_i *,ACE_Null_Mutex>;
-#pragma instantiate ACE_Hash_Map_Iterator <ACE_CString,Account_i *,ACE_Null_Mutex>;
-#pragma instantiate ACE_Hash_Map_Entry<ACE_CString, Account_i *>;
-#pragma instantiate ACE_Hash_Map_Reverse_Iterator<ACE_CString, Account_i *, ACE_Null_Mutex>;
-#pragma instantiate ACE_Hash_Map_Iterator_Base<ACE_CString, Account_i *, ACE_Null_Mutex>;
-#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */