summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Loader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Loader.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Loader.cpp100
1 files changed, 100 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Loader.cpp b/TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Loader.cpp
new file mode 100644
index 00000000000..fd81da7b806
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Loader.cpp
@@ -0,0 +1,100 @@
+// $Id$
+
+// ================================================================
+// DESCRIPTION
+// This class allows for dynamically loading
+// the IFR Service.
+//
+// AUTHORS
+// Jaiganesh Balasubramanian <jai@doc.ece.uci.edu>
+// Priyanka Gontla <pgontla@ece.uci.edu>
+// ================================================================
+
+#include "orbsvcs/IFRService/IFR_Service_Loader.h"
+#include "ace/Dynamic_Service.h"
+#include "ace/Argv_Type_Converter.h"
+
+ACE_RCSID (IFR_Service,
+ IFR_Service_Loader,
+ "$Id$")
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+TAO_IFR_Service_Loader::TAO_IFR_Service_Loader (void)
+{
+ // Constructor
+}
+
+TAO_IFR_Service_Loader::~TAO_IFR_Service_Loader (void)
+{
+ // Destructor
+}
+
+int
+TAO_IFR_Service_Loader::init (int argc,
+ ACE_TCHAR *argv[])
+{
+ ACE_DECLARE_NEW_CORBA_ENV;
+ ACE_TRY
+ {
+ // Copy command line parameter.
+ ACE_Argv_Type_Converter command_line (argc,
+ argv);
+
+ // Initialize the ORB
+ CORBA::ORB_var orb =
+ CORBA::ORB_init (command_line.get_argc (),
+ command_line.get_ASCII_argv (),
+ 0
+ ACE_ENV_ARG_PARAMETER);
+ ACE_TRY_CHECK;
+
+ // This function call initializes the IFR_Service Service
+ CORBA::Object_var object =
+ this->create_object (orb.in (),
+ command_line.get_argc (),
+ command_line.get_TCHAR_argv ()
+ ACE_ENV_ARG_PARAMETER);
+ ACE_TRY_CHECK;
+ }
+ ACE_CATCHANY
+ {
+ // @@ Should we log this???
+ return -1;
+ }
+ ACE_ENDTRY;
+ return 0;
+}
+
+int
+TAO_IFR_Service_Loader::fini (void)
+{
+ // Remove the IFR_Service Service.
+ return this->ifr_server_.fini ();
+}
+
+CORBA::Object_ptr
+TAO_IFR_Service_Loader::create_object (CORBA::ORB_ptr orb,
+ int argc,
+ ACE_TCHAR *argv[]
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ // Initializes the IFR_Service Service. Returns -1
+ // on an error.
+ int result = this->ifr_server_.init_with_orb (argc,
+ argv,
+ orb);
+ if (result != 0)
+ {
+ ACE_THROW_RETURN (CORBA::BAD_PARAM (0,
+ CORBA::COMPLETED_NO),
+ CORBA::Object::_nil ());
+ }
+
+ return CORBA::Object::_nil ();
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+ACE_FACTORY_DEFINE (TAO_IFRService, TAO_IFR_Service_Loader)