Salome HOME
0edfd15c09792699f8a4f4cf6643f6991a2b0496
[plugins/ghs3dprlplugin.git] / src / GHS3DPRLPlugin / MG_TetraHPC_API.cxx
1 // Copyright (C) 2004-2021  CEA/DEN, EDF R&D
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   if ( !SMESHUtils_MGLicenseKeyGen::SignMesh( _tria_mesh, errorTxt ))
592   {
593     AddError( SMESH_Comment( "Problem with library SalomeMeshGemsKeyGenerator: ") << errorTxt );
594     return false;
595   }
596
597   // Set surface mesh
598   status_t ret = tetra_hpc_set_input_mesh( _session, _tria_mesh );
599   if ( ret != STATUS_OK ) MG_Error( "unable to set surface mesh");
600
601   // // Set a sizemap
602   // if ( !_nodeSize.empty() )
603   // {
604   //   _sizemap = meshgems_sizemap_new( _tria_mesh, meshgems_sizemap_type_iso_mesh_vertex,
605   //                                    (void*) &get_vertex_weight, this );
606   //   if ( !_sizemap ) MG_Error("unable to create a new sizemap");
607
608   //   ret = tetra_hpc_set_sizemap( _session, _sizemap );
609   //   if ( ret != STATUS_OK ) MG_Error( "unable to set sizemap");
610   // }
611
612   //////////////////////////////////////////////////////////////////////////////////////////
613   // const char* file  =  "/tmp/ghs3d_IN.mesh";
614   // mesh_write_mesh( _tria_mesh,file);
615   // std::cout << std::endl << std::endl << "Write " << file << std::endl << std::endl << std::endl;
616
617   ret = tetra_hpc_mesh( _session );
618   if ( ret != STATUS_OK ) return false;
619
620   ret = tetra_hpc_get_mesh( _session, &_tetra_mesh);
621   if (ret != STATUS_OK) MG_Error( "unable to get resulting mesh");
622
623   mesh_write_mesh( _tetra_mesh, outFile.c_str() );
624
625   return true;
626 }
627
628 #else // ifdef USE_MG_LIBS
629
630 struct MG_TetraHPC_API::LibData // to avoid compiler warnings
631 {
632   volatile bool& _cancelled_flag;
633   double& _progress;
634   LibData(volatile bool& cancelled_flag, double& progress)
635     : _cancelled_flag{cancelled_flag}, _progress{progress}
636   {}
637 };
638
639 #endif // ifdef USE_MG_LIBS
640
641
642 //================================================================================
643 /*!
644  * \brief Constructor
645  */
646 //================================================================================
647
648 MG_TetraHPC_API::MG_TetraHPC_API(volatile bool& cancelled_flag, double& progress):
649   _nbNodes(0), _nbEdges(0), _nbFaces(0), _nbVolumes(0)
650 {
651   _useLib = false;
652   _libData = new LibData( cancelled_flag, progress );
653 #ifdef USE_MG_LIBS
654   _useLib = true;
655   _libData->Init();
656   if ( getenv("MG_TetraHPC_USE_EXE"))
657     _useLib = false;
658 #endif
659 }
660
661 //================================================================================
662 /*!
663  * \brief Destructor
664  */
665 //================================================================================
666
667 MG_TetraHPC_API::~MG_TetraHPC_API()
668 {
669 #ifdef USE_MG_LIBS
670   delete _libData;
671   _libData = 0;
672 #endif
673   std::set<int>::iterator id = _openFiles.begin();
674   for ( ; id != _openFiles.end(); ++id )
675     ::GmfCloseMesh( *id );
676   _openFiles.clear();
677 }
678
679 //================================================================================
680 /*!
681  * \brief Return the way of MG usage
682  */
683 //================================================================================
684
685 bool MG_TetraHPC_API::IsLibrary()
686 {
687   return _useLib;
688 }
689
690 //================================================================================
691 /*!
692  * \brief Switch to usage of MG-Tetra executable
693  */
694 //================================================================================
695
696 void MG_TetraHPC_API::SetUseExecutable()
697 {
698   _useLib = false;
699 }
700
701 //================================================================================
702 /*!
703  * \brief Compute the tetra mesh
704  *  \param [in] cmdLine - a command to run mg_tetra.exe
705  *  \return bool - Ok or not
706  */
707 //================================================================================
708
709 bool MG_TetraHPC_API::Compute( const std::string& cmdLine, std::string& errStr )
710 {
711   if ( _useLib ) {
712 #ifdef USE_MG_LIBS
713
714     // split cmdLine
715     std::istringstream strm( cmdLine );
716     std::istream_iterator<std::string> sIt( strm ), sEnd;
717     std::vector< std::string > args( sIt, sEnd );
718
719     std::string outFile;
720
721     // set parameters
722     std::string arg, param, value;
723     for ( size_t i = 1; i < args.size(); ++i )
724     {
725       // look for a param name; it starts from "-"
726       arg = args[i];
727       if ( arg.size() < 2 || arg[0] != '-')
728         continue;
729       while ( arg[0] == '-')
730         arg = arg.substr( 1 );
731
732       size_t eqPos = arg.find('=');
733       if ( eqPos != std::string::npos )
734       {
735         param = arg.substr( 0, eqPos );
736         value = arg.substr( eqPos+1 );
737       }
738       else
739       {
740         param = arg;
741         value = "";
742       }
743       if ( param == "out" )
744       {
745         outFile = value;
746         continue;
747       }
748       while ( i+1 < args.size() && args[i+1][0] != '-' )
749       {
750         if ( !value.empty() ) value += " ";
751         value += args[++i];
752       }
753       if ( !_libData->SetParam( param, value ))
754         std::cout << "Warning: wrong param: '" << param <<"' = '" << value << "'" << std::endl;
755     }
756
757     // compute
758     bool ok = _libData->Compute( outFile );
759
760     GetLog(); // write a log file
761     _logFile = ""; // not to write it again
762
763     return ok;
764 #endif
765   }
766
767   // add MG license key
768   {
769     std::string errorTxt, meshIn;
770     std::string key = SMESHUtils_MGLicenseKeyGen::GetKey( meshIn,
771                                                           _nbNodes, _nbEdges, _nbFaces, _nbVolumes,
772                                                           errorTxt );
773     if ( key.empty() )
774     {
775       errStr = "Problem with library SalomeMeshGemsKeyGenerator: " + errorTxt;
776       return false;
777     }
778
779     const_cast< std::string& >( cmdLine ) += " --key " + key;
780   }
781
782   int err = system( cmdLine.c_str() ); // run
783
784   if ( err )
785     errStr = SMESH_Comment("system(mg-tetra.exe ...) command failed with error: ")
786       << strerror( errno );
787
788   return false;
789 }
790
791 //================================================================================
792 /*!
793  * \brief Prepare for reading a mesh data
794  */
795 //================================================================================
796
797 int  MG_TetraHPC_API::GmfOpenMesh(const char* theFile, int rdOrWr, int * ver, int * dim)
798 {
799   if ( _useLib ) {
800 #ifdef USE_MG_LIBS
801     return 1;
802 #endif
803   }
804   int id = ::GmfOpenMesh(theFile, rdOrWr, ver, dim );
805   _openFiles.insert( id );
806   return id;
807 }
808
809 //================================================================================
810 /*!
811  * \brief Return nb of entities
812  */
813 //================================================================================
814
815 int MG_TetraHPC_API::GmfStatKwd( int iMesh, GmfKwdCod what )
816 {
817   if ( _useLib ) {
818 #ifdef USE_MG_LIBS
819     switch ( what )
820     {
821     case GmfSubDomainFromGeom: return _libData->ReadNbSubDomains();
822     case GmfVertices:          return _libData->ReadNbNodes();
823     case GmfEdges:             return _libData->ReadNbEdges();
824     case GmfTriangles:         return _libData->ReadNbTria();
825     case GmfQuadrilaterals:    return _libData->ReadNbQuads();
826     case GmfTetrahedra:        return _libData->ReadNbTetra();
827     case GmfHexahedra:         return _libData->ReadNbHexa();
828     default:                   return 0;
829     }
830     return 0;
831 #endif
832   }
833   return ::GmfStatKwd( iMesh, what );
834 }
835
836 //================================================================================
837 /*!
838  * \brief Prepare for reading some data
839  */
840 //================================================================================
841
842 void MG_TetraHPC_API::GmfGotoKwd( int iMesh, GmfKwdCod what )
843 {
844   if ( _useLib ) {
845 #ifdef USE_MG_LIBS
846     _libData->ResetCounter();
847     return;
848 #endif
849   }
850   ::GmfGotoKwd( iMesh, what );
851 }
852
853 //================================================================================
854 /*!
855  * \brief Return index of a domain identified by a triangle normal
856  *  \param [in] iMesh - mesh file index
857  *  \param [in] what - must be GmfSubDomainFromGeom
858  *  \param [out] nbNodes - nb nodes in a face
859  *  \param [out] faceInd - face index
860  *  \param [out] ori - face orientation
861  *  \param [out] domain - domain index
862  *  \param [in] dummy - an artificial param used to discriminate from GmfGetLin() reading
863  *              a triangle
864  */
865 //================================================================================
866
867 void MG_TetraHPC_API::GmfGetLin( int iMesh, GmfKwdCod what, int* nbNodes, int* faceInd, int* ori, int* domain, int /*dummy*/ )
868 {
869   if ( _useLib ) {
870 #ifdef USE_MG_LIBS
871     _libData->ReadSubDomain( nbNodes, faceInd, ori, domain );
872     return;
873 #endif
874   }
875   ::GmfGetLin( iMesh, what, nbNodes, faceInd, ori, domain );
876 }
877
878 //================================================================================
879 /*!
880  * \brief Return coordinates of a next node
881  */
882 //================================================================================
883
884 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what,
885                              double* x, double* y, double *z, int* domain )
886 {
887   if ( _useLib ) {
888 #ifdef USE_MG_LIBS
889     _libData->ReadNodeXYZ( x, y, z, domain );
890     return;
891 #endif
892   }
893   ::GmfGetLin(iMesh, what, x, y, z, domain );
894 }
895
896 //================================================================================
897 /*!
898  * \brief Return coordinates of a next node
899  */
900 //================================================================================
901
902 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what,
903                              float* x, float* y, float *z, int* domain )
904 {
905   if ( _useLib ) {
906 #ifdef USE_MG_LIBS
907     double X,Y,Z;
908     _libData->ReadNodeXYZ( &X, &Y, &Z, domain );
909     *x = X;
910     *y = Y;
911     *z = Z;
912     return;
913 #endif
914   }
915   ::GmfGetLin(iMesh, what, x, y, z, domain );
916 }
917
918 //================================================================================
919 /*!
920  * \brief Return node index of a next corner
921  */
922 //================================================================================
923
924 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what, int* node )
925 {
926   if ( _useLib ) {
927 #ifdef USE_MG_LIBS
928     node = 0;
929     return;
930 #endif
931   }
932   ::GmfGetLin(iMesh, what, node );
933 }
934
935 //================================================================================
936 /*!
937  * \brief Return node indices of a next edge
938  */
939 //================================================================================
940
941 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what, int* node1, int* node2, int* domain )
942 {
943   if ( _useLib ) {
944 #ifdef USE_MG_LIBS
945     _libData->ReadEdgeNodes( node1, node2, domain );
946     return;
947 #endif
948   }
949   ::GmfGetLin( iMesh, what, node1, node2, domain );
950 }
951
952 //================================================================================
953 /*!
954  * \brief Return node indices of a next triangle
955  */
956 //================================================================================
957
958 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what,
959                              int* node1, int* node2, int* node3, int* domain )
960 {
961   if ( _useLib ) {
962 #ifdef USE_MG_LIBS
963     _libData->ReadTriaNodes( node1, node2, node3, domain );
964     return;
965 #endif
966   }
967   ::GmfGetLin(iMesh, what, node1, node2, node3, domain );
968 }
969
970 //================================================================================
971 /*!
972  * \brief Return node indices of a next tetrahedron or quadrangle
973  */
974 //================================================================================
975
976 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what,
977                              int* node1, int* node2, int* node3, int* node4, int* domain )
978 {
979   if ( _useLib ) {
980 #ifdef USE_MG_LIBS
981     if ( what == GmfQuadrilaterals )
982       _libData->ReadQuadNodes( node1, node2, node3, node4, domain );
983     else
984       _libData->ReadTetraNodes( node1, node2, node3, node4, domain );
985     return;
986 #endif
987   }
988   ::GmfGetLin(iMesh, what, node1, node2, node3, node4, domain );
989 }
990
991 //================================================================================
992 /*!
993  * \brief Return node indices of a next hexahedron
994  */
995 //================================================================================
996
997 void MG_TetraHPC_API::GmfGetLin(int iMesh, GmfKwdCod what,
998                              int* node1, int* node2, int* node3, int* node4,
999                              int* node5, int* node6, int* node7, int* node8,
1000                              int* domain )
1001 {
1002   if ( _useLib ) {
1003 #ifdef USE_MG_LIBS
1004     _libData->ReadHexaNodes( node1, node2, node3, node4,
1005                              node5, node6, node7, node8, domain );
1006     return;
1007 #endif
1008   }
1009   ::GmfGetLin(iMesh, what, node1, node2, node3, node4, node5, node6, node7, node8, domain );
1010 }
1011
1012 //================================================================================
1013 /*!
1014  * \brief Prepare for passing data to MeshGems
1015  */
1016 //================================================================================
1017
1018 int  MG_TetraHPC_API::GmfOpenMesh(const char* theFile, int rdOrWr, int ver, int dim)
1019 {
1020   if ( _useLib ) {
1021 #ifdef USE_MG_LIBS
1022     return 1;
1023 #endif
1024   }
1025   int id = ::GmfOpenMesh(theFile, rdOrWr, ver, dim);
1026   _openFiles.insert( id );
1027   return id;
1028 }
1029
1030 //================================================================================
1031 /*!
1032  * \brief Set number of entities
1033  */
1034 //================================================================================
1035
1036 void MG_TetraHPC_API::GmfSetKwd(int iMesh, GmfKwdCod what, int nb )
1037 {
1038   if ( iMesh == 1 )
1039   {
1040     switch ( what ) {
1041     case GmfVertices:  _nbNodes = nb; break;
1042     case GmfEdges:     _nbEdges = nb; break;
1043     case GmfTriangles: _nbFaces = nb; break;
1044     default:;
1045     }
1046   }
1047
1048   if ( _useLib ) {
1049 #ifdef USE_MG_LIBS
1050     switch ( what ) {
1051     case GmfVertices:          _libData->SetNbVertices( nb ); break;
1052     case GmfEdges:             _libData->SetNbEdges   ( nb ); break;
1053     case GmfRequiredEdges:     _libData->SetNbReqEdges( nb ); break;
1054     case GmfTriangles:         _libData->SetNbTria    ( nb ); break;
1055     case GmfRequiredTriangles: _libData->SetNbReqTria ( nb ); break;
1056     default:;
1057     }
1058     return;
1059 #endif
1060   }
1061   ::GmfSetKwd(iMesh, what, nb );
1062 }
1063
1064 //================================================================================
1065 /*!
1066  * \brief Add coordinates of a node
1067  */
1068 //================================================================================
1069
1070 void MG_TetraHPC_API::GmfSetLin(int iMesh, GmfKwdCod what, double x, double y, double z, int domain)
1071 {
1072   if ( _useLib ) {
1073 #ifdef USE_MG_LIBS
1074     _libData->AddNode( x, y, z, domain );
1075     return;
1076 #endif
1077   }
1078   ::GmfSetLin(iMesh, what, x, y, z, domain);
1079 }
1080
1081 //================================================================================
1082 /*!
1083  * \brief Set number of field entities
1084  *  \param [in] iMesh - solution file index
1085  *  \param [in] what - solution type
1086  *  \param [in] nbNodes - nb of entities
1087  *  \param [in] nbTypes - nb of data entries in each entity
1088  *  \param [in] type - types of the data entries
1089  *
1090  * Used to prepare to storing size at nodes
1091  */
1092 //================================================================================
1093
1094 void MG_TetraHPC_API::GmfSetKwd(int iMesh, GmfKwdCod what, int nbNodes, int dummy, int type[] )
1095 {
1096   if ( _useLib ) {
1097 #ifdef USE_MG_LIBS
1098     if ( what == GmfSolAtVertices ) _libData->SetNbReqVertices( nbNodes );
1099     return;
1100 #endif
1101   }
1102   ::GmfSetKwd(iMesh, what, nbNodes, dummy, type );
1103 }
1104
1105 //================================================================================
1106 /*!
1107  * \brief Add solution data
1108  */
1109 //================================================================================
1110
1111 void MG_TetraHPC_API::GmfSetLin(int iMesh, GmfKwdCod what, double vals[])
1112 {
1113   if ( _useLib ) {
1114 #ifdef USE_MG_LIBS
1115     _libData->AddSizeAtNode( vals[0] );
1116     return;
1117 #endif
1118   }
1119   ::GmfSetLin(iMesh, what, vals);
1120 }
1121
1122 //================================================================================
1123 /*!
1124  * \brief Add edge nodes
1125  */
1126 //================================================================================
1127
1128 void MG_TetraHPC_API::GmfSetLin(int iMesh, GmfKwdCod what, int node1, int node2, int domain )
1129 {
1130   if ( _useLib ) {
1131 #ifdef USE_MG_LIBS
1132     _libData->AddEdgeNodes( node1, node2, domain );
1133     return;
1134 #endif
1135   }
1136   ::GmfSetLin(iMesh, what, node1, node2, domain );
1137 }
1138
1139 //================================================================================
1140 /*!
1141  * \brief Add a 'required' flag
1142  */
1143 //================================================================================
1144
1145 void MG_TetraHPC_API::GmfSetLin(int iMesh, GmfKwdCod what, int id )
1146 {
1147   if ( _useLib ) {
1148 #ifdef USE_MG_LIBS
1149     return;
1150 #endif
1151   }
1152   ::GmfSetLin(iMesh, what, id );
1153 }
1154
1155 //================================================================================
1156 /*!
1157  * \brief Add triangle nodes
1158  */
1159 //================================================================================
1160
1161 void MG_TetraHPC_API::GmfSetLin(int iMesh, GmfKwdCod what, int node1, int node2, int node3, int domain )
1162 {
1163   if ( _useLib ) {
1164 #ifdef USE_MG_LIBS
1165     _libData->AddTriaNodes( node1, node2, node3, domain );
1166     return;
1167 #endif
1168   }
1169   ::GmfSetLin(iMesh, what, node1, node2, node3, domain );
1170 }
1171
1172 //================================================================================
1173 /*!
1174  * \brief Close a file
1175  */
1176 //================================================================================
1177
1178 void MG_TetraHPC_API::GmfCloseMesh( int iMesh )
1179 {
1180   if ( _useLib ) {
1181 #ifdef USE_MG_LIBS
1182     return;
1183 #endif
1184   }
1185   ::GmfCloseMesh( iMesh );
1186   _openFiles.erase( iMesh );
1187 }
1188
1189 //================================================================================
1190 /*!
1191  * \brief Return true if the log is not empty
1192  */
1193 //================================================================================
1194
1195 bool MG_TetraHPC_API::HasLog()
1196 {
1197   if ( _useLib ) {
1198 #ifdef USE_MG_LIBS
1199     return !_libData->GetErrors().empty();
1200 #endif
1201   }
1202   SMESH_File file( _logFile );
1203   return file.size() > 0;
1204 }
1205
1206 //================================================================================
1207 /*!
1208  * \brief Return log contents
1209  */
1210 //================================================================================
1211
1212 std::string MG_TetraHPC_API::GetLog()
1213 {
1214   if ( _useLib ) {
1215 #ifdef USE_MG_LIBS
1216     const std::string& err = _libData->GetErrors();
1217     if ( !_logFile.empty() && !err.empty() )
1218     {
1219       SMESH_File file( _logFile, /*openForReading=*/false );
1220       file.openForWriting();
1221       file.write( err.c_str(), err.size() );
1222     }
1223     return err;
1224 #endif
1225   }
1226   SMESH_File file( _logFile );
1227   return file.getPos();
1228 }