1 // Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // File : SMESHUtils_MGLicenseKeyGen.cxx
20 // Created : Sat Jul 31 18:54:16 2021
21 // Author : Edward AGAPOV (OCC)
23 #include "SMESH_MGLicenseKeyGen.hxx"
25 #include "SMESH_Comment.hxx"
26 #include "SMESH_File.hxx"
27 #include "SMESH_TryCatch.hxx"
29 #include <Basics_DirUtils.hxx>
30 #include <Basics_Utils.hxx>
33 #include <cstdlib> // getenv, system
35 #include <boost/filesystem.hpp>
36 namespace boofs = boost::filesystem;
43 # define LibHandle HMODULE
44 # define LoadLib( name ) LoadLibrary( name )
45 # define GetProc GetProcAddress
46 # define UnLoadLib( handle ) FreeLibrary( handle );
52 # define LibHandle void*
53 # define LoadLib( name ) dlopen( name, RTLD_LAZY | RTLD_LOCAL )
54 # define GetProc dlsym
55 # define UnLoadLib( handle ) dlclose( handle );
59 // to retrieve description of exception caught by SMESH_TRY
61 #define SMESH_CAUGHT error =
66 static LibHandle theLibraryHandle = nullptr; //!< handle of a loaded library
68 const char* theEnvVar = "SALOME_MG_KEYGEN_LIB_PATH"; /* var specifies either full file name
69 of libSalomeMeshGemsKeyGenerator or
70 URL to download the library from */
72 const char* theTmpEnvVar = "SALOME_TMP_DIR"; // directory to download the library to
74 //-----------------------------------------------------------------------------------
76 * \brief Remove library file at destruction in case if it was downloaded from server
78 //-----------------------------------------------------------------------------------
82 std::string _name; // full file name
85 LibraryFile(): _isURL( false ) {}
91 if ( theLibraryHandle )
93 UnLoadLib( theLibraryHandle );
94 theLibraryHandle = nullptr;
97 std::string tmpDir; // tmp dir that should not be removed
98 if ( const char* libPath = getenv( theTmpEnvVar ))
101 while (( !tmpDir.empty() ) &&
102 ( tmpDir.back() == '/' || tmpDir.back() == '\\' ))
106 while ( SMESH_File( _name ).remove() )
108 size_t length = _name.size();
109 _name = boofs::path( _name ).parent_path().string(); // goto parent directory
110 if ( _name.size() == length )
111 break; // no more parents
113 if ( _name == tmpDir )
114 break; // don't remove tmp dir
116 if ( !Kernel_Utils::IsEmptyDir( _name ))
124 //================================================================================
126 * \brief Retrieve description of the last error
127 * \param [out] error - return the description
128 * \return bool - true if the description found
130 //================================================================================
132 bool getLastError( std::string& error )
136 if ( const char* text = dlerror() )
145 DWORD dw = GetLastError();
147 DWORD msgLen = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
150 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
156 # if defined( UNICODE )
157 error = Kernel_Utils::encode_s((wchar_t*)cstr);
169 //================================================================================
171 * \brief Adjust file extension according to the platform
173 //================================================================================
175 bool setExtension( std::string& fileName, std::string& error )
177 if ( fileName.empty() )
179 error = "Library file name is empty";
183 std::string ext = ".dll";
184 #elif defined(__APPLE__)
185 std::string ext = ".dylib";
187 std::string ext = ".so";
190 fileName = fileName.substr( 0, fileName.find_last_of('.')) + ext;
194 //================================================================================
196 * \brief Check if library file name looks like an URL
197 * \param [in,out] libraryFile - holds file name and returns result in _isURL member field
198 * \return bool - true if the file name looks like an URL
200 //================================================================================
202 bool isURL( LibraryFile & libraryFile )
205 enum { SCHEME = 2, AUTHORITY = 4, PATH = 5 }; // sub-strings
206 std::regex urlRegex ( R"(^(([^:\/?#]+):)?(//([^\/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?)",
207 std::regex::extended );
208 std::smatch matchResult;
210 libraryFile._isURL = false;
211 if ( std::regex_match( libraryFile._name, matchResult, urlRegex ))
212 libraryFile._isURL = ( !matchResult.str( SCHEME ).empty() &&
213 !matchResult.str( AUTHORITY ).empty() &&
214 !matchResult.str( PATH ).empty() );
216 if(libraryFile._isURL)
219 enum { HOST = 2, PORT = 3, PATH = 4 }; // sub-strings
220 std::regex urlRegex ( R"(^(([^:\/?#]+):)?([^/]+)?(/[^#]*))",
221 std::regex::extended );
222 std::smatch matchResult;
224 libraryFile._isURL = false;
225 if ( std::regex_match( libraryFile._name, matchResult, urlRegex ))
226 libraryFile._isURL = ( !matchResult.str( HOST ).empty() &&
227 !matchResult.str( PORT ).empty() &&
228 !matchResult.str( PATH ).empty() );
230 return libraryFile._isURL;
233 //================================================================================
235 * \brief Download libraryFile._name URL to SALOME_TMP_DIR
236 * \param [in,out] libraryFile - holds the URL and returns name of a downloaded file
237 * \param [out] error - return error description
238 * \return bool - is a success
240 //================================================================================
242 bool downloadLib( LibraryFile& libraryFile, std::string & error )
244 // check if can write into SALOME_TMP_DIR
246 std::string tmpDir = Kernel_Utils::GetTmpDirByEnv( theTmpEnvVar );
247 if ( tmpDir.empty() ||
248 !Kernel_Utils::IsExists( tmpDir ))
250 error = "Can't download " + libraryFile._name + " as SALOME_TMP_DIR is not correctly set";
253 if ( !Kernel_Utils::IsWritable( tmpDir ))
255 error = "Can't download " + libraryFile._name + " as '" + tmpDir + "' is not writable. "
256 "Check SALOME_TMP_DIR environment variable";
262 std::string url = libraryFile._name;
266 std::string outFile = tmpDir + "MeshGemsKeyGenerator.dll";
268 // use wget (== Invoke-WebRequest) PowerShell command available since Windows 7
269 std::string psCmd = "wget -Uri " + url + " -OutFile " + outFile;
270 std::string cmd = "powershell.exe " + psCmd;
274 std::string outFile = tmpDir + "libMeshGemsKeyGenerator.so";
276 std::string cmd = "wget " + url + " -O " + outFile;
280 if ( Kernel_Utils::IsExists( outFile )) // remove existing file
282 SMESH_File lib( outFile, /*open=*/false );
290 system( cmd.c_str() ); // download
292 SMESH_File resultFile( outFile, /*open=*/false );
293 bool ok = ( resultFile.exists() && resultFile.size() > 0 );
296 libraryFile._name = outFile;
298 error = "Can't download file " + url;
303 //================================================================================
305 * \brief Load libMeshGemsKeyGenerator.so
306 * \param [out] error - return error description
307 * \param [out] libraryFile - return library file name and _isURL flag
308 * \return bool - is a success
310 //================================================================================
312 bool loadLibrary( std::string& error, LibraryFile& libraryFile )
314 if ( theLibraryHandle )
317 const char* libPath = getenv( theEnvVar );
320 error = SMESH_Comment( "Environment variable ") << theEnvVar << " is not set";
324 libraryFile._name = libPath;
325 // if ( !setExtension( libraryFile._name, error )) // is it necessary?
328 if ( isURL( libraryFile ))
330 if ( !downloadLib( libraryFile, error ))
332 // try to fix extension
333 std::string url = libraryFile._name;
334 if ( !setExtension( libraryFile._name, error ))
336 if ( url == libraryFile._name )
337 return false; // extension not changed
339 if ( !downloadLib( libraryFile, error ))
344 #if defined( WIN32 ) && defined( UNICODE )
345 std::wstring encodePath = Kernel_Utils::utf8_decode_s( libraryFile._name );
346 const wchar_t* path = encodePath.c_str();
348 const char* path = libraryFile._name.c_str();
351 theLibraryHandle = LoadLib( path );
352 if ( !theLibraryHandle )
354 if ( ! getLastError( error ))
355 error = "Can't load library '" + libraryFile._name + "'";
358 return theLibraryHandle;
361 } // anonymous namespace
364 namespace SMESHUtils_MGLicenseKeyGen // API implementation
366 //================================================================================
369 * \param [in] meshgems_cad - pointer to a MG CAD object (meshgems_cad_t)
370 * \param [out] error - return error description
371 * \return bool - is a success
373 //================================================================================
375 bool SignCAD( void* meshgems_cad, std::string& error )
377 LibraryFile libraryFile;
378 if ( !loadLibrary( error, libraryFile ))
382 typedef bool (*SignFun)(void* );
383 SignFun signFun = (SignFun) GetProc( theLibraryHandle, "SignCAD" );
386 if ( ! getLastError( error ))
387 error = SMESH_Comment( "Can't find symbol 'SignCAD' in '") << getenv( theEnvVar ) << "'";
393 ok = signFun( meshgems_cad );
395 SMESH_CATCH( SMESH::returnError );
397 if ( !error.empty() )
400 error = "SignCAD() failed (located in '" + libraryFile._name + "')";
405 //================================================================================
408 * \param [in] meshgems_mesh - pointer to a MG mesh (meshgems_mesh_t)
409 * \param [out] error - return error description
410 * \return bool - is a success
412 //================================================================================
414 bool SignMesh( void* meshgems_mesh, std::string& error )
416 LibraryFile libraryFile;
417 if ( !loadLibrary( error, libraryFile ))
421 typedef bool (*SignFun)(void* );
422 SignFun signFun = (SignFun) GetProc( theLibraryHandle, "SignMesh" );
425 if ( ! getLastError( error ))
426 error = SMESH_Comment( "Can't find symbol 'SignMesh' in '") << getenv( theEnvVar ) << "'";
432 ok = signFun( meshgems_mesh );
434 SMESH_CATCH( SMESH::returnError );
436 if ( !error.empty() )
439 error = "SignMesh() failed (located in '" + libraryFile._name + "')";
444 //================================================================================
446 * \brief Return a license key to pass as argument to a MG mesher executable
447 * \param [in] gmfFile - path to an input mesh file
448 * \param [in] nb* - nb of entities in the input mesh
449 * \param [out] error - return error description
450 * \return std::string - the key
452 //================================================================================
454 std::string GetKey(const std::string& gmfFile,
462 LibraryFile libraryFile;
463 if ( !loadLibrary( error, libraryFile ))
466 typedef std::string (*GetKeyFun)(std::string const &, int, int, int, int );
467 GetKeyFun keyFun = (GetKeyFun) GetProc( theLibraryHandle, "GetKey" );
470 if ( ! getLastError( error ))
471 error = SMESH_Comment( "Can't find symbol 'GetKey' in '") << getenv( theEnvVar ) << "'";
475 key = keyFun( gmfFile, nbVertex, nbEdge, nbFace, nbVol );
478 error = "GetKey() failed (located in '" + libraryFile._name + "')";
483 //================================================================================
485 * \brief Return false if libMeshGemsKeyGenerator.so is not functional
486 * \param [out] error - return error description
487 * \return bool - is a success
489 //================================================================================
491 bool CheckKeyGenLibrary( std::string& error )
493 return !GetKey("",4,0,2,0,error ).empty();
496 //================================================================================
498 * \brief Return KeyGenerator library name
500 //================================================================================
502 std::string GetLibraryName()
504 std::string libName, error;
505 if ( const char* libPath = getenv( theEnvVar ))
507 libName = Kernel_Utils::GetBaseName( libPath );
511 libName = "libSalomeMeshGemsKeyGenerator";
513 setExtension( libName, error );