]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchSolver/PlaneGCSSolver/PlaneGCSSolver_Storage.cpp
Salome HOME
Merge remote-tracking branch 'remotes/origin/HigherLevelObjectsHistory'
[modules/shaper.git] / src / SketchSolver / PlaneGCSSolver / PlaneGCSSolver_Storage.cpp
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include <PlaneGCSSolver_Storage.h>
21 #include <PlaneGCSSolver_Solver.h>
22 #include <PlaneGCSSolver_ConstraintWrapper.h>
23 #include <PlaneGCSSolver_EdgeWrapper.h>
24 #include <PlaneGCSSolver_PointWrapper.h>
25 #include <PlaneGCSSolver_Tools.h>
26
27 #include <PlaneGCSSolver_AttributeBuilder.h>
28 #include <PlaneGCSSolver_FeatureBuilder.h>
29 #include <PlaneGCSSolver_EntityDestroyer.h>
30
31 #include <GeomAPI_Dir2d.h>
32 #include <GeomAPI_Pnt2d.h>
33 #include <GeomAPI_XY.h>
34 #include <GeomDataAPI_Point2D.h>
35 #include <ModelAPI_AttributeRefAttr.h>
36 #include <SketchPlugin_Projection.h>
37
38 #include <cmath>
39
40
41 static void constraintsToSolver(const ConstraintWrapperPtr& theConstraint,
42                                 const SolverPtr& theSolver)
43 {
44   const std::list<GCSConstraintPtr>& aConstraints =
45       std::dynamic_pointer_cast<PlaneGCSSolver_ConstraintWrapper>(theConstraint)->constraints();
46   theSolver->addConstraint(theConstraint->id(), aConstraints);
47 }
48
49
50 PlaneGCSSolver_Storage::PlaneGCSSolver_Storage(const SolverPtr& theSolver)
51   : SketchSolver_Storage(theSolver),
52     myConstraintLastID(CID_UNKNOWN)
53 {
54 }
55
56 void PlaneGCSSolver_Storage::addConstraint(
57     ConstraintPtr        theConstraint,
58     ConstraintWrapperPtr theSolverConstraint)
59 {
60   SketchSolver_Storage::addConstraint(theConstraint, theSolverConstraint);
61
62   theSolverConstraint->setId(++myConstraintLastID);
63   constraintsToSolver(theSolverConstraint, mySketchSolver);
64 }
65
66 void PlaneGCSSolver_Storage::addMovementConstraint(
67     const ConstraintWrapperPtr& theSolverConstraint)
68 {
69   // before adding movement constraint to solver, re-check its DOF
70   if (mySketchSolver->dof() == 0)
71     mySketchSolver->diagnose();
72
73   theSolverConstraint->setId(CID_MOVEMENT);
74   constraintsToSolver(theSolverConstraint, mySketchSolver);
75 }
76
77
78 EntityWrapperPtr PlaneGCSSolver_Storage::createFeature(
79     const FeaturePtr&             theFeature,
80     PlaneGCSSolver_EntityBuilder* theBuilder)
81 {
82   std::list<AttributePtr> anAttributes = theFeature->data()->attributes(std::string());
83   std::list<AttributePtr>::const_iterator anIt = anAttributes.begin();
84   for (; anIt != anAttributes.end(); ++anIt)
85     createAttribute(*anIt, theBuilder);
86
87   EntityWrapperPtr aResult = theBuilder->createFeature(theFeature);
88   if (aResult)
89     addEntity(theFeature, aResult);
90   return aResult;
91 }
92
93 EntityWrapperPtr PlaneGCSSolver_Storage::createAttribute(
94     const AttributePtr&           theAttribute,
95     PlaneGCSSolver_EntityBuilder* theBuilder)
96 {
97   EntityWrapperPtr aResult = theBuilder->createAttribute(theAttribute);
98   if (aResult)
99     addEntity(theAttribute, aResult);
100   return aResult;
101 }
102
103 /// \brief Update value
104 static bool updateValue(const double& theSource, double& theDest)
105 {
106   static const double aTol = 1000. * tolerance;
107   bool isUpdated = fabs(theSource - theDest) > aTol;
108   if (isUpdated)
109     theDest = theSource;
110   return isUpdated;
111 }
112
113 /// \brief Update coordinates of the point or scalar using its base attribute
114 static bool updateValues(AttributePtr& theAttribute, EntityWrapperPtr& theEntity)
115 {
116   bool isUpdated = false;
117
118   std::shared_ptr<GeomDataAPI_Point2D> aPoint2D =
119       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(theAttribute);
120   if (aPoint2D) {
121     const GCSPointPtr& aGCSPoint =
122         std::dynamic_pointer_cast<PlaneGCSSolver_PointWrapper>(theEntity)->point();
123     isUpdated = updateValue(aPoint2D->x(), *(aGCSPoint->x)) || isUpdated;
124     isUpdated = updateValue(aPoint2D->y(), *(aGCSPoint->y)) || isUpdated;
125   } else {
126     AttributeDoublePtr aScalar =
127         std::dynamic_pointer_cast<ModelAPI_AttributeDouble>(theAttribute);
128     if (aScalar) {
129       ScalarWrapperPtr aWrapper =
130           std::dynamic_pointer_cast<PlaneGCSSolver_ScalarWrapper>(theEntity);
131       // There is possible angular value, which is converted between degrees and radians.
132       // So, we use its value instead of using direct pointer to value.
133       double aValue = aWrapper->value();
134       isUpdated = updateValue(aScalar->value(), aValue);
135       if (isUpdated)
136         aWrapper->setValue(aValue);
137     }
138   }
139
140   return isUpdated;
141 }
142
143 static bool hasReference(std::shared_ptr<SketchPlugin_Feature> theFeature,
144                          const std::string& theFeatureKind)
145 {
146   const std::set<AttributePtr>& aRefs = theFeature->data()->refsToMe();
147   for (std::set<AttributePtr>::const_iterator aRefIt = aRefs.begin();
148        aRefIt != aRefs.end(); ++aRefIt) {
149      FeaturePtr anOwner = ModelAPI_Feature::feature((*aRefIt)->owner());
150      if (anOwner && anOwner->getKind() == theFeatureKind)
151        return true;
152   }
153   return false;
154 }
155
156 static bool isCopyFeature(std::shared_ptr<SketchPlugin_Feature> theFeature)
157 {
158   return theFeature && theFeature->isCopy();
159 }
160
161 bool PlaneGCSSolver_Storage::update(FeaturePtr theFeature, bool theForce)
162 {
163   bool sendNotify = false;
164   bool isUpdated = false;
165   EntityWrapperPtr aRelated = entity(theFeature);
166   if (aRelated) // send signal to subscribers
167     sendNotify = true;
168   else { // Feature is not exist, create it
169     std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
170         std::dynamic_pointer_cast<SketchPlugin_Feature>(theFeature);
171     bool isCopy = isCopyFeature(aSketchFeature);
172     bool isProjReferred = hasReference(aSketchFeature, SketchPlugin_Projection::ID());
173     // the feature is a copy in "Multi" constraint and does not used in other constraints
174     if (!theForce && (isCopy && !isProjReferred) &&
175         myFeatureMap.find(theFeature) == myFeatureMap.end())
176       return false;
177
178     // external feature processing
179     bool isExternal =
180         (aSketchFeature && (aSketchFeature->isExternal() || isCopy || isProjReferred));
181
182     PlaneGCSSolver_FeatureBuilder aBuilder(isExternal ? 0 : this);
183
184     // Reserve the feature in the map of features
185     // (do not want to add several copies of it while adding attributes)
186     aRelated = createFeature(theFeature, &aBuilder);
187     myFeatureMap[theFeature] = aRelated;
188     createArcConstraints(aRelated);
189     isUpdated = true;
190   }
191
192   std::list<AttributePtr> anAttributes = theFeature->data()->attributes(std::string());
193   std::list<AttributePtr>::iterator anAttrIt = anAttributes.begin();
194   for (; anAttrIt != anAttributes.end(); ++anAttrIt)
195     if ((*anAttrIt)->attributeType() == GeomDataAPI_Point2D::typeId() ||
196         (*anAttrIt)->attributeType() == ModelAPI_AttributeDouble::typeId())
197       isUpdated = update(*anAttrIt) || isUpdated;
198
199   // send notification to listeners due to at least one attribute is changed
200   if (sendNotify && isUpdated)
201     notify(theFeature);
202
203   // update arc
204   if (aRelated && aRelated->type() == ENTITY_ARC) {
205     /// TODO: this code should be shared with FeatureBuilder somehow
206
207     std::shared_ptr<PlaneGCSSolver_EdgeWrapper> anEntity =
208         std::dynamic_pointer_cast<PlaneGCSSolver_EdgeWrapper>(aRelated);
209     std::shared_ptr<GCS::Arc> anArc = std::dynamic_pointer_cast<GCS::Arc>(anEntity->entity());
210
211     static std::shared_ptr<GeomAPI_Dir2d> OX(new GeomAPI_Dir2d(1.0, 0.0));
212     std::shared_ptr<GeomAPI_Pnt2d> aCenter(
213         new GeomAPI_Pnt2d(*anArc->center.x, *anArc->center.y));
214     std::shared_ptr<GeomAPI_Pnt2d> aStart(
215         new GeomAPI_Pnt2d(*anArc->start.x, *anArc->start.y));
216
217     *anArc->rad = aStart->distance(aCenter);
218
219     std::shared_ptr<GeomAPI_Dir2d> aDir(new GeomAPI_Dir2d(aStart->xy()->decreased(aCenter->xy())));
220     *anArc->startAngle = OX->angle(aDir);
221
222     aDir = std::shared_ptr<GeomAPI_Dir2d>(
223         new GeomAPI_Dir2d((*anArc->end.x) - aCenter->x(), (*anArc->end.y) - aCenter->y()));
224     *anArc->endAngle = OX->angle(aDir);
225   }
226
227   return isUpdated;
228 }
229
230 bool PlaneGCSSolver_Storage::update(AttributePtr theAttribute, bool theForce)
231 {
232   if (!theAttribute->isInitialized())
233     return false;
234
235   AttributePtr anAttribute = theAttribute;
236   AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(anAttribute);
237   if (aRefAttr) {
238     if (aRefAttr->isObject()) {
239       FeaturePtr aFeature;
240       /// TODO: Check resultToFeatureOrAttribute() precisely.
241       resultToFeatureOrAttribute(aRefAttr->object(), aFeature, anAttribute);
242       if (aFeature)
243         return update(aFeature, theForce);
244     } else
245       anAttribute = aRefAttr->attr();
246   }
247
248   EntityWrapperPtr aRelated = entity(anAttribute);
249   FeaturePtr aFeature = ModelAPI_Feature::feature(anAttribute->owner());
250   if (!aRelated) { // Attribute does not exist, create it.
251     // First of all check if the parent feature exists. If not, add it.
252     if (aFeature && myFeatureMap.find(aFeature) == myFeatureMap.end())
253       return update(aFeature, theForce); // theAttribute has been processed while adding feature
254     return aRelated.get() != 0;
255   }
256
257   bool isUpdated = updateValues(anAttribute, aRelated);
258   if (isUpdated) {
259     setNeedToResolve(true);
260     notify(aFeature);
261   }
262   return isUpdated;
263 }
264
265 void PlaneGCSSolver_Storage::makeExternal(const EntityWrapperPtr& theEntity)
266 {
267   if (theEntity->isExternal())
268     return;
269
270   removeArcConstraints(theEntity);
271
272   GCS::SET_pD aParameters = PlaneGCSSolver_Tools::parameters(theEntity);
273   mySketchSolver->removeParameters(aParameters);
274   theEntity->setExternal(true);
275   myNeedToResolve = true;
276 }
277
278 void PlaneGCSSolver_Storage::makeNonExternal(const EntityWrapperPtr& theEntity)
279 {
280   if (!theEntity->isExternal())
281     return;
282
283   GCS::SET_pD aParameters = PlaneGCSSolver_Tools::parameters(theEntity);
284   mySketchSolver->addParameters(aParameters);
285   theEntity->setExternal(false);
286
287   createArcConstraints(theEntity);
288
289   myNeedToResolve = true;
290 }
291
292
293 void PlaneGCSSolver_Storage::createArcConstraints(const EntityWrapperPtr& theArc)
294 {
295   if (!theArc || theArc->type() != ENTITY_ARC || theArc->isExternal())
296     return;
297
298   EdgeWrapperPtr anEdge = std::dynamic_pointer_cast<PlaneGCSSolver_EdgeWrapper>(theArc);
299   std::shared_ptr<GCS::Arc> anArc = std::dynamic_pointer_cast<GCS::Arc>(anEdge->entity());
300
301   // Additional constaints to fix arc's extra DoF (if the arc is not external):
302   std::list<GCSConstraintPtr> anArcConstraints;
303   // 1. distances from center till start and end points are equal to radius
304   anArcConstraints.push_back(GCSConstraintPtr(new GCS::ConstraintP2PDistance(
305       anArc->center, anArc->start, anArc->rad)));
306   anArcConstraints.push_back(GCSConstraintPtr(new GCS::ConstraintP2PDistance(
307       anArc->center, anArc->end, anArc->rad)));
308   // 2. angles of start and end points should be equal to the arc angles
309   anArcConstraints.push_back(GCSConstraintPtr(new GCS::ConstraintP2PAngle(
310       anArc->center, anArc->start, anArc->startAngle)));
311   anArcConstraints.push_back(GCSConstraintPtr(new GCS::ConstraintP2PAngle(
312       anArc->center, anArc->end, anArc->endAngle)));
313
314   ConstraintWrapperPtr aWrapper(
315       new PlaneGCSSolver_ConstraintWrapper(anArcConstraints, CONSTRAINT_UNKNOWN));
316   aWrapper->setId(++myConstraintLastID);
317   constraintsToSolver(aWrapper, mySketchSolver);
318
319   myArcConstraintMap[theArc] = aWrapper;
320 }
321
322 void PlaneGCSSolver_Storage::removeArcConstraints(const EntityWrapperPtr& theArc)
323 {
324   std::map<EntityWrapperPtr, ConstraintWrapperPtr>::iterator
325       aFound = myArcConstraintMap.find(theArc);
326   if (aFound != myArcConstraintMap.end()) {
327     mySketchSolver->removeConstraint(aFound->second->id());
328     myArcConstraintMap.erase(aFound);
329   }
330 }
331
332
333 bool PlaneGCSSolver_Storage::removeConstraint(ConstraintPtr theConstraint)
334 {
335   std::map<ConstraintPtr, ConstraintWrapperPtr>::iterator
336       aFound = myConstraintMap.find(theConstraint);
337   if (aFound != myConstraintMap.end()) {
338     ConstraintWrapperPtr aCW = aFound->second;
339     ConstraintID anID = aCW->id();
340
341     // Remove solver's constraints
342     mySketchSolver->removeConstraint(anID);
343
344     // Remove value if exists
345     const ScalarWrapperPtr& aValue = aCW->valueParameter();
346     if (aValue) {
347       GCS::SET_pD aParToRemove;
348       aParToRemove.insert(aValue->scalar());
349       removeParameters(aParToRemove);
350     }
351
352     // Remove constraint
353     myConstraintMap.erase(aFound);
354
355     if (anID != CID_MOVEMENT)
356       myNeedToResolve = true;
357
358     // notify subscibers
359     notify(theConstraint);
360   }
361   return true;
362 }
363
364 void PlaneGCSSolver_Storage::removeInvalidEntities()
365 {
366   PlaneGCSSolver_EntityDestroyer aDestroyer;
367
368   // Remove invalid constraints
369   std::list<ConstraintPtr> anInvalidConstraints;
370   std::map<ConstraintPtr, ConstraintWrapperPtr>::const_iterator
371       aCIter = myConstraintMap.begin();
372   for (; aCIter != myConstraintMap.end(); ++aCIter)
373     if (!aCIter->first->data() || !aCIter->first->data()->isValid())
374       anInvalidConstraints.push_back(aCIter->first);
375   std::list<ConstraintPtr>::const_iterator anInvCIt = anInvalidConstraints.begin();
376   for (; anInvCIt != anInvalidConstraints.end(); ++anInvCIt)
377     removeConstraint(*anInvCIt);
378
379   // Remove invalid features
380   std::list<FeaturePtr> anInvalidFeatures;
381   std::map<FeaturePtr, EntityWrapperPtr>::const_iterator aFIter = myFeatureMap.begin();
382   for (; aFIter != myFeatureMap.end(); aFIter++)
383     if (!aFIter->first->data() || !aFIter->first->data()->isValid()) {
384       anInvalidFeatures.push_back(aFIter->first);
385       if (aFIter->second)
386         aDestroyer.remove(aFIter->second);
387
388       // remove invalid arc
389       removeArcConstraints(aFIter->second);
390     }
391   std::list<FeaturePtr>::const_iterator anInvFIt = anInvalidFeatures.begin();
392   for (; anInvFIt != anInvalidFeatures.end(); ++anInvFIt)
393     removeFeature(*anInvFIt);
394
395   // Remove invalid attributes
396   std::list<AttributePtr> anInvalidAttributes;
397   std::map<AttributePtr, EntityWrapperPtr>::const_iterator anAttrIt = myAttributeMap.begin();
398   for (; anAttrIt != myAttributeMap.end(); ++anAttrIt) {
399     FeaturePtr anOwner = ModelAPI_Feature::feature(anAttrIt->first->owner());
400     if (!anOwner || !anOwner->data() || !anOwner->data()->isValid()) {
401       anInvalidAttributes.push_back(anAttrIt->first);
402       aDestroyer.remove(anAttrIt->second);
403     }
404   }
405   std::list<AttributePtr>::const_iterator anInvAtIt = anInvalidAttributes.begin();
406   for (; anInvAtIt != anInvalidAttributes.end(); ++anInvAtIt)
407     removeAttribute(*anInvAtIt);
408
409   // free memory occupied by parameters
410   removeParameters(aDestroyer.parametersToRemove());
411
412   /// TODO: Think on optimization of checking invalid features and attributes
413 }
414
415
416
417 double* PlaneGCSSolver_Storage::createParameter()
418 {
419   return mySketchSolver->createParameter();
420 }
421
422 void PlaneGCSSolver_Storage::removeParameters(const GCS::SET_pD& theParams)
423 {
424   mySketchSolver->removeParameters(theParams);
425 }
426
427 // indicates attribute containing in the external feature
428 static bool isExternalAttribute(const AttributePtr& theAttribute)
429 {
430   if (!theAttribute)
431     return false;
432   std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
433       std::dynamic_pointer_cast<SketchPlugin_Feature>(theAttribute->owner());
434   return aSketchFeature.get() && aSketchFeature->isExternal();
435 }
436
437 static void addOwnerToSet(const AttributePtr& theAttribute, std::set<FeaturePtr>& theFeatures)
438 {
439   FeaturePtr anOwner = ModelAPI_Feature::feature(theAttribute->owner());
440   if (anOwner)
441     theFeatures.insert(anOwner);
442 }
443
444 void PlaneGCSSolver_Storage::refresh() const
445 {
446   const double aTol = 1000. * tolerance; // tolerance to prevent frequent updates
447
448   std::set<FeaturePtr> anUpdatedFeatures;
449
450   std::map<AttributePtr, EntityWrapperPtr>::const_iterator anIt = myAttributeMap.begin();
451   for (; anIt != myAttributeMap.end(); ++anIt) {
452     if (!anIt->first->isInitialized())
453       continue;
454
455     // the external feature always should keep the up to date values, so,
456     // refresh from the solver is never needed
457     if (isExternalAttribute(anIt->first))
458       continue;
459
460     std::shared_ptr<GeomDataAPI_Point2D> aPoint2D =
461         std::dynamic_pointer_cast<GeomDataAPI_Point2D>(anIt->first);
462     if (aPoint2D) {
463       std::shared_ptr<PlaneGCSSolver_PointWrapper> aPointWrapper =
464           std::dynamic_pointer_cast<PlaneGCSSolver_PointWrapper>(anIt->second);
465       GCSPointPtr aGCSPoint = aPointWrapper->point();
466       if (fabs(aPoint2D->x() - (*aGCSPoint->x)) > aTol ||
467           fabs(aPoint2D->y() - (*aGCSPoint->y)) > aTol) {
468         aPoint2D->setValue(*aGCSPoint->x, *aGCSPoint->y);
469         addOwnerToSet(anIt->first, anUpdatedFeatures);
470       }
471       continue;
472     }
473     AttributeDoublePtr aScalar = std::dynamic_pointer_cast<ModelAPI_AttributeDouble>(anIt->first);
474     if (aScalar) {
475       ScalarWrapperPtr aScalarWrapper =
476           std::dynamic_pointer_cast<PlaneGCSSolver_ScalarWrapper>(anIt->second);
477       if (fabs(aScalar->value() - aScalarWrapper->value()) > aTol) {
478         aScalar->setValue(aScalarWrapper->value());
479         addOwnerToSet(anIt->first, anUpdatedFeatures);
480       }
481       continue;
482     }
483   }
484
485   // notify listeners about features update
486   std::set<FeaturePtr>::const_iterator aFIt = anUpdatedFeatures.begin();
487   for (; aFIt != anUpdatedFeatures.end(); ++aFIt)
488     notify(*aFIt);
489 }
490
491 PlaneGCSSolver_Solver::SolveStatus PlaneGCSSolver_Storage::checkDegeneratedGeometry() const
492 {
493   std::map<FeaturePtr, EntityWrapperPtr>::const_iterator aFIt = myFeatureMap.begin();
494   for (; aFIt != myFeatureMap.end(); ++aFIt) {
495     EdgeWrapperPtr anEdge = std::dynamic_pointer_cast<PlaneGCSSolver_EdgeWrapper>(aFIt->second);
496     if (anEdge && anEdge->isDegenerated())
497       return PlaneGCSSolver_Solver::STATUS_DEGENERATED;
498   }
499   return PlaneGCSSolver_Solver::STATUS_OK;
500 }