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