Salome HOME
Updated copyright comment
[samples/component.git] / src / TypesCheck / TypesCheck_Impl.cxx
index daf7394c5f2249cac0d422c13322f8279fd72512..2e2603b8eed2f05d672562733fc03f0fc40cc57e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2024  CEA, EDF, 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
 //  Module : SuperVisionTest
 //
 #include <stdio.h>
+#ifndef WIN32
 #include <unistd.h>
+#else
+#include <process.h>
+#endif
 #include <fstream>
 #include <sstream>
 #include <string>
 
 #include "TypesCheck_Impl.hxx"
+#include "COMPONENT_version.h"
 
 using namespace std;
 
@@ -40,11 +45,11 @@ TypesCheck_Impl::TypesCheck_Impl( CORBA::ORB_ptr orb ,
                                  PortableServer::ObjectId * contId , 
                                  const char *instanceName ,
                                   const char *interfaceName ,
-                                  const bool kactivate ) :
-  Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,true) {
+                                  const bool kactivate, bool withRegistry ) :
+  Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,withRegistry) {
   MESSAGE("TypesCheck_Impl::TypesCheck_Impl this " << hex << this << dec
           << "activate object instanceName("
-          << instanceName << ") interfaceName(" << interfaceName << ")" )
+          << instanceName << ") interfaceName(" << interfaceName << ")" );
   if ( kactivate ) {
     _thisObj = this ;
     _id = _poa->activate_object(_thisObj);
@@ -61,6 +66,15 @@ TypesCheck_Impl::~TypesCheck_Impl() {
   endService( "TypesCheck_Impl::~TypesCheck_Impl" );
 }
 
+char* TypesCheck_Impl::getVersion()
+{
+#if COMPONENT_DEVELOPMENT
+  return CORBA::string_dup(COMPONENT_VERSION_STR"dev");
+#else
+  return CORBA::string_dup(COMPONENT_VERSION_STR);
+#endif
+}
+
 void TypesCheck_Impl::StringCheck( const char * InString , _CORBA_String_out OutString ) {
   beginService( "TypesCheck_Impl::StringCheck" );
   OutString = CORBA::string_dup( InString ) ;
@@ -138,9 +152,24 @@ extern "C"
                                                        PortableServer::ObjectId * contId ,
                                                        const char *instanceName ,
                                                        const char *interfaceName ) {
+#ifndef WIN32
+    MESSAGE("TypesCheckEngine_factory TypesCheckEngine ("
+            << instanceName << "," << interfaceName << "," << getpid()<< ")");
+#else
     MESSAGE("TypesCheckEngine_factory TypesCheckEngine ("
-            << instanceName << "," << interfaceName << "," << getpid() << ")");
-    TypesCheck_Impl * myTypesCheck  = new TypesCheck_Impl(orb, poa, contId, instanceName, interfaceName);
+            << instanceName << "," << interfaceName << "," << _getpid()<< ")");
+#endif
+    CORBA::Object_var o = poa->id_to_reference(*contId);
+    Engines::Container_var cont = Engines::Container::_narrow(o);    
+    TypesCheck_Impl * myTypesCheck  = nullptr;
+    if(cont->is_SSL_mode())
+    {
+      myTypesCheck = new TypesCheck_Impl_SSL(orb, poa, contId, instanceName, interfaceName);
+    }
+    else
+    {
+      myTypesCheck = new TypesCheck_Impl_No_SSL(orb, poa, contId, instanceName, interfaceName);
+    }
     return myTypesCheck->getId() ;
   }
 }