Salome HOME
Update of CheckDone
[modules/smesh.git] / src / SMESH_SWIG / SMeshHelper.cxx
1 // Copyright (C) 2021  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "SMeshHelper.h"
21
22 #include "SALOME_KernelServices.hxx"
23
24 #include "SMESH_Component_Generator.hxx"
25
26 #include <cstring>
27
28 #include <DriverGMF_Read.hxx>
29 #include <SMESH_MGLicenseKeyGen.hxx>
30
31
32 std::string BuildSMESHInstanceInternal()
33 {
34   Engines::EngineComponent_var zeRef = RetrieveSMESHInstance();
35   CORBA::String_var ior = KERNEL::getORB()->object_to_string(zeRef);
36   return std::string(ior.in());
37 }
38
39 std::string GetMGLicenseKeyImpl(const char* gmfFile)
40 {
41   smIdType nbVertex, nbEdge, nbFace, nbVol;
42   DriverGMF_Read gmfReader;
43   gmfReader.SetFile( gmfFile );
44   gmfReader.GetMeshInfo( nbVertex, nbEdge, nbFace, nbVol );
45
46   std::string errorTxt;
47   std::string key = SMESHUtils_MGLicenseKeyGen::GetKey( gmfFile,
48                                                         FromSmIdType<int>( nbVertex ),
49                                                         FromSmIdType<int>( nbEdge ),
50                                                         FromSmIdType<int>( nbFace ),
51                                                         FromSmIdType<int>( nbVol ),
52                                                         errorTxt );
53   if ( !errorTxt.empty() )
54   {
55     std::cerr << "Error: Pb with MeshGems license: " << errorTxt << std::endl;
56     key = "<" + errorTxt + ">";
57   }
58   return key;
59 }