summaryrefslogtreecommitdiff
path: root/TAO/tao/RT_ORB_Loader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/RT_ORB_Loader.cpp')
-rw-r--r--TAO/tao/RT_ORB_Loader.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/TAO/tao/RT_ORB_Loader.cpp b/TAO/tao/RT_ORB_Loader.cpp
new file mode 100644
index 00000000000..b8e5f6df19d
--- /dev/null
+++ b/TAO/tao/RT_ORB_Loader.cpp
@@ -0,0 +1,50 @@
+// $Id$
+
+#include "RT_ORB_Loader.h"
+#include "RT_ORB.h"
+#include "RT_Current.h"
+
+#include "tao/ORB_Core.h"
+#include "tao/Priority_Mapping_Manager.h"
+
+ACE_RCSID(TAO, RT_ORB_Loader, "$Id: ")
+
+TAO_RT_ORB_Loader::TAO_RT_ORB_Loader (void)
+{
+}
+
+CORBA::Object_ptr
+TAO_RT_ORB_Loader::create_object (CORBA::ORB_ptr orb,
+ int,
+ char *[],
+ CORBA::Environment &)
+ ACE_THROW_SPEC (())
+{
+ /// Return RT_ORB
+ CORBA::Object_ptr obj;
+ ACE_NEW_RETURN (obj,
+ TAO_RT_ORB,
+ CORBA::Object::_nil ());
+
+ /// Sets the RT_Current object and Priority_Mapping_Manager
+ /// in the ORB.
+ this->set_objects (orb->orb_core ());
+
+ return obj;
+}
+
+void
+TAO_RT_ORB_Loader::set_objects (TAO_ORB_Core *orb_core)
+{
+ /// Setup the RT_Current object in the ORB
+ CORBA::Object_var current = new TAO_RT_Current (orb_core);
+ orb_core->rt_current (current.in ());
+}
+
+ACE_FACTORY_DEFINE (TAO, TAO_RT_ORB_Loader)
+ACE_STATIC_SVC_DEFINE (TAO_RT_ORB_Loader,
+ ACE_TEXT ("RT_ORB_Loader"),
+ ACE_SVC_OBJ_T,
+ &ACE_SVC_NAME (TAO_RT_ORB_Loader),
+ ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
+ 0)