Salome HOME
Merge changes from 'master' branch.
[plugins/blsurfplugin.git] / src / BLSURFPlugin / BLSURFPlugin_BLSURF.cxx
1 // Copyright (C) 2007-2016  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 // ---
21 // File    : BLSURFPlugin_BLSURF.cxx
22 // Authors : Francis KLOSS (OCC) & Patrick LAUG (INRIA) & Lioka RAZAFINDRAZAKA (CEA)
23 //           & Aurelien ALLEAUME (DISTENE)
24 //           Size maps developement: Nicolas GEIMER (OCC) & Gilles DAVID (EURIWARE)
25 // ---
26
27 #include "BLSURFPlugin_BLSURF.hxx"
28 #include "BLSURFPlugin_Hypothesis.hxx"
29 #include "BLSURFPlugin_Attractor.hxx"
30
31 extern "C"{
32 #include <meshgems/meshgems.h>
33 #include <meshgems/cadsurf.h>
34 }
35
36 #include <structmember.h>
37
38
39 #include <Basics_Utils.hxx>
40
41 #include <SMDS_EdgePosition.hxx>
42 #include <SMESHDS_Group.hxx>
43 #include <SMESH_Gen.hxx>
44 #include <SMESH_Group.hxx>
45 #include <SMESH_Mesh.hxx>
46 #include <SMESH_MeshEditor.hxx>
47 #include <SMESH_MesherHelper.hxx>
48 #include <StdMeshers_FaceSide.hxx>
49 #include <StdMeshers_ViscousLayers2D.hxx>
50 #include <SMESH_File.hxx>
51
52 #include <utilities.h>
53
54 #include <limits>
55 #include <list>
56 #include <vector>
57 #include <set>
58 #include <cstdlib>
59
60 // OPENCASCADE includes
61 #include <BRepBuilderAPI_MakeFace.hxx>
62 #include <BRepBuilderAPI_MakePolygon.hxx>
63 #include <BRepBuilderAPI_MakeWire.hxx>
64 #include <BRepGProp.hxx>
65 #include <BRepTools.hxx>
66 #include <BRep_Builder.hxx>
67 #include <BRep_Tool.hxx>
68 #include <GProp_GProps.hxx>
69 #include <Geom2d_Curve.hxx>
70 #include <Geom2d_Line.hxx>
71 #include <GeomAPI_ProjectPointOnCurve.hxx>
72 #include <GeomAPI_ProjectPointOnSurf.hxx>
73 #include <Geom_Curve.hxx>
74 #include <Geom_Surface.hxx>
75 #include <NCollection_DataMap.hxx>
76 #include <NCollection_Map.hxx>
77 #include <Standard_ErrorHandler.hxx>
78 #include <TopExp.hxx>
79 #include <TopExp_Explorer.hxx>
80 #include <TopTools_DataMapOfShapeInteger.hxx>
81 #include <TopTools_IndexedMapOfShape.hxx>
82 #include <TopTools_MapOfShape.hxx>
83 #include <TopoDS.hxx>
84 #include <TopoDS_Compound.hxx>
85 #include <TopoDS_Edge.hxx>
86 #include <TopoDS_Face.hxx>
87 #include <TopoDS_Shape.hxx>
88 #include <TopoDS_Vertex.hxx>
89 #include <TopoDS_Wire.hxx>
90 #include <gp_Pnt.hxx>
91 #include <gp_Pnt2d.hxx>
92 #include <gp_XY.hxx>
93 #include <gp_XYZ.hxx>
94
95 #ifndef WIN32
96 #include <fenv.h>
97 #endif
98
99 using namespace std;
100
101 /* ==================================
102  * ===========  PYTHON ==============
103  * ==================================*/
104
105 namespace
106 {
107   typedef struct {
108     PyObject_HEAD
109     int softspace;
110     std::string *out;
111     } PyStdOut;
112
113   static void
114   PyStdOut_dealloc(PyStdOut *self)
115   {
116     PyObject_Del(self);
117   }
118
119   static PyObject *
120   PyStdOut_write(PyStdOut *self, PyObject *args)
121   {
122     char *c;
123     int l;
124     if (!PyArg_ParseTuple(args, "t#:write",&c, &l))
125       return NULL;
126
127     *(self->out)=*(self->out)+c;
128
129     Py_INCREF(Py_None);
130     return Py_None;
131   }
132
133   static PyMethodDef PyStdOut_methods[] = {
134     {"write",  (PyCFunction)PyStdOut_write,  METH_VARARGS,
135       PyDoc_STR("write(string) -> None")},
136     {NULL,    NULL}   /* sentinel */
137   };
138
139   static PyMemberDef PyStdOut_memberlist[] = {
140     {(char*)"softspace", T_INT,  offsetof(PyStdOut, softspace), 0,
141      (char*)"flag indicating that a space needs to be printed; used by print"},
142     {NULL} /* Sentinel */
143   };
144
145   static PyTypeObject PyStdOut_Type = {
146     /* The ob_type field must be initialized in the module init function
147      * to be portable to Windows without using C++. */
148     PyVarObject_HEAD_INIT(NULL, 0)
149     "PyOut",                      /*tp_name*/
150     sizeof(PyStdOut),             /*tp_basicsize*/
151     0,                            /*tp_itemsize*/
152     /* methods */
153     (destructor)PyStdOut_dealloc, /*tp_dealloc*/
154     0,                            /*tp_print*/
155     0,                            /*tp_getattr*/
156     0,                            /*tp_setattr*/
157     0,                            /*tp_compare*/
158     0,                            /*tp_repr*/
159     0,                            /*tp_as_number*/
160     0,                            /*tp_as_sequence*/
161     0,                            /*tp_as_mapping*/
162     0,                            /*tp_hash*/
163     0,                            /*tp_call*/
164     0,                            /*tp_str*/
165     PyObject_GenericGetAttr,      /*tp_getattro*/
166     /* softspace is writable:  we must supply tp_setattro */
167     PyObject_GenericSetAttr,      /* tp_setattro */
168     0,                            /*tp_as_buffer*/
169     Py_TPFLAGS_DEFAULT,           /*tp_flags*/
170     0,                            /*tp_doc*/
171     0,                            /*tp_traverse*/
172     0,                            /*tp_clear*/
173     0,                            /*tp_richcompare*/
174     0,                            /*tp_weaklistoffset*/
175     0,                            /*tp_iter*/
176     0,                            /*tp_iternext*/
177     PyStdOut_methods,             /*tp_methods*/
178     PyStdOut_memberlist,          /*tp_members*/
179     0,                            /*tp_getset*/
180     0,                            /*tp_base*/
181     0,                            /*tp_dict*/
182     0,                            /*tp_descr_get*/
183     0,                            /*tp_descr_set*/
184     0,                            /*tp_dictoffset*/
185     0,                            /*tp_init*/
186     0,                            /*tp_alloc*/
187     0,                            /*tp_new*/
188     0,                            /*tp_free*/
189     0,                            /*tp_is_gc*/
190   };
191
192   PyObject * newPyStdOut( std::string& out )
193   {
194     PyStdOut* self = PyObject_New(PyStdOut, &PyStdOut_Type);
195     if (self) {
196       self->softspace = 0;
197       self->out=&out;
198     }
199     return (PyObject*)self;
200   }
201 }
202
203
204 ////////////////////////END PYTHON///////////////////////////
205
206 //////////////////MY MAPS////////////////////////////////////////
207 namespace {
208 TopTools_IndexedMapOfShape FacesWithSizeMap;
209 std::map<int,string> FaceId2SizeMap;
210 TopTools_IndexedMapOfShape EdgesWithSizeMap;
211 std::map<int,string> EdgeId2SizeMap;
212 TopTools_IndexedMapOfShape VerticesWithSizeMap;
213 std::map<int,string> VertexId2SizeMap;
214
215 std::map<int,PyObject*> FaceId2PythonSmp;
216 std::map<int,PyObject*> EdgeId2PythonSmp;
217 std::map<int,PyObject*> VertexId2PythonSmp;
218
219 typedef std::map<int, std::vector< BLSURFPlugin_Attractor* > > TId2ClsAttractorVec;
220 TId2ClsAttractorVec FaceId2ClassAttractor;
221 TId2ClsAttractorVec FaceIndex2ClassAttractor;
222 std::map<int,std::vector<double> > FaceId2AttractorCoords;
223 int theNbAttractors;
224
225 TopTools_IndexedMapOfShape FacesWithEnforcedVertices;
226 std::map< int, BLSURFPlugin_Hypothesis::TEnfVertexCoordsList > FaceId2EnforcedVertexCoords;
227 std::map< BLSURFPlugin_Hypothesis::TEnfVertexCoords, BLSURFPlugin_Hypothesis::TEnfVertexCoords > EnfVertexCoords2ProjVertex;
228 std::map< BLSURFPlugin_Hypothesis::TEnfVertexCoords, BLSURFPlugin_Hypothesis::TEnfVertexList > EnfVertexCoords2EnfVertexList;
229 SMESH_MesherHelper* theHelper;
230
231 bool HasSizeMapOnFace=false;
232 bool HasSizeMapOnEdge=false;
233 bool HasSizeMapOnVertex=false;
234 //bool HasAttractorOnFace=false;
235 }
236 //=============================================================================
237 /*!
238  *
239  */
240 //=============================================================================
241
242 BLSURFPlugin_BLSURF::BLSURFPlugin_BLSURF(int        hypId,
243                                          SMESH_Gen* gen,
244                                          bool       theHasGEOM)
245   : SMESH_2D_Algo(hypId, gen)
246 {
247   _name = theHasGEOM ? "MG-CADSurf" : "MG-CADSurf_NOGEOM";//"BLSURF";
248   _shapeType = (1 << TopAbs_FACE); // 1 bit /shape type
249   _compatibleHypothesis.push_back(BLSURFPlugin_Hypothesis::GetHypType(theHasGEOM));
250   if ( theHasGEOM )
251     _compatibleHypothesis.push_back(StdMeshers_ViscousLayers2D::GetHypType());
252   _requireDiscreteBoundary = false;
253   _onlyUnaryInput = false;
254   _hypothesis = NULL;
255   _supportSubmeshes = true;
256   _requireShape = theHasGEOM;
257
258   /* Initialize the Python interpreter */
259   assert(Py_IsInitialized());
260   PyGILState_STATE gstate;
261   gstate = PyGILState_Ensure();
262
263   main_mod = NULL;
264   main_mod = PyImport_AddModule("__main__");
265
266   main_dict = NULL;
267   main_dict = PyModule_GetDict(main_mod);
268
269   PyRun_SimpleString("from math import *");
270   PyGILState_Release(gstate);
271
272   FacesWithSizeMap.Clear();
273   FaceId2SizeMap.clear();
274   EdgesWithSizeMap.Clear();
275   EdgeId2SizeMap.clear();
276   VerticesWithSizeMap.Clear();
277   VertexId2SizeMap.clear();
278   FaceId2PythonSmp.clear();
279   EdgeId2PythonSmp.clear();
280   VertexId2PythonSmp.clear();
281   FaceId2AttractorCoords.clear();
282   FaceId2ClassAttractor.clear();
283   FaceIndex2ClassAttractor.clear();
284   FacesWithEnforcedVertices.Clear();
285   FaceId2EnforcedVertexCoords.clear();
286   EnfVertexCoords2ProjVertex.clear();
287   EnfVertexCoords2EnfVertexList.clear();
288
289   _compute_canceled = false;
290 }
291
292 //=============================================================================
293 /*!
294  *
295  */
296 //=============================================================================
297
298 BLSURFPlugin_BLSURF::~BLSURFPlugin_BLSURF()
299 {
300 }
301
302
303 //=============================================================================
304 /*!
305  *
306  */
307 //=============================================================================
308
309 bool BLSURFPlugin_BLSURF::CheckHypothesis
310                          (SMESH_Mesh&                          aMesh,
311                           const TopoDS_Shape&                  aShape,
312                           SMESH_Hypothesis::Hypothesis_Status& aStatus)
313 {
314   _hypothesis        = NULL;
315   _haveViscousLayers = false;
316
317   list<const SMESHDS_Hypothesis*>::const_iterator itl;
318   const SMESHDS_Hypothesis* theHyp;
319
320   const list<const SMESHDS_Hypothesis*>& hyps = GetUsedHypothesis(aMesh, aShape,
321                                                                   /*ignoreAuxiliary=*/false);
322   aStatus = SMESH_Hypothesis::HYP_OK;
323   if ( hyps.empty() )
324   {
325     return true;  // can work with no hypothesis
326   }
327
328   for ( itl = hyps.begin(); itl != hyps.end() && ( aStatus == HYP_OK ); ++itl )
329   {
330     theHyp = *itl;
331     string hypName = theHyp->GetName();
332     if ( hypName == BLSURFPlugin_Hypothesis::GetHypType(true) ||
333          hypName == BLSURFPlugin_Hypothesis::GetHypType(false) )
334     {
335       _hypothesis = static_cast<const BLSURFPlugin_Hypothesis*> (theHyp);
336       ASSERT(_hypothesis);
337       if ( _hypothesis->GetPhysicalMesh() == BLSURFPlugin_Hypothesis::DefaultSize &&
338            _hypothesis->GetGeometricMesh() == BLSURFPlugin_Hypothesis::DefaultGeom )
339         //  hphy_flag = 0 and hgeo_flag = 0 is not allowed (spec)
340         aStatus = SMESH_Hypothesis::HYP_BAD_PARAMETER;
341     }
342     else if ( hypName == StdMeshers_ViscousLayers2D::GetHypType() )
343     {
344       if ( !_haveViscousLayers )
345       {
346         if ( error( StdMeshers_ViscousLayers2D::CheckHypothesis( aMesh, aShape, aStatus )))
347           _haveViscousLayers = true;
348       }
349     }
350     else
351     {
352       aStatus = SMESH_Hypothesis::HYP_INCOMPATIBLE;
353     }
354   }
355   return aStatus == SMESH_Hypothesis::HYP_OK;
356 }
357
358 //=============================================================================
359 /*!
360  * Pass parameters to MG-CADSurf
361  */
362 //=============================================================================
363
364 inline std::string val_to_string(double d)
365 {
366    std::ostringstream o;
367    o << d;
368    return o.str();
369 }
370
371 inline std::string val_to_string_rel(double d)
372 {
373    std::ostringstream o;
374    o << d;
375    o << 'r';
376    return o.str();
377 }
378
379 inline std::string val_to_string(int i)
380 {
381    std::ostringstream o;
382    o << i;
383    return o.str();
384 }
385
386 inline std::string val_to_string_rel(int i)
387 {
388    std::ostringstream o;
389    o << i;
390    o << 'r';
391    return o.str();
392 }
393
394 double _smp_phy_size;
395 status_t size_on_surface(integer face_id, real *uv, real *size, void *user_data);
396 status_t size_on_edge(integer edge_id, real t, real *size, void *user_data);
397 status_t size_on_vertex(integer vertex_id, real *size, void *user_data);
398
399 typedef struct {
400         gp_XY uv;
401         gp_XYZ xyz;
402 } projectionPoint;
403
404 /////////////////////////////////////////////////////////
405
406 projectionPoint getProjectionPoint(TopoDS_Face& theFace, const gp_Pnt& thePoint)
407 {
408   projectionPoint myPoint;
409
410   if ( theFace.IsNull() )
411   {
412     TopoDS_Shape foundFace, myShape = theHelper->GetSubShape();
413     TopTools_MapOfShape checkedFaces;
414     std::map< double, std::pair< TopoDS_Face, gp_Pnt2d > > dist2face;
415
416     for ( TopExp_Explorer exp ( myShape, TopAbs_FACE ); exp.More(); exp.Next())
417     {
418       const TopoDS_Face& face = TopoDS::Face( exp.Current() );
419       if ( !checkedFaces.Add( face )) continue;
420
421       // check distance to face
422       Handle(ShapeAnalysis_Surface) surface = theHelper->GetSurface( face );
423       gp_Pnt2d uv = surface->ValueOfUV( thePoint, Precision::Confusion());
424       double distance = surface->Gap();
425       if ( distance > Precision::Confusion() )
426       {
427         // the face is far, store for future analysis
428         dist2face.insert( std::make_pair( distance, std::make_pair( face, uv )));
429       }
430       else
431       {
432         // check location on the face
433         BRepClass_FaceClassifier FC( face, uv, BRep_Tool::Tolerance( face ));
434         if ( FC.State() == TopAbs_IN )
435         {
436           if ( !foundFace.IsNull() )
437             return myPoint; // thePoint seems to be TopAbs_ON
438           foundFace   = face;
439           myPoint.uv  = uv.XY();
440           myPoint.xyz = surface->Value( uv ).XYZ();
441           // break;
442         }
443         if ( FC.State() == TopAbs_ON )
444           return myPoint;
445       }
446     }
447     if ( foundFace.IsNull() )
448     {
449       // find the closest face
450       std::map< double, std::pair< TopoDS_Face, gp_Pnt2d > >::iterator d2f = dist2face.begin();
451       for ( ; d2f != dist2face.end(); ++d2f )
452       {
453         const TopoDS_Face& face = d2f->second.first;
454         const gp_Pnt2d &     uv = d2f->second.second;
455         BRepClass_FaceClassifier FC( face, uv, Precision::Confusion());
456         if ( FC.State() == TopAbs_IN )
457         {
458           foundFace   = face;
459           myPoint.uv  = uv.XY();
460           myPoint.xyz = theHelper->GetSurface( face )->Value( uv ).XYZ();
461           break;
462         }
463       }
464     }
465     // set the resultShape
466     // if ( foundFace.IsNull() )
467     //   throw SMESH_ComputeError(COMPERR_BAD_PARMETERS,
468     //                            "getProjectionPoint: can't find a face by a vertex");
469     theFace = TopoDS::Face( foundFace );
470   }
471   else
472   {
473     Handle(Geom_Surface) surface = BRep_Tool::Surface( theFace );
474     GeomAPI_ProjectPointOnSurf projector( thePoint, surface );
475     if ( !projector.IsDone() || projector.NbPoints()==0 )
476       throw SMESH_ComputeError(COMPERR_BAD_PARMETERS,
477                                "getProjectionPoint: can't project a vertex to a face");
478
479     Standard_Real u,v;
480     projector.LowerDistanceParameters(u,v);
481     myPoint.uv = gp_XY(u,v);
482     gp_Pnt aPnt = projector.NearestPoint();
483     myPoint.xyz = gp_XYZ(aPnt.X(),aPnt.Y(),aPnt.Z());
484
485     BRepClass_FaceClassifier FC( theFace, myPoint.uv, Precision::Confusion());
486     if ( FC.State() != TopAbs_IN )
487       theFace.Nullify();
488   }
489
490   return myPoint;
491 }
492
493 /////////////////////////////////////////////////////////
494 TopoDS_Shape BLSURFPlugin_BLSURF::entryToShape(std::string entry)
495 {
496   GEOM::GEOM_Object_var aGeomObj;
497   TopoDS_Shape S = TopoDS_Shape();
498   SALOMEDS::SObject_var aSObj = SMESH_Gen_i::getStudyServant()->FindObjectID( entry.c_str() );
499   if (!aSObj->_is_nil()) {
500     CORBA::Object_var obj = aSObj->GetObject();
501     aGeomObj = GEOM::GEOM_Object::_narrow(obj);
502     aSObj->UnRegister();
503   }
504   if ( !aGeomObj->_is_nil() )
505     S = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( aGeomObj.in() );
506   return S;
507 }
508
509 void _createEnforcedVertexOnFace(TopoDS_Face faceShape, gp_Pnt aPnt, BLSURFPlugin_Hypothesis::TEnfVertex *enfVertex)
510 {
511   BLSURFPlugin_Hypothesis::TEnfVertexCoords enf_coords, coords, s_coords;
512
513   // Find the face and get the (u,v) values of the enforced vertex on the face
514   projectionPoint myPoint = getProjectionPoint(faceShape,aPnt);
515   if ( faceShape.IsNull() )
516     return;
517
518   enf_coords.push_back(aPnt.X());
519   enf_coords.push_back(aPnt.Y());
520   enf_coords.push_back(aPnt.Z());
521
522   coords.push_back(myPoint.uv.X());
523   coords.push_back(myPoint.uv.Y());
524   coords.push_back(myPoint.xyz.X());
525   coords.push_back(myPoint.xyz.Y());
526   coords.push_back(myPoint.xyz.Z());
527
528   s_coords.push_back(myPoint.xyz.X());
529   s_coords.push_back(myPoint.xyz.Y());
530   s_coords.push_back(myPoint.xyz.Z());
531
532   // Save pair projected vertex / enf vertex
533   EnfVertexCoords2ProjVertex[s_coords] = enf_coords;
534   pair<BLSURFPlugin_Hypothesis::TEnfVertexList::iterator,bool> ret;
535   BLSURFPlugin_Hypothesis::TEnfVertexList::iterator it;
536   ret = EnfVertexCoords2EnfVertexList[s_coords].insert(enfVertex);
537   if (ret.second == false) {
538     it = ret.first;
539     (*it)->grpName = enfVertex->grpName;
540   }
541
542   int key = 0;
543   if (! FacesWithEnforcedVertices.Contains(faceShape)) {
544     key = FacesWithEnforcedVertices.Add(faceShape);
545   }
546   else {
547     key = FacesWithEnforcedVertices.FindIndex(faceShape);
548   }
549
550   // If a node is already created by an attractor, do not create enforced vertex
551   int attractorKey = FacesWithSizeMap.FindIndex(faceShape);
552   bool sameAttractor = false;
553   if (attractorKey >= 0)
554     if (FaceId2AttractorCoords.count(attractorKey) > 0)
555       if (FaceId2AttractorCoords[attractorKey] == coords)
556         sameAttractor = true;
557
558   if (FaceId2EnforcedVertexCoords.find(key) != FaceId2EnforcedVertexCoords.end()) {
559     if (! sameAttractor)
560       FaceId2EnforcedVertexCoords[key].insert(coords); // there should be no redondant coords here (see std::set management)
561   }
562   else {
563     if (! sameAttractor) {
564       BLSURFPlugin_Hypothesis::TEnfVertexCoordsList ens;
565       ens.insert(coords);
566       FaceId2EnforcedVertexCoords[key] = ens;
567     }
568   }
569 }
570   
571 /////////////////////////////////////////////////////////
572 void BLSURFPlugin_BLSURF::createEnforcedVertexOnFace(TopoDS_Shape faceShape, BLSURFPlugin_Hypothesis::TEnfVertexList enfVertexList)
573 {
574   BLSURFPlugin_Hypothesis::TEnfVertex* enfVertex;
575   gp_Pnt aPnt;
576
577   BLSURFPlugin_Hypothesis::TEnfVertexList::const_iterator enfVertexListIt = enfVertexList.begin();
578
579   for( ; enfVertexListIt != enfVertexList.end() ; ++enfVertexListIt ) {
580     enfVertex = *enfVertexListIt;
581     // Case of manual coords
582     if (enfVertex->coords.size() != 0) {
583       aPnt.SetCoord(enfVertex->coords[0],enfVertex->coords[1],enfVertex->coords[2]);
584       _createEnforcedVertexOnFace( TopoDS::Face(faceShape),  aPnt, enfVertex);
585     }
586
587     // Case of geom vertex coords
588     if (enfVertex->geomEntry != "") {
589       TopoDS_Shape GeomShape = entryToShape(enfVertex->geomEntry);
590       TopAbs_ShapeEnum GeomType  = GeomShape.ShapeType();
591        if (GeomType == TopAbs_VERTEX)
592        {
593          enfVertex->vertex = TopoDS::Vertex( GeomShape );
594          aPnt = BRep_Tool::Pnt( enfVertex->vertex );
595          _createEnforcedVertexOnFace( TopoDS::Face(faceShape),  aPnt, enfVertex);
596        }
597        // Group Management
598        if (GeomType == TopAbs_COMPOUND)
599        {
600          for (TopoDS_Iterator it (GeomShape); it.More(); it.Next())
601            if (it.Value().ShapeType() == TopAbs_VERTEX)
602            {
603              enfVertex->vertex = TopoDS::Vertex( it.Value() );
604              aPnt = BRep_Tool::Pnt( enfVertex->vertex );
605              _createEnforcedVertexOnFace( TopoDS::Face(faceShape),  aPnt, enfVertex);
606            }
607        }
608     }
609   }
610 }
611
612 /////////////////////////////////////////////////////////
613 void createAttractorOnFace(TopoDS_Shape GeomShape, std::string AttractorFunction, double defaultSize)
614 {
615   double xa, ya, za; // Coordinates of attractor point
616   double a, b;       // Attractor parameter
617   double d = 0.;
618   bool createNode=false; // To create a node on attractor projection
619   size_t pos1, pos2;
620   const char *sep = ";";
621   // atIt->second has the following pattern:
622   // ATTRACTOR(xa;ya;za;a;b;True|False;d)
623   // where:
624   // xa;ya;za : coordinates of  attractor
625   // a        : desired size on attractor
626   // b        : distance of influence of attractor
627   // d        : distance until which the size remains constant
628   //
629   // We search the parameters in the string
630   // xa
631   pos1 = AttractorFunction.find(sep);
632   if (pos1!=string::npos)
633   xa = atof(AttractorFunction.substr(10, pos1-10).c_str());
634   // ya
635   pos2 = AttractorFunction.find(sep, pos1+1);
636   if (pos2!=string::npos) {
637   ya = atof(AttractorFunction.substr(pos1+1, pos2-pos1-1).c_str());
638   pos1 = pos2;
639   }
640   // za
641   pos2 = AttractorFunction.find(sep, pos1+1);
642   if (pos2!=string::npos) {
643   za = atof(AttractorFunction.substr(pos1+1, pos2-pos1-1).c_str());
644   pos1 = pos2;
645   }
646   // a
647   pos2 = AttractorFunction.find(sep, pos1+1);
648   if (pos2!=string::npos) {
649   a = atof(AttractorFunction.substr(pos1+1, pos2-pos1-1).c_str());
650   pos1 = pos2;
651   }
652   // b
653   pos2 = AttractorFunction.find(sep, pos1+1);
654   if (pos2!=string::npos) {
655   b = atof(AttractorFunction.substr(pos1+1, pos2-pos1-1).c_str());
656   pos1 = pos2;
657   }
658   // createNode
659   pos2 = AttractorFunction.find(sep, pos1+1);
660   if (pos2!=string::npos) {
661     string createNodeStr = AttractorFunction.substr(pos1+1, pos2-pos1-1);
662     createNode = (AttractorFunction.substr(pos1+1, pos2-pos1-1) == "True");
663     pos1=pos2;
664   }
665   // d
666   pos2 = AttractorFunction.find(")");
667   if (pos2!=string::npos) {
668   d = atof(AttractorFunction.substr(pos1+1, pos2-pos1-1).c_str());
669   }
670
671   // Get the (u,v) values of the attractor on the face
672   projectionPoint myPoint = getProjectionPoint(TopoDS::Face(GeomShape),gp_Pnt(xa,ya,za));
673   gp_XY uvPoint = myPoint.uv;
674   gp_XYZ xyzPoint = myPoint.xyz;
675   Standard_Real u0 = uvPoint.X();
676   Standard_Real v0 = uvPoint.Y();
677   Standard_Real x0 = xyzPoint.X();
678   Standard_Real y0 = xyzPoint.Y();
679   Standard_Real z0 = xyzPoint.Z();
680   std::vector<double> coords;
681   coords.push_back(u0);
682   coords.push_back(v0);
683   coords.push_back(x0);
684   coords.push_back(y0);
685   coords.push_back(z0);
686   // We construct the python function
687   ostringstream attractorFunctionStream;
688   attractorFunctionStream << "def f(u,v): return ";
689   attractorFunctionStream << defaultSize << "-(" << defaultSize <<"-" << a << ")";
690   //attractorFunctionStream << "*exp(-((u-("<<u0<<"))*(u-("<<u0<<"))+(v-("<<v0<<"))*(v-("<<v0<<")))/(" << b << "*" << b <<"))";
691   // rnc: make possible to keep the size constant until
692   // a defined distance. Distance is expressed as the positiv part
693   // of r-d where r is the distance to (u0,v0)
694   attractorFunctionStream << "*exp(-(0.5*(sqrt((u-"<<u0<<")**2+(v-"<<v0<<")**2)-"<<d<<"+abs(sqrt((u-"<<u0<<")**2+(v-"<<v0<<")**2)-"<<d<<"))/(" << b << "))**2)";
695
696   int key;
697   if (! FacesWithSizeMap.Contains(TopoDS::Face(GeomShape))) {
698     key = FacesWithSizeMap.Add(TopoDS::Face(GeomShape));
699   }
700   else {
701     key = FacesWithSizeMap.FindIndex(TopoDS::Face(GeomShape));
702   }
703   FaceId2SizeMap[key] =attractorFunctionStream.str();
704   if (createNode) {
705     FaceId2AttractorCoords[key] = coords;
706   }
707 //   // Test for new attractors
708 //   gp_Pnt myP(xyzPoint);
709 //   TopoDS_Vertex myV = BRepBuilderAPI_MakeVertex(myP);
710 //   BLSURFPlugin_Attractor myAttractor(TopoDS::Face(GeomShape),myV,200);
711 //   myAttractor.SetParameters(a, defaultSize, b, d);
712 //   myAttractor.SetType(1);
713 //   FaceId2ClassAttractor[key] = myAttractor;
714 //   if(FaceId2ClassAttractor[key].GetFace().IsNull()){
715 //   }
716 }
717
718 // One sub-shape to get ids from
719 BLSURFPlugin_BLSURF::TListOfIDs _getSubShapeIDsInMainShape(const TopoDS_Shape& theMainShape,
720                                                            const TopoDS_Shape& theSubShape,
721                                                            TopAbs_ShapeEnum    theShapeType)
722 {
723   BLSURFPlugin_BLSURF::TListOfIDs face_ids;
724
725   TopTools_MapOfShape subShapes;
726   TopTools_IndexedMapOfShape anIndices;
727   TopExp::MapShapes(theMainShape, theShapeType, anIndices);
728
729   for (TopExp_Explorer face_iter(theSubShape,theShapeType);face_iter.More();face_iter.Next())
730   {
731     if ( subShapes.Add( face_iter.Current() )) // issue 23416
732     {
733       int face_id = anIndices.FindIndex( face_iter.Current() );
734       if ( face_id == 0 )
735         throw SALOME_Exception( "Periodicity: sub_shape not found in main_shape");
736       face_ids.push_back( face_id );
737     }
738   }
739   return face_ids;
740 }
741
742 BLSURFPlugin_BLSURF::TListOfIDs _getSubShapeIDsInMainShape(SMESH_Mesh*      theMesh,
743                                                            TopoDS_Shape     theSubShape,
744                                                            TopAbs_ShapeEnum theShapeType)
745 {
746   BLSURFPlugin_BLSURF::TListOfIDs face_ids;
747
748   for (TopExp_Explorer face_iter(theSubShape,theShapeType);face_iter.More();face_iter.Next())
749   {
750     int face_id = theMesh->GetMeshDS()->ShapeToIndex(face_iter.Current());
751     if (face_id == 0)
752       throw SALOME_Exception ( "Periodicity: sub_shape not found in main_shape");
753     face_ids.push_back(face_id);
754   }
755
756   return face_ids;
757 }
758
759 void BLSURFPlugin_BLSURF::addCoordsFromVertices(const std::vector<std::string> &theVerticesEntries, std::vector<double> &theVerticesCoords)
760 {
761   for (std::vector<std::string>::const_iterator it = theVerticesEntries.begin(); it != theVerticesEntries.end(); it++)
762   {
763     BLSURFPlugin_Hypothesis::TEntry theVertexEntry = *it;
764     addCoordsFromVertex(theVertexEntry, theVerticesCoords);
765   }
766 }
767
768
769 void BLSURFPlugin_BLSURF::addCoordsFromVertex(BLSURFPlugin_Hypothesis::TEntry theVertexEntry, std::vector<double> &theVerticesCoords)
770 {
771   if (theVertexEntry!="")
772   {
773     TopoDS_Shape aShape = entryToShape(theVertexEntry);
774
775     gp_Pnt aPnt = BRep_Tool::Pnt( TopoDS::Vertex( aShape ) );
776     double theX, theY, theZ;
777     theX = aPnt.X();
778     theY = aPnt.Y();
779     theZ = aPnt.Z();
780
781     theVerticesCoords.push_back(theX);
782     theVerticesCoords.push_back(theY);
783     theVerticesCoords.push_back(theZ);
784   }
785 }
786
787 /////////////////////////////////////////////////////////
788 void BLSURFPlugin_BLSURF::createPreCadFacesPeriodicity(TopoDS_Shape theGeomShape, const BLSURFPlugin_Hypothesis::TPreCadPeriodicity &preCadPeriodicity)
789 {
790   TopoDS_Shape geomShape1 = entryToShape(preCadPeriodicity.shape1Entry);
791   TopoDS_Shape geomShape2 = entryToShape(preCadPeriodicity.shape2Entry);
792
793   TListOfIDs theFace1_ids = _getSubShapeIDsInMainShape(theGeomShape, geomShape1, TopAbs_FACE);
794   TListOfIDs theFace2_ids = _getSubShapeIDsInMainShape(theGeomShape, geomShape2, TopAbs_FACE);
795
796   TPreCadPeriodicityIDs preCadFacesPeriodicityIDs;
797   preCadFacesPeriodicityIDs.shape1IDs = theFace1_ids;
798   preCadFacesPeriodicityIDs.shape2IDs = theFace2_ids;
799
800   addCoordsFromVertices(preCadPeriodicity.theSourceVerticesEntries, preCadFacesPeriodicityIDs.theSourceVerticesCoords);
801   addCoordsFromVertices(preCadPeriodicity.theTargetVerticesEntries, preCadFacesPeriodicityIDs.theTargetVerticesCoords);
802
803   _preCadFacesIDsPeriodicityVector.push_back(preCadFacesPeriodicityIDs);
804 }
805
806 /////////////////////////////////////////////////////////
807 void BLSURFPlugin_BLSURF::createPreCadEdgesPeriodicity(TopoDS_Shape theGeomShape, const BLSURFPlugin_Hypothesis::TPreCadPeriodicity &preCadPeriodicity)
808 {
809   TopoDS_Shape geomShape1 = entryToShape(preCadPeriodicity.shape1Entry);
810   TopoDS_Shape geomShape2 = entryToShape(preCadPeriodicity.shape2Entry);
811
812   TListOfIDs theEdge1_ids = _getSubShapeIDsInMainShape(theGeomShape, geomShape1, TopAbs_EDGE);
813   TListOfIDs theEdge2_ids = _getSubShapeIDsInMainShape(theGeomShape, geomShape2, TopAbs_EDGE);
814
815   TPreCadPeriodicityIDs preCadEdgesPeriodicityIDs;
816   preCadEdgesPeriodicityIDs.shape1IDs = theEdge1_ids;
817   preCadEdgesPeriodicityIDs.shape2IDs = theEdge2_ids;
818
819   addCoordsFromVertices(preCadPeriodicity.theSourceVerticesEntries, preCadEdgesPeriodicityIDs.theSourceVerticesCoords);
820   addCoordsFromVertices(preCadPeriodicity.theTargetVerticesEntries, preCadEdgesPeriodicityIDs.theTargetVerticesCoords);
821
822   _preCadEdgesIDsPeriodicityVector.push_back(preCadEdgesPeriodicityIDs);
823 }
824
825
826 /////////////////////////////////////////////////////////
827
828 void BLSURFPlugin_BLSURF::SetParameters(const BLSURFPlugin_Hypothesis* hyp,
829                                         cadsurf_session_t *            css,
830                                         const TopoDS_Shape&            theGeomShape)
831 {
832   // rnc : Bug 1457
833   // Clear map so that it is not stored in the algorithm with old enforced vertices in it
834   FacesWithSizeMap.Clear();
835   FaceId2SizeMap.clear();
836   EdgesWithSizeMap.Clear();
837   EdgeId2SizeMap.clear();
838   VerticesWithSizeMap.Clear();
839   VertexId2SizeMap.clear();
840   FaceId2PythonSmp.clear();
841   EdgeId2PythonSmp.clear();
842   VertexId2PythonSmp.clear();
843   FaceId2AttractorCoords.clear();
844   FaceId2ClassAttractor.clear();
845   FaceIndex2ClassAttractor.clear();
846   FacesWithEnforcedVertices.Clear();
847   FaceId2EnforcedVertexCoords.clear();
848   EnfVertexCoords2ProjVertex.clear();
849   EnfVertexCoords2EnfVertexList.clear();
850
851   double diagonal               = SMESH_Mesh::GetShapeDiagonalSize( theGeomShape );
852   double bbSegmentation         = _gen->GetBoundaryBoxSegmentation();
853   int    _physicalMesh          = BLSURFPlugin_Hypothesis::GetDefaultPhysicalMesh();
854   int    _geometricMesh         = BLSURFPlugin_Hypothesis::GetDefaultGeometricMesh();
855   double _phySize               = BLSURFPlugin_Hypothesis::GetDefaultPhySize(diagonal, bbSegmentation);
856   bool   _phySizeRel            = BLSURFPlugin_Hypothesis::GetDefaultPhySizeRel();
857   double _minSize               = BLSURFPlugin_Hypothesis::GetDefaultMinSize(diagonal);
858   bool   _minSizeRel            = BLSURFPlugin_Hypothesis::GetDefaultMinSizeRel();
859   double _maxSize               = BLSURFPlugin_Hypothesis::GetDefaultMaxSize(diagonal);
860   bool   _maxSizeRel            = BLSURFPlugin_Hypothesis::GetDefaultMaxSizeRel();
861   double _use_gradation         = BLSURFPlugin_Hypothesis::GetDefaultUseGradation();
862   double _gradation             = BLSURFPlugin_Hypothesis::GetDefaultGradation();
863   double _use_volume_gradation  = BLSURFPlugin_Hypothesis::GetDefaultUseVolumeGradation();
864   double _volume_gradation      = BLSURFPlugin_Hypothesis::GetDefaultVolumeGradation();
865   BLSURFPlugin_Hypothesis::ElementType _elementType = BLSURFPlugin_Hypothesis::GetDefaultElementType();
866   double _angleMesh             = BLSURFPlugin_Hypothesis::GetDefaultAngleMesh();
867   double _chordalError          = BLSURFPlugin_Hypothesis::GetDefaultChordalError(diagonal);
868   bool   _anisotropic           = BLSURFPlugin_Hypothesis::GetDefaultAnisotropic();
869   double _anisotropicRatio      = BLSURFPlugin_Hypothesis::GetDefaultAnisotropicRatio();
870   bool   _removeTinyEdges       = BLSURFPlugin_Hypothesis::GetDefaultRemoveTinyEdges();
871   double _tinyEdgeLength        = BLSURFPlugin_Hypothesis::GetDefaultTinyEdgeLength(diagonal);
872   bool   _optimiseTinyEdges     = BLSURFPlugin_Hypothesis::GetDefaultOptimiseTinyEdges();
873   double _tinyEdgeOptimisLength = BLSURFPlugin_Hypothesis::GetDefaultTinyEdgeOptimisationLength(diagonal);
874   bool   _correctSurfaceIntersec= BLSURFPlugin_Hypothesis::GetDefaultCorrectSurfaceIntersection();
875   double _corrSurfaceIntersCost = BLSURFPlugin_Hypothesis::GetDefaultCorrectSurfaceIntersectionMaxCost();
876   bool   _badElementRemoval     = BLSURFPlugin_Hypothesis::GetDefaultBadElementRemoval();
877   double _badElementAspectRatio = BLSURFPlugin_Hypothesis::GetDefaultBadElementAspectRatio();
878   bool   _optimizeMesh          = BLSURFPlugin_Hypothesis::GetDefaultOptimizeMesh();
879   bool   _quadraticMesh         = BLSURFPlugin_Hypothesis::GetDefaultQuadraticMesh();
880   int    _verb                  = BLSURFPlugin_Hypothesis::GetDefaultVerbosity();
881   //int    _topology              = BLSURFPlugin_Hypothesis::GetDefaultTopology();
882
883   // PreCAD
884   //int _precadMergeEdges         = BLSURFPlugin_Hypothesis::GetDefaultPreCADMergeEdges();
885   //int _precadRemoveDuplicateCADFaces = BLSURFPlugin_Hypothesis::GetDefaultPreCADRemoveDuplicateCADFaces();
886   //int _precadProcess3DTopology  = BLSURFPlugin_Hypothesis::GetDefaultPreCADProcess3DTopology();
887   //int _precadDiscardInput       = BLSURFPlugin_Hypothesis::GetDefaultPreCADDiscardInput();
888
889   const BLSURFPlugin_Hypothesis::TPreCadPeriodicityVector preCadFacesPeriodicityVector = BLSURFPlugin_Hypothesis::GetPreCadFacesPeriodicityVector(hyp);
890
891   if (hyp) {
892     _physicalMesh  = (int) hyp->GetPhysicalMesh();
893     _geometricMesh = (int) hyp->GetGeometricMesh();
894     if (hyp->GetPhySize() > 0) {
895       _phySize       = hyp->GetPhySize();
896       // if user size is not explicitly specified, "relative" flag is ignored
897       _phySizeRel    = hyp->IsPhySizeRel();
898     }
899     if (hyp->GetMinSize() > 0) {
900       _minSize       = hyp->GetMinSize();
901       // if min size is not explicitly specified, "relative" flag is ignored
902       _minSizeRel    = hyp->IsMinSizeRel();
903     }
904     if (hyp->GetMaxSize() > 0) {
905       _maxSize       = hyp->GetMaxSize();
906       // if max size is not explicitly specified, "relative" flag is ignored
907       _maxSizeRel    = hyp->IsMaxSizeRel();
908     }
909     _use_gradation = hyp->GetUseGradation();
910     if (hyp->GetGradation() > 0 && _use_gradation)
911       _gradation     = hyp->GetGradation();
912     _use_volume_gradation    = hyp->GetUseVolumeGradation();
913     if (hyp->GetVolumeGradation() > 0 && _use_volume_gradation )
914       _volume_gradation      = hyp->GetVolumeGradation();
915     _elementType     = hyp->GetElementType();
916     if (hyp->GetAngleMesh() > 0)
917       _angleMesh     = hyp->GetAngleMesh();
918     if (hyp->GetChordalError() > 0)
919       _chordalError          = hyp->GetChordalError();
920     _anisotropic             = hyp->GetAnisotropic();
921     if (hyp->GetAnisotropicRatio() >= 0)
922       _anisotropicRatio      = hyp->GetAnisotropicRatio();
923     _removeTinyEdges         = hyp->GetRemoveTinyEdges();
924     if (hyp->GetTinyEdgeLength() > 0)
925       _tinyEdgeLength        = hyp->GetTinyEdgeLength();
926     _optimiseTinyEdges       = hyp->GetOptimiseTinyEdges();
927     if (hyp->GetTinyEdgeOptimisationLength() > 0)
928       _tinyEdgeOptimisLength = hyp->GetTinyEdgeOptimisationLength();
929     _correctSurfaceIntersec  = hyp->GetCorrectSurfaceIntersection();
930     if (hyp->GetCorrectSurfaceIntersectionMaxCost() > 0)
931       _corrSurfaceIntersCost = hyp->GetCorrectSurfaceIntersectionMaxCost();
932     _badElementRemoval       = hyp->GetBadElementRemoval();
933     if (hyp->GetBadElementAspectRatio() >= 0)
934       _badElementAspectRatio = hyp->GetBadElementAspectRatio();
935     _optimizeMesh  = hyp->GetOptimizeMesh();
936     _quadraticMesh = hyp->GetQuadraticMesh();
937     _verb          = hyp->GetVerbosity();
938     //_topology      = (int) hyp->GetTopology();
939     // PreCAD
940     //_precadMergeEdges        = hyp->GetPreCADMergeEdges();
941     //_precadRemoveDuplicateCADFaces = hyp->GetPreCADRemoveDuplicateCADFaces();
942     //_precadProcess3DTopology = hyp->GetPreCADProcess3DTopology();
943     //_precadDiscardInput      = hyp->GetPreCADDiscardInput();
944
945     const BLSURFPlugin_Hypothesis::TOptionValues& opts = hyp->GetOptionValues();
946     BLSURFPlugin_Hypothesis::TOptionValues::const_iterator opIt;
947     for ( opIt = opts.begin(); opIt != opts.end(); ++opIt ){
948       MESSAGE("OptionValue: " << opIt->first.c_str() << ", value: " << opIt->second.c_str());
949       if ( !opIt->second.empty() ) {
950         // With MeshGems 2.4-5, there are issues with periodicity and multithread
951         // => As a temporary workaround, we enforce to use only one thread if periodicity is used.
952         if (opIt->first == "max_number_of_threads" && opIt->second != "1" && ! preCadFacesPeriodicityVector.empty()){
953           std::cout << "INFO: Disabling multithread to avoid periodicity issues" << std::endl;
954           set_param(css, opIt->first.c_str(), "1");
955         }
956         else
957           set_param(css, opIt->first.c_str(), opIt->second.c_str());
958       }
959     }
960
961     const BLSURFPlugin_Hypothesis::TOptionValues& custom_opts = hyp->GetCustomOptionValues();
962     for ( opIt = custom_opts.begin(); opIt != custom_opts.end(); ++opIt )
963       if ( !opIt->second.empty() ) {
964         set_param(css, opIt->first.c_str(), opIt->second.c_str());
965       }
966
967     const BLSURFPlugin_Hypothesis::TOptionValues& preCADopts = hyp->GetPreCADOptionValues();
968     for ( opIt = preCADopts.begin(); opIt != preCADopts.end(); ++opIt )
969       if ( !opIt->second.empty() ) {
970         set_param(css, opIt->first.c_str(), opIt->second.c_str());
971       }
972   }
973
974   if ( BLSURFPlugin_Hypothesis::HasPreCADOptions( hyp ))
975   {
976     cadsurf_set_param(css, "use_precad", "yes" ); // for old versions
977   }
978   // PreProcessor (formerly PreCAD) -- commented params are preCADoptions (since 0023307)
979   //set_param(css, "merge_edges",            _precadMergeEdges ? "yes" : "no");
980   //set_param(css, "remove_duplicate_cad_faces", _precadRemoveDuplicateCADFaces ? "yes" : "no");
981   //set_param(css, "process_3d_topology",    _precadProcess3DTopology ? "1" : "0");
982   //set_param(css, "discard_input_topology", _precadDiscardInput ? "1" : "0");
983   //set_param(css, "max_number_of_points_per_patch", "1000000");
984   
985    bool useGradation = false;
986    switch (_physicalMesh)
987    {
988      case BLSURFPlugin_Hypothesis::PhysicalGlobalSize:
989        set_param(css, "physical_size_mode", "global");
990        set_param(css, "global_physical_size", _phySizeRel ? val_to_string_rel(_phySize).c_str() : val_to_string(_phySize).c_str());
991        break;
992      case BLSURFPlugin_Hypothesis::PhysicalLocalSize:
993        set_param(css, "physical_size_mode", "local");
994        set_param(css, "global_physical_size", _phySizeRel ? val_to_string_rel(_phySize).c_str() : val_to_string(_phySize).c_str());
995        useGradation = true;
996        break;
997      default:
998        set_param(css, "physical_size_mode", "none");
999    }
1000
1001    switch (_geometricMesh)
1002    {
1003      case BLSURFPlugin_Hypothesis::GeometricalGlobalSize:
1004        set_param(css, "geometric_size_mode", "global");
1005        set_param(css, "geometric_approximation", val_to_string(_angleMesh).c_str());
1006        set_param(css, "chordal_error", val_to_string(_chordalError).c_str());
1007        useGradation = true;
1008        break;
1009      case BLSURFPlugin_Hypothesis::GeometricalLocalSize:
1010        set_param(css, "geometric_size_mode", "local");
1011        set_param(css, "geometric_approximation", val_to_string(_angleMesh).c_str());
1012        set_param(css, "chordal_error", val_to_string(_chordalError).c_str());
1013        useGradation = true;
1014        break;
1015      default:
1016        set_param(css, "geometric_size_mode", "none");
1017    }
1018
1019    if ( hyp && hyp->GetPhySize() > 0 ) {
1020      // user size is explicitly specified via hypothesis parameters
1021      // min and max sizes should be compared with explicitly specified user size
1022      // - compute absolute min size
1023      double mins = _minSizeRel ? _minSize * diagonal : _minSize;
1024      // - min size should not be greater than user size
1025      if ( _phySize < mins )
1026        set_param(css, "min_size", _phySizeRel ? val_to_string_rel(_phySize).c_str() : val_to_string(_phySize).c_str());
1027      else
1028        set_param(css, "min_size", _minSizeRel ? val_to_string_rel(_minSize).c_str() : val_to_string(_minSize).c_str());
1029      // - compute absolute max size
1030      double maxs = _maxSizeRel ? _maxSize * diagonal : _maxSize;
1031      // - max size should not be less than user size
1032      if ( _phySize > maxs )
1033        set_param(css, "max_size", _phySizeRel ? val_to_string_rel(_phySize).c_str() : val_to_string(_phySize).c_str());
1034      else
1035        set_param(css, "max_size", _maxSizeRel ? val_to_string_rel(_maxSize).c_str() : val_to_string(_maxSize).c_str());
1036    }
1037    else {
1038      // user size is not explicitly specified
1039      // - if minsize is not explicitly specified, we pass default value computed automatically, in this case "relative" flag is ignored
1040      set_param(css, "min_size", _minSizeRel ? val_to_string_rel(_minSize).c_str() : val_to_string(_minSize).c_str());
1041      // - if maxsize is not explicitly specified, we pass default value computed automatically, in this case "relative" flag is ignored
1042      set_param(css, "max_size", _maxSizeRel ? val_to_string_rel(_maxSize).c_str() : val_to_string(_maxSize).c_str());
1043    }
1044    // anisotropic and quadrangle mesh requires disabling gradation
1045    if ( _anisotropic && _elementType != BLSURFPlugin_Hypothesis::Triangles )
1046      useGradation = false; // limitation of V1.3
1047    if ( useGradation && _use_gradation )
1048      set_param(css, "gradation",                       val_to_string(_gradation).c_str());
1049    if ( useGradation && _use_volume_gradation )
1050      set_param(css, "volume_gradation",                val_to_string(_volume_gradation).c_str());
1051
1052    // New since MeshGems 2.5: add full_quad
1053    const char * element_generation = "";
1054    switch ( _elementType )
1055    {
1056      case BLSURFPlugin_Hypothesis::Triangles:
1057        element_generation = "triangle";
1058        break;
1059      case BLSURFPlugin_Hypothesis::QuadrangleDominant:
1060        element_generation = "quad_dominant";
1061        break;
1062      case BLSURFPlugin_Hypothesis::Quadrangles:
1063        element_generation = "full_quad";
1064        break;
1065      default: ;
1066    }
1067    set_param(css, "element_generation",                element_generation);
1068
1069
1070    set_param(css, "metric",                            _anisotropic ? "anisotropic" : "isotropic");
1071    if ( _anisotropic )
1072      set_param(css, "anisotropic_ratio",                 val_to_string(_anisotropicRatio).c_str());
1073    set_param(css, "remove_tiny_edges",                 _removeTinyEdges ? "1" : "0");
1074    if ( _removeTinyEdges )
1075      set_param(css, "tiny_edge_length",                  val_to_string(_tinyEdgeLength).c_str());
1076    set_param(css, "optimise_tiny_edges",               _optimiseTinyEdges ? "1" : "0");
1077    if ( _optimiseTinyEdges )
1078      set_param(css, "tiny_edge_optimisation_length",   val_to_string(_tinyEdgeOptimisLength).c_str());
1079    set_param(css, "correct_surface_intersections",     _correctSurfaceIntersec ? "1" : "0");
1080    if ( _correctSurfaceIntersec )
1081      set_param(css, "surface_intersections_processing_max_cost", val_to_string(_corrSurfaceIntersCost ).c_str());
1082    set_param(css, "force_bad_surface_element_removal", _badElementRemoval ? "1" : "0");
1083    if ( _badElementRemoval )
1084      set_param(css, "bad_surface_element_aspect_ratio",  val_to_string(_badElementAspectRatio).c_str());
1085    set_param(css, "optimisation",                      _optimizeMesh ? "yes" : "no");
1086    set_param(css, "element_order",                     _quadraticMesh ? "quadratic" : "linear");
1087    set_param(css, "verbose",                           val_to_string(_verb).c_str());
1088
1089    _smp_phy_size = _phySizeRel ? _phySize*diagonal : _phySize;
1090    if ( _verb > 0 )
1091      std::cout << "_smp_phy_size = " << _smp_phy_size << std::endl;
1092
1093    if (_physicalMesh == BLSURFPlugin_Hypothesis::PhysicalLocalSize)
1094    {
1095     TopoDS_Shape GeomShape;
1096     TopoDS_Shape AttShape;
1097     TopAbs_ShapeEnum GeomType;
1098     //
1099     // Standard Size Maps
1100     //
1101     const BLSURFPlugin_Hypothesis::TSizeMap sizeMaps = BLSURFPlugin_Hypothesis::GetSizeMapEntries(hyp);
1102     BLSURFPlugin_Hypothesis::TSizeMap::const_iterator smIt = sizeMaps.begin();
1103     for ( ; smIt != sizeMaps.end(); ++smIt ) {
1104       if ( !smIt->second.empty() ) {
1105         GeomShape = entryToShape(smIt->first);
1106         GeomType  = GeomShape.ShapeType();
1107         int key = -1;
1108         // Group Management
1109         if (GeomType == TopAbs_COMPOUND) {
1110           for (TopoDS_Iterator it (GeomShape); it.More(); it.Next()){
1111             // Group of faces
1112             if (it.Value().ShapeType() == TopAbs_FACE){
1113               HasSizeMapOnFace = true;
1114               if (! FacesWithSizeMap.Contains(TopoDS::Face(it.Value()))) {
1115                 key = FacesWithSizeMap.Add(TopoDS::Face(it.Value()));
1116               }
1117               else {
1118                 key = FacesWithSizeMap.FindIndex(TopoDS::Face(it.Value()));
1119               }
1120               FaceId2SizeMap[key] = smIt->second;
1121             }
1122             // Group of edges
1123             if (it.Value().ShapeType() == TopAbs_EDGE){
1124               HasSizeMapOnEdge = true;
1125               HasSizeMapOnFace = true;
1126               if (! EdgesWithSizeMap.Contains(TopoDS::Edge(it.Value()))) {
1127                 key = EdgesWithSizeMap.Add(TopoDS::Edge(it.Value()));
1128               }
1129               else {
1130                 key = EdgesWithSizeMap.FindIndex(TopoDS::Edge(it.Value()));
1131               }
1132               EdgeId2SizeMap[key] = smIt->second;
1133             }
1134             // Group of vertices
1135             if (it.Value().ShapeType() == TopAbs_VERTEX){
1136               HasSizeMapOnVertex = true;
1137               HasSizeMapOnEdge = true;
1138               HasSizeMapOnFace = true;
1139               if (! VerticesWithSizeMap.Contains(TopoDS::Vertex(it.Value()))) {
1140                 key = VerticesWithSizeMap.Add(TopoDS::Vertex(it.Value()));
1141               }
1142               else {
1143                 key = VerticesWithSizeMap.FindIndex(TopoDS::Vertex(it.Value()));
1144               }
1145               VertexId2SizeMap[key] = smIt->second;
1146             }
1147           }
1148         }
1149         // Single face
1150         if (GeomType == TopAbs_FACE){
1151           HasSizeMapOnFace = true;
1152           if (! FacesWithSizeMap.Contains(TopoDS::Face(GeomShape))) {
1153             key = FacesWithSizeMap.Add(TopoDS::Face(GeomShape));
1154           }
1155           else {
1156             key = FacesWithSizeMap.FindIndex(TopoDS::Face(GeomShape));
1157           }
1158           FaceId2SizeMap[key] = smIt->second;
1159         }
1160         // Single edge
1161         if (GeomType == TopAbs_EDGE){
1162           HasSizeMapOnEdge = true;
1163           HasSizeMapOnFace = true;
1164           if (! EdgesWithSizeMap.Contains(TopoDS::Edge(GeomShape))) {
1165             key = EdgesWithSizeMap.Add(TopoDS::Edge(GeomShape));
1166           }
1167           else {
1168             key = EdgesWithSizeMap.FindIndex(TopoDS::Edge(GeomShape));
1169           }
1170           EdgeId2SizeMap[key] = smIt->second;
1171         }
1172         // Single vertex
1173         if (GeomType == TopAbs_VERTEX){
1174           HasSizeMapOnVertex = true;
1175           HasSizeMapOnEdge   = true;
1176           HasSizeMapOnFace   = true;
1177           if (! VerticesWithSizeMap.Contains(TopoDS::Vertex(GeomShape))) {
1178             key = VerticesWithSizeMap.Add(TopoDS::Vertex(GeomShape));
1179           }
1180           else {
1181             key = VerticesWithSizeMap.FindIndex(TopoDS::Vertex(GeomShape));
1182           }
1183           VertexId2SizeMap[key] = smIt->second;
1184         }
1185       }
1186     }
1187
1188     //
1189     // Attractors
1190     //
1191     // TODO appeler le constructeur des attracteurs directement ici
1192 //     if ( !_phySizeRel ) {
1193       const BLSURFPlugin_Hypothesis::TSizeMap attractors = BLSURFPlugin_Hypothesis::GetAttractorEntries(hyp);
1194       BLSURFPlugin_Hypothesis::TSizeMap::const_iterator atIt = attractors.begin();
1195       for ( ; atIt != attractors.end(); ++atIt ) {
1196         if ( !atIt->second.empty() ) {
1197           GeomShape = entryToShape(atIt->first);
1198           GeomType  = GeomShape.ShapeType();
1199           // Group Management
1200           if (GeomType == TopAbs_COMPOUND){
1201             for (TopoDS_Iterator it (GeomShape); it.More(); it.Next()){
1202               if (it.Value().ShapeType() == TopAbs_FACE){
1203                 HasSizeMapOnFace = true;
1204                 createAttractorOnFace(it.Value(), atIt->second, _phySizeRel ? _phySize*diagonal : _phySize);
1205               }
1206             }
1207           }
1208
1209           if (GeomType == TopAbs_FACE){
1210             HasSizeMapOnFace = true;
1211             createAttractorOnFace(GeomShape, atIt->second, _phySizeRel ? _phySize*diagonal : _phySize);
1212           }
1213   /*
1214           if (GeomType == TopAbs_EDGE){
1215             HasSizeMapOnEdge = true;
1216             HasSizeMapOnFace = true;
1217           EdgeId2SizeMap[TopoDS::Edge(GeomShape).HashCode(IntegerLast())] = atIt->second;
1218           }
1219           if (GeomType == TopAbs_VERTEX){
1220             HasSizeMapOnVertex = true;
1221             HasSizeMapOnEdge   = true;
1222             HasSizeMapOnFace   = true;
1223           VertexId2SizeMap[TopoDS::Vertex(GeomShape).HashCode(IntegerLast())] = atIt->second;
1224           }
1225   */
1226         }
1227       }
1228 //     }
1229
1230     // Class Attractors
1231     // temporary commented out for testing
1232     // TODO
1233     //  - Fill in the BLSURFPlugin_Hypothesis::TAttractorMap map in the hypothesis
1234     //  - Uncomment and complete this part to construct the attractors from the attractor shape and the passed parameters on each face of the map
1235     //  - To do this use the public methodss: SetParameters(several double parameters) and SetType(int type)
1236     //  OR, even better:
1237     //  - Construct the attractors with an empty dist. map in the hypothesis
1238     //  - build the map here for each face with an attractor set and only if the attractor shape as changed since the last call to _buildmap()
1239     //  -> define a bool _mapbuilt in the class that is set to false by default and set to true when calling _buildmap()  OK
1240
1241       theNbAttractors = 0;
1242     const BLSURFPlugin_Hypothesis::TAttractorMap class_attractors = BLSURFPlugin_Hypothesis::GetClassAttractorEntries(hyp);
1243     int key=-1;
1244     BLSURFPlugin_Hypothesis::TAttractorMap::const_iterator AtIt = class_attractors.begin();
1245     for ( ; AtIt != class_attractors.end(); ++AtIt ) {
1246       if ( !AtIt->second->Empty() ) {
1247         GeomShape = entryToShape(AtIt->first);
1248         if ( !SMESH_MesherHelper::IsSubShape( GeomShape, theGeomShape ))
1249           continue;
1250         AttShape = AtIt->second->GetAttractorShape();
1251         GeomType  = GeomShape.ShapeType();
1252         // Group Management
1253 //         if (GeomType == TopAbs_COMPOUND){
1254 //           for (TopoDS_Iterator it (GeomShape); it.More(); it.Next()){
1255 //             if (it.Value().ShapeType() == TopAbs_FACE){
1256 //               HasAttractorOnFace = true;
1257 //               myAttractor = BLSURFPluginAttractor(GeomShape, AttShape);
1258 //             }
1259 //           }
1260 //         }
1261
1262         if (GeomType == TopAbs_FACE
1263           && (AttShape.ShapeType() == TopAbs_VERTEX
1264            || AttShape.ShapeType() == TopAbs_EDGE
1265            || AttShape.ShapeType() == TopAbs_WIRE
1266            || AttShape.ShapeType() == TopAbs_COMPOUND) ){
1267             HasSizeMapOnFace = true;
1268
1269             key = FacesWithSizeMap.Add(TopoDS::Face(GeomShape) );
1270
1271             FaceId2ClassAttractor[key].push_back( AtIt->second );
1272             ++theNbAttractors;
1273         }
1274         else{
1275           MESSAGE("Wrong shape type !!")
1276         }
1277
1278       }
1279     }
1280
1281
1282     //
1283     // Enforced Vertices
1284     //
1285     const BLSURFPlugin_Hypothesis::TFaceEntryEnfVertexListMap entryEnfVertexListMap = BLSURFPlugin_Hypothesis::GetAllEnforcedVerticesByFace(hyp);
1286     BLSURFPlugin_Hypothesis::TFaceEntryEnfVertexListMap::const_iterator enfIt = entryEnfVertexListMap.begin();
1287     for ( ; enfIt != entryEnfVertexListMap.end(); ++enfIt ) {
1288       if ( !enfIt->second.empty() ) {
1289         GeomShape = entryToShape(enfIt->first);
1290         if ( GeomShape.IsNull() )
1291         {
1292           createEnforcedVertexOnFace( GeomShape, enfIt->second );
1293         }
1294         // Group Management
1295         else if ( GeomShape.ShapeType() == TopAbs_COMPOUND)
1296         {
1297           for (TopoDS_Iterator it (GeomShape); it.More(); it.Next()){
1298             if (it.Value().ShapeType() == TopAbs_FACE){
1299               HasSizeMapOnFace = true;
1300               createEnforcedVertexOnFace(it.Value(), enfIt->second);
1301             }
1302           }
1303         }
1304         else if ( GeomShape.ShapeType() == TopAbs_FACE)
1305         {
1306           HasSizeMapOnFace = true;
1307           createEnforcedVertexOnFace(GeomShape, enfIt->second);
1308         }
1309       }
1310     }
1311
1312     // Internal vertices
1313     bool useInternalVertexAllFaces = BLSURFPlugin_Hypothesis::GetInternalEnforcedVertexAllFaces(hyp);
1314     if (useInternalVertexAllFaces) {
1315       std::string grpName = BLSURFPlugin_Hypothesis::GetInternalEnforcedVertexAllFacesGroup(hyp);
1316       gp_Pnt aPnt;
1317       TopExp_Explorer exp (theGeomShape, TopAbs_FACE);
1318       for (; exp.More(); exp.Next()){
1319         TopExp_Explorer exp_face (exp.Current(), TopAbs_VERTEX, TopAbs_EDGE);
1320         for (; exp_face.More(); exp_face.Next())
1321         {
1322           // Get coords of vertex
1323           // Check if current coords is already in enfVertexList
1324           // If coords not in enfVertexList, add new enfVertex
1325           aPnt = BRep_Tool::Pnt(TopoDS::Vertex(exp_face.Current()));
1326           BLSURFPlugin_Hypothesis::TEnfVertex* enfVertex = new BLSURFPlugin_Hypothesis::TEnfVertex();
1327           enfVertex->coords.push_back(aPnt.X());
1328           enfVertex->coords.push_back(aPnt.Y());
1329           enfVertex->coords.push_back(aPnt.Z());
1330           enfVertex->name = "";
1331           enfVertex->faceEntries.clear();
1332           enfVertex->geomEntry = "";
1333           enfVertex->grpName = grpName;
1334           enfVertex->vertex = TopoDS::Vertex( exp_face.Current() );
1335           _createEnforcedVertexOnFace( TopoDS::Face(exp.Current()),  aPnt, enfVertex);
1336           HasSizeMapOnFace = true;
1337         }
1338       }
1339     }
1340
1341     cadsurf_set_sizemap_iso_cad_face(css, size_on_surface, &_smp_phy_size);
1342
1343     if (HasSizeMapOnEdge){
1344       cadsurf_set_sizemap_iso_cad_edge(css, size_on_edge, &_smp_phy_size);
1345     }
1346     if (HasSizeMapOnVertex){
1347       cadsurf_set_sizemap_iso_cad_point(css, size_on_vertex, &_smp_phy_size);
1348     }
1349   }
1350
1351   // PERIODICITY
1352
1353    // reset vectors
1354    _preCadFacesIDsPeriodicityVector.clear();
1355    _preCadEdgesIDsPeriodicityVector.clear();
1356
1357   for (std::size_t i = 0; i<preCadFacesPeriodicityVector.size(); i++){
1358     createPreCadFacesPeriodicity(theGeomShape, preCadFacesPeriodicityVector[i]);
1359   }
1360
1361   const BLSURFPlugin_Hypothesis::TPreCadPeriodicityVector preCadEdgesPeriodicityVector = BLSURFPlugin_Hypothesis::GetPreCadEdgesPeriodicityVector(hyp);
1362
1363   for (std::size_t i = 0; i<preCadEdgesPeriodicityVector.size(); i++){
1364     createPreCadEdgesPeriodicity(theGeomShape, preCadEdgesPeriodicityVector[i]);
1365   }
1366 }
1367
1368 //================================================================================
1369 /*!
1370  * \brief Throws an exception if a parameter name is wrong
1371  */
1372 //================================================================================
1373
1374 void BLSURFPlugin_BLSURF::set_param(cadsurf_session_t *css,
1375                                     const char *       option_name,
1376                                     const char *       option_value)
1377 {
1378   status_t status = cadsurf_set_param(css, option_name, option_value );
1379
1380   if ( _hypothesis && _hypothesis->GetVerbosity() > _hypothesis->GetDefaultVerbosity() )
1381     cout << option_name << " = " << option_value << endl;
1382
1383   if ( status != MESHGEMS_STATUS_OK )
1384   {
1385     if ( status == MESHGEMS_STATUS_UNKNOWN_PARAMETER ) {
1386       throw SALOME_Exception
1387         ( SMESH_Comment("Invalid name of CADSURF parameter: ") << option_name );
1388     }
1389     else if ( status == MESHGEMS_STATUS_NOLICENSE )
1390       throw SALOME_Exception
1391         ( "No valid license available" );
1392     else
1393       throw SALOME_Exception
1394         ( SMESH_Comment("Either wrong name or unacceptable value of CADSURF parameter '")
1395           << option_name << "': " << option_value);
1396   }
1397 }
1398
1399 namespace
1400 {
1401   // --------------------------------------------------------------------------
1402   /*!
1403    * \brief Class correctly terminating usage of MG-CADSurf library at destruction
1404    */
1405   struct BLSURF_Cleaner
1406   {
1407     context_t *        _ctx;
1408     cadsurf_session_t* _css;
1409     cad_t *            _cad;
1410     dcad_t *           _dcad;
1411
1412     BLSURF_Cleaner(context_t *        ctx,
1413                    cadsurf_session_t* css=0,
1414                    cad_t *            cad=0,
1415                    dcad_t *           dcad=0)
1416       : _ctx ( ctx  ),
1417         _css ( css  ),
1418         _cad ( cad  ),
1419         _dcad( dcad )
1420     {
1421     }
1422     ~BLSURF_Cleaner()
1423     {
1424       Clean( /*exceptContext=*/false );
1425     }
1426     void Clean(const bool exceptContext)
1427     {
1428       if ( _css )
1429       {
1430         cadsurf_session_delete(_css); _css = 0;
1431
1432         // #if BLSURF_VERSION_LONG >= "3.1.1"
1433         // //     if(geo_sizemap_e)
1434         // //       distene_sizemap_delete(geo_sizemap_e);
1435         // //     if(geo_sizemap_f)
1436         // //       distene_sizemap_delete(geo_sizemap_f);
1437         //     if(iso_sizemap_p)
1438         //       distene_sizemap_delete(iso_sizemap_p);
1439         //     if(iso_sizemap_e)
1440         //       distene_sizemap_delete(iso_sizemap_e);
1441         //     if(iso_sizemap_f)
1442         //       distene_sizemap_delete(iso_sizemap_f);
1443         // 
1444         // //     if(clean_geo_sizemap_e)
1445         // //       distene_sizemap_delete(clean_geo_sizemap_e);
1446         // //     if(clean_geo_sizemap_f)
1447         // //       distene_sizemap_delete(clean_geo_sizemap_f);
1448         //     if(clean_iso_sizemap_p)
1449         //       distene_sizemap_delete(clean_iso_sizemap_p);
1450         //     if(clean_iso_sizemap_e)
1451         //       distene_sizemap_delete(clean_iso_sizemap_e);
1452         //     if(clean_iso_sizemap_f)
1453         //       distene_sizemap_delete(clean_iso_sizemap_f);
1454         // #endif
1455
1456         cad_delete(_cad); _cad = 0;
1457         dcad_delete(_dcad); _dcad = 0;
1458         if ( !exceptContext )
1459         {
1460           context_delete(_ctx); _ctx = 0;
1461         }
1462       }
1463     }
1464   };
1465
1466   // --------------------------------------------------------------------------
1467   // comparator to sort nodes and sub-meshes
1468   struct ShapeTypeCompare
1469   {
1470     // sort nodes by position in the following order:
1471     // SMDS_TOP_FACE=2, SMDS_TOP_EDGE=1, SMDS_TOP_VERTEX=0, SMDS_TOP_3DSPACE=3
1472     bool operator()( const SMDS_MeshNode* n1, const SMDS_MeshNode* n2 ) const
1473     {
1474       // NEW ORDER: nodes earlier added to sub-mesh are considered "less"
1475       return n1->getIdInShape() < n2->getIdInShape();
1476       // SMDS_TypeOfPosition pos1 = n1->GetPosition()->GetTypeOfPosition();
1477       // SMDS_TypeOfPosition pos2 = n2->GetPosition()->GetTypeOfPosition();
1478       // if ( pos1 == pos2 ) return 0;
1479       // if ( pos1 < pos2 || pos1 == SMDS_TOP_3DSPACE ) return 1;
1480       // return -1;
1481     }
1482     // sort sub-meshes in order: EDGE, VERTEX
1483     bool operator()( const SMESHDS_SubMesh* s1, const SMESHDS_SubMesh* s2 ) const
1484     {
1485       int isVertex1 = ( s1 && s1->NbElements() == 0 );
1486       int isVertex2 = ( s2 && s2->NbElements() == 0 );
1487       if ( isVertex1 == isVertex2 )
1488         return s1 < s2;
1489       return isVertex1 < isVertex2;
1490     }
1491   };
1492
1493   //================================================================================
1494   /*!
1495    * \brief Fills groups of nodes to be merged
1496    */
1497   //================================================================================
1498
1499   void getNodeGroupsToMerge( const SMESHDS_SubMesh*                smDS,
1500                              const TopoDS_Shape&                   shape,
1501                              SMESH_MeshEditor::TListOfListOfNodes& nodeGroupsToMerge)
1502   {
1503     SMDS_NodeIteratorPtr nIt = smDS->GetNodes();
1504     switch ( shape.ShapeType() )
1505     {
1506     case TopAbs_VERTEX: {
1507       std::list< const SMDS_MeshNode* > nodes;
1508       while ( nIt->more() )
1509         nodes.push_back( nIt->next() );
1510       if ( nodes.size() > 1 )
1511         nodeGroupsToMerge.push_back( nodes );
1512       break;
1513     }
1514     case TopAbs_EDGE: {
1515       std::multimap< double, const SMDS_MeshNode* > u2node;
1516       const SMDS_EdgePosition* ePos;
1517       while ( nIt->more() )
1518       {
1519         const SMDS_MeshNode* n = nIt->next();
1520         if (( ePos = dynamic_cast< const SMDS_EdgePosition* >( n->GetPosition() )))
1521           u2node.insert( make_pair( ePos->GetUParameter(), n ));
1522       }
1523       if ( u2node.size() < 2 ) return;
1524
1525       //double tol = (( u2node.rbegin()->first - u2node.begin()->first ) / 20.) / u2node.size();
1526       Standard_Real f,l;
1527       BRep_Tool::Range( TopoDS::Edge( shape ), f,l );
1528       double tol = (( l - f ) / 20.) / u2node.size();
1529
1530       std::multimap< double, const SMDS_MeshNode* >::iterator un2, un1;
1531       for ( un2 = u2node.begin(), un1 = un2++; un2 != u2node.end(); un1 = un2++ )
1532       {
1533         if (( un2->first - un1->first ) <= tol )
1534         {
1535           std::list< const SMDS_MeshNode* > nodes;
1536           nodes.push_back( un1->second );
1537           while (( un2->first - un1->first ) <= tol )
1538           {
1539             nodes.push_back( un2->second );
1540             if ( ++un2 == u2node.end()) {
1541               --un2;
1542               break;
1543             }
1544           }
1545           // make nodes created on the boundary of viscous layer replace nodes created
1546           // by MG-CADSurf as their SMDS_Position is more correct
1547           nodes.sort( ShapeTypeCompare() );
1548           nodeGroupsToMerge.push_back( nodes );
1549         }
1550       }
1551       break;
1552     }
1553     default: ;
1554     }
1555     // SMESH_MeshEditor::TListOfListOfNodes::const_iterator nll = nodeGroupsToMerge.begin();
1556     // for ( ; nll != nodeGroupsToMerge.end(); ++nll )
1557     // {
1558     //   cout << "Merge ";
1559     //   const std::list< const SMDS_MeshNode* >& nl = *nll;
1560     //   std::list< const SMDS_MeshNode* >::const_iterator nIt = nl.begin();
1561     //   for ( ; nIt != nl.end(); ++nIt )
1562     //     cout << (*nIt) << " ";
1563     //   cout << endl;
1564     // }
1565     // cout << endl;
1566   }
1567
1568   //================================================================================
1569   /*!
1570    * \brief A temporary mesh used to compute mesh on a proxy FACE
1571    */
1572   //================================================================================
1573
1574   struct TmpMesh: public SMESH_Mesh
1575   {
1576     typedef std::map<const SMDS_MeshNode*, const SMDS_MeshNode*, TIDCompare > TN2NMap;
1577     TN2NMap     _tmp2origNN;
1578     TopoDS_Face _proxyFace;
1579
1580     TmpMesh()
1581     {
1582       _myMeshDS = new SMESHDS_Mesh( _id, true );
1583     }
1584     //--------------------------------------------------------------------------------
1585     /*!
1586      * \brief Creates a FACE bound by viscous layers and mesh each its EDGE with 1 segment
1587      */
1588     //--------------------------------------------------------------------------------
1589
1590     const TopoDS_Face& makeProxyFace( SMESH_ProxyMesh::Ptr& viscousMesh,
1591                                       const TopoDS_Face&    origFace)
1592     {
1593       SMESH_Mesh* origMesh = viscousMesh->GetMesh();
1594
1595       SMESH_MesherHelper helper( *origMesh );
1596       helper.SetSubShape( origFace );
1597       const bool hasSeam = helper.HasRealSeam();
1598
1599       // get data of nodes on inner boundary of viscous layers
1600       TError err;
1601       TSideVector wireVec = StdMeshers_FaceSide::GetFaceWires(origFace, *origMesh,
1602                                                               /*skipMediumNodes = */true,
1603                                                               err, &helper, viscousMesh );
1604       if ( err && err->IsKO() )
1605         throw *err.get(); // it should be caught at SMESH_subMesh
1606
1607       // proxy nodes and corresponding tmp VERTEXes
1608       std::vector<const SMDS_MeshNode*> origNodes;
1609       std::vector<TopoDS_Vertex>        tmpVertex;
1610
1611       // create a proxy FACE
1612       TopoDS_Face origFaceCopy = TopoDS::Face( origFace.EmptyCopied() );
1613       BRepBuilderAPI_MakeFace newFace( origFaceCopy );
1614       bool hasPCurves = false;
1615       for ( size_t iW = 0; iW != wireVec.size(); ++iW )
1616       {
1617         StdMeshers_FaceSidePtr& wireData = wireVec[iW];
1618         const UVPtStructVec&  wirePoints = wireData->GetUVPtStruct();
1619         if ( wirePoints.size() < 3 )
1620           continue;
1621
1622         BRepBuilderAPI_MakePolygon polygon;
1623         const size_t i0 = tmpVertex.size();
1624         for ( size_t iN = 0; iN < wirePoints.size(); ++iN )
1625         {
1626           polygon.Add( SMESH_TNodeXYZ( wirePoints[ iN ].node ));
1627           origNodes.push_back( wirePoints[ iN ].node );
1628           tmpVertex.push_back( polygon.LastVertex() );
1629
1630           // check presence of a pcurve
1631           checkPCurve( polygon, origFaceCopy, hasPCurves, &wirePoints[ iN-1 ] );
1632         }
1633         tmpVertex[ i0 ] = polygon.FirstVertex(); // polygon.LastVertex()==NULL for 1 vertex in wire
1634         polygon.Close();
1635         if ( !polygon.IsDone() )
1636           throw SALOME_Exception("BLSURFPlugin_BLSURF: BRepBuilderAPI_MakePolygon failed");
1637         TopoDS_Wire wire = polygon;
1638         if ( hasSeam )
1639           wire = updateSeam( wire, origNodes );
1640         newFace.Add( wire );
1641       }
1642       _proxyFace = newFace;
1643
1644       // set a new shape to mesh
1645       TopoDS_Compound auxCompoundToMesh;
1646       BRep_Builder shapeBuilder;
1647       shapeBuilder.MakeCompound( auxCompoundToMesh );
1648       shapeBuilder.Add( auxCompoundToMesh, _proxyFace );
1649       shapeBuilder.Add( auxCompoundToMesh, origMesh->GetShapeToMesh() );
1650
1651       ShapeToMesh( auxCompoundToMesh );
1652
1653
1654       // Make input mesh for MG-CADSurf: segments on EDGE's of newFace
1655
1656       // make nodes and fill in _tmp2origNN
1657       //
1658       SMESHDS_Mesh* tmpMeshDS = GetMeshDS();
1659       for ( size_t i = 0; i < origNodes.size(); ++i )
1660       {
1661         GetSubMesh( tmpVertex[i] )->ComputeStateEngine( SMESH_subMesh::COMPUTE );
1662         if ( const SMDS_MeshNode* tmpN = SMESH_Algo::VertexNode( tmpVertex[i], tmpMeshDS ))
1663           _tmp2origNN.insert( _tmp2origNN.end(), make_pair( tmpN, origNodes[i] ));
1664         // else -- it can be a seam vertex replaced by updateSeam()
1665         //   throw SALOME_Exception("BLSURFPlugin_BLSURF: a proxy vertex not meshed");
1666       }
1667
1668       // make segments
1669       TopoDS_Vertex v1, v2;
1670       for ( TopExp_Explorer edge( _proxyFace, TopAbs_EDGE ); edge.More(); edge.Next() )
1671       {
1672         const TopoDS_Edge& E = TopoDS::Edge( edge.Current() );
1673         TopExp::Vertices( E, v1, v2 );
1674         const SMDS_MeshNode* n1 = SMESH_Algo::VertexNode( v1, tmpMeshDS );
1675         const SMDS_MeshNode* n2 = SMESH_Algo::VertexNode( v2, tmpMeshDS );
1676
1677         if ( SMDS_MeshElement* seg = tmpMeshDS->AddEdge( n1, n2 ))
1678           tmpMeshDS->SetMeshElementOnShape( seg, E );
1679       }
1680
1681       return _proxyFace;
1682     }
1683
1684     //--------------------------------------------------------------------------------
1685     /*!
1686      * \brief Add pcurve to the last edge of a wire
1687      */
1688     //--------------------------------------------------------------------------------
1689
1690     void checkPCurve( BRepBuilderAPI_MakePolygon& wire,
1691                       const TopoDS_Face&          face,
1692                       bool &                      hasPCurves,
1693                       const uvPtStruct *          wirePoints )
1694     {
1695       if ( hasPCurves )
1696         return;
1697       TopoDS_Edge edge = wire.Edge();
1698       if ( edge.IsNull() ) return;
1699       double f,l;
1700       if ( BRep_Tool::CurveOnSurface(edge, face, f, l))
1701       {
1702         hasPCurves = true;
1703         return;
1704       }
1705       gp_XY p1 = wirePoints[ 0 ].UV(), p2 = wirePoints[ 1 ].UV();
1706       Handle(Geom2d_Line) pcurve = new Geom2d_Line( p1, gp_Dir2d( p2 - p1 ));
1707       BRep_Builder().UpdateEdge( edge, Handle(Geom_Curve)(), Precision::Confusion() );
1708       BRep_Builder().UpdateEdge( edge, pcurve, face, Precision::Confusion() );
1709       BRep_Builder().Range( edge, 0, ( p2 - p1 ).Modulus() );
1710       // cout << "n1 = mesh.AddNode( " << p1.X()*10 << ", " << p1.Y() << ", 0 )" << endl
1711       //      << "n2 = mesh.AddNode( " << p2.X()*10 << ", " << p2.Y() << ", 0 )" << endl
1712       //      << "mesh.AddEdge( [ n1, n2 ] )" << endl;
1713     }
1714
1715     //--------------------------------------------------------------------------------
1716     /*!
1717      * \brief Replace coincident EDGEs with reversed copies.
1718      */
1719     //--------------------------------------------------------------------------------
1720
1721     TopoDS_Wire updateSeam( const TopoDS_Wire&                       wire,
1722                             const std::vector<const SMDS_MeshNode*>& nodesOfVertices )
1723     {
1724       BRepBuilderAPI_MakeWire newWire;
1725
1726       typedef NCollection_DataMap<SMESH_TLink, TopoDS_Edge, SMESH_TLink > TSeg2EdgeMap;
1727       TSeg2EdgeMap seg2EdgeMap;
1728
1729       TopoDS_Iterator edgeIt( wire );
1730       for ( int iSeg = 1; edgeIt.More(); edgeIt.Next(), ++iSeg )
1731       {
1732         SMESH_TLink link( nodesOfVertices[ iSeg-1 ], nodesOfVertices[ iSeg ]);
1733         TopoDS_Edge edge( TopoDS::Edge( edgeIt.Value() ));
1734
1735         TopoDS_Edge* edgeInMap = seg2EdgeMap.Bound( link, edge );
1736         bool            isSeam = ( *edgeInMap != edge );
1737         if ( isSeam )
1738         {
1739           edgeInMap->Reverse();
1740           edge = *edgeInMap;
1741         }
1742         newWire.Add( edge );
1743       }
1744       return newWire;
1745     }
1746
1747     //--------------------------------------------------------------------------------
1748     /*!
1749      * \brief Fill in the origMesh with faces computed by MG-CADSurf in this tmp mesh
1750      */
1751     //--------------------------------------------------------------------------------
1752
1753     void FillInOrigMesh( SMESH_Mesh&        origMesh,
1754                          const TopoDS_Face& origFace )
1755     {
1756       SMESH_MesherHelper helper( origMesh );
1757       helper.SetSubShape( origFace );
1758       helper.SetElementsOnShape( true );
1759
1760       SMESH_MesherHelper tmpHelper( *this );
1761       tmpHelper.SetSubShape( _proxyFace );
1762
1763       // iterate over tmp faces and copy them in origMesh
1764       const SMDS_MeshNode* nodes[27];
1765       const SMDS_MeshNode* nullNode = 0;
1766       double xyz[3];
1767       SMDS_FaceIteratorPtr fIt = GetMeshDS()->facesIterator(/*idInceasingOrder=*/true);
1768       while ( fIt->more() )
1769       {
1770         const SMDS_MeshElement* f = fIt->next();
1771         SMDS_ElemIteratorPtr nIt = f->nodesIterator();
1772         int nbN = 0;
1773         for ( ; nIt->more(); ++nbN )
1774         {
1775           const SMDS_MeshNode* n = static_cast<const SMDS_MeshNode*>( nIt->next() );
1776           TN2NMap::iterator n2nIt =
1777             _tmp2origNN.insert( _tmp2origNN.end(), make_pair( n, nullNode ));
1778           if ( !n2nIt->second ) {
1779             n->GetXYZ( xyz );
1780             gp_XY uv = tmpHelper.GetNodeUV( _proxyFace, n );
1781             n2nIt->second = helper.AddNode( xyz[0], xyz[1], xyz[2], uv.X(), uv.Y() );
1782           }
1783           nodes[ nbN ] = n2nIt->second;
1784         }
1785         switch( nbN ) {
1786         case 3: helper.AddFace( nodes[0], nodes[1], nodes[2] ); break;
1787           // case 6: helper.AddFace( nodes[0], nodes[1], nodes[2],
1788           //                         nodes[3], nodes[4], nodes[5]); break;
1789         case 4: helper.AddFace( nodes[0], nodes[1], nodes[2], nodes[3] ); break;
1790         // case 9: helper.AddFace( nodes[0], nodes[1], nodes[2], nodes[3],
1791         //                         nodes[4], nodes[5], nodes[6], nodes[7], nodes[8]); break;
1792         // case 8: helper.AddFace( nodes[0], nodes[1], nodes[2], nodes[3],
1793         //                         nodes[4], nodes[5], nodes[6], nodes[7]); break;
1794         }
1795       }
1796     }
1797   };
1798
1799   /*!
1800    * \brief A structure holding an error description and a verbisity level
1801    */
1802   struct message_cb_user_data
1803   {
1804     std::string * _error;
1805     int           _verbosity;
1806     double *      _progress;
1807   };
1808
1809 } // namespace
1810
1811 status_t curv_fun(real t, real *uv, real *dt, real *dtt, void *user_data);
1812 status_t surf_fun(real *uv, real *xyz, real*du, real *dv,
1813                   real *duu, real *duv, real *dvv, void *user_data);
1814 status_t message_cb(message_t *msg, void *user_data);
1815 status_t interrupt_cb(integer *interrupt_status, void *user_data);
1816
1817 //=============================================================================
1818 /*!
1819  *
1820  */
1821 //=============================================================================
1822
1823 bool BLSURFPlugin_BLSURF::Compute(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape)
1824 {
1825   // Fix problem with locales
1826   Kernel_Utils::Localizer aLocalizer;
1827
1828   this->SMESH_Algo::_progress = 1e-3; // prevent progress advancment while computing attractors
1829
1830   bool viscousLayersMade =
1831     ( aShape.ShapeType() == TopAbs_FACE &&
1832       StdMeshers_ViscousLayers2D::HasProxyMesh( TopoDS::Face( aShape ), aMesh ));
1833
1834   if ( !viscousLayersMade )
1835     if ( !compute( aMesh, aShape, /*allowSubMeshClearing=*/true ))
1836       return false;
1837
1838   if ( _haveViscousLayers || viscousLayersMade )
1839   {
1840     // Compute viscous layers
1841
1842     TopTools_MapOfShape map;
1843     for (TopExp_Explorer face_iter(aShape,TopAbs_FACE);face_iter.More();face_iter.Next())
1844     {
1845       const TopoDS_Face& F = TopoDS::Face(face_iter.Current());
1846       if ( !map.Add( F )) continue;
1847       SMESH_ProxyMesh::Ptr viscousMesh = StdMeshers_ViscousLayers2D::Compute( aMesh, F );
1848       if ( !viscousMesh )
1849         return false; // error in StdMeshers_ViscousLayers2D::Compute()
1850
1851       // Compute MG-CADSurf mesh on viscous layers
1852
1853       if ( viscousMesh->NbProxySubMeshes() > 0 )
1854       {
1855         TmpMesh tmpMesh;
1856         const TopoDS_Face& proxyFace = tmpMesh.makeProxyFace( viscousMesh, F );
1857         if ( !compute( tmpMesh, proxyFace, /*allowSubMeshClearing=*/false ))
1858           return false;
1859         tmpMesh.FillInOrigMesh( aMesh, F );
1860       }
1861     }
1862
1863     // Re-compute MG-CADSurf mesh on the rest faces if the mesh was cleared
1864
1865     for (TopExp_Explorer face_iter(aShape,TopAbs_FACE);face_iter.More();face_iter.Next())
1866     {
1867       const TopoDS_Face& F = TopoDS::Face(face_iter.Current());
1868       SMESH_subMesh* fSM = aMesh.GetSubMesh( F );
1869       if ( fSM->IsMeshComputed() ) continue;
1870
1871       if ( !compute( aMesh, aShape, /*allowSubMeshClearing=*/true ))
1872         return false;
1873       break;
1874     }
1875   }
1876   return true;
1877 }
1878
1879 //=============================================================================
1880 /*!
1881  *
1882  */
1883 //=============================================================================
1884
1885 bool BLSURFPlugin_BLSURF::compute(SMESH_Mesh&         aMesh,
1886                                   const TopoDS_Shape& aShape,
1887                                   bool                allowSubMeshClearing)
1888 {
1889   /* create a distene context (generic object) */
1890   status_t status = STATUS_ERROR;
1891
1892   SMESHDS_Mesh* meshDS = aMesh.GetMeshDS();
1893   SMESH_MesherHelper helper( aMesh ), helperWithShape( aMesh );
1894   myHelper = theHelper = & helperWithShape;
1895   // do not call helper.IsQuadraticSubMesh() because sub-meshes
1896   // may be cleaned and helper.myTLinkNodeMap gets invalid in such a case
1897   bool haveQuadraticSubMesh = helperWithShape.IsQuadraticSubMesh( aShape );
1898   bool quadraticSubMeshAndViscousLayer = false;
1899   bool needMerge = false;
1900   typedef set< SMESHDS_SubMesh*, ShapeTypeCompare > TSubMeshSet;
1901   TSubMeshSet edgeSubmeshes;
1902   TSubMeshSet& mergeSubmeshes = edgeSubmeshes;
1903
1904   TopTools_IndexedMapOfShape pmap, emap, fmap;
1905
1906   TopTools_IndexedDataMapOfShapeListOfShape e2ffmap;
1907   TopExp::MapShapesAndAncestors( aShape, TopAbs_EDGE, TopAbs_FACE, e2ffmap );
1908
1909   // Issue 0019864. On DebianSarge, FE signals do not obey to OSD::SetSignal(false)
1910 #ifndef WIN32
1911   feclearexcept( FE_ALL_EXCEPT );
1912   int oldFEFlags = fedisableexcept( FE_ALL_EXCEPT );
1913 #endif
1914
1915   context_t *ctx =  context_new();
1916
1917   /* Set the message callback in the working context */
1918   message_cb_user_data mcud;
1919   mcud._error     = & this->SMESH_Algo::_comment;
1920   mcud._progress  = & this->SMESH_Algo::_progress;
1921   mcud._verbosity =
1922     _hypothesis ? _hypothesis->GetVerbosity() : BLSURFPlugin_Hypothesis::GetDefaultVerbosity();
1923   context_set_message_callback(ctx, message_cb, &mcud);
1924
1925   /* set the interruption callback */
1926   _compute_canceled = false;
1927   context_set_interrupt_callback(ctx, interrupt_cb, this);
1928
1929   /* create the CAD object we will work on. It is associated to the context ctx. */
1930   cad_t *c     = cad_new(ctx);
1931   dcad_t *dcad = dcad_new(c);
1932
1933   // To enable multithreading
1934   cad_set_thread_safety(c, 1);
1935
1936   /* Now fill the CAD object with data from your CAD
1937    * environement. This is the most complex part of a successfull
1938    * integration.
1939    */
1940
1941   // PreCAD
1942
1943   cadsurf_session_t *css = cadsurf_session_new(ctx);
1944
1945   // an object that correctly deletes all cadsurf objects at destruction
1946   BLSURF_Cleaner cleaner( ctx,css,c,dcad );
1947
1948   SetParameters(_hypothesis, css, aShape);
1949
1950   haveQuadraticSubMesh = haveQuadraticSubMesh || (_hypothesis != NULL && _hypothesis->GetQuadraticMesh());
1951   helper.SetIsQuadratic( haveQuadraticSubMesh );
1952
1953   // To remove as soon as quadratic mesh is allowed - BEGIN
1954   // GDD: Viscous layer is not allowed with quadratic mesh
1955   if (_haveViscousLayers && haveQuadraticSubMesh ) {
1956     quadraticSubMeshAndViscousLayer = true;
1957     _haveViscousLayers = !haveQuadraticSubMesh;
1958     _comment += "Warning: Viscous layer is not possible with a quadratic mesh, it is ignored.";
1959     error(COMPERR_WARNING, _comment);
1960   }
1961   // To remove as soon as quadratic mesh is allowed - END
1962
1963   // needed to prevent the opencascade memory managmement from freeing things
1964   vector<Handle(Geom2d_Curve)> curves;
1965   vector<Handle(Geom_Surface)> surfaces;
1966
1967   emap.Clear();
1968   pmap.Clear();
1969   FaceId2PythonSmp.clear();
1970   EdgeId2PythonSmp.clear();
1971   VertexId2PythonSmp.clear();
1972
1973   /****************************************************************************************
1974                                           FACES
1975   *****************************************************************************************/
1976   int iface = 0;
1977   string bad_end = "return";
1978   int faceKey = -1;
1979   TopTools_IndexedMapOfShape _map;
1980   TopExp::MapShapes(aShape,TopAbs_VERTEX,_map);
1981   int ienf = _map.Extent();
1982
1983   assert(Py_IsInitialized());
1984   PyGILState_STATE gstate;
1985
1986   string theSizeMapStr;
1987
1988   for (TopExp_Explorer face_iter(aShape,TopAbs_FACE);face_iter.More();face_iter.Next())
1989   {
1990     TopoDS_Face f = TopoDS::Face(face_iter.Current());
1991
1992     SMESH_subMesh* fSM = aMesh.GetSubMesh( f );
1993     if ( !fSM->IsEmpty() ) continue; // skip already meshed FACE with viscous layers
1994
1995     // make INTERNAL face oriented FORWARD (issue 0020993)
1996     if (f.Orientation() != TopAbs_FORWARD && f.Orientation() != TopAbs_REVERSED )
1997       f.Orientation(TopAbs_FORWARD);
1998
1999     iface = fmap.Add(f);
2000
2001     surfaces.push_back(BRep_Tool::Surface(f));
2002
2003     /* create an object representing the face for cadsurf */
2004     /* where face_id is an integer identifying the face.
2005      * surf_function is the function that defines the surface
2006      * (For this face, it will be called by cadsurf with your_face_object_ptr
2007      * as last parameter.
2008      */
2009     cad_face_t *fce = cad_face_new(c, iface, surf_fun, surfaces.back().get());
2010
2011     /* by default a face has no tag (color).
2012        The following call sets it to the same value as the Geom module ID : */
2013     int faceTag = meshDS->ShapeToIndex(f);
2014     faceTag = BLSURFPlugin_Hypothesis::GetHyperPatchTag( faceTag, _hypothesis );
2015     cad_face_set_tag(fce, faceTag);
2016
2017     /* Set face orientation (optional if you want a well oriented output mesh)*/
2018     if(f.Orientation() != TopAbs_FORWARD)
2019       cad_face_set_orientation(fce, CAD_ORIENTATION_REVERSED);
2020     else
2021       cad_face_set_orientation(fce, CAD_ORIENTATION_FORWARD);
2022
2023     if (HasSizeMapOnFace /*&& !use_precad*/) //22903: use_precad seems not to interfere
2024     {
2025       // -----------------
2026       // Classic size map
2027       // -----------------
2028       faceKey = FacesWithSizeMap.FindIndex(f);
2029
2030
2031       if (FaceId2SizeMap.find(faceKey)!=FaceId2SizeMap.end())
2032       {
2033         theSizeMapStr = FaceId2SizeMap[faceKey];
2034         // check if function ends with "return"
2035         if (theSizeMapStr.find(bad_end) == (theSizeMapStr.size()-bad_end.size()-1))
2036           continue;
2037         // Expr To Python function, verification is performed at validation in GUI
2038         gstate = PyGILState_Ensure();
2039         PyObject * obj = NULL;
2040         obj= PyRun_String(theSizeMapStr.c_str(), Py_file_input, main_dict, NULL);
2041         Py_DECREF(obj);
2042         PyObject * func = NULL;
2043         func = PyObject_GetAttrString(main_mod, "f");
2044         FaceId2PythonSmp[iface]=func;
2045         FaceId2SizeMap.erase(faceKey);
2046         PyGILState_Release(gstate);
2047       }
2048
2049       // Specific size map = Attractor
2050       std::map<int,std::vector<double> >::iterator attractor_iter = FaceId2AttractorCoords.begin();
2051
2052       for (; attractor_iter != FaceId2AttractorCoords.end(); ++attractor_iter) {
2053         if (attractor_iter->first == faceKey)
2054         {
2055           double xyzCoords[3]  = {attractor_iter->second[2],
2056                                   attractor_iter->second[3],
2057                                   attractor_iter->second[4]};
2058
2059           gp_Pnt P(xyzCoords[0],xyzCoords[1],xyzCoords[2]);
2060           BRepClass_FaceClassifier scl(f,P,1e-7);
2061           scl.Perform(f, P, 1e-7);
2062           TopAbs_State result = scl.State();
2063           if ( result == TopAbs_OUT )
2064             MESSAGE("Point is out of face: node is not created");
2065           if ( result == TopAbs_UNKNOWN )
2066             MESSAGE("Point position on face is unknown: node is not created");
2067           if ( result == TopAbs_ON )
2068             MESSAGE("Point is on border of face: node is not created");
2069           if ( result == TopAbs_IN )
2070           {
2071             // Point is inside face and not on border
2072             double uvCoords[2] = {attractor_iter->second[0],attractor_iter->second[1]};
2073             ienf++;
2074             cad_point_t* point_p = cad_point_new(fce, ienf, uvCoords);
2075             cad_point_set_tag(point_p, ienf);
2076           }
2077           FaceId2AttractorCoords.erase(faceKey);
2078         }
2079       }
2080
2081       // -----------------
2082       // Class Attractors
2083       // -----------------
2084       TId2ClsAttractorVec::iterator clAttractor_iter = FaceId2ClassAttractor.find(faceKey);
2085       if (clAttractor_iter != FaceId2ClassAttractor.end()){
2086         std::vector< BLSURFPlugin_Attractor* > & attVec = clAttractor_iter->second;
2087         for ( size_t i = 0; i < attVec.size(); ++i )
2088           if ( !attVec[i]->IsMapBuilt() ) {
2089             std::cout<<"Compute " << theNbAttractors-- << "-th attractor" <<std::endl;
2090             attVec[i]->BuildMap();
2091           }
2092         FaceIndex2ClassAttractor[iface].swap( attVec );
2093         FaceId2ClassAttractor.erase(clAttractor_iter);
2094       }
2095     } // if (HasSizeMapOnFace && !use_precad)
2096
2097     // ------------------
2098     // Enforced Vertices
2099     // ------------------
2100     faceKey = FacesWithEnforcedVertices.FindIndex(f);
2101     std::map<int,BLSURFPlugin_Hypothesis::TEnfVertexCoordsList >::const_iterator evmIt = FaceId2EnforcedVertexCoords.find(faceKey);
2102     if (evmIt != FaceId2EnforcedVertexCoords.end())
2103     {
2104       BLSURFPlugin_Hypothesis::TEnfVertexCoordsList evl = evmIt->second;
2105       BLSURFPlugin_Hypothesis::TEnfVertexCoordsList::const_iterator evlIt = evl.begin();
2106       for (; evlIt != evl.end(); ++evlIt)
2107       {
2108         double uvCoords[2] = { evlIt->at(0), evlIt->at(1) };
2109         ienf++;
2110         cad_point_t* point_p = cad_point_new(fce, ienf, uvCoords);
2111         int tag = 0;
2112         BLSURFPlugin_Hypothesis::TEnfVertexCoords xyzCoords;
2113         xyzCoords.push_back(evlIt->at(2));
2114         xyzCoords.push_back(evlIt->at(3));
2115         xyzCoords.push_back(evlIt->at(4));
2116         std::map< BLSURFPlugin_Hypothesis::TEnfVertexCoords, BLSURFPlugin_Hypothesis::TEnfVertexList >::const_iterator enfCoordsIt = EnfVertexCoords2EnfVertexList.find(xyzCoords);
2117         if (enfCoordsIt != EnfVertexCoords2EnfVertexList.end() &&
2118             !enfCoordsIt->second.empty() )
2119         {
2120           // to merge nodes of an INTERNAL vertex belonging to several faces
2121           TopoDS_Vertex     v = (*enfCoordsIt->second.begin() )->vertex;
2122           if ( v.IsNull() ) v = (*enfCoordsIt->second.rbegin())->vertex;
2123           if ( !v.IsNull() && meshDS->ShapeToIndex( v ) > 0 )
2124           {
2125             tag = pmap.Add( v );
2126             SMESH_subMesh* vSM = aMesh.GetSubMesh( v );
2127             vSM->ComputeStateEngine( SMESH_subMesh::COMPUTE );
2128             mergeSubmeshes.insert( vSM->GetSubMeshDS() );
2129             // //if ( tag != pmap.Extent() )
2130             // needMerge = true;
2131           }
2132         }
2133         if ( tag == 0 ) tag = ienf;
2134         cad_point_set_tag(point_p, tag);
2135       }
2136       FaceId2EnforcedVertexCoords.erase(faceKey);
2137
2138     }
2139
2140     /****************************************************************************************
2141                                            EDGES
2142                         now create the edges associated to this face
2143     *****************************************************************************************/
2144     int edgeKey = -1;
2145     for (TopExp_Explorer edge_iter(f,TopAbs_EDGE);edge_iter.More();edge_iter.Next())
2146     {
2147       TopoDS_Edge e = TopoDS::Edge(edge_iter.Current());
2148       int ic = emap.FindIndex(e);
2149       if (ic <= 0)
2150         ic = emap.Add(e);
2151
2152       double tmin,tmax;
2153       curves.push_back(BRep_Tool::CurveOnSurface(e, f, tmin, tmax));
2154
2155       if (HasSizeMapOnEdge){
2156         edgeKey = EdgesWithSizeMap.FindIndex(e);
2157         if (EdgeId2SizeMap.find(edgeKey)!=EdgeId2SizeMap.end())
2158         {
2159           theSizeMapStr = EdgeId2SizeMap[edgeKey];
2160           if (theSizeMapStr.find(bad_end) == (theSizeMapStr.size()-bad_end.size()-1))
2161             continue;
2162           // Expr To Python function, verification is performed at validation in GUI
2163           gstate = PyGILState_Ensure();
2164           PyObject * obj = NULL;
2165           obj= PyRun_String(theSizeMapStr.c_str(), Py_file_input, main_dict, NULL);
2166           Py_DECREF(obj);
2167           PyObject * func = NULL;
2168           func = PyObject_GetAttrString(main_mod, "f");
2169           EdgeId2PythonSmp[ic]=func;
2170           EdgeId2SizeMap.erase(edgeKey);
2171           PyGILState_Release(gstate);
2172         }
2173       }
2174       /* data of nodes existing on the edge */
2175       StdMeshers_FaceSidePtr nodeData;
2176       SMESH_subMesh* sm = aMesh.GetSubMesh( e );
2177       if ( !sm->IsEmpty() )
2178       {
2179         // SMESH_subMeshIteratorPtr subsmIt = sm->getDependsOnIterator( /*includeSelf=*/true,
2180         //                                                              /*complexFirst=*/false);
2181         // while ( subsmIt->more() )
2182         //   edgeSubmeshes.insert( subsmIt->next()->GetSubMeshDS() );
2183         edgeSubmeshes.insert( sm->GetSubMeshDS() );
2184
2185         nodeData.reset( new StdMeshers_FaceSide( f, e, &aMesh, /*isForwrd = */true,
2186                                                  /*ignoreMedium=*/haveQuadraticSubMesh));
2187         if ( nodeData->MissVertexNode() )
2188           return error(COMPERR_BAD_INPUT_MESH,"No node on vertex");
2189
2190         const std::vector<UVPtStruct>& nodeDataVec = nodeData->GetUVPtStruct();
2191         if ( !nodeDataVec.empty() )
2192         {
2193           if ( Abs( nodeDataVec[0].param - tmin ) > Abs( nodeDataVec.back().param - tmin ))
2194           {
2195             nodeData->Reverse();
2196             nodeData->GetUVPtStruct(); // nodeData recomputes nodeDataVec
2197           }
2198           // tmin and tmax can change in case of viscous layer on an adjacent edge
2199           tmin = nodeDataVec.front().param;
2200           tmax = nodeDataVec.back().param;
2201         }
2202         else
2203         {
2204           cout << "---------------- Invalid nodeData" << endl;
2205           nodeData.reset();
2206         }
2207       }
2208
2209       /* attach the edge to the current cadsurf face */
2210       cad_edge_t *edg = cad_edge_new(fce, ic, tmin, tmax, curv_fun, curves.back().get());
2211
2212       /* by default an edge has no tag (color).
2213          The following call sets it to the same value as the edge_id : */
2214       // IMP23368. Do not set tag to an EDGE shared by FACEs of a hyper-patch
2215       bool isInHyperPatch = false;
2216       {
2217         std::set< int > faceTags, faceIDs;
2218         TopTools_ListIteratorOfListOfShape fIt( e2ffmap.FindFromKey( e ));
2219         for ( ; fIt.More(); fIt.Next() )
2220         {
2221           int faceTag = meshDS->ShapeToIndex( fIt.Value() );
2222           if ( !faceIDs.insert( faceTag ).second )
2223             continue; // a face encounters twice for a seam edge
2224           int hpTag   = BLSURFPlugin_Hypothesis::GetHyperPatchTag( faceTag, _hypothesis );
2225           if ( !faceTags.insert( hpTag ).second )
2226           {
2227             isInHyperPatch = true;
2228             break;
2229           }
2230         }
2231       }
2232       if ( !isInHyperPatch )
2233         cad_edge_set_tag(edg, ic);
2234
2235       /* by default, an edge does not necessalry appear in the resulting mesh,
2236          unless the following property is set :
2237       */
2238       cad_edge_set_property(edg, EDGE_PROPERTY_SOFT_REQUIRED);
2239
2240       /* by default an edge is a boundary edge */
2241       if (e.Orientation() == TopAbs_INTERNAL)
2242         cad_edge_set_property(edg, EDGE_PROPERTY_INTERNAL);
2243
2244       // pass existing nodes of sub-meshes to MG-CADSurf
2245       if ( nodeData )
2246       {
2247         const std::vector<UVPtStruct>& nodeDataVec = nodeData->GetUVPtStruct();
2248         const int                      nbNodes     = nodeDataVec.size();
2249
2250         dcad_edge_discretization_t *dedge;
2251         dcad_get_edge_discretization(dcad, edg, &dedge);
2252         dcad_edge_discretization_set_vertex_count( dedge, nbNodes );
2253
2254         // cout << endl << " EDGE " << ic << endl;
2255         // cout << "tmin = "<<tmin << ", tmax = "<< tmax << endl;
2256         for ( int iN = 0; iN < nbNodes; ++iN )
2257         {
2258           const UVPtStruct& nData = nodeDataVec[ iN ];
2259           double t                = nData.param;
2260           real uv[2]              = { nData.u, nData.v };
2261           SMESH_TNodeXYZ nXYZ( nData.node );
2262           // cout << "\tt = " << t
2263           //      << "\t uv = ( " << uv[0] << ","<< uv[1] << " ) "
2264           //      << "\t u = " << nData.param
2265           //      << "\t ID = " << nData.node->GetID() << endl;
2266           dcad_edge_discretization_set_vertex_coordinates( dedge, iN+1, t, uv, nXYZ.ChangeData() );
2267         }
2268         dcad_edge_discretization_set_property(dedge, DISTENE_DCAD_PROPERTY_REQUIRED);
2269       }
2270
2271       /****************************************************************************************
2272                                       VERTICES
2273       *****************************************************************************************/
2274
2275       int npts = 0;
2276       int ip1, ip2, *ip;
2277       gp_Pnt2d e0 = curves.back()->Value(tmin);
2278       gp_Pnt ee0 = surfaces.back()->Value(e0.X(), e0.Y());
2279       Standard_Real d1=0,d2=0;
2280
2281       int vertexKey = -1;
2282       for (TopExp_Explorer ex_edge(e ,TopAbs_VERTEX); ex_edge.More(); ex_edge.Next()) {
2283         TopoDS_Vertex v = TopoDS::Vertex(ex_edge.Current());
2284         ++npts;
2285         if (npts == 1){
2286           ip = &ip1;
2287           d1 = ee0.SquareDistance(BRep_Tool::Pnt(v));
2288         } else {
2289           ip = &ip2;
2290           d2 = ee0.SquareDistance(BRep_Tool::Pnt(v));
2291         }
2292         *ip = pmap.FindIndex(v);
2293         if(*ip <= 0) {
2294           *ip = pmap.Add(v);
2295           // SMESH_subMesh* sm = aMesh.GetSubMesh(v);
2296           // if ( sm->IsMeshComputed() )
2297           //   edgeSubmeshes.insert( sm->GetSubMeshDS() );
2298         }
2299
2300 //        std::string aFileName = "fmap_vertex_";
2301 //        aFileName.append(val_to_string(*ip));
2302 //        aFileName.append(".brep");
2303 //        BRepTools::Write(v,aFileName.c_str());
2304
2305         if (HasSizeMapOnVertex){
2306           vertexKey = VerticesWithSizeMap.FindIndex(v);
2307           if (VertexId2SizeMap.find(vertexKey)!=VertexId2SizeMap.end()){
2308             theSizeMapStr = VertexId2SizeMap[vertexKey];
2309             if (theSizeMapStr.find(bad_end) == (theSizeMapStr.size()-bad_end.size()-1))
2310               continue;
2311             // Expr To Python function, verification is performed at validation in GUI
2312             gstate = PyGILState_Ensure();
2313             PyObject * obj = NULL;
2314             obj= PyRun_String(theSizeMapStr.c_str(), Py_file_input, main_dict, NULL);
2315             Py_DECREF(obj);
2316             PyObject * func = NULL;
2317             func = PyObject_GetAttrString(main_mod, "f");
2318             VertexId2PythonSmp[*ip]=func;
2319             VertexId2SizeMap.erase(vertexKey);   // do not erase if using a vector
2320             PyGILState_Release(gstate);
2321           }
2322         }
2323       }
2324       if (npts != 2) {
2325         // should not happen
2326         MESSAGE("An edge does not have 2 extremities.");
2327       } else {
2328         if (d1 < d2) {
2329           // This defines the curves extremity connectivity
2330           cad_edge_set_extremities(edg, ip1, ip2);
2331           /* set the tag (color) to the same value as the extremity id : */
2332           cad_edge_set_extremities_tag(edg, ip1, ip2);
2333         }
2334         else {
2335           cad_edge_set_extremities(edg, ip2, ip1);
2336           cad_edge_set_extremities_tag(edg, ip2, ip1);
2337         }
2338       }
2339     } // for edge
2340   } //for face
2341
2342   // Clear mesh from already meshed edges if possible else
2343   // remember that merge is needed
2344   TSubMeshSet::iterator smIt = edgeSubmeshes.begin();
2345   for ( ; smIt != edgeSubmeshes.end(); ++smIt ) // loop on already meshed EDGEs
2346   {
2347     SMESHDS_SubMesh* smDS = *smIt;
2348     if ( !smDS ) continue;
2349     SMDS_NodeIteratorPtr nIt = smDS->GetNodes();
2350     if ( nIt->more() )
2351     {
2352       const SMDS_MeshNode* n = nIt->next();
2353       if ( n->NbInverseElements( SMDSAbs_Face ) > 0 )
2354       {
2355         needMerge = true; // to correctly sew with viscous mesh
2356         // add existing medium nodes to helper
2357         if ( aMesh.NbEdges( ORDER_QUADRATIC ) > 0 )
2358         {
2359           SMDS_ElemIteratorPtr edgeIt = smDS->GetElements();
2360           while ( edgeIt->more() )
2361             helper.AddTLinks( static_cast<const SMDS_MeshEdge*>(edgeIt->next()));
2362         }
2363         continue;
2364       }
2365     }
2366     if ( allowSubMeshClearing )
2367     {
2368       SMDS_ElemIteratorPtr eIt = smDS->GetElements();
2369       while ( eIt->more() ) meshDS->RemoveFreeElement( eIt->next(), 0 );
2370       SMDS_NodeIteratorPtr nIt = smDS->GetNodes();
2371       while ( nIt->more() ) meshDS->RemoveFreeNode( nIt->next(), 0 );
2372       smDS->Clear();
2373     }
2374     else
2375     {
2376       needMerge = true;
2377     }
2378   }
2379
2380   ///////////////////////
2381   // PERIODICITY       //
2382   ///////////////////////
2383
2384   if (! _preCadFacesIDsPeriodicityVector.empty())
2385   {
2386     for (std::size_t i=0; i < _preCadFacesIDsPeriodicityVector.size(); i++){
2387       std::vector<int> theFace1_ids = _preCadFacesIDsPeriodicityVector[i].shape1IDs;
2388       std::vector<int> theFace2_ids = _preCadFacesIDsPeriodicityVector[i].shape2IDs;
2389       int* theFace1_ids_c = &theFace1_ids[0];
2390       int* theFace2_ids_c = &theFace2_ids[0];
2391       std::ostringstream o;
2392       o << "_preCadFacesIDsPeriodicityVector[" << i << "] = [";
2393       for (std::size_t j=0; j < theFace1_ids.size(); j++)
2394         o << theFace1_ids[j] << ", ";
2395       o << "], [";
2396       for (std::size_t j=0; j < theFace2_ids.size(); j++)
2397         o << theFace2_ids[j] << ", ";
2398       o << "]";
2399       // if ( _hypothesis->GetVerbosity() > _hypothesis->GetDefaultVerbosity() )
2400       //   cout << o.str() << endl;
2401       if (_preCadFacesIDsPeriodicityVector[i].theSourceVerticesCoords.empty())
2402       {
2403         // If no source points, call periodicity without transformation function
2404         meshgems_cad_periodicity_transformation_t periodicity_transformation = NULL;
2405         status = cad_add_face_multiple_periodicity_with_transformation_function(c, theFace1_ids_c, theFace1_ids.size(),
2406                                                                                 theFace2_ids_c, theFace2_ids.size(), periodicity_transformation, NULL);
2407         if(status != STATUS_OK)
2408           cout << "cad_add_face_multiple_periodicity_with_transformation_function failed with error code " << status << "\n";
2409       }
2410       else
2411       {
2412         // get the transformation vertices
2413         double* theSourceVerticesCoords_c = &_preCadFacesIDsPeriodicityVector[i].theSourceVerticesCoords[0];
2414         double* theTargetVerticesCoords_c = &_preCadFacesIDsPeriodicityVector[i].theTargetVerticesCoords[0];
2415         int nbSourceVertices = _preCadFacesIDsPeriodicityVector[i].theSourceVerticesCoords.size()/3;
2416         int nbTargetVertices = _preCadFacesIDsPeriodicityVector[i].theTargetVerticesCoords.size()/3;
2417
2418         status = cad_add_face_multiple_periodicity_with_transformation_function_by_points(c, theFace1_ids_c, theFace1_ids.size(),
2419                                                                                           theFace2_ids_c, theFace2_ids.size(), theSourceVerticesCoords_c, nbSourceVertices, theTargetVerticesCoords_c, nbTargetVertices);
2420         if(status != STATUS_OK)
2421           cout << "cad_add_face_multiple_periodicity_with_transformation_function_by_points failed with error code " << status << "\n";
2422       }
2423     }
2424   }
2425
2426   if (! _preCadEdgesIDsPeriodicityVector.empty())
2427   {
2428     for (std::size_t i=0; i < _preCadEdgesIDsPeriodicityVector.size(); i++){
2429       std::vector<int> theEdge1_ids = _preCadEdgesIDsPeriodicityVector[i].shape1IDs;
2430       std::vector<int> theEdge2_ids = _preCadEdgesIDsPeriodicityVector[i].shape2IDs;
2431       // Use the address of the first element of the vector to initialize the array
2432       int* theEdge1_ids_c = &theEdge1_ids[0];
2433       int* theEdge2_ids_c = &theEdge2_ids[0];
2434
2435       std::ostringstream o;
2436       o << "_preCadEdgesIDsPeriodicityVector[" << i << "] = [";
2437       for (std::size_t j=0; j < theEdge1_ids.size(); j++)
2438         o << theEdge1_ids[j] << ", ";
2439       o << "], [";
2440       for (std::size_t j=0; j < theEdge2_ids.size(); j++)
2441         o << theEdge2_ids[j] << ", ";
2442       o << "]";
2443       // if ( _hypothesis->GetVerbosity() > _hypothesis->GetDefaultVerbosity() )
2444       //   cout << o.str() << endl;
2445
2446       if (_preCadEdgesIDsPeriodicityVector[i].theSourceVerticesCoords.empty())
2447       {
2448         // If no source points, call periodicity without transformation function
2449         meshgems_cad_periodicity_transformation_t periodicity_transformation = NULL;
2450         status = cad_add_edge_multiple_periodicity_with_transformation_function(c, theEdge1_ids_c, theEdge1_ids.size(),
2451                                                                                 theEdge2_ids_c, theEdge2_ids.size(), periodicity_transformation, NULL);
2452         if(status != STATUS_OK)
2453           cout << "cad_add_edge_multiple_periodicity_with_transformation_function failed with error code " << status << "\n";
2454       }
2455       else
2456       {
2457         // get the transformation vertices
2458         double* theSourceVerticesCoords_c = &_preCadEdgesIDsPeriodicityVector[i].theSourceVerticesCoords[0];
2459         double* theTargetVerticesCoords_c = &_preCadEdgesIDsPeriodicityVector[i].theTargetVerticesCoords[0];
2460         int nbSourceVertices = _preCadEdgesIDsPeriodicityVector[i].theSourceVerticesCoords.size()/3;
2461         int nbTargetVertices = _preCadEdgesIDsPeriodicityVector[i].theTargetVerticesCoords.size()/3;
2462
2463         status = cad_add_edge_multiple_periodicity_with_transformation_function_by_points(c, theEdge1_ids_c, theEdge1_ids.size(),
2464                                                                                           theEdge2_ids_c, theEdge2_ids.size(), theSourceVerticesCoords_c, nbSourceVertices, theTargetVerticesCoords_c, nbTargetVertices);
2465         if(status != STATUS_OK)
2466           cout << "cad_add_edge_multiple_periodicity_with_transformation_function_by_points failed with error code " << status << "\n";
2467       }
2468     }
2469   }
2470
2471   
2472   // TODO: be able to use a mesh in input.
2473   // See imsh usage in Products/templates/mg-cadsurf_template_common.cpp
2474   // => cadsurf_set_mesh
2475     
2476   // Use the original dcad
2477   cadsurf_set_dcad(css, dcad);
2478
2479   // Use the original cad
2480   cadsurf_set_cad(css, c);
2481
2482   std::cout << std::endl;
2483   std::cout << "Beginning of Surface Mesh generation" << std::endl;
2484   std::cout << std::endl;
2485
2486   try {
2487     OCC_CATCH_SIGNALS;
2488
2489     status = cadsurf_compute_mesh(css);
2490
2491   }
2492   catch ( std::exception& exc ) {
2493     _comment += exc.what();
2494   }
2495   catch (Standard_Failure& ex) {
2496     _comment += ex.DynamicType()->Name();
2497     if ( ex.GetMessageString() && strlen( ex.GetMessageString() )) {
2498       _comment += ": ";
2499       _comment += ex.GetMessageString();
2500     }
2501   }
2502   catch (...) {
2503     if ( _comment.empty() )
2504       _comment = "Exception in cadsurf_compute_mesh()";
2505   }
2506
2507   std::cout << std::endl;
2508   std::cout << "End of Surface Mesh generation" << std::endl;
2509   std::cout << std::endl;
2510
2511   mesh_t *msh = NULL;
2512   cadsurf_get_mesh(css, &msh);
2513   if(!msh){
2514     /* release the mesh object */
2515     cadsurf_regain_mesh(css, msh);
2516     return error(_comment);
2517   }
2518
2519   std::string GMFFileName = BLSURFPlugin_Hypothesis::GetDefaultGMFFile();
2520   if (_hypothesis)
2521     GMFFileName = _hypothesis->GetGMFFile();
2522   if (GMFFileName != "") {
2523     bool asciiFound  = (GMFFileName.find(".mesh", GMFFileName.length()-5) != std::string::npos);
2524     bool binaryFound = (GMFFileName.find(".meshb",GMFFileName.length()-6) != std::string::npos);
2525     if (!asciiFound && !binaryFound)
2526       GMFFileName.append(".mesh");
2527     mesh_write_mesh(msh, GMFFileName.c_str());
2528   }
2529
2530   /* retrieve mesh data (see meshgems/mesh.h) */
2531   integer nv, ne, nt, nq, vtx[4], tag, nb_tag;
2532   integer *evedg, *evtri, *evquad, *tags_buff, type;
2533   real xyz[3];
2534
2535   mesh_get_vertex_count(msh, &nv);
2536   mesh_get_edge_count(msh, &ne);
2537   mesh_get_triangle_count(msh, &nt);
2538   mesh_get_quadrangle_count(msh, &nq);
2539
2540   evedg  = (integer *)mesh_calloc_generic_buffer(msh);
2541   evtri  = (integer *)mesh_calloc_generic_buffer(msh);
2542   evquad = (integer *)mesh_calloc_generic_buffer(msh);
2543   tags_buff = (integer*)mesh_calloc_generic_buffer(msh);
2544
2545   std::vector<const SMDS_MeshNode*> nodes(nv+1);
2546   std::vector<bool>                  tags(nv+1);
2547
2548   /* enumerated vertices */
2549   for(int iv=1;iv<=nv;iv++) {
2550     mesh_get_vertex_coordinates(msh, iv, xyz);
2551     mesh_get_vertex_tag(msh, iv, &tag);
2552     // Issue 0020656. Use vertex coordinates
2553     nodes[iv] = NULL;
2554     if ( tag > 0 && tag <= pmap.Extent() ) {
2555       TopoDS_Vertex v = TopoDS::Vertex(pmap(tag));
2556       double tol = BRep_Tool::Tolerance( v );
2557       gp_Pnt p = BRep_Tool::Pnt( v );
2558       if ( p.IsEqual( gp_Pnt( xyz[0], xyz[1], xyz[2]), 2*tol))
2559         xyz[0] = p.X(), xyz[1] = p.Y(), xyz[2] = p.Z();
2560       else
2561         tag = 0; // enforced or attracted vertex
2562       nodes[iv] = SMESH_Algo::VertexNode( v, meshDS );
2563     }
2564     if ( !nodes[iv] )
2565       nodes[iv] = meshDS->AddNode(xyz[0], xyz[1], xyz[2]);
2566
2567     // Create group of enforced vertices if requested
2568     BLSURFPlugin_Hypothesis::TEnfVertexCoords projVertex;
2569     projVertex.clear();
2570     projVertex.push_back((double)xyz[0]);
2571     projVertex.push_back((double)xyz[1]);
2572     projVertex.push_back((double)xyz[2]);
2573     std::map< BLSURFPlugin_Hypothesis::TEnfVertexCoords, BLSURFPlugin_Hypothesis::TEnfVertexList >::const_iterator enfCoordsIt = EnfVertexCoords2EnfVertexList.find(projVertex);
2574     if (enfCoordsIt != EnfVertexCoords2EnfVertexList.end())
2575     {
2576       BLSURFPlugin_Hypothesis::TEnfVertexList::const_iterator enfListIt = enfCoordsIt->second.begin();
2577       BLSURFPlugin_Hypothesis::TEnfVertex *currentEnfVertex;
2578       for (; enfListIt != enfCoordsIt->second.end(); ++enfListIt) {
2579         currentEnfVertex = (*enfListIt);
2580         if (currentEnfVertex->grpName != "") {
2581           bool groupDone = false;
2582           SMESH_Mesh::GroupIteratorPtr grIt = aMesh.GetGroups();
2583           while (grIt->more()) {
2584             SMESH_Group * group = grIt->next();
2585             if ( !group ) continue;
2586             SMESHDS_GroupBase* groupDS = group->GetGroupDS();
2587             if ( !groupDS ) continue;
2588             if ( groupDS->GetType()==SMDSAbs_Node && currentEnfVertex->grpName.compare(group->GetName())==0) {
2589               SMESHDS_Group* aGroupDS = static_cast<SMESHDS_Group*>( groupDS );
2590               aGroupDS->SMDSGroup().Add(nodes[iv]);
2591               // How can I inform the hypothesis ?
2592               //                 _hypothesis->AddEnfVertexNodeID(currentEnfVertex->grpName,nodes[iv]->GetID());
2593               groupDone = true;
2594               break;
2595             }
2596           }
2597           if (!groupDone)
2598           {
2599             int groupId;
2600             SMESH_Group* aGroup = aMesh.AddGroup(SMDSAbs_Node, currentEnfVertex->grpName.c_str(), groupId);
2601             aGroup->SetName( currentEnfVertex->grpName.c_str() );
2602             SMESHDS_Group* aGroupDS = static_cast<SMESHDS_Group*>( aGroup->GetGroupDS() );
2603             aGroupDS->SMDSGroup().Add(nodes[iv]);
2604             groupDone = true;
2605           }
2606           if (!groupDone)
2607             throw SALOME_Exception(LOCALIZED("An enforced vertex node was not added to a group"));
2608         }
2609         else
2610           MESSAGE("Group name is empty: '"<<currentEnfVertex->grpName<<"' => group is not created");
2611       }
2612     }
2613
2614     // internal points are tagged to zero
2615     if(tag > 0 && tag <= pmap.Extent() ){
2616       meshDS->SetNodeOnVertex(nodes[iv], TopoDS::Vertex(pmap(tag)));
2617       tags[iv] = false;
2618     } else {
2619       tags[iv] = true;
2620     }
2621   }
2622
2623   /* enumerate edges */
2624   for(int it=1;it<=ne;it++) {
2625     SMDS_MeshEdge* edg;
2626     mesh_get_edge_vertices(msh, it, vtx);
2627     mesh_get_edge_extra_vertices(msh, it, &type, evedg);
2628     mesh_get_edge_tag(msh, it, &tag);
2629
2630     // If PreCAD performed some cleaning operations (remove tiny edges,
2631     // merge edges ...) an output tag can indeed represent several original tags.
2632     // Get the initial tags corresponding to the output tag and redefine the tag as 
2633     // the last of the two initial tags (else the output tag is out of emap and hasn't any meaning)
2634     mesh_get_composite_tag_definition(msh, tag, &nb_tag, tags_buff);
2635     if(nb_tag > 1)  
2636       tag=tags_buff[nb_tag-1];
2637     if ( tag < 1 || tag > emap.Extent() )
2638     {
2639       std::cerr << "MG-CADSurf BUG:::: Edge tag " << tag
2640                 << " does not point to a CAD edge (nb edges " << emap.Extent() << ")" << std::endl;
2641       continue;
2642     }
2643     if (tags[vtx[0]]) {
2644       Set_NodeOnEdge(meshDS, nodes[vtx[0]], emap(tag));
2645       tags[vtx[0]] = false;
2646     };
2647     if (tags[vtx[1]]) {
2648       Set_NodeOnEdge(meshDS, nodes[vtx[1]], emap(tag));
2649       tags[vtx[1]] = false;
2650     };
2651     if (type == MESHGEMS_MESH_ELEMENT_TYPE_EDGE3) {
2652       // QUADRATIC EDGE
2653       if (tags[evedg[0]]) {
2654         Set_NodeOnEdge(meshDS, nodes[evedg[0]], emap(tag));
2655         tags[evedg[0]] = false;
2656       }
2657       edg = meshDS->AddEdge(nodes[vtx[0]], nodes[vtx[1]], nodes[evedg[0]]);
2658     }
2659     else {
2660       edg = helper.AddEdge(nodes[vtx[0]], nodes[vtx[1]]);
2661     }
2662     meshDS->SetMeshElementOnShape(edg, TopoDS::Edge(emap(tag)));
2663   }
2664
2665   /* enumerate triangles */
2666   for(int it=1;it<=nt;it++) {
2667     SMDS_MeshFace* tri;
2668     mesh_get_triangle_vertices(msh, it, vtx);
2669     mesh_get_triangle_extra_vertices(msh, it, &type, evtri);
2670     mesh_get_triangle_tag(msh, it, &tag);
2671     if (tags[vtx[0]]) {
2672       meshDS->SetNodeOnFace(nodes[vtx[0]], tag);
2673       tags[vtx[0]] = false;
2674     };
2675     if (tags[vtx[1]]) {
2676       meshDS->SetNodeOnFace(nodes[vtx[1]], tag);
2677       tags[vtx[1]] = false;
2678     };
2679     if (tags[vtx[2]]) {
2680       meshDS->SetNodeOnFace(nodes[vtx[2]], tag);
2681       tags[vtx[2]] = false;
2682     };
2683     if (type == MESHGEMS_MESH_ELEMENT_TYPE_TRIA6) {
2684       // QUADRATIC TRIANGLE
2685       if (tags[evtri[0]]) {
2686         meshDS->SetNodeOnFace(nodes[evtri[0]], tag);
2687         tags[evtri[0]] = false;
2688       }
2689       if (tags[evtri[1]]) {
2690         meshDS->SetNodeOnFace(nodes[evtri[1]], tag);
2691         tags[evtri[1]] = false;
2692       }
2693       if (tags[evtri[2]]) {
2694         meshDS->SetNodeOnFace(nodes[evtri[2]], tag);
2695         tags[evtri[2]] = false;
2696       }
2697       tri = meshDS->AddFace(nodes[vtx[0]], nodes[vtx[1]], nodes[vtx[2]],
2698                             nodes[evtri[0]], nodes[evtri[1]], nodes[evtri[2]]);
2699     }
2700     else {
2701       tri = helper.AddFace(nodes[vtx[0]], nodes[vtx[1]], nodes[vtx[2]]);
2702     }
2703     meshDS->SetMeshElementOnShape(tri, tag);
2704   }
2705
2706   /* enumerate quadrangles */
2707   for(int it=1;it<=nq;it++) {
2708     SMDS_MeshFace* quad;
2709     mesh_get_quadrangle_vertices(msh, it, vtx);
2710     mesh_get_quadrangle_extra_vertices(msh, it, &type, evquad);
2711     mesh_get_quadrangle_tag(msh, it, &tag);
2712     if (tags[vtx[0]]) {
2713       meshDS->SetNodeOnFace(nodes[vtx[0]], tag);
2714       tags[vtx[0]] = false;
2715     };
2716     if (tags[vtx[1]]) {
2717       meshDS->SetNodeOnFace(nodes[vtx[1]], tag);
2718       tags[vtx[1]] = false;
2719     };
2720     if (tags[vtx[2]]) {
2721       meshDS->SetNodeOnFace(nodes[vtx[2]], tag);
2722       tags[vtx[2]] = false;
2723     };
2724     if (tags[vtx[3]]) {
2725       meshDS->SetNodeOnFace(nodes[vtx[3]], tag);
2726       tags[vtx[3]] = false;
2727     };
2728     if (type == MESHGEMS_MESH_ELEMENT_TYPE_QUAD9) {
2729       // QUADRATIC QUADRANGLE
2730       std::cout << "This is a quadratic quadrangle" << std::endl;
2731       if (tags[evquad[0]]) {
2732         meshDS->SetNodeOnFace(nodes[evquad[0]], tag);
2733         tags[evquad[0]] = false;
2734       }
2735       if (tags[evquad[1]]) {
2736         meshDS->SetNodeOnFace(nodes[evquad[1]], tag);
2737         tags[evquad[1]] = false;
2738       }
2739       if (tags[evquad[2]]) {
2740         meshDS->SetNodeOnFace(nodes[evquad[2]], tag);
2741         tags[evquad[2]] = false;
2742       }
2743       if (tags[evquad[3]]) {
2744         meshDS->SetNodeOnFace(nodes[evquad[3]], tag);
2745         tags[evquad[3]] = false;
2746       }
2747       if (tags[evquad[4]]) {
2748         meshDS->SetNodeOnFace(nodes[evquad[4]], tag);
2749         tags[evquad[4]] = false;
2750       }
2751       quad = meshDS->AddFace(nodes[vtx[0]], nodes[vtx[1]], nodes[vtx[2]], nodes[vtx[3]],
2752                              nodes[evquad[0]], nodes[evquad[1]], nodes[evquad[2]], nodes[evquad[3]],
2753                              nodes[evquad[4]]);
2754     }
2755     else {
2756       quad = helper.AddFace(nodes[vtx[0]], nodes[vtx[1]], nodes[vtx[2]], nodes[vtx[3]]);
2757     }
2758     meshDS->SetMeshElementOnShape(quad, tag);
2759   }
2760
2761   /* release the mesh object, the rest is released by cleaner */
2762   cadsurf_regain_mesh(css, msh);
2763
2764
2765   // Remove free nodes that can appear e.g. if "remove tiny edges"(IPAL53235)
2766   for(int iv=1;iv<=nv;iv++)
2767     if ( nodes[iv] && nodes[iv]->NbInverseElements() == 0 )
2768       meshDS->RemoveFreeNode( nodes[iv], 0, /*fromGroups=*/false );
2769
2770
2771   if ( needMerge ) // sew mesh computed by MG-CADSurf with pre-existing mesh
2772   {
2773     SMESH_MeshEditor editor( &aMesh );
2774     SMESH_MeshEditor::TListOfListOfNodes nodeGroupsToMerge;
2775     TIDSortedElemSet segementsOnEdge;
2776     TSubMeshSet::iterator smIt;
2777     SMESHDS_SubMesh* smDS;
2778
2779     // merge nodes on EDGE's with ones computed by MG-CADSurf
2780     for ( smIt = mergeSubmeshes.begin(); smIt != mergeSubmeshes.end(); ++smIt )
2781     {
2782       if (! (smDS = *smIt) ) continue;
2783       getNodeGroupsToMerge( smDS, meshDS->IndexToShape((*smIt)->GetID()), nodeGroupsToMerge );
2784
2785       SMDS_ElemIteratorPtr segIt = smDS->GetElements();
2786       while ( segIt->more() )
2787         segementsOnEdge.insert( segIt->next() );
2788     }
2789     // merge nodes
2790     editor.MergeNodes( nodeGroupsToMerge );
2791
2792     // merge segments
2793     SMESH_MeshEditor::TListOfListOfElementsID equalSegments;
2794     editor.FindEqualElements( segementsOnEdge, equalSegments );
2795     editor.MergeElements( equalSegments );
2796
2797     // remove excess segments created on the boundary of viscous layers
2798     const SMDS_TypeOfPosition onFace = SMDS_TOP_FACE;
2799     for ( int i = 1; i <= emap.Extent(); ++i )
2800     {
2801       if ( SMESHDS_SubMesh* smDS = meshDS->MeshElements( emap( i )))
2802       {
2803         SMDS_ElemIteratorPtr segIt = smDS->GetElements();
2804         while ( segIt->more() )
2805         {
2806           const SMDS_MeshElement* seg = segIt->next();
2807           if ( seg->GetNode(0)->GetPosition()->GetTypeOfPosition() == onFace ||
2808                seg->GetNode(1)->GetPosition()->GetTypeOfPosition() == onFace )
2809             meshDS->RemoveFreeElement( seg, smDS );
2810         }
2811       }
2812     }
2813   }
2814
2815
2816   // SetIsAlwaysComputed( true ) to sub-meshes of EDGEs w/o mesh
2817   for (int i = 1; i <= emap.Extent(); i++)
2818     if ( SMESH_subMesh* sm = aMesh.GetSubMeshContaining( emap( i )))
2819       sm->SetIsAlwaysComputed( true );
2820   for (int i = 1; i <= pmap.Extent(); i++)
2821     if ( SMESH_subMesh* sm = aMesh.GetSubMeshContaining( pmap( i )))
2822       if ( !sm->IsMeshComputed() )
2823         sm->SetIsAlwaysComputed( true );
2824
2825   // Set error to FACE's w/o elements
2826   SMESH_ComputeErrorName err = COMPERR_ALGO_FAILED;
2827   if ( _comment.empty() && status == STATUS_OK )
2828   {
2829     err      = COMPERR_WARNING;
2830     _comment = "No mesh elements assigned to a face";
2831   }
2832   bool badFaceFound = false;
2833   for (TopExp_Explorer face_iter(aShape,TopAbs_FACE);face_iter.More();face_iter.Next())
2834   {
2835     TopoDS_Face f = TopoDS::Face(face_iter.Current());
2836     SMESH_subMesh* sm = aMesh.GetSubMesh( f );
2837     if ( !sm->GetSubMeshDS() || sm->GetSubMeshDS()->NbElements() == 0 )
2838     {
2839       int faceTag = sm->GetId();
2840       if ( faceTag != BLSURFPlugin_Hypothesis::GetHyperPatchTag( faceTag, _hypothesis ))
2841       {
2842         // triangles are assigned to the first face of hyper-patch
2843         sm->SetIsAlwaysComputed( true );
2844       }
2845       else
2846       {
2847         sm->GetComputeError().reset( new SMESH_ComputeError( err, _comment, this ));
2848         badFaceFound = true;
2849       }
2850     }
2851   }
2852   if ( err == COMPERR_WARNING )
2853   {
2854     _comment.clear();
2855   }
2856   if ( status != STATUS_OK && !badFaceFound ) {
2857     error(_comment);
2858   }
2859
2860   // Issue 0019864. On DebianSarge, FE signals do not obey to OSD::SetSignal(false)
2861 #ifndef WIN32
2862   if ( oldFEFlags > 0 )
2863     feenableexcept( oldFEFlags );
2864   feclearexcept( FE_ALL_EXCEPT );
2865 #endif
2866
2867   /*
2868     std::cout << "FacesWithSizeMap" << std::endl;
2869     FacesWithSizeMap.Statistics(std::cout);
2870     std::cout << "EdgesWithSizeMap" << std::endl;
2871     EdgesWithSizeMap.Statistics(std::cout);
2872     std::cout << "VerticesWithSizeMap" << std::endl;
2873     VerticesWithSizeMap.Statistics(std::cout);
2874     std::cout << "FacesWithEnforcedVertices" << std::endl;
2875     FacesWithEnforcedVertices.Statistics(std::cout);
2876   */
2877
2878   return ( status == STATUS_OK && !quadraticSubMeshAndViscousLayer );
2879 }
2880
2881 //================================================================================
2882 /*!
2883  * \brief Compute a mesh basing on discrete CAD description
2884  */
2885 //================================================================================
2886
2887 bool BLSURFPlugin_BLSURF::Compute(SMESH_Mesh & aMesh, SMESH_MesherHelper* aHelper)
2888 {
2889   if ( aMesh.NbFaces() == 0 )
2890     return error( COMPERR_BAD_INPUT_MESH, "2D elements are missing" );
2891
2892   context_t *ctx = context_new();
2893   if (!ctx) return error("Pb in context_new()");
2894
2895   BLSURF_Cleaner cleaner( ctx );
2896
2897   message_cb_user_data mcud;
2898   mcud._error     = & this->SMESH_Algo::_comment;
2899   mcud._progress  = & this->SMESH_Algo::_progress;
2900   mcud._verbosity =
2901     _hypothesis ? _hypothesis->GetVerbosity() : BLSURFPlugin_Hypothesis::GetDefaultVerbosity();
2902   meshgems_status_t ret = context_set_message_callback(ctx, message_cb, &mcud);
2903   if (ret != STATUS_OK) return error("Pb. in context_set_message_callback() ");
2904
2905   cadsurf_session_t * css = cadsurf_session_new(ctx);
2906   if(!css) return error( "Pb. in cadsurf_session_new() " );
2907   cleaner._css = css;
2908
2909
2910   // Fill an input mesh
2911
2912   mesh_t * msh = meshgems_mesh_new_in_memory( ctx );
2913   if ( !msh ) return error("Pb. in meshgems_mesh_new_in_memory()"); 
2914
2915   // mark nodes used by 2D elements
2916   SMESHDS_Mesh* meshDS = aMesh.GetMeshDS();
2917   SMDS_NodeIteratorPtr nodeIt = meshDS->nodesIterator();
2918   while ( nodeIt->more() )
2919   {
2920     const SMDS_MeshNode* n = nodeIt->next();
2921     n->setIsMarked( n->NbInverseElements( SMDSAbs_Face ));
2922   }
2923   meshgems_mesh_set_vertex_count( msh, meshDS->NbNodes() );
2924
2925   // set node coordinates
2926   if ( meshDS->NbNodes() != meshDS->MaxNodeID() )
2927   {
2928     meshDS->compactMesh();
2929   }
2930   SMESH_NodeXYZ nXYZ;
2931   nodeIt = meshDS->nodesIterator();
2932   meshgems_integer i;
2933   for ( i = 1; nodeIt->more(); ++i )
2934   {
2935     nXYZ.Set( nodeIt->next() );
2936     meshgems_mesh_set_vertex_coordinates( msh, i, nXYZ.ChangeData() );
2937   }
2938
2939   // set nodes of faces
2940   meshgems_mesh_set_triangle_count  ( msh, meshDS->GetMeshInfo().NbTriangles() );
2941   meshgems_mesh_set_quadrangle_count( msh, meshDS->GetMeshInfo().NbQuadrangles() );
2942   meshgems_integer nodeIDs[4];
2943   meshgems_integer iT = 1, iQ = 1;
2944   SMDS_FaceIteratorPtr faceIt = meshDS->facesIterator();
2945   while ( faceIt->more() )
2946   {
2947     const SMDS_MeshElement* face = faceIt->next();
2948     meshgems_integer nbNodes = face->NbCornerNodes();
2949     if ( nbNodes > 4 || face->IsPoly() ) continue;
2950
2951     for ( i = 0; i < nbNodes; ++i )
2952       nodeIDs[i] = face->GetNode( i )->GetID();
2953     if ( nbNodes == 3 )
2954       meshgems_mesh_set_triangle_vertices  ( msh, iT++, nodeIDs );
2955     else
2956       meshgems_mesh_set_quadrangle_vertices( msh, iQ++, nodeIDs );
2957   }
2958
2959   ret = cadsurf_set_mesh(css, msh);
2960   if ( ret != STATUS_OK ) return error("Pb in cadsurf_set_mesh()");
2961
2962
2963   // Compute the mesh
2964
2965   SetParameters(_hypothesis, css, aMesh.GetShapeToMesh() );
2966
2967   ret = cadsurf_compute_mesh(css);
2968   if ( ret != STATUS_OK ) return false;
2969
2970   mesh_t *omsh = 0;
2971   cadsurf_get_mesh(css, &omsh);
2972   if ( !omsh ) return error( "Pb. in cadsurf_get_mesh()" );
2973
2974
2975   // Update SALOME mesh
2976
2977   // remove quadrangles and triangles
2978   for ( faceIt = meshDS->facesIterator(); faceIt->more();  )
2979   {
2980     const SMDS_MeshElement* face = faceIt->next();
2981     if ( !face->IsPoly() )
2982       meshDS->RemoveFreeElement( face, /*sm=*/0, /*fromGroups=*/true );
2983   }
2984   // remove edges that bound the just removed faces
2985   for ( SMDS_EdgeIteratorPtr edgeIt = meshDS->edgesIterator(); edgeIt->more(); )
2986   {
2987     const SMDS_MeshElement* edge = edgeIt->next();
2988     const SMDS_MeshNode* n0 = edge->GetNode(0);
2989     const SMDS_MeshNode* n1 = edge->GetNode(1);
2990     if ( n0->isMarked() &&
2991          n1->isMarked() &&
2992          n0->NbInverseElements( SMDSAbs_Volume ) == 0 &&
2993          n1->NbInverseElements( SMDSAbs_Volume ) == 0 )
2994       meshDS->RemoveFreeElement( edge, /*sm=*/0, /*fromGroups=*/true );
2995   }
2996   // remove nodes that just became free
2997   for ( nodeIt = meshDS->nodesIterator(); nodeIt->more(); )
2998   {
2999     const SMDS_MeshNode* n = nodeIt->next();
3000     if ( n->isMarked() && n->NbInverseElements() == 0 )
3001       meshDS->RemoveFreeNode( n, /*sm=*/0, /*fromGroups=*/true );
3002   }
3003
3004   // add nodes
3005   meshgems_integer nbvtx = 0, nodeID;
3006   meshgems_mesh_get_vertex_count( omsh, &nbvtx );
3007   meshgems_real xyz[3];
3008   for ( i = 1; i <= nbvtx; ++i )
3009   {
3010     meshgems_mesh_get_vertex_coordinates( omsh, i, xyz );
3011     SMDS_MeshNode* n = meshDS->AddNode( xyz[0], xyz[1], xyz[2] );
3012     nodeID = n->GetID();
3013     meshgems_mesh_set_vertex_tag( omsh, i, &nodeID ); // save mapping of IDs in MG and SALOME meshes
3014   }
3015
3016   // add triangles
3017   meshgems_integer nbtri = 0;
3018   meshgems_mesh_get_triangle_count( omsh, &nbtri );
3019   const SMDS_MeshNode* nodes[3];
3020   for ( i = 1; i <= nbtri; ++i )
3021   {
3022     meshgems_mesh_get_triangle_vertices( omsh, i, nodeIDs );
3023     for ( int j = 0; j < 3; ++j )
3024     {
3025       meshgems_mesh_get_vertex_tag( omsh, nodeIDs[j], &nodeID );
3026       nodes[j] = meshDS->FindNode( nodeID );
3027     }
3028     meshDS->AddFace( nodes[0], nodes[1], nodes[2] );
3029   }
3030
3031   cadsurf_regain_mesh(css, omsh);
3032
3033   // as we don't assign the new triangles to a shape (the pseudo-shape),
3034   // we mark the shape as always computed to avoid the error messages
3035   // that no elements assigned to the shape
3036   aMesh.GetSubMesh( aHelper->GetSubShape() )->SetIsAlwaysComputed( true );
3037
3038   return true;
3039 }
3040
3041 //================================================================================
3042 /*!
3043  * \brief Terminates computation
3044  */
3045 //================================================================================
3046
3047 void BLSURFPlugin_BLSURF::CancelCompute()
3048 {
3049   _compute_canceled = true;
3050 }
3051
3052 //=============================================================================
3053 /*!
3054  *  SetNodeOnEdge
3055  */
3056 //=============================================================================
3057
3058 void BLSURFPlugin_BLSURF::Set_NodeOnEdge(SMESHDS_Mesh*        meshDS,
3059                                          const SMDS_MeshNode* node,
3060                                          const TopoDS_Shape&  ed)
3061 {
3062   const TopoDS_Edge edge = TopoDS::Edge(ed);
3063
3064   gp_Pnt pnt(node->X(), node->Y(), node->Z());
3065
3066   Standard_Real p0 = 0.0;
3067   Standard_Real p1 = 1.0;
3068   TopLoc_Location loc;
3069   Handle(Geom_Curve) curve = BRep_Tool::Curve(edge, loc, p0, p1);
3070   if ( curve.IsNull() )
3071   {
3072     // issue 22499. Node at a sphere apex
3073     meshDS->SetNodeOnEdge(node, edge, p0);
3074     return;
3075   }
3076
3077   if ( !loc.IsIdentity() ) pnt.Transform( loc.Transformation().Inverted() );
3078   GeomAPI_ProjectPointOnCurve proj(pnt, curve, p0, p1);
3079
3080   double pa = 0.;
3081   if ( proj.NbPoints() > 0 )
3082   {
3083     pa = (double)proj.LowerDistanceParameter();
3084     // Issue 0020656. Move node if it is too far from edge
3085     gp_Pnt curve_pnt = curve->Value( pa );
3086     double dist2     = pnt.SquareDistance( curve_pnt );
3087     double tol       = BRep_Tool::Tolerance( edge );
3088     if ( 1e-14 < dist2 && dist2 <= 1000*tol ) // large enough and within tolerance
3089     {
3090       curve_pnt.Transform( loc );
3091       meshDS->MoveNode( node, curve_pnt.X(), curve_pnt.Y(), curve_pnt.Z() );
3092     }
3093   }
3094
3095   meshDS->SetNodeOnEdge(node, edge, pa);
3096 }
3097
3098 /* Curve definition function See cad_curv_t in file meshgems/cad.h for
3099  * more information.
3100  * NOTE : if when your CAD systems evaluates second
3101  * order derivatives it also computes first order derivatives and
3102  * function evaluation, you can optimize this example by making only
3103  * one CAD call and filling the necessary uv, dt, dtt arrays.
3104  */
3105 status_t curv_fun(real t, real *uv, real *dt, real *dtt, void *user_data)
3106 {
3107   /* t is given. It contains the t (time) 1D parametric coordintaes
3108      of the point PreCAD/MG-CADSurf is querying on the curve */
3109
3110   /* user_data identifies the edge PreCAD/MG-CADSurf is querying
3111    * (see cad_edge_new later in this example) */
3112   const Geom2d_Curve*pargeo = (const Geom2d_Curve*) user_data;
3113
3114   if (uv){
3115    /* MG-CADSurf is querying the function evaluation */
3116     gp_Pnt2d P;
3117     P=pargeo->Value(t);
3118     uv[0]=P.X(); uv[1]=P.Y();
3119   }
3120
3121   if(dt) {
3122    /* query for the first order derivatives */
3123     gp_Vec2d V1;
3124     V1=pargeo->DN(t,1);
3125     dt[0]=V1.X(); dt[1]=V1.Y();
3126   }
3127
3128   if(dtt){
3129     /* query for the second order derivatives */
3130     gp_Vec2d V2;
3131     V2=pargeo->DN(t,2);
3132     dtt[0]=V2.X(); dtt[1]=V2.Y();
3133   }
3134
3135   return STATUS_OK;
3136 }
3137
3138 /* Surface definition function.
3139  * See cad_surf_t in file meshgems/cad.h for more information.
3140  * NOTE : if when your CAD systems evaluates second order derivatives it also
3141  * computes first order derivatives and function evaluation, you can optimize
3142  * this example by making only one CAD call and filling the necessary xyz, du, dv, etc..
3143  * arrays.
3144  */
3145 status_t surf_fun(real *uv, real *xyz, real*du, real *dv,
3146                   real *duu, real *duv, real *dvv, void *user_data)
3147 {
3148   /* uv[2] is given. It contains the u,v coordinates of the point
3149    * PreCAD/MG-CADSurf is querying on the surface */
3150
3151   /* user_data identifies the face PreCAD/MG-CADSurf is querying (see
3152    * cad_face_new later in this example)*/
3153   const Geom_Surface* geometry = (const Geom_Surface*) user_data;
3154
3155   if(xyz){
3156    gp_Pnt P;
3157    P=geometry->Value(uv[0],uv[1]);   // S.D0(U,V,P);
3158    xyz[0]=P.X(); xyz[1]=P.Y(); xyz[2]=P.Z();
3159   }
3160
3161   if(du && dv){
3162     gp_Pnt P;
3163     gp_Vec D1U,D1V;
3164
3165     geometry->D1(uv[0],uv[1],P,D1U,D1V);
3166     du[0]=D1U.X(); du[1]=D1U.Y(); du[2]=D1U.Z();
3167     dv[0]=D1V.X(); dv[1]=D1V.Y(); dv[2]=D1V.Z();
3168   }
3169
3170   if(duu && duv && dvv){
3171
3172     gp_Pnt P;
3173     gp_Vec D1U,D1V;
3174     gp_Vec D2U,D2V,D2UV;
3175
3176     geometry->D2(uv[0],uv[1],P,D1U,D1V,D2U,D2V,D2UV);
3177     duu[0]=D2U.X(); duu[1]=D2U.Y(); duu[2]=D2U.Z();
3178     duv[0]=D2UV.X(); duv[1]=D2UV.Y(); duv[2]=D2UV.Z();
3179     dvv[0]=D2V.X(); dvv[1]=D2V.Y(); dvv[2]=D2V.Z();
3180   }
3181
3182   return STATUS_OK;
3183 }
3184
3185
3186 status_t size_on_surface(integer face_id, real *uv, real *size, void *user_data)
3187 {
3188   TId2ClsAttractorVec::iterator f2attVec;
3189   if (FaceId2PythonSmp.count(face_id) != 0) {
3190     assert(Py_IsInitialized());
3191     PyGILState_STATE gstate;
3192     gstate = PyGILState_Ensure();
3193     PyObject* pyresult = PyObject_CallFunction(FaceId2PythonSmp[face_id],(char*)"(f,f)",uv[0],uv[1]);
3194     real result;
3195     if ( pyresult != NULL) {
3196       result = PyFloat_AsDouble(pyresult);
3197       Py_DECREF(pyresult);
3198       //       *size = result;
3199     }
3200     else{
3201       fflush(stderr);
3202       string err_description="";
3203       PyObject* new_stderr = newPyStdOut(err_description);
3204       PyObject* old_stderr = PySys_GetObject((char*)"stderr");
3205       Py_INCREF(old_stderr);
3206       PySys_SetObject((char*)"stderr", new_stderr);
3207       PyErr_Print();
3208       PySys_SetObject((char*)"stderr", old_stderr);
3209       Py_DECREF(new_stderr);
3210       MESSAGE("Can't evaluate f(" << uv[0] << "," << uv[1] << ")" << " error is " << err_description);
3211       result = *((real*)user_data);
3212     }
3213     *size = result;
3214     PyGILState_Release(gstate);
3215   }
3216   else if (( f2attVec = FaceIndex2ClassAttractor.find(face_id)) != FaceIndex2ClassAttractor.end() && !f2attVec->second.empty())
3217   {
3218     real result = 0;
3219     result = 1e100;
3220     std::vector< BLSURFPlugin_Attractor* > & attVec = f2attVec->second;
3221     for ( size_t i = 0; i < attVec.size(); ++i )
3222     {
3223       //result += attVec[i]->GetSize(uv[0],uv[1]);
3224       result = Min( result, attVec[i]->GetSize(uv[0],uv[1]));
3225     }
3226     //*size = result / attVec.size(); // mean of sizes defined by all attractors
3227     *size = result;
3228   }
3229   else {
3230     *size = *((real*)user_data);
3231   }
3232   //   std::cout << "Size_on_surface sur la face " << face_id << " donne une size de: " << *size << std::endl;
3233   return STATUS_OK;
3234 }
3235
3236 status_t size_on_edge(integer edge_id, real t, real *size, void *user_data)
3237 {
3238   if (EdgeId2PythonSmp.count(edge_id) != 0){
3239     assert(Py_IsInitialized());
3240     PyGILState_STATE gstate;
3241     gstate = PyGILState_Ensure();
3242     PyObject* pyresult = PyObject_CallFunction(EdgeId2PythonSmp[edge_id],(char*)"(f)",t);
3243     real result;
3244     if ( pyresult != NULL) {
3245       result = PyFloat_AsDouble(pyresult);
3246       Py_DECREF(pyresult);
3247 //       *size = result;
3248     }
3249     else{
3250       fflush(stderr);
3251       string err_description="";
3252       PyObject* new_stderr = newPyStdOut(err_description);
3253       PyObject* old_stderr = PySys_GetObject((char*)"stderr");
3254       Py_INCREF(old_stderr);
3255       PySys_SetObject((char*)"stderr", new_stderr);
3256       PyErr_Print();
3257       PySys_SetObject((char*)"stderr", old_stderr);
3258       Py_DECREF(new_stderr);
3259       MESSAGE("Can't evaluate f(" << t << ")" << " error is " << err_description);
3260       result = *((real*)user_data);
3261     }
3262     *size = result;
3263     PyGILState_Release(gstate);
3264   }
3265   else {
3266     *size = *((real*)user_data);
3267   }
3268   return STATUS_OK;
3269 }
3270
3271 status_t size_on_vertex(integer point_id, real *size, void *user_data)
3272 {
3273   if (VertexId2PythonSmp.count(point_id) != 0){
3274     assert(Py_IsInitialized());
3275     PyGILState_STATE gstate;
3276     gstate = PyGILState_Ensure();
3277     PyObject* pyresult = PyObject_CallFunction(VertexId2PythonSmp[point_id],(char*)"");
3278     real result;
3279     if ( pyresult != NULL) {
3280       result = PyFloat_AsDouble(pyresult);
3281       Py_DECREF(pyresult);
3282 //       *size = result;
3283     }
3284     else {
3285       fflush(stderr);
3286       string err_description="";
3287       PyObject* new_stderr = newPyStdOut(err_description);
3288       PyObject* old_stderr = PySys_GetObject((char*)"stderr");
3289       Py_INCREF(old_stderr);
3290       PySys_SetObject((char*)"stderr", new_stderr);
3291       PyErr_Print();
3292       PySys_SetObject((char*)"stderr", old_stderr);
3293       Py_DECREF(new_stderr);
3294       MESSAGE("Can't evaluate f()" << " error is " << err_description);
3295       result = *((real*)user_data);
3296     }
3297     *size = result;
3298     PyGILState_Release(gstate);
3299   }
3300   else {
3301     *size = *((real*)user_data);
3302   }
3303  return STATUS_OK;
3304 }
3305
3306 /*
3307  * The following function will be called for PreCAD/MG-CADSurf message
3308  * printing.  See context_set_message_callback (later in this
3309  * template) for how to set user_data.
3310  */
3311 status_t message_cb(message_t *msg, void *user_data)
3312 {
3313   integer errnumber = 0;
3314   char *desc;
3315   message_get_number(msg, &errnumber);
3316   message_get_description(msg, &desc);
3317   string err( desc );
3318   message_cb_user_data * mcud = (message_cb_user_data*)user_data;
3319   // Get all the error message and some warning messages related to license and periodicity
3320   if ( errnumber < 0 ||
3321        err.find("license"    ) != string::npos ||
3322        err.find("periodicity") != string::npos )
3323   {
3324     // remove ^A from the tail
3325     int len = strlen( desc );
3326     while (len > 0 && desc[len-1] != '\n')
3327       len--;
3328     mcud->_error->append( desc, len );
3329   }
3330   else {
3331     if ( errnumber == 3009001 )
3332       * mcud->_progress = atof( desc + 11 ) / 100.;
3333     if ( mcud->_verbosity > 0 )
3334       std::cout << desc << std::endl;
3335   }
3336   return STATUS_OK;
3337 }
3338
3339 /* This is the interrupt callback. PreCAD/MG-CADSurf will call this
3340  * function regularily. See the file meshgems/interrupt.h
3341  */
3342 status_t interrupt_cb(integer *interrupt_status, void *user_data)
3343 {
3344   integer you_want_to_continue = 1;
3345   BLSURFPlugin_BLSURF* tmp = (BLSURFPlugin_BLSURF*)user_data;
3346   you_want_to_continue = !tmp->computeCanceled();
3347
3348   if(you_want_to_continue)
3349   {
3350     *interrupt_status = INTERRUPT_CONTINUE;
3351     return STATUS_OK;
3352   }
3353   else /* you want to stop MG-CADSurf */
3354   {
3355     *interrupt_status = INTERRUPT_STOP;
3356     return STATUS_ERROR;
3357   }
3358 }
3359
3360 //=============================================================================
3361 /*!
3362  *
3363  */
3364 //=============================================================================
3365 bool BLSURFPlugin_BLSURF::Evaluate(SMESH_Mesh&         aMesh,
3366                                    const TopoDS_Shape& aShape,
3367                                    MapShapeNbElems&    aResMap)
3368 {
3369   double diagonal       = aMesh.GetShapeDiagonalSize();
3370   double bbSegmentation = _gen->GetBoundaryBoxSegmentation();
3371   int    _physicalMesh  = BLSURFPlugin_Hypothesis::GetDefaultPhysicalMesh();
3372   double _phySize       = BLSURFPlugin_Hypothesis::GetDefaultPhySize(diagonal, bbSegmentation);
3373   bool   _phySizeRel    = BLSURFPlugin_Hypothesis::GetDefaultPhySizeRel();
3374   //int    _geometricMesh = BLSURFPlugin_Hypothesis::GetDefaultGeometricMesh();
3375   double _angleMesh     = BLSURFPlugin_Hypothesis::GetDefaultAngleMesh();
3376   BLSURFPlugin_Hypothesis::ElementType   _elementType   = BLSURFPlugin_Hypothesis::GetDefaultElementType();
3377   if(_hypothesis) {
3378     _physicalMesh  = (int) _hypothesis->GetPhysicalMesh();
3379     _phySizeRel         = _hypothesis->IsPhySizeRel();
3380     if ( _hypothesis->GetPhySize() > 0)
3381       _phySize          = _phySizeRel ? diagonal*_hypothesis->GetPhySize() : _hypothesis->GetPhySize();
3382     //_geometricMesh = (int) hyp->GetGeometricMesh();
3383     if (_hypothesis->GetAngleMesh() > 0)
3384       _angleMesh        = _hypothesis->GetAngleMesh();
3385     _elementType        = _hypothesis->GetElementType();
3386   } else {
3387     //0020968: EDF1545 SMESH: Problem in the creation of a mesh group on geometry
3388     // GetDefaultPhySize() sometimes leads to computation failure
3389     _phySize = aMesh.GetShapeDiagonalSize() / _gen->GetBoundaryBoxSegmentation();
3390   }
3391
3392   bool IsQuadratic = _quadraticMesh;
3393
3394   // ----------------
3395   // evaluate 1D
3396   // ----------------
3397   TopTools_DataMapOfShapeInteger EdgesMap;
3398   double fullLen = 0.0;
3399   double fullNbSeg = 0;
3400   for (TopExp_Explorer exp(aShape, TopAbs_EDGE); exp.More(); exp.Next()) {
3401     TopoDS_Edge E = TopoDS::Edge( exp.Current() );
3402     if( EdgesMap.IsBound(E) )
3403       continue;
3404     SMESH_subMesh *sm = aMesh.GetSubMesh(E);
3405     double aLen = SMESH_Algo::EdgeLength(E);
3406     fullLen += aLen;
3407     int nb1d = 0;
3408     if(_physicalMesh==1) {
3409        nb1d = (int)( aLen/_phySize + 1 );
3410     }
3411     else {
3412       // use geometry
3413       double f,l;
3414       Handle(Geom_Curve) C = BRep_Tool::Curve(E,f,l);
3415       double fullAng = 0.0;
3416       double dp = (l-f)/200;
3417       gp_Pnt P1,P2,P3;
3418       C->D0(f,P1);
3419       C->D0(f+dp,P2);
3420       gp_Vec V1(P1,P2);
3421       for(int j=2; j<=200; j++) {
3422         C->D0(f+dp*j,P3);
3423         gp_Vec V2(P2,P3);
3424         fullAng += fabs(V1.Angle(V2));
3425         V1 = V2;
3426         P2 = P3;
3427       }
3428       nb1d = (int)( fullAng/_angleMesh + 1 );
3429     }
3430     fullNbSeg += nb1d;
3431     std::vector<int> aVec(SMDSEntity_Last);
3432     for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aVec[i]=0;
3433     if( IsQuadratic > 0 ) {
3434       aVec[SMDSEntity_Node] = 2*nb1d - 1;
3435       aVec[SMDSEntity_Quad_Edge] = nb1d;
3436     }
3437     else {
3438       aVec[SMDSEntity_Node] = nb1d - 1;
3439       aVec[SMDSEntity_Edge] = nb1d;
3440     }
3441     aResMap.insert(std::make_pair(sm,aVec));
3442     EdgesMap.Bind(E,nb1d);
3443   }
3444   double ELen = fullLen/fullNbSeg;
3445   // ----------------
3446   // evaluate 2D
3447   // ----------------
3448   // try to evaluate as in MEFISTO
3449   for (TopExp_Explorer exp(aShape, TopAbs_FACE); exp.More(); exp.Next()) {
3450     TopoDS_Face F = TopoDS::Face( exp.Current() );
3451     SMESH_subMesh *sm = aMesh.GetSubMesh(F);
3452     GProp_GProps G;
3453     BRepGProp::SurfaceProperties(F,G);
3454     double anArea = G.Mass();
3455     int nb1d = 0;
3456     std::vector<int> nb1dVec;
3457     for (TopExp_Explorer exp1(F,TopAbs_EDGE); exp1.More(); exp1.Next()) {
3458       int nbSeg = EdgesMap.Find(exp1.Current());
3459       nb1d += nbSeg;
3460       nb1dVec.push_back( nbSeg );
3461     }
3462     int nbQuad = 0;
3463     int nbTria = (int) ( anArea/( ELen*ELen*sqrt(3.) / 4 ) );
3464     int nbNodes = (int) ( ( nbTria*3 - (nb1d-1)*2 ) / 6 + 1 );
3465     if ( _elementType != BLSURFPlugin_Hypothesis::Quadrangles )
3466     {
3467       if ( nb1dVec.size() == 4 ) // quadrangle geom face
3468       {
3469         int n1 = nb1dVec[0], n2 = nb1dVec[ nb1dVec[1] == nb1dVec[0] ? 2 : 1 ];
3470         nbQuad = n1 * n2;
3471         nbNodes = (n1 + 1) * (n2 + 1);
3472         nbTria = 0;
3473       }
3474       else
3475       {
3476         nbTria = nbQuad = nbTria / 3 + 1;
3477       }
3478     }
3479     std::vector<int> aVec(SMDSEntity_Last,0);
3480     if( IsQuadratic ) {
3481       int nb1d_in = (nbTria*3 - nb1d) / 2;
3482       aVec[SMDSEntity_Node] = nbNodes + nb1d_in;
3483       aVec[SMDSEntity_Quad_Triangle] = nbTria;
3484       aVec[SMDSEntity_Quad_Quadrangle] = nbQuad;
3485     }
3486     else {
3487       aVec[SMDSEntity_Node] = nbNodes;
3488       aVec[SMDSEntity_Triangle] = nbTria;
3489       aVec[SMDSEntity_Quadrangle] = nbQuad;
3490     }
3491     aResMap.insert(std::make_pair(sm,aVec));
3492   }
3493
3494   // ----------------
3495   // evaluate 3D
3496   // ----------------
3497   GProp_GProps G;
3498   BRepGProp::VolumeProperties(aShape,G);
3499   double aVolume = G.Mass();
3500   double tetrVol = 0.1179*ELen*ELen*ELen;
3501   int nbVols  = int(aVolume/tetrVol);
3502   int nb1d_in = int(( nbVols*6 - fullNbSeg ) / 6 );
3503   std::vector<int> aVec(SMDSEntity_Last);
3504   for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aVec[i]=0;
3505   if( IsQuadratic ) {
3506     aVec[SMDSEntity_Node] = nb1d_in/3 + 1 + nb1d_in;
3507     aVec[SMDSEntity_Quad_Tetra] = nbVols;
3508   }
3509   else {
3510     aVec[SMDSEntity_Node] = nb1d_in/3 + 1;
3511     aVec[SMDSEntity_Tetra] = nbVols;
3512   }
3513   SMESH_subMesh *sm = aMesh.GetSubMesh(aShape);
3514   aResMap.insert(std::make_pair(sm,aVec));
3515
3516   return true;
3517 }