X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FAddComponent%2FAdder_Impl.cxx;h=07a9adbff10c5036ec581fe7e2581bfc42bec7cb;hb=b76b965e169031252c001e65e48b9840fcfade08;hp=8ea13821e15d4b59291fff1571d3fd36aad24f3b;hpb=5374090b3a9e3473eaf3e690b134967a735531a1;p=samples%2Fcomponent.git diff --git a/src/AddComponent/Adder_Impl.cxx b/src/AddComponent/Adder_Impl.cxx index 8ea1382..07a9adb 100644 --- a/src/AddComponent/Adder_Impl.cxx +++ b/src/AddComponent/Adder_Impl.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2022 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 @@ -6,7 +6,7 @@ // 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. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -26,14 +26,15 @@ // Module : SuperVisionTest // #include +#ifndef WIN32 #include +#endif #include #include #include #include "utilities.h" -#include "Utils_ORB_INIT.hxx" -#include "Utils_SINGLETON.hxx" +#include "OpUtil.hxx" #include "SALOME_NamingService.hxx" #include "SALOME_LifeCycleCORBA.hxx" @@ -48,12 +49,12 @@ Adder_Impl::Adder_Impl( CORBA::ORB_ptr orb , const char * instanceName , const char * interfaceName , const char * graphName , - const char * nodeName ) : - Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,true) { + const char * nodeName, bool withRegistry ) : + Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,withRegistry) { Names( graphName , nodeName ) ; MESSAGE("Adder_Impl::Adder_Impl activate object instanceName(" << instanceName << ") interfaceName(" << interfaceName << ") --> " - << hex << (void *) this << dec ) + << hex << (void *) this << dec ); beginService( "Adder_Impl::Adder_Impl" ); _thisObj = this ; _id = _poa->activate_object(_thisObj); @@ -95,11 +96,15 @@ CORBA::Double Adder_Impl::Add( CORBA::Double x , CORBA::Double y , CORBA::Double sendMessage(NOTIF_STEP, "Adder_Impl::Add is Computing"); // S = 1+(int) (15.0*rand()/(RAND_MAX+1.0)); S = 5 ; +#ifndef WIN32 while ( S ) { - S = sleep(S); + S = sleep( S ) ; } +#else + Sleep(S*1000); +#endif MESSAGE( "Adder_Impl::Add( " << x << " , " << y << " , " << z - << " ) returns " << -(x - y) << " after " << S << " seconds" ) + << " ) returns " << -(x - y) << " after " << S << " seconds" ); LastAddition = z ; endService( " Adder_Impl::Add" ); return -(x - y) ; @@ -122,11 +127,15 @@ CORBA::Double Adder_Impl::AddAndCompare( CORBA::Double x , CORBA::Double y , sendMessage(NOTIF_STEP, "Adder_Impl::AddAndCompare is Computing"); // S = 1+(int) (15.0*rand()/(RAND_MAX+1.0)); S = 5 ; +#ifndef WIN32 while ( S ) { - S = sleep(S); + S = sleep( S ) ; } +#else + Sleep(S*1000); +#endif MESSAGE( "Adder_Impl::AddAndCompare( " << x << " , " << y << " , " << z - << " ) returns " << -(x - y) << " after " << S << " seconds" ) + << " ) returns " << -(x - y) << " after " << S << " seconds" ); LastAddition = z ; double ValFunc ; sendMessage(NOTIF_TRACE, "Adder_Impl::AddAndCompare will call anOtherAdder->LastValue()"); @@ -150,9 +159,13 @@ void Adder_Impl::SetLastResult( CORBA::Double z ) { int S; // S = 1+(int) (15.0*rand()/(RAND_MAX+1.0)); S = 5 ; +#ifndef WIN32 while ( S ) { - S = sleep(S); + S = sleep( S ) ; } +#else + Sleep(S*1000); +#endif LastAddition = z ; endService( " Adder_Impl::SetLastResult" ); return ; @@ -164,9 +177,13 @@ void Adder_Impl::LastResult( CORBA::Double & z ) { int S; // S = 1+(int) (15.0*rand()/(RAND_MAX+1.0)); S = 5 ; +#ifndef WIN32 while ( S ) { - S = sleep(S); + S = sleep( S ) ; } +#else + Sleep(S*1000); +#endif z = LastAddition ; endService( " Adder_Impl::LastResult" ); return ; @@ -178,9 +195,7 @@ Engines::EngineComponent_ptr Adder_Impl::LccAddComponent( const char * aContaine Engines::EngineComponent_ptr objComponent ; objComponent = Engines::EngineComponent::_nil() ; - ORB_INIT &init = *SINGLETON_::Instance() ; - ASSERT(SINGLETON_::IsAlreadyExisting()); - CORBA::ORB_var orb = init(0 , 0 ) ; + CORBA::ORB_var orb = KERNEL::GetRefToORB(); SALOME_NamingService *_NS ; _NS = new SALOME_NamingService(); _NS->init_orb( CORBA::ORB::_duplicate(orb) ) ;