summaryrefslogtreecommitdiff
path: root/CIAO/ciao
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-02-21 19:53:48 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-02-21 19:53:48 +0000
commitd1ac24ca94a4d4a3d5cee0d6c04611e9de870146 (patch)
treeb3e18d197194eb2744667a86e11cb1d6b7aec31e /CIAO/ciao
parent6cb6673215bf6c44d28b854f35384a19494ff225 (diff)
downloadATCD-d1ac24ca94a4d4a3d5cee0d6c04611e9de870146.tar.gz
Sat Feb 21 19:53:18 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* ciao/ComponentServer/CIAO_Container_Impl.cpp: * ciao/Containers/Session/Session_Container.cpp: Small improvements to debug statements and nil usage * DAnCE/TargetManager/descriptors/run_test_TargetManager.pl * DAnCE/tests/CIAO/ExecutionManager-Deployments/run_test.pl * DAnCE/tests/CIAO/NodeManager-Deployments/run_test.pl * DAnCE/tests/scripts/BasicSP/basicNodeDaemon.pl * docs/tutorials/Quoter/Simple/descriptors/runNodeDaemons.pl * examples/BasicSP/descriptors/run_test.pl * examples/Display/descriptors/basicNodeDaemon.pl * examples/Display/descriptors/run_NodeDaemons.pl * examples/Display/descriptors/run_test_without_ns.pl * examples/Hello/descriptors/DeploymentPlan.cdp * examples/Hello/descriptors/run_NodeDaemons.pl * examples/Hello/descriptors/run_test.pl * examples/Hello/descriptors/run_test_without_ns.pl * examples/Hello/descriptors_RTCCM/rt_run_test.pl * examples/Null_Component/descriptors/run_test.pl * tests/Bug_2130_Regression/descriptors/run_test.pl Use DANCE_ROOT and dance_node_manager
Diffstat (limited to 'CIAO/ciao')
-rw-r--r--CIAO/ciao/ComponentServer/CIAO_Container_Impl.cpp18
-rw-r--r--CIAO/ciao/Containers/Session/Session_Container.cpp85
2 files changed, 52 insertions, 51 deletions
diff --git a/CIAO/ciao/ComponentServer/CIAO_Container_Impl.cpp b/CIAO/ciao/ComponentServer/CIAO_Container_Impl.cpp
index 9614d290841..c60ee28c610 100644
--- a/CIAO/ciao/ComponentServer/CIAO_Container_Impl.cpp
+++ b/CIAO/ciao/ComponentServer/CIAO_Container_Impl.cpp
@@ -68,16 +68,16 @@ namespace CIAO
const ::Components::ConfigValues & config)
{
CIAO_TRACE("CIAO_Container_i::install_component");
-
+
if (id == 0)
{
CIAO_ERROR ((LM_ERROR, CLINFO "CIAO_Container_i::install_component - "
"No home ID provided\n"));
throw ::Components::Deployment::InvalidConfiguration ();
}
-
+
Components::CCMObject_var comp;
-
+
if (this->component_map_.find (id, comp) == 0)
{
CIAO_ERROR ((LM_ERROR, CLINFO "CIAO_Container_i::install_component - "
@@ -174,8 +174,8 @@ namespace CIAO
"CIAO_Container_i::install_component - "
"Unable to bind componnet into component map\n"));
}
-
-
+
+
return comp._retn ();
}
@@ -242,8 +242,7 @@ namespace CIAO
}
CIAO_DEBUG ((LM_INFO, CLINFO "CIAO_Container_i::install_home - "
- "Attempting to install home with id [%C]\n",
- id));
+ "Attempting to install home with id [%C]\n", id));
CIAO_DEBUG ((LM_TRACE, CLINFO
"CIAO_Container_i::install_home - "
@@ -254,7 +253,7 @@ namespace CIAO
CIAO::Utility::build_config_values_map (cm, config);
CORBA::Any val;
- const char *tmp;
+ const char *tmp = 0;
CORBA::String_var exec_art, svnt_art, svnt_entry;
if (cm.find (SVNT_ENTRYPT, val) == 0)
{
@@ -379,7 +378,7 @@ namespace CIAO
{
CIAO_TRACE("CIAO_Container_i::get_homes");
- ::Components::CCMHomes * tmp_homes;
+ ::Components::CCMHomes *tmp_homes = 0;
ACE_NEW_THROW_EX (tmp_homes,
::Components::CCMHomes (this->home_map_.current_size ()),
@@ -410,7 +409,6 @@ namespace CIAO
"Attempting to remove container that still has %u homes and %u components installed\n",
this->home_map_.current_size (),
this->component_map_.current_size ()));
-
}
//this->container_->_remove_ref ();
diff --git a/CIAO/ciao/Containers/Session/Session_Container.cpp b/CIAO/ciao/Containers/Session/Session_Container.cpp
index bdbf9ea0c5e..94d2fa899b5 100644
--- a/CIAO/ciao/Containers/Session/Session_Container.cpp
+++ b/CIAO/ciao/Containers/Session/Session_Container.cpp
@@ -189,7 +189,7 @@ namespace CIAO
{
CIAO_TRACE ("Session_Container::install_servant");
- PortableServer::POA_ptr tmp = 0;
+ PortableServer::POA_ptr tmp = PortableServer::POA::_nil();
if (t == Container_Types::COMPONENT_t ||
t == Container_Types::HOME_t)
@@ -242,7 +242,7 @@ namespace CIAO
servant_artifact, servant_entrypoint));
ACE_DLL executor_dll;
- ACE_DLL servant_dll;
+ ACE_DLL servant_dll;
if (primary_artifact == 0 || servant_artifact == 0)
{
@@ -259,8 +259,7 @@ namespace CIAO
}
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container.cpp -"
- "Session_Container::ciao_install_home -"
+ "Session_Container::install_home -"
"ERROR: %C\n",
exception.c_str ()));
@@ -275,8 +274,7 @@ namespace CIAO
error += primary_artifact;
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container.cpp -"
- "Session_Container::ciao_install_home -"
+ "Session_Container::install_home -"
"ERROR in opening the executor DLL [%C] \n",
primary_artifact));
@@ -284,7 +282,8 @@ namespace CIAO
}
CIAO_DEBUG ((LM_TRACE, CLINFO
- "Session_Container::install_home - Executor DLL successfully opened\n"));
+ "Session_Container::install_home - "
+ "Executor DLL successfully opened\n"));
if (servant_dll.open (servant_artifact,
ACE_DEFAULT_SHLIB_MODE,
@@ -294,8 +293,7 @@ namespace CIAO
error += servant_artifact;
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container.cpp -"
- "Session_Container::ciao_install_home -"
+ "Session_Container::install_home -"
"ERROR in opening the servant DLL [%C] \n",
servant_artifact));
@@ -303,7 +301,8 @@ namespace CIAO
}
CIAO_DEBUG ((LM_TRACE, CLINFO
- "Session_Container::install_home - Servant DLL successfully openend.\n"));
+ "Session_Container::install_home - "
+ "Servant DLL successfully openend.\n"));
if (entry_point == 0 || servant_entrypoint == 0)
{
@@ -312,8 +311,7 @@ namespace CIAO
if (entry_point == 0)
{
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container.cpp -"
- "Session_Container::ciao_install_home -"
+ "Session_Container::install_home -"
"ERROR in opening the executor entry point "
"for executor DLL [%C] \n",
primary_artifact));
@@ -322,8 +320,7 @@ namespace CIAO
else
{
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container.cpp -"
- "Session_Container::ciao_install_home -"
+ "Session_Container::install_home -"
"ERROR in opening the servant entry point "
"for servant DLL [%C] \n",
servant_artifact));
@@ -347,7 +344,8 @@ namespace CIAO
else
{
CIAO_DEBUG ((LM_DEBUG, CLINFO
- "Session_Container::install_home - Loading statically linked home [%C]\n",
+ "Session_Container::install_home - "
+ "Loading statically linked home [%C]\n",
name));
if (static_entrypts_maps_ == 0
@@ -365,8 +363,8 @@ namespace CIAO
hcreator);
ACE_CString servant_entrypoint_str (servant_entrypoint);
- static_entrypts_maps_->home_servant_creator_funcptr_map_->find (servant_entrypoint_str,
- screator);
+ static_entrypts_maps_->home_servant_creator_funcptr_map_->find (
+ servant_entrypoint_str, screator);
}
if (hcreator == 0 || screator == 0)
@@ -387,7 +385,7 @@ namespace CIAO
}
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container::ciao_install_home - Error:%C\n",
+ "Session_Container::install_home - Error:%C\n",
error.c_str ()));
throw Components::Deployment::ImplEntryPointNotFound ();
@@ -400,7 +398,8 @@ namespace CIAO
if (CORBA::is_nil (home_executor.in ()))
{
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container::ciao_install_hoe - Home executor factory failed. \n"));
+ "Session_Container::install_hoe - "
+ "Home executor factory failed. \n"));
throw Components::Deployment::InstallationFailure ();
}
@@ -413,7 +412,8 @@ namespace CIAO
if (home_servant == 0)
{
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container::ciao_install_home - Home servant factory failed.\n"));
+ "Session_Container::install_home - "
+ "Home servant factory failed.\n"));
throw Components::Deployment::InstallationFailure ();
}
@@ -480,8 +480,7 @@ namespace CIAO
}
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container.cpp -"
- "Session_Container::ciao_install_component -"
+ "Session_Container::install_component -"
"ERROR: %C\n",
exception.c_str ()));
@@ -496,8 +495,7 @@ namespace CIAO
error += primary_artifact;
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container.cpp -"
- "Session_Container::ciao_install_component -"
+ "Session_Container::install_component -"
"ERROR in opening the executor DLL [%C] \n",
primary_artifact));
@@ -515,8 +513,7 @@ namespace CIAO
error += servant_artifact;
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container.cpp -"
- "Session_Container::ciao_install_component -"
+ "Session_Container::install_component -"
"ERROR in opening the servant DLL [%C] \n",
servant_artifact));
@@ -533,8 +530,7 @@ namespace CIAO
if (entry_point == 0)
{
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container.cpp -"
- "Session_Container::ciao_install_component -"
+ "Session_Container::install_component -"
"ERROR in opening the executor entry point "
"for executor DLL [%C] \n",
primary_artifact));
@@ -543,8 +539,7 @@ namespace CIAO
else
{
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container.cpp -"
- "Session_Container::ciao_install_component -"
+ "Session_Container::install_component -"
"ERROR in opening the servant entry point "
"for servant DLL [%C] \n",
servant_artifact));
@@ -569,7 +564,8 @@ namespace CIAO
else
{
CIAO_DEBUG ((LM_DEBUG, CLINFO
- "Session_Container::install_component - Loading statically linked component [%C]\n",
+ "Session_Container::install_component - "
+ "Loading statically linked component [%C]\n",
name));
if (static_entrypts_maps_ == 0
@@ -577,7 +573,8 @@ namespace CIAO
|| static_entrypts_maps_->component_servant_creator_funcptr_map_ == 0)
{
CIAO_DEBUG ((LM_ERROR, CLINFO
- "Session_Container::install_component - ERROR: Static entrypoint "
+ "Session_Container::install_component - "
+ "ERROR: Static entrypoint "
"maps are null or imcomplete.\n"));
throw Components::Deployment::ImplEntryPointNotFound ();
}
@@ -609,25 +606,28 @@ namespace CIAO
}
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container::ciao_install_component - Error:%C\n",
+ "Session_Container::install_component - Error:%C\n",
error.c_str ()));
throw Components::Deployment::ImplEntryPointNotFound ();
}
CIAO_DEBUG ((LM_TRACE, CLINFO
- "Session_Container::install_component - Loading component executor\n"));
+ "Session_Container::install_component - "
+ "Loading component executor\n"));
Components::EnterpriseComponent_var component_executor = ccreator ();
if (CORBA::is_nil (component_executor.in ()))
{
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container::Ciao_install_hoe - Component executor factory failed. \n"));
+ "Session_Container::install_component - "
+ "Component executor factory failed. \n"));
throw Components::Deployment::InstallationFailure ();
}
CIAO_DEBUG ((LM_TRACE, CLINFO
- "Session_Container::install_component - Loading component servant\n"));
+ "Session_Container::install_component - "
+ "Loading component servant\n"));
PortableServer::Servant component_servant = screator (component_executor.in (),
this,
name);
@@ -635,14 +635,16 @@ namespace CIAO
if (component_servant == 0)
{
CIAO_ERROR ((LM_ERROR, CLINFO
- "Session_Container::ciao_install_component - Component servant factory failed.\n"));
+ "Session_Container::install_component - "
+ "Component servant factory failed.\n"));
throw Components::Deployment::InstallationFailure ();
}
PortableServer::ServantBase_var safe (component_servant);
CIAO_DEBUG ((LM_TRACE, CLINFO
- "Session_Container::install_component - Installing component servant\n"));
+ "Session_Container::install_component - "
+ "Installing component servant\n"));
PortableServer::ObjectId_var oid;
@@ -653,7 +655,8 @@ namespace CIAO
Components::CCMObject::_narrow (objref.in ());
CIAO_DEBUG ((LM_TRACE, CLINFO
- "Session_Container::install_component - Component successfully created\n"));
+ "Session_Container::install_component - "
+ "Component successfully created\n"));
return componentref._retn ();
}
@@ -798,7 +801,7 @@ namespace CIAO
{
CIAO_TRACE ("Session_Container::uninstall_servant");
- PortableServer::POA_ptr tmp = 0;
+ PortableServer::POA_ptr tmp = PortableServer::POA::_nil();
if ((t == Container_Types::COMPONENT_t) ||
(t == Container_Types::HOME_t))
@@ -872,7 +875,7 @@ namespace CIAO
{
CIAO_TRACE ("Session_Container::generate_reference");
- PortableServer::POA_ptr tmp = 0;
+ PortableServer::POA_ptr tmp = PortableServer::POA::_nil();
if (t == Container_Types::COMPONENT_t ||
t == Container_Types::HOME_t)