summaryrefslogtreecommitdiff
path: root/TAO/tests/Simple/chat/Server_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Simple/chat/Server_i.cpp')
-rw-r--r--TAO/tests/Simple/chat/Server_i.cpp90
1 files changed, 0 insertions, 90 deletions
diff --git a/TAO/tests/Simple/chat/Server_i.cpp b/TAO/tests/Simple/chat/Server_i.cpp
deleted file mode 100644
index 3f26c8a2c33..00000000000
--- a/TAO/tests/Simple/chat/Server_i.cpp
+++ /dev/null
@@ -1,90 +0,0 @@
-// $Id$
-
-// ===========================================================
-//
-//
-// = LIBRARY
-// TAO/tests/Simple/chat
-//
-// = FILENAME
-// Server_i.cpp
-//
-// = DESCRIPTION
-// Implementation of the Chat Server_i class.
-//
-// = AUTHOR
-// Pradeep Gore <pradeep@cs.wustl.edu>
-//
-// ===========================================================
-
-#include "Server_i.h"
-
-Server_i::Server_i(char *ior_file_name):ior_file_name_(ior_file_name)
-{
-}
-
-Server_i::~Server_i()
-{
-}
-
-int Server_i::init (int argc,
- char *argv[],
- CORBA::Environment &env)
-{
- if (this->orb_manager_.init_child_poa (argc,
- argv,
- "child_poa",
- env) == -1)
- {
- ACE_ERROR_RETURN ((LM_ERROR,
- "%p\n",
- "init_child_poa"),
- -1);
- }
-
- TAO_CHECK_ENV_RETURN (env, -1);
-
- CORBA::ORB_var orb = this->orb_manager_.orb ();
-
- // Activate the servant in its own child POA.
- CORBA::String_var str =
- this->orb_manager_.activate_under_child_poa ("chat_server",
- &(this->broadcaster_i_),
- env);
- /*
- ACE_DEBUG ((LM_DEBUG,
- "The IOR is: <%s>\n",
- str.in ()));
- */
-
- this->writeIOR(str.in());
-
- return 0;
-}
-
-int Server_i::run (CORBA::Environment &env)
-{
- // Run the main event loop for the ORB.
- if (this->orb_manager_.run (env) == -1)
- {
- ACE_ERROR_RETURN ((LM_ERROR,
- "Server_i::run"),
- -1);
- }
-
- return 0;
-}
-
-int Server_i::writeIOR(const char* ior)
-{
- FILE* ior_output_file_ = ACE_OS::fopen (this->ior_file_name_, "w");
-
- if (ior_output_file_)
- {
- ACE_OS::fprintf (ior_output_file_,
- "%s",
- ior);
- ACE_OS::fclose (ior_output_file_);
- }
- return 0;
-}