Salome HOME
CMake: updated CMake procedure mainly to correctly expose targets needed by GUI.
[modules/kernel.git] / src / LifeCycleCORBA / Test_LifeCycleCORBA.cxx
index 050cd194d07a307f54b4ebca8ece3fb26d79df04..a7c0202b6930c20ce1e22bf156466e0734e5d2e8 100644 (file)
-//  SALOME LifeCycleCORBA : implementation of containers and engines life cycle both in Python and C++
+// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  License along with this library; if not, write to the Free Software 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
 //
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+//  SALOME LifeCycleCORBA : implementation of containers and engines life cycle both in Python and C++
 //  File   : TestLifeCycleCORBA.cxx
 //  Author : Paul RASCLE, EDF - MARC TAJCHMAN, CEA
 //  Module : SALOME
 //  $Header$
-
+//
 #include <iostream>
-#ifndef WNT
+#ifndef WIN32
 #include <unistd.h>
 #endif
 #include <SALOMEconfig.h>
-#ifndef WNT
 #include CORBA_CLIENT_HEADER(SALOME_Component)
 #include CORBA_CLIENT_HEADER(SALOME_TestComponent)
-#else
-#include <SALOME_Component.hh>
-#include <SALOME_TestComponent.hh>
-#endif
 #include "SALOME_NamingService.hxx"
 #include "SALOME_LifeCycleCORBA.hxx"
+#include "SALOME_FileTransferCORBA.hxx"
 #include "utilities.h"
-#include "SALOMETraceCollector.hxx"
-#include <OpUtil.hxx>
-
-using namespace std;
+#include <Basics_Utils.hxx>
 
 int main (int argc, char * argv[])
 {
 
   try
     {
-      // Initializing omniORB
+      // --- Initialize omniORB
+
       CORBA::ORB_var orb = CORBA::ORB_init(argc, argv);
-      //      LocalTraceCollector *myThreadTrace = SALOMETraceCollector::instance(orb);
     
-      // Obtain a reference to the root POA
+      // --- Obtain a reference to the root POA
+
       CORBA::Object_var obj = orb->resolve_initial_references("RootPOA") ;
       PortableServer::POA_var poa = PortableServer::POA::_narrow(obj) ;
+
+      // --- Naming Service and LifeCycleCORBA interfaces
     
       SALOME_NamingService _NS(orb) ;
-
       SALOME_LifeCycleCORBA _LCC(&_NS) ;
 
-      // get a local container (with a name based on local hostname),
-      // load an engine, and invoque methods on that engine
-
-      string containerName = GetHostname();
+      // --- get a local container,
+      //     load an engine, and invoque methods on that engine
 
-      cout << containerName << endl;
-      cout << "FindOrLoadComponent " + containerName + "/" + "SalomeTestComponent" << endl;
+      std::string containerName = "myServer";
       MESSAGE("FindOrLoadComponent " + containerName + "/" + "SalomeTestComponent" );
 
-      Engines::Component_var mycompo =
-       _LCC.FindOrLoad_Component(containerName.c_str(),"SalomeTestComponent");
-
+      Engines::EngineComponent_var mycompo =
+        _LCC.FindOrLoad_Component(containerName.c_str(),"SalomeTestComponent");
       ASSERT(!CORBA::is_nil(mycompo));
-
       Engines::TestComponent_var m1;
       m1 = Engines::TestComponent::_narrow(mycompo);
-
       ASSERT(!CORBA::is_nil(m1));
-
       SCRUTE(m1->instanceName());
       MESSAGE("Coucou " << m1->Coucou(1L));
 
-      // get another container (with a fixed name),
-      // load an engine, and invoque methods on that engine
+      // --- get another container,
+      //     load an engine, and invoque methods on that engine
 
-      string containerName2 = "FactoryServerPy";
-
-      Engines::Component_var mycompo2 =
-       _LCC.FindOrLoad_Component(containerName2.c_str(),"SALOME_TestComponentPy");
+      std::string containerName2 = "otherServer";
 
+      Engines::EngineComponent_var mycompo2 =
+        _LCC.FindOrLoad_Component(containerName2.c_str(),"SALOME_TestComponentPy");
       ASSERT(!CORBA::is_nil(mycompo2));
-
       Engines::TestComponent_var m2;
       m2 = Engines::TestComponent::_narrow(mycompo2);
-
       ASSERT(!CORBA::is_nil(m2));
-
       SCRUTE(m2->instanceName());
-      cout << m2->instanceName() << endl;
+      std::cout << m2->instanceName() << std::endl;
       MESSAGE("Coucou " << m2->Coucou(1L));
 
-      Engines::Component_var mycompo3 = _LCC.FindOrLoad_Component("totoPy","SALOME_TestComponentPy");
+      // --- get a third container,
+      //     load an engine, and invoque methods on that engine
+
+      Engines::EngineComponent_var mycompo3 =
+        _LCC.FindOrLoad_Component("totoPy","SALOME_TestComponentPy");
       ASSERT(!CORBA::is_nil(mycompo3));
       Engines::TestComponent_var m3 = Engines::TestComponent::_narrow(mycompo3);
       ASSERT(!CORBA::is_nil(m3));
-      cout << m3->instanceName() << endl;
+      std::cout << m3->instanceName() << std::endl;
+
+      // --- yet another container, with hostname,
+      //     load an engine, and invoque methods on that engine
 
-      string containerName4 = containerName + "/titiPy";
-      Engines::Component_var mycompo4 = _LCC.FindOrLoad_Component(containerName4.c_str(),"SALOME_TestComponentPy");
+      std::string containerName4 = Kernel_Utils::GetHostname();
+      containerName4  += "/titiPy";
+      Engines::EngineComponent_var mycompo4 = 
+        _LCC.FindOrLoad_Component(containerName4.c_str(),"SALOME_TestComponentPy");
       ASSERT(!CORBA::is_nil(mycompo4));
       Engines::TestComponent_var m4 = Engines::TestComponent::_narrow(mycompo4);
       ASSERT(!CORBA::is_nil(m4));
-      cout << m4->instanceName() << endl;
+      std::cout << m4->instanceName() << std::endl;
+
+      // --- try a local file transfer
+
+      std::string origFileName = "/home/prascle/petitfichier";
+      SALOME_FileTransferCORBA transfer( Kernel_Utils::GetHostname(),
+                                         origFileName);
+      std::string local = transfer.getLocalFile();
+      SCRUTE(local);
+
+      // --- try a file transfer from another computer
+
+      origFileName = "/home/prascle/occ60.tgz";
+      SALOME_FileTransferCORBA transfer2( "cli76ce",
+                                         origFileName);
+      local = transfer2.getLocalFile();
+      SCRUTE(local);
+      local = transfer2.getLocalFile();
+      SCRUTE(local);
 
     }
   catch(CORBA::SystemException& ex)
     {
       INFOS("Caught system exception COMM_FAILURE -- unable to contact the object.");
     }
-#ifndef WNT
-  catch(CORBA::SystemException&)
-    {
-      INFOS("Caught a CORBA::SystemException.");
-    }
-#endif
   catch(CORBA::Exception&)
     {
       INFOS("Caught CORBA::Exception.");
@@ -139,4 +144,3 @@ int main (int argc, char * argv[])
 
   return 0;
 }
-