Salome HOME
Updated copyright comment
[plugins/ghs3dprlplugin.git] / src / GHS3DPRLPlugin / MG_TetraHPC_API.cxx
1 // Copyright (C) 2004-2024  CEA, EDF
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 "MG_TetraHPC_API.hxx"
21
22 #include <SMESH_Comment.hxx>
23 #include <SMESH_File.hxx>
24 #include <SMESH_MGLicenseKeyGen.hxx>
25 #include <Utils_SALOME_Exception.hxx>
26
27 #include <cstring>
28 #include <iostream>
29 #include <iterator>
30 #include <vector>
31
32 #ifdef USE_MG_LIBS
33
34 extern "C"{
35 #include <meshgems/meshgems.h>
36 #include <meshgems/tetra_hpc.h>
37 }
38
39 struct MG_TetraHPC_API::LibData
40 {
41   // MG objects
42   context_t *           _context;
43   tetra_hpc_session_t * _session;
44   mesh_t *              _tria_mesh;
45   sizemap_t *           _sizemap;
46   mesh_t *              _tetra_mesh;
47
48   // data to pass to MG
49   std::vector<double> _xyz;
50   std::vector<double> _nodeSize; // required nodes
51   std::vector<int>    _edgeNodes;
52   int                 _nbRequiredEdges;
53   std::vector<int>    _triaNodes;
54   int                 _nbRequiredTria;
55
56   int                 _count;
57   volatile bool&      _cancelled_flag;
58   std::string         _errorStr;
59   double&             _progress;
60
61   LibData( volatile bool & cancelled_flag, double& progress )
62     : _context(0), _session(0), _tria_mesh(0), _sizemap(0), _tetra_mesh(0),
63       _nbRequiredEdges(0), _nbRequiredTria(0),
64       _cancelled_flag( cancelled_flag ), _progress( progress )
65   {
66   }
67   // methods setting callbacks implemented after callback definitions
68   void Init();
69   bool Compute( const std::string& outFile );
70
71   ~LibData()
72   {
73     if ( _tetra_mesh )
74       tetra_hpc_regain_mesh( _session, _tetra_mesh );
75     if ( _session )
76       tetra_hpc_session_delete( _session );
77     if ( _tria_mesh )
78       mesh_delete( _tria_mesh );
79     if ( _sizemap )
80       sizemap_delete( _sizemap );
81     if ( _context )
82       context_delete( _context );
83
84     _tetra_mesh = 0;
85     _session = 0;
86     _tria_mesh = 0;
87     _sizemap = 0;
88     _context = 0;
89   }
90
91   void AddError( const char *txt )
92   {
93     if ( txt )
94       _errorStr += txt;
95   }
96
97   const std::string& GetErrors()
98   {
99     return _errorStr;
100   }
101
102   void MG_Error(const char* txt="")
103   {
104     SMESH_Comment msg("\nMeshGems error. ");
105     msg << txt << "\n";
106     AddError( msg.c_str() );
107   }
108
109   bool SetParam( const std::string& param, const std::string& value )
110   {
111     status_t ret = tetra_hpc_set_param( _session, param.c_str(), value.c_str() );
112 #ifdef _DEBUG_
113     //std::cout << param << " = " << value << std::endl;
114 #endif
115     return ( ret == STATUS_OK );
116   }
117
118   bool Cancelled()
119   {
120     return _cancelled_flag;
121   }
122
123   int ReadNbSubDomains()
124   {
125     integer nb = 0;
126     status_t ret = mesh_get_subdomain_count( _tetra_mesh, & nb );
127
128     if ( ret != STATUS_OK ) MG_Error("mesh_get_subdomain_count problem");
129     return nb;
130   }
131
132   int ReadNbNodes()
133   {
134     integer nb = 0;
135     status_t ret = mesh_get_vertex_count( _tetra_mesh, & nb );
136
137     if ( ret != STATUS_OK ) MG_Error("mesh_get_vertex_count problem");
138     return nb;
139   }
140
141   int ReadNbEdges()
142   {
143     integer nb = 0;
144     status_t ret = mesh_get_edge_count( _tetra_mesh, & nb );
145
146     if ( ret != STATUS_OK ) MG_Error("mesh_get_edge_count problem");
147     return nb;
148   }
149
150   int ReadNbTria()
151   {
152     integer nb = 0;
153     status_t ret = mesh_get_triangle_count( _tetra_mesh, & nb );
154
155     if ( ret != STATUS_OK ) MG_Error("mesh_get_triangle_count problem");
156     return nb;
157   }
158
159   int ReadNbQuads()
160   {
161     integer nb = 0;
162     status_t ret = mesh_get_quadrangle_count( _tetra_mesh, & nb );
163
164     if ( ret != STATUS_OK ) MG_Error("mesh_get_quadrangle_count problem");
165     return nb;
166   }
167
168   int ReadNbTetra()
169   {
170     integer nb = 0;
171     status_t ret = mesh_get_tetrahedron_count( _tetra_mesh, & nb );
172
173     if ( ret != STATUS_OK ) MG_Error("mesh_get_tetrahedron_count problem");
174     return nb;
175   }
176
177   int ReadNbHexa()
178   {
179     integer nb = 0;
180     status_t ret = mesh_get_hexahedron_count( _tetra_mesh, & nb );
181
182     if ( ret != STATUS_OK ) MG_Error("mesh_get_hexahedron_count problem");
183     return nb;
184   }
185
186   void ResetCounter()
187   {
188     _count = 1;
189   }
190
191   void ReadSubDomain( int* nbNodes, int* faceInd, int* ori, int* domain )
192   {
193     integer tag, seed_type, seed_idx, seed_orientation;
194     status_t ret = mesh_get_subdomain_description( _tetra_mesh, _count,
195                                                    &tag, &seed_type, &seed_idx, &seed_orientation);
196
197     if ( ret != STATUS_OK ) MG_Error( "unable to get a sub-domain description");
198
199     *nbNodes = 3;
200     *faceInd = seed_idx;
201     *domain  = tag;
202     *ori     = seed_orientation;
203
204     ++_count;
205   }
206   void ReadNodeXYZ( double* x, double* y, double *z, int* /*domain*/  )
207   {
208     real coo[3];
209     status_t ret = mesh_get_vertex_coordinates( _tetra_mesh, _count, coo );
210     if ( ret != STATUS_OK ) MG_Error( "unable to get resulting vertices" );
211
212     *x = coo[0];
213     *y = coo[1];
214     *z = coo[2];
215
216     ++_count;
217   }
218
219   void ReadEdgeNodes( int* node1, int* node2, int* domain )
220   {
221     integer vtx[2], tag;
222     status_t ret = mesh_get_edge_vertices( _tetra_mesh, _count, vtx);
223     if (ret != STATUS_OK) MG_Error( "unable to get resulting edge" );
224
225     *node1 = vtx[0];
226     *node2 = vtx[1];
227
228     ret = mesh_get_edge_tag( _tetra_mesh, _count, &tag );
229     if (ret != STATUS_OK) MG_Error( "unable to get resulting edge tag" );
230
231     *domain = tag;
232
233     ++_count;
234   }
235
236   void ReadTriaNodes( int* node1, int* node2, int* node3, int* domain )
237   {
238     integer vtx[3], tag;
239     status_t ret = mesh_get_triangle_vertices( _tetra_mesh, _count, vtx);
240     if (ret != STATUS_OK) MG_Error( "unable to get resulting triangle" );
241
242     *node1 = vtx[0];
243     *node2 = vtx[1];
244     *node3 = vtx[2];
245
246     ret = mesh_get_triangle_tag( _tetra_mesh, _count, &tag );
247     if (ret != STATUS_OK) MG_Error( "unable to get resulting triangle tag" );
248
249     *domain = tag;
250
251     ++_count;
252   }
253
254   void ReadQuadNodes( int* node1, int* node2, int* node3, int* node4, int* domain )
255   {
256     integer vtx[4], tag;
257     status_t ret = mesh_get_quadrangle_vertices( _tetra_mesh, _count, vtx);
258     if (ret != STATUS_OK) MG_Error( "unable to get resulting quadrangle" );
259
260     *node1 = vtx[0];
261     *node2 = vtx[1];
262     *node3 = vtx[2];
263     *node4 = vtx[3];
264
265     ret = mesh_get_quadrangle_tag( _tetra_mesh, _count, &tag );
266     if (ret != STATUS_OK) MG_Error( "unable to get resulting quadrangle tag" );
267
268     *domain = tag;
269
270     ++_count;
271   }
272
273   void ReadTetraNodes( int* node1, int* node2, int* node3, int* node4, int* domain )
274   {
275     integer vtx[4], tag;
276     status_t ret = mesh_get_tetrahedron_vertices( _tetra_mesh, _count, vtx);
277     if (ret != STATUS_OK) MG_Error( "unable to get resulting tetrahedron" );
278
279     *node1 = vtx[0];
280     *node2 = vtx[1];
281     *node3 = vtx[2];
282     *node4 = vtx[3];
283
284     ret = mesh_get_tetrahedron_tag( _tetra_mesh, _count, &tag );
285     if (ret != STATUS_OK) MG_Error( "unable to get resulting tetrahedron tag" );
286
287     *domain = tag;
288
289     ++_count;
290   }
291
292   void ReadHexaNodes( int* node1, int* node2, int* node3, int* node4,
293                      int* node5, int* node6, int* node7, int* node8, int* domain )
294   {
295     integer vtx[8], tag;
296     status_t ret = mesh_get_hexahedron_vertices( _tetra_mesh, _count, vtx);
297     if (ret != STATUS_OK) MG_Error( "unable to get resulting hexahedron" );
298
299     *node1 = vtx[0];
300     *node2 = vtx[1];
301     *node3 = vtx[2];
302     *node4 = vtx[3];
303     *node5 = vtx[4];
304     *node6 = vtx[5];
305     *node7 = vtx[6];
306     *node8 = vtx[7];
307
308     ret = mesh_get_hexahedron_tag( _tetra_mesh, _count, &tag );
309     if (ret != STATUS_OK) MG_Error( "unable to get resulting hexahedron tag" );
310
311     *domain = tag;
312
313     ++_count;
314   }
315
316   void SetNbVertices( int nb )
317   {
318     _xyz.reserve( _xyz.capacity() + nb );
319   }
320
321   void SetNbEdges( int nb )
322   {
323     _edgeNodes.reserve( nb * 2 );
324   }
325
326   void SetNbTria( int nb )
327   {
328     _triaNodes.reserve( nb * 3 );
329   }
330
331   void SetNbReqVertices( int nb )
332   {
333     _nodeSize.reserve( nb );
334   }
335
336   void SetNbReqEdges( int nb )
337   {
338     _nbRequiredEdges = nb;
339   }
340
341   void SetNbReqTria( int nb )
342   {
343     _nbRequiredTria = nb;
344   }
345
346   void AddNode( double x, double y, double z, int /*domain*/ )
347   {
348     _xyz.push_back( x );
349     _xyz.push_back( y );
350     _xyz.push_back( z );
351   }
352
353   void AddSizeAtNode( double size )
354   {
355     _nodeSize.push_back( size );
356   }
357   
358   void AddEdgeNodes( int node1, int node2, int /*domain*/ )
359   {
360     _edgeNodes.push_back( node1 );
361     _edgeNodes.push_back( node2 );
362   }
363   
364   void AddTriaNodes( int node1, int node2, int node3, int /*domain*/ )
365   {
366     _triaNodes.push_back( node1 );
367     _triaNodes.push_back( node2 );
368     _triaNodes.push_back( node3 );
369   }
370
371   int NbNodes()
372   {
373     return _xyz.size() / 3;
374   }
375
376   double* NodeCoord( int iNode )
377   {
378     return & _xyz[ iNode * 3 ];
379   }
380
381   int NbEdges()
382   {
383     return _edgeNodes.size() / 2;
384   }
385
386   int* GetEdgeNodes( int iEdge )
387   {
388     return & _edgeNodes[ iEdge * 2 ];
389   }
390
391   int NbTriangles()
392   {
393     return _triaNodes.size() / 3;
394   }
395
396   int * GetTriaNodes( int iTria )
397   {
398     return & _triaNodes[ iTria * 3 ];
399   }
400
401   int IsVertexRequired( int iNode )
402   {
403     return ! ( iNode < int( NbNodes() - _nodeSize.size() ));
404   }
405
406   double GetSizeAtVertex( int iNode )
407   {
408     return IsVertexRequired( iNode ) ? _nodeSize[ iNode - NbNodes() + _nodeSize.size() ] : 0.;
409   }
410 };
411
412 namespace // functions called by MG library to exchange with the application
413 {
414   status_t get_vertex_count(integer * nbvtx, void *user_data)
415   {
416     MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
417     *nbvtx = data->NbNodes();
418
419     return STATUS_OK;
420   }
421
422   status_t get_vertex_coordinates(integer ivtx, real * xyz, void *user_data)
423   {
424     MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
425     double* coord = data->NodeCoord( ivtx-1 );
426     for (int j = 0; j < 3; j++)
427       xyz[j] = coord[j];
428
429     return STATUS_OK;
430   }
431   status_t get_edge_count(integer * nbedge, void *user_data)
432   {
433     MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
434     *nbedge = data->NbEdges();
435
436     return STATUS_OK;
437   }
438
439   status_t get_edge_vertices(integer iedge, integer * vedge, void *user_data)
440   {
441     MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
442     int* nodes = data->GetEdgeNodes( iedge-1 );
443     vedge[0] = nodes[0];
444     vedge[1] = nodes[1];
445
446     return STATUS_OK;
447   }
448
449   status_t get_triangle_count(integer * nbtri, void *user_data)
450   {
451     MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
452     *nbtri = data->NbTriangles();
453
454     return STATUS_OK;
455   }
456
457   status_t get_triangle_vertices(integer itri, integer * vtri, void *user_data)
458   {
459     MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
460     int* nodes = data->GetTriaNodes( itri-1 );
461     vtri[0] = nodes[0];
462     vtri[1] = nodes[1];
463     vtri[2] = nodes[2];
464
465     return STATUS_OK;
466   }
467
468   // status_t get_triangle_extra_vertices(integer itri, integer * typetri,
469   //                                      integer * evtri, void *user_data)
470   // {
471   //   int j;
472   //   MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
473
474   //   if (1) {
475   //     /* We want to describe a linear "3 nodes" triangle */
476   //     *typetri = MESHGEMS_MESH_ELEMENT_TYPE_TRIA3;
477   //   } else {
478   //     /* We want to describe a quadratic "6 nodes" triangle */
479   //     *typetri = MESHGEMS_MESH_ELEMENT_TYPE_TRIA6;
480   //     for (j = 0; j < 3; j++)
481   //       evtri[j] = 0;             /* the j'th quadratic vertex index of the itri'th triangle */
482   //   }
483
484   //   return STATUS_OK;
485   // }
486
487   // status_t get_tetrahedron_count(integer * nbtetra, void *user_data)
488   // {
489   //   MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
490
491   //   *nbtetra = 0;                 /* the number of tetra in your input mesh (0 if you describe a surface mesh) */
492
493   //   return STATUS_OK;
494   // }
495
496   // status_t get_tetrahedron_vertices(integer itetra, integer * vtetra,
497   //                                   void *user_data)
498   // {
499   //   int j;
500   //   MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
501
502   //   for (j = 0; j < 4; j++)
503   //     vtetra[j] = 0;              /* the j'th vertex index of the itetra'th tetrahedron */
504
505   //   return STATUS_OK;
506   // }
507
508   status_t get_vertex_required_property(integer ivtx, integer * rvtx, void *user_data)
509   {
510     MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
511     *rvtx = data->IsVertexRequired( ivtx - 1 );
512
513     return STATUS_OK;
514   }
515
516   // status_t get_vertex_weight(integer ivtx, real * wvtx, void *user_data)
517   // {
518   //   MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
519   //   *wvtx = data->GetSizeAtVertex( ivtx - 1 );
520
521   //   return STATUS_OK;
522   // }
523
524   status_t my_message_cb(message_t * msg, void *user_data)
525   {
526     char *desc;
527     message_get_description(msg, &desc);
528
529     MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
530     data->AddError( desc );
531
532 #ifdef _DEBUG_
533     //std::cout << desc << std::endl;
534 #endif
535
536     return STATUS_OK;
537   }
538
539   status_t my_interrupt_callback(integer *interrupt_status, void *user_data)
540   {
541     MG_TetraHPC_API::LibData* data = (MG_TetraHPC_API::LibData *) user_data;
542     *interrupt_status = ( data->Cancelled() ? INTERRUPT_STOP : INTERRUPT_CONTINUE );
543
544     //std::cout << "INTERRUPT_STOP" << std::endl;
545
546
547     return STATUS_OK;
548   }
549
550 } // end namespace
551
552
553 void MG_TetraHPC_API::LibData::Init()
554 {
555   status_t ret;
556
557   // Create the meshgems working context
558   _context = context_new();
559   if ( !_context ) MG_Error( "unable to create a new context" );
560
561   // Set the message callback for the _context.
562   ret = context_set_message_callback( _context, my_message_cb, this );
563   if ( ret != STATUS_OK ) MG_Error("in context_set_message_callback");
564
565   // Create the structure holding the callbacks giving access to triangle mesh
566   _tria_mesh = mesh_new( _context );
567   if ( !_tria_mesh ) MG_Error("unable to create a new mesh");
568
569   // Set callbacks to provide triangle mesh data
570   mesh_set_get_vertex_count( _tria_mesh, get_vertex_count, this );
571   mesh_set_get_vertex_coordinates( _tria_mesh, get_vertex_coordinates, this );
572   mesh_set_get_vertex_required_property( _tria_mesh, get_vertex_required_property, this );
573   mesh_set_get_edge_count( _tria_mesh, get_edge_count, this);
574   mesh_set_get_edge_vertices( _tria_mesh, get_edge_vertices, this );
575   mesh_set_get_triangle_count( _tria_mesh, get_triangle_count, this );
576   mesh_set_get_triangle_vertices( _tria_mesh, get_triangle_vertices, this );
577
578   // Create a tetra session
579   _session = tetra_hpc_session_new( _context );
580   if ( !_session ) MG_Error( "unable to create a new tetra_hpc session");
581
582   ret = tetra_hpc_set_interrupt_callback( _session, my_interrupt_callback, this );
583   if ( ret != STATUS_OK ) MG_Error("in tetra_set_interrupt_callback");
584
585 }
586
587 bool MG_TetraHPC_API::LibData::Compute( const std::string& outFile )
588 {
589   // MG license
590   std::string errorTxt;
591   status_t ret;
592
593   // use cvm for tetra_hpc
594   if ( !SMESHUtils_MGLicenseKeyGen::SignMesh( _tria_mesh, "cvm", errorTxt ))
595   {
596     AddError( SMESH_Comment( "Problem with library SalomeMeshGemsKeyGenerator: ") << errorTxt );
597     return false;
598   }
599
600   // Set surface mesh
601   ret = tetra_hpc_set_input_mesh( _session, _tria_mesh );
602   if ( ret != STATUS_OK ) MG_Error( "unable to set surface mesh");
603
604   // // Set a sizemap
605   // if ( !_nodeSize.empty() )
606   // {
607   //   _sizemap = meshgems_sizemap_new( _tria_mesh, meshgems_sizemap_type_iso_mesh_vertex,
608   //                                    (void*) &get_vertex_weight, this );
609   //   if ( !_sizemap ) MG_Error("unable to create a new sizemap");
610
611   //   ret = tetra_hpc_set_sizemap( _session, _sizemap );
612   //   if ( ret != STATUS_OK ) MG_Error( "unable to set sizemap");
613   // }
614
615   //////////////////////////////////////////////////////////////////////////////////////////
616   // const char* file  =  "/tmp/ghs3d_IN.mesh";
617   // mesh_write_mesh( _tria_mesh,file);
618   // std::cout << std::endl << std::endl << "Write " << file << std::endl << std::endl << std::endl;
619
620   ret = tetra_hpc_mesh( _session );
621   if ( ret != STATUS_OK ) return false;
622
623   ret = tetra_hpc_get_mesh( _session, &_tetra_mesh);
624   if (ret != STATUS_OK) MG_Error( "unable to get resulting mesh");
625
626   mesh_write_mesh( _tetra_mesh, outFile.c_str() );
627
628   return true;
629 }
630
631 #else // ifdef USE_MG_LIBS
632
633 struct MG_TetraHPC_API::LibData // to avoid compiler warnings
634 {
635   volatile bool& _cancelled_flag;
636   double& _progress;
637   LibData(volatile bool& cancelled_flag, double& progress)
638     : _cancelled_flag{cancelled_flag}, _progress{progress}
639   {}
640 };
641
642 #endif // ifdef USE_MG_LIBS
643
644
645 //================================================================================
646 /*!
647  * \brief Constructor
648  */
649 //================================================================================
650
651 MG_TetraHPC_API::MG_TetraHPC_API(volatile bool& cancelled_flag, double& progress):
652   _nbNodes(0), _nbEdges(0), _nbFaces(0), _nbVolumes(0)
653 {
654   _useLib = false;
655   _libData = new LibData( cancelled_flag, progress );
656 #ifdef USE_MG_LIBS
657   _useLib = true;
658   _libData->Init();
659   if ( getenv("MG_TetraHPC_USE_EXE"))
660     _useLib = false;
661 #endif
662 }
663
664 //================================================================================
665 /*!
666  * \brief Destructor
667  */
668 //================================================================================
669
670 MG_TetraHPC_API::~MG_TetraHPC_API()
671 {
672 #ifdef USE_MG_LIBS
673   delete _libData;
674   _libData = 0;
675 #endif
676   std::set<int>::iterator id = _openFiles.begin();
677   for ( ; id != _openFiles.end(); ++id )
678     ::GmfCloseMesh( *id );
679   _openFiles.clear();
680 }
681
682 //================================================================================
683 /*!
684  * \brief Return the way of MG usage
685  */
686 //================================================================================
687
688 bool MG_TetraHPC_API::IsLibrary()
689 {
690   return _useLib;
691 }
692
693 //================================================================================
694 /*!
695  * \brief Switch to usage of MG-Tetra executable
696  */
697 //================================================================================
698
699 void MG_TetraHPC_API::SetUseExecutable()
700 {
701   _useLib = false;
702 }
703
704 //================================================================================
705 /*!
706  * \brief Compute the tetra mesh
707  *  \param [in] cmdLine - a command to run mg_tetra.exe
708  *  \return bool - Ok or not
709  */
710 //================================================================================
711
712 bool MG_TetraHPC_API::Compute( const std::string& cmdLine, std::string& errStr )
713 {
714   if ( _useLib ) {
715 #ifdef USE_MG_LIBS
716
717     // split cmdLine
718     std::istringstream strm( cmdLine );
719     std::istream_iterator<std::string> sIt( strm ), sEnd;
720     std::vector< std::string > args( sIt, sEnd );
721
722     std::string outFile;
723
724     // set parameters
725     std::string arg, param, value;
726     for ( size_t i = 1; i < args.size(); ++i )
727     {
728       // look for a param name; it starts from "-"
729       arg = args[i];
730       if ( arg.size() < 2 || arg[0] != '-')
731         continue;
732       while ( arg[0] == '-')
733         arg = arg.substr( 1 );
734
735       size_t eqPos = arg.find('=');
736       if ( eqPos != std::string::npos )
737       {
738         param = arg.substr( 0, eqPos );
739         value = arg.substr( eqPos+1 );
740       }
741       else
742       {
743         param = arg;
744         value = "";
745       }
746       if ( param == "out" )
747       {
748         outFile = value;
749         continue;
750       }
751       while ( i+1 < args.size() && args[i+1][0] != '-' )
752       {
753         if ( !value.empty() ) value += " ";
754         value += args[++i];
755       }
756       if ( !_libData->SetParam( param, value ))
757         std::cout << "Warning: wrong param: '" << param <<"' = '" << value << "'" << std::endl;
758     }
759
760     // compute
761     bool ok = _libData->Compute( outFile );
762
763     GetLog(); // write a log file
764     _logFile = ""; // not to write it again
765
766     return ok;
767 #endif
768   }
769
770   // add MG license key
771   {
772     std::string errorTxt, meshIn;
773     std::string key = SMESHUtils_MGLicenseKeyGen::GetKey( meshIn,
774                                                           _nbNodes, _nbEdges, _nbFaces, _nbVolumes,
775                                                           errorTxt );
776     if ( key.empty() )
777     {
778       errStr = "Problem with library SalomeMeshGemsKeyGenerator: " + errorTxt;
779       return false;
780     }
781
782     const_cast< std::string& >( cmdLine ) += " --key " + key;
783   }
784
785   std::cout << "Launching: " << cmdLine << std::endl;
786
787   int err = system( cmdLine.c_str() ); // run
788
789   if ( err )
790   {
791     errStr = SMESH_Comment("system command failed with error: ")
792       << strerror( errno );
793     return false;
794   }
795   return true;
796
797 }
798
799 //================================================================================
800 /*!
801  * \brief Prepare for reading a mesh data
802  */
803 //================================================================================
804
805 int  MG_TetraHPC_API::GmfOpenMesh(const char* theFile, int rdOrWr, int * ver, int * dim)
806 {
807   if ( _useLib ) {
808 #ifdef USE_MG_LIBS
809     return 1;
810 #endif
811   }
812   int id = ::GmfOpenMesh(theFile, rdOrWr, ver, dim );
813   _openFiles.insert( id );
814   return id;
815 }
816
817 //================================================================================
818 /*!
819  * \brief Return nb of entities
820  */
821 //================================================================================
822
823 int MG_TetraHPC_API::GmfStatKwd( int iMesh, GmfKwdCod what )
824 {
825   if ( _useLib ) {
826 #ifdef USE_MG_LIBS
827     switch ( what )
828     {
829     case GmfSubDomainFromGeom: return _libData->ReadNbSubDomains();
830     case GmfVertices:          return _libData->ReadNbNodes();
831     case GmfEdges:             return _libData->ReadNbEdges();
832     case GmfTriangles:         return _libData->ReadNbTria();
833     case GmfQuadrilaterals:    return _libData->ReadNbQuads();
834     case GmfTetrahedra:        return _libData->ReadNbTetra();
835     case GmfHexahedra:         return _libData->ReadNbHexa();
836     default:                   return 0;
837     }
838     return 0;
839 #endif
840   }
841   return ::GmfStatKwd( iMesh, what );
842 }
843
844 //================================================================================
845 /*!
846  * \brief Prepare for reading some data
847  */
848 //================================================================================
849
850 void MG_TetraHPC_API::GmfGotoKwd( int iMesh, GmfKwdCod what )
851 {
852   if ( _useLib ) {
853 #ifdef USE_MG_LIBS
854     _libData->ResetCounter();
855     return;
856 #endif
857   }
858   ::GmfGotoKwd( iMesh, what );
859 }
860
861 //================================================================================
862 /*!
863  * \brief Return index of a domain identified by a triangle normal
864  *  \param [in] iMesh - mesh file index
865  *  \param [in] what - must be GmfSubDomainFromGeom
866  *  \param [out] nbNodes - nb nodes in a face
867  *  \param [out] faceInd - face index
868  *  \param [out] ori - face orientation
869  *  \param [out] domain - domain index
870  *  \param [in] dummy - an artificial param used to discriminate from GmfGetLin() reading
871  *              a triangle
872  */
873 //================================================================================
874
875 void MG_TetraHPC_API::GmfGetLin( int iMesh, GmfKwdCod what, int* nbNodes, int* faceInd, int* ori, int* domain, int /*dummy*/ )
876 {
877   if ( _useLib ) {
878 #ifdef USE_MG_LIBS
879     _libData->ReadSubDomain( nbNodes, faceInd, ori, domain );
880     return;
881 #endif
882   }
883   ::GmfGetLin( iMesh, what, nbNodes, faceInd, ori, domain );
884 }
885
886 //================================================================================
887 /*!
888  * \brief Return coordinates of a next node
889  */
890 //================================================================================
891
892 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what,
893                              double* x, double* y, double *z, int* domain )
894 {
895   if ( _useLib ) {
896 #ifdef USE_MG_LIBS
897     _libData->ReadNodeXYZ( x, y, z, domain );
898     return;
899 #endif
900   }
901   ::GmfGetLin(iMesh, what, x, y, z, domain );
902 }
903
904 //================================================================================
905 /*!
906  * \brief Return coordinates of a next node
907  */
908 //================================================================================
909
910 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what,
911                              float* x, float* y, float *z, int* domain )
912 {
913   if ( _useLib ) {
914 #ifdef USE_MG_LIBS
915     double X,Y,Z;
916     _libData->ReadNodeXYZ( &X, &Y, &Z, domain );
917     *x = X;
918     *y = Y;
919     *z = Z;
920     return;
921 #endif
922   }
923   ::GmfGetLin(iMesh, what, x, y, z, domain );
924 }
925
926 //================================================================================
927 /*!
928  * \brief Return node index of a next corner
929  */
930 //================================================================================
931
932 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what, int* node )
933 {
934   if ( _useLib ) {
935 #ifdef USE_MG_LIBS
936     node = 0;
937     return;
938 #endif
939   }
940   ::GmfGetLin(iMesh, what, node );
941 }
942
943 //================================================================================
944 /*!
945  * \brief Return node indices of a next edge
946  */
947 //================================================================================
948
949 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what, int* node1, int* node2, int* domain )
950 {
951   if ( _useLib ) {
952 #ifdef USE_MG_LIBS
953     _libData->ReadEdgeNodes( node1, node2, domain );
954     return;
955 #endif
956   }
957   ::GmfGetLin( iMesh, what, node1, node2, domain );
958 }
959
960 //================================================================================
961 /*!
962  * \brief Return node indices of a next triangle
963  */
964 //================================================================================
965
966 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what,
967                              int* node1, int* node2, int* node3, int* domain )
968 {
969   if ( _useLib ) {
970 #ifdef USE_MG_LIBS
971     _libData->ReadTriaNodes( node1, node2, node3, domain );
972     return;
973 #endif
974   }
975   ::GmfGetLin(iMesh, what, node1, node2, node3, domain );
976 }
977
978 //================================================================================
979 /*!
980  * \brief Return node indices of a next tetrahedron or quadrangle
981  */
982 //================================================================================
983
984 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what,
985                              int* node1, int* node2, int* node3, int* node4, int* domain )
986 {
987   if ( _useLib ) {
988 #ifdef USE_MG_LIBS
989     if ( what == GmfQuadrilaterals )
990       _libData->ReadQuadNodes( node1, node2, node3, node4, domain );
991     else
992       _libData->ReadTetraNodes( node1, node2, node3, node4, domain );
993     return;
994 #endif
995   }
996   ::GmfGetLin(iMesh, what, node1, node2, node3, node4, domain );
997 }
998
999 //================================================================================
1000 /*!
1001  * \brief Return node indices of a next hexahedron
1002  */
1003 //================================================================================
1004
1005 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what,
1006                              int* node1, int* node2, int* node3, int* node4,
1007                              int* node5, int* node6, int* node7, int* node8,
1008                              int* domain )
1009 {
1010   if ( _useLib ) {
1011 #ifdef USE_MG_LIBS
1012     _libData->ReadHexaNodes( node1, node2, node3, node4,
1013                              node5, node6, node7, node8, domain );
1014     return;
1015 #endif
1016   }
1017   ::GmfGetLin(iMesh, what, node1, node2, node3, node4, node5, node6, node7, node8, domain );
1018 }
1019
1020 //================================================================================
1021 /*!
1022  * \brief Prepare for passing data to MeshGems
1023  */
1024 //================================================================================
1025
1026 int  MG_TetraHPC_API::GmfOpenMesh(const char* theFile, int rdOrWr, int ver, int dim)
1027 {
1028   if ( _useLib ) {
1029 #ifdef USE_MG_LIBS
1030     return 1;
1031 #endif
1032   }
1033   int id = ::GmfOpenMesh(theFile, rdOrWr, ver, dim);
1034   _openFiles.insert( id );
1035   return id;
1036 }
1037
1038 //================================================================================
1039 /*!
1040  * \brief Set number of entities
1041  */
1042 //================================================================================
1043
1044 void MG_TetraHPC_API::GmfSetKwd(int iMesh, GmfKwdCod what, int nb )
1045 {
1046   if ( iMesh == 1 )
1047   {
1048     switch ( what ) {
1049     case GmfVertices:  _nbNodes = nb; break;
1050     case GmfEdges:     _nbEdges = nb; break;
1051     case GmfTriangles: _nbFaces = nb; break;
1052     default:;
1053     }
1054   }
1055
1056   if ( _useLib ) {
1057 #ifdef USE_MG_LIBS
1058     switch ( what ) {
1059     case GmfVertices:          _libData->SetNbVertices( nb ); break;
1060     case GmfEdges:             _libData->SetNbEdges   ( nb ); break;
1061     case GmfRequiredEdges:     _libData->SetNbReqEdges( nb ); break;
1062     case GmfTriangles:         _libData->SetNbTria    ( nb ); break;
1063     case GmfRequiredTriangles: _libData->SetNbReqTria ( nb ); break;
1064     default:;
1065     }
1066     return;
1067 #endif
1068   }
1069   ::GmfSetKwd(iMesh, what, nb );
1070 }
1071
1072 //================================================================================
1073 /*!
1074  * \brief Add coordinates of a node
1075  */
1076 //================================================================================
1077
1078 void MG_TetraHPC_API::GmfSetLin(int iMesh, GmfKwdCod what, double x, double y, double z, int domain)
1079 {
1080   if ( _useLib ) {
1081 #ifdef USE_MG_LIBS
1082     _libData->AddNode( x, y, z, domain );
1083     return;
1084 #endif
1085   }
1086   ::GmfSetLin(iMesh, what, x, y, z, domain);
1087 }
1088
1089 //================================================================================
1090 /*!
1091  * \brief Set number of field entities
1092  *  \param [in] iMesh - solution file index
1093  *  \param [in] what - solution type
1094  *  \param [in] nbNodes - nb of entities
1095  *  \param [in] nbTypes - nb of data entries in each entity
1096  *  \param [in] type - types of the data entries
1097  *
1098  * Used to prepare to storing size at nodes
1099  */
1100 //================================================================================
1101
1102 void MG_TetraHPC_API::GmfSetKwd(int iMesh, GmfKwdCod what, int nbNodes, int dummy, int type[] )
1103 {
1104   if ( _useLib ) {
1105 #ifdef USE_MG_LIBS
1106     if ( what == GmfSolAtVertices ) _libData->SetNbReqVertices( nbNodes );
1107     return;
1108 #endif
1109   }
1110   ::GmfSetKwd(iMesh, what, nbNodes, dummy, type );
1111 }
1112
1113 //================================================================================
1114 /*!
1115  * \brief Add solution data
1116  */
1117 //================================================================================
1118
1119 void MG_TetraHPC_API::GmfSetLin(int iMesh, GmfKwdCod what, double vals[])
1120 {
1121   if ( _useLib ) {
1122 #ifdef USE_MG_LIBS
1123     _libData->AddSizeAtNode( vals[0] );
1124     return;
1125 #endif
1126   }
1127   ::GmfSetLin(iMesh, what, vals);
1128 }
1129
1130 //================================================================================
1131 /*!
1132  * \brief Add edge nodes
1133  */
1134 //================================================================================
1135
1136 void MG_TetraHPC_API::GmfSetLin(int iMesh, GmfKwdCod what, int node1, int node2, int domain )
1137 {
1138   if ( _useLib ) {
1139 #ifdef USE_MG_LIBS
1140     _libData->AddEdgeNodes( node1, node2, domain );
1141     return;
1142 #endif
1143   }
1144   ::GmfSetLin(iMesh, what, node1, node2, domain );
1145 }
1146
1147 //================================================================================
1148 /*!
1149  * \brief Add a 'required' flag
1150  */
1151 //================================================================================
1152
1153 void MG_TetraHPC_API::GmfSetLin(int iMesh, GmfKwdCod what, int id )
1154 {
1155   if ( _useLib ) {
1156 #ifdef USE_MG_LIBS
1157     return;
1158 #endif
1159   }
1160   ::GmfSetLin(iMesh, what, id );
1161 }
1162
1163 //================================================================================
1164 /*!
1165  * \brief Add triangle nodes
1166  */
1167 //================================================================================
1168
1169 void MG_TetraHPC_API::GmfSetLin(int iMesh, GmfKwdCod what, int node1, int node2, int node3, int domain )
1170 {
1171   if ( _useLib ) {
1172 #ifdef USE_MG_LIBS
1173     _libData->AddTriaNodes( node1, node2, node3, domain );
1174     return;
1175 #endif
1176   }
1177   ::GmfSetLin(iMesh, what, node1, node2, node3, domain );
1178 }
1179
1180 //================================================================================
1181 /*!
1182  * \brief Close a file
1183  */
1184 //================================================================================
1185
1186 void MG_TetraHPC_API::GmfCloseMesh( int iMesh )
1187 {
1188   if ( _useLib ) {
1189 #ifdef USE_MG_LIBS
1190     return;
1191 #endif
1192   }
1193   ::GmfCloseMesh( iMesh );
1194   _openFiles.erase( iMesh );
1195 }
1196
1197 //================================================================================
1198 /*!
1199  * \brief Return true if the log is not empty
1200  */
1201 //================================================================================
1202
1203 bool MG_TetraHPC_API::HasLog()
1204 {
1205   if ( _useLib ) {
1206 #ifdef USE_MG_LIBS
1207     return !_libData->GetErrors().empty();
1208 #endif
1209   }
1210   SMESH_File file( _logFile );
1211   return file.size() > 0;
1212 }
1213
1214 //================================================================================
1215 /*!
1216  * \brief Return log contents
1217  */
1218 //================================================================================
1219
1220 std::string MG_TetraHPC_API::GetLog()
1221 {
1222   if ( _useLib ) {
1223 #ifdef USE_MG_LIBS
1224     const std::string& err = _libData->GetErrors();
1225     if ( !_logFile.empty() && !err.empty() )
1226     {
1227       SMESH_File file( _logFile, /*openForReading=*/false );
1228       file.openForWriting();
1229       file.write( err.c_str(), err.size() );
1230     }
1231     return err;
1232 #endif
1233   }
1234   std::cout << "_logFile: " << _logFile << std::endl;
1235
1236   SMESH_File file( _logFile );
1237   if (file.exists() && file.size() > 0)
1238     return file.getPos();
1239   else
1240     return "";
1241 }