Salome HOME
Issue #2157: Create fillet : special behavior with origin
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Validators.cpp
1 // Copyright (C) 2014-2017  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "SketchPlugin_Validators.h"
22
23 #include "SketchPlugin_Arc.h"
24 #include "SketchPlugin_Circle.h"
25 #include "SketchPlugin_ConstraintCoincidence.h"
26 #include "SketchPlugin_ConstraintDistance.h"
27 #include "SketchPlugin_ConstraintRigid.h"
28 #include "SketchPlugin_ConstraintTangent.h"
29 #include "SketchPlugin_Fillet.h"
30 #include "SketchPlugin_Line.h"
31 #include "SketchPlugin_MacroArc.h"
32 #include "SketchPlugin_MacroCircle.h"
33 #include "SketchPlugin_Point.h"
34 #include "SketchPlugin_Sketch.h"
35 #include "SketchPlugin_Trim.h"
36 #include "SketchPlugin_Tools.h"
37
38 #include "SketcherPrs_Tools.h"
39
40 #include <Events_InfoMessage.h>
41
42 #include <ModelAPI_Data.h>
43 #include <ModelAPI_Validator.h>
44 #include <ModelAPI_AttributeDouble.h>
45 #include <ModelAPI_AttributeRefAttr.h>
46
47 #include <ModelAPI_AttributeRefAttrList.h>
48 #include <ModelAPI_AttributeRefList.h>
49 #include <ModelAPI_AttributeSelectionList.h>
50 #include <ModelAPI_AttributeString.h>
51 #include <ModelAPI_Session.h>
52 #include <ModelAPI_Tools.h>
53 #include <ModelAPI_ResultConstruction.h>
54
55 #include <ModelGeomAlgo_Point2D.h>
56 #include <ModelGeomAlgo_Shape.h>
57
58 #include <GeomAlgoAPI_EdgeBuilder.h>
59 #include <GeomAlgoAPI_ShapeTools.h>
60
61 #include <GeomAPI_Circ.h>
62 #include <GeomAPI_Dir2d.h>
63 #include <GeomAPI_Lin.h>
64 #include <GeomAPI_Edge.h>
65 #include <GeomAPI_Vertex.h>
66 #include <GeomDataAPI_Point2D.h>
67
68 #include <algorithm>
69 #include <cmath>
70
71 const double tolerance = 1.e-7;
72
73 bool SketchPlugin_DistanceAttrValidator::isValid(const AttributePtr& theAttribute,
74                                                  const std::list<std::string>& theArguments,
75                                                  Events_InfoMessage& theError) const
76 {
77   if (theAttribute->attributeType() != ModelAPI_AttributeRefAttr::typeId()) {
78     theError = "The attribute with the %1 type is not processed";
79     theError.arg(theAttribute->attributeType());
80     return false;
81   }
82
83   // there is a check whether the feature contains a point and a linear edge or two point values
84   std::string aParamA = theArguments.front();
85   SessionPtr aMgr = ModelAPI_Session::get();
86   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
87
88   AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>
89                                                                       (theAttribute);
90   bool isObject = aRefAttr->isObject();
91   if (!isObject) {
92     // an attribute is a point. A point value is valid always for the distance
93     return true;
94   } else {
95     // 1. check whether the references object is a linear
96     ObjectPtr anObject = aRefAttr->object();
97
98     const ModelAPI_AttributeValidator* aShapeValidator =
99       dynamic_cast<const ModelAPI_AttributeValidator*>(
100       aFactory->validator("GeomValidators_ShapeType"));
101     std::list<std::string> anArguments;
102     anArguments.push_back("circle");
103     Events_InfoMessage aCircleError;
104     bool aShapeValid = aShapeValidator->isValid(aRefAttr, anArguments, aCircleError);
105     // the circle line is not a valid case
106     if (aShapeValid) {
107       theError = "Circle can not be used in distance constraint";
108       return false;
109     }
110
111     anArguments.clear();
112     anArguments.push_back("line");
113     Events_InfoMessage aLineError;
114     aShapeValid = aShapeValidator->isValid(aRefAttr, anArguments, aLineError);
115     // if the attribute value is not a line, that means it is a vertex. A vertex is always valid
116     if (aShapeValid) {
117       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttribute->owner());
118       // If it is a line then we have to check that first attribute id not a line
119       std::shared_ptr<SketchPlugin_Feature> aSFeature =
120         std::dynamic_pointer_cast<SketchPlugin_Feature>(theAttribute->owner());
121       SketchPlugin_Sketch* aSketch = aSFeature->sketch();
122       std::shared_ptr<GeomAPI_Ax3> aPlane = SketchPlugin_Sketch::plane(aSketch);
123       std::shared_ptr<GeomDataAPI_Point2D> aPoint = SketcherPrs_Tools::getFeaturePoint(
124         aFeature->data(), aParamA, aPlane);
125       if (!aPoint.get()) {
126         theError = "One of parameters of distance constraint should be a point";
127         return false;
128       }
129     }
130   }
131   return true;
132 }
133
134 bool SketchPlugin_TangentAttrValidator::isValid(const AttributePtr& theAttribute,
135                                                 const std::list<std::string>& theArguments,
136                                                 Events_InfoMessage& theError) const
137 {
138   if (theAttribute->attributeType() != ModelAPI_AttributeRefAttr::typeId()) {
139     theError = "The attribute with the %1 type is not processed";
140     theError.arg(theAttribute->attributeType());
141     return false;
142   }
143
144   // there is a check whether the feature contains a point and a linear edge or two point values
145   std::string aParamA = theArguments.front();
146   SessionPtr aMgr = ModelAPI_Session::get();
147   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
148
149   FeaturePtr anAttributeFeature =
150     std::dynamic_pointer_cast<ModelAPI_Feature>(theAttribute->owner());
151   AttributeRefAttrPtr aRefAttr =
152     std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
153
154   bool isObject = aRefAttr->isObject();
155   ObjectPtr anObject = aRefAttr->object();
156   if (isObject && anObject.get()) {
157     FeaturePtr aRefFea = ModelAPI_Feature::feature(anObject);
158
159     AttributeRefAttrPtr aOtherAttr = anAttributeFeature->data()->refattr(aParamA);
160     ObjectPtr aOtherObject = aOtherAttr->object();
161     FeaturePtr aOtherFea = ModelAPI_Feature::feature(aOtherObject);
162     if (!aOtherFea)
163       return true;
164
165     if (aRefFea->getKind() == SketchPlugin_Line::ID()) {
166       if (aOtherFea->getKind() != SketchPlugin_Arc::ID() &&
167           aOtherFea->getKind() != SketchPlugin_Circle::ID()) {
168         theError = "It refers to a %1, but %2 is neither an %3 nor %4";
169         theError.arg(SketchPlugin_Line::ID()).arg(aParamA)
170             .arg(SketchPlugin_Arc::ID()).arg(SketchPlugin_Circle::ID());
171         return false;
172       }
173     }
174     else if (aRefFea->getKind() == SketchPlugin_Arc::ID() ||
175              aRefFea->getKind() == SketchPlugin_Circle::ID()) {
176       if (aOtherFea->getKind() != SketchPlugin_Line::ID() &&
177           aOtherFea->getKind() != SketchPlugin_Arc::ID() &&
178           aOtherFea->getKind() != SketchPlugin_Circle::ID()) {
179         theError = "It refers to an %1, but %2 is not a %3 or an %4 or a %5";
180         theError.arg(SketchPlugin_Arc::ID()).arg(aParamA)
181             .arg(SketchPlugin_Line::ID()).arg(SketchPlugin_Arc::ID())
182             .arg(SketchPlugin_Circle::ID());
183         return false;
184       }
185     }
186     else {
187       theError = "It refers to %1, but should refer to %2 or %3 or %4";
188       theError.arg(aRefFea->getKind()).arg(SketchPlugin_Line::ID())
189           .arg(SketchPlugin_Arc::ID()).arg(SketchPlugin_Circle::ID());
190       return false;
191     }
192     return true;
193   }
194   else {
195     theError = "It uses an empty object";
196     return false;
197   }
198
199   return true;
200 }
201
202 bool SketchPlugin_NotFixedValidator::isValid(const AttributePtr& theAttribute,
203                                              const std::list<std::string>& theArguments,
204                                              Events_InfoMessage& theError) const
205 {
206   if (theAttribute->attributeType() != ModelAPI_AttributeRefAttr::typeId()) {
207     theError = "The attribute with the %1 type is not processed";
208     theError.arg(theAttribute->attributeType());
209     return false;
210   }
211
212   std::shared_ptr<SketchPlugin_Feature> aFeature =
213       std::dynamic_pointer_cast<SketchPlugin_Feature>(theAttribute->owner());
214   if (!aFeature)
215     return true;
216
217   AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
218
219   SketchPlugin_Sketch* aSketch = aFeature->sketch();
220   int aNbFeatures = aSketch->numberOfSubs();
221   for (int anInd = 0; anInd < aNbFeatures; anInd++) {
222     FeaturePtr aSubFeature = aSketch->subFeature(anInd);
223     if (aSubFeature->getKind() != SketchPlugin_ConstraintRigid::ID() || aSubFeature == aFeature)
224       continue;
225     AttributeRefAttrPtr aRAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(
226         aSubFeature->attribute(SketchPlugin_ConstraintRigid::ENTITY_A()));
227     if (aRefAttr->isObject()) {
228       if (aRefAttr->object() == aRAttr->object()) {
229         ObjectPtr anObject = aRefAttr->object();
230         std::string aName = anObject.get() ? anObject->data()->name() : "";
231         theError = "The object %1 has been already fixed.";
232         theError.arg(aName);
233         return false;
234       }
235     }
236     else if (aRefAttr->attr() == aRAttr->attr()) {
237       AttributePtr anAttribute = aRefAttr->attr();
238       std::string aName = anAttribute.get() ? anAttribute->id() : "";
239       theError = "The attribute %1 has been already fixed.";
240       theError.arg(aName);
241       return false;
242     }
243   }
244   return true;
245 }
246
247 bool SketchPlugin_EqualAttrValidator::isValid(const AttributePtr& theAttribute,
248                                               const std::list<std::string>& theArguments,
249                                               Events_InfoMessage& theError) const
250 {
251   if (theAttribute->attributeType() != ModelAPI_AttributeRefAttr::typeId()) {
252     theError = "The attribute with the %1 type is not processed";
253     theError.arg(theAttribute->attributeType());
254     return false;
255   }
256
257   std::string aParamA = theArguments.front();
258   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttribute->owner());
259   AttributeRefAttrPtr aRefAttr[2];
260   aRefAttr[0] = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
261   aRefAttr[1] = aFeature->data()->refattr(aParamA);
262
263   if (!aRefAttr[0]->isObject() || !aRefAttr[1]->isObject()) {
264     theError = "Attributes can not be used in equal constraint";
265     return false;
266   }
267
268   std::string aType[2];
269   std::list<std::string> anArguments;
270   for (int i = 0; i < 2; i++) {
271     ObjectPtr anObject = aRefAttr[i]->object();
272     if (!anObject.get()) {
273       theError = "An empty object is used.";
274       return false;
275     }
276
277     aFeature = ModelAPI_Feature::feature(anObject);
278     if (!aFeature.get()) {
279       theError = "An empty feature is used.";
280       return false;
281     }
282
283     aType[i] = aFeature->getKind();
284     if (aFeature->getKind() != SketchPlugin_Line::ID() &&
285         aFeature->getKind() != SketchPlugin_Circle::ID() &&
286         aFeature->getKind() != SketchPlugin_Arc::ID()) {
287       theError = "The %1 feature kind of attribute is wrong. It should be %2 or %3 or %4";
288       theError.arg(aFeature->getKind()).arg(SketchPlugin_Line::ID())
289           .arg(SketchPlugin_Circle::ID()).arg(SketchPlugin_Arc::ID());
290       // wrong type of attribute
291       return false;
292     }
293   }
294
295   if ((aType[0] == SketchPlugin_Line::ID() || aType[1] == SketchPlugin_Line::ID()) &&
296       aType[0] != aType[1]) {
297     theError = "Feature with kinds %1 and %2 can not be equal.";
298     theError.arg(aType[0]).arg(aType[1]);
299     return false;
300   }
301   return true;
302 }
303
304 bool SketchPlugin_MirrorAttrValidator::isValid(const AttributePtr& theAttribute,
305                                                const std::list<std::string>& theArguments,
306                                                Events_InfoMessage& theError) const
307 {
308   if (theAttribute->attributeType() != ModelAPI_AttributeRefList::typeId()) {
309     theError = "The attribute with the %1 type is not processed";
310     theError.arg(theAttribute->attributeType());
311     return false;
312   }
313
314   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttribute->owner());
315   AttributeRefListPtr aSelAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(theAttribute);
316
317   AttributeRefListPtr aRefListOfMirrored = std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(
318       aFeature->attribute(SketchPlugin_Constraint::ENTITY_C()));
319   std::list<ObjectPtr> aMirroredObjects = aRefListOfMirrored->list();
320
321   for(int anInd = 0; anInd < aSelAttr->size(); anInd++) {
322     ObjectPtr aSelObject = aSelAttr->object(anInd);
323     std::string aName = aSelObject.get() ? aSelObject->data()->name() : "";
324     std::list<ObjectPtr>::iterator aMirIter = aMirroredObjects.begin();
325     for (; aMirIter != aMirroredObjects.end(); aMirIter++)
326       if (aSelObject == *aMirIter) {
327         theError = "The object %1 is a result of mirror";
328         theError.arg(aName);
329         return false;
330       }
331   }
332   return true;
333 }
334
335 bool SketchPlugin_CoincidenceAttrValidator::isValid(const AttributePtr& theAttribute,
336                                                     const std::list<std::string>& theArguments,
337                                                     Events_InfoMessage& theError) const
338 {
339   if (theAttribute->attributeType() != ModelAPI_AttributeRefAttr::typeId()) {
340     theError = "The attribute with the %1 type is not processed";
341     theError.arg(theAttribute->attributeType());
342     return false;
343   }
344
345   // there is a check whether the feature contains a point and a linear edge or two point values
346   std::string aParamA = theArguments.front();
347   SessionPtr aMgr = ModelAPI_Session::get();
348   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
349
350   FeaturePtr aConstraint = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttribute->owner());
351   AttributeRefAttrPtr aRefAttrA = aConstraint->data()->refattr(aParamA);
352   if (!aRefAttrA) {
353     theError = "The %1 attribute should be %2";
354     theError.arg(aParamA).arg(ModelAPI_AttributeRefAttr::typeId());
355     return false;
356   }
357
358   AttributeRefAttrPtr aRefAttrB =
359     std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
360
361   // first attribute is a point, it may coincide with any object
362   if (!aRefAttrA->isObject())
363     return true;
364   else {
365     ObjectPtr anObject = aRefAttrA->object();
366     if (!anObject.get()) {
367       theError = "%1 attribute has an empty object";
368       theError.arg(aParamA);
369       return false;
370     }
371     FeaturePtr aFeature = ModelAPI_Feature::feature(aRefAttrA->object());
372     if (!aFeature.get()) {
373       theError = "%1 attribute has an empty feature";
374       theError.arg(aParamA);
375       return false;
376     }
377
378     if (aFeature->getKind() == SketchPlugin_Point::ID())
379       return true;
380   }
381
382   // second attribute is a point, it may coincide with any object
383   if (!aRefAttrB->isObject())
384     return true;
385   else {
386     FeaturePtr aFeature = ModelAPI_Feature::feature(aRefAttrB->object());
387     if (!aFeature) {
388       theError = "%1 attribute has an empty object";
389       theError.arg(theAttribute->id());
390       return false;
391     }
392     if (aFeature->getKind() == SketchPlugin_Point::ID())
393       return true;
394   }
395   theError = "There is no an attribute filled by a point";
396   return false;
397 }
398
399
400 bool SketchPlugin_CopyValidator::isValid(const AttributePtr& theAttribute,
401                                          const std::list<std::string>& theArguments,
402                                          Events_InfoMessage& theError) const
403 {
404   if (theAttribute->attributeType() != ModelAPI_AttributeRefList::typeId()) {
405     theError = "The attribute with the %1 type is not processed";
406     theError.arg(theAttribute->attributeType());
407     return false;
408   }
409
410   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttribute->owner());
411   AttributeRefListPtr aSelAttr =
412     std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(theAttribute);
413
414   AttributeRefListPtr aRefListOfInitial = std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(
415       aFeature->attribute(SketchPlugin_Constraint::ENTITY_A()));
416   AttributeRefListPtr aRefListOfCopied = std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(
417       aFeature->attribute(SketchPlugin_Constraint::ENTITY_B()));
418   std::list<ObjectPtr> anInitialObjects = aRefListOfInitial->list();
419   std::list<ObjectPtr> aCopiedObjects = aRefListOfCopied->list();
420
421   std::list<ObjectPtr>::iterator anObjIter;
422   for(int anInd = 0; anInd < aSelAttr->size(); anInd++) {
423     ObjectPtr aSelObject = aSelAttr->object(anInd);
424     anObjIter = anInitialObjects.begin();
425     for (; anObjIter != anInitialObjects.end(); anObjIter++)
426       if (aSelObject == *anObjIter)
427         break;
428     if (anObjIter != anInitialObjects.end())
429       continue;
430     anObjIter = aCopiedObjects.begin();
431     for (; anObjIter != aCopiedObjects.end(); anObjIter++)
432       if (aSelObject == *anObjIter) {
433         std::string aName = aSelObject.get() ? aSelObject->data()->name() : "";
434         theError = "The object %1 is a result of copy";
435         theError.arg(aName);
436         return false;
437       }
438   }
439   return true;
440 }
441
442 bool SketchPlugin_SolverErrorValidator::isValid(
443   const std::shared_ptr<ModelAPI_Feature>& theFeature,
444   const std::list<std::string>& theArguments,
445   Events_InfoMessage& theError) const
446 {
447   AttributeStringPtr aAttributeString = theFeature->string(SketchPlugin_Sketch::SOLVER_ERROR());
448
449   if (!aAttributeString->value().empty()) {
450     theError = aAttributeString->value();
451     return false;
452   }
453
454   return true;
455 }
456
457 bool SketchPlugin_SolverErrorValidator::isNotObligatory(std::string theFeature,
458                                                         std::string theAttribute)
459 {
460   return true;
461 }
462
463 static bool hasSameTangentFeature(const std::set<AttributePtr>& theRefsList,
464                                   const FeaturePtr theFeature)
465 {
466   for(std::set<AttributePtr>::const_iterator
467       anIt = theRefsList.cbegin(); anIt != theRefsList.cend(); ++anIt) {
468     std::shared_ptr<ModelAPI_Attribute> aAttr = (*anIt);
469     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aAttr->owner());
470     if (aFeature->getKind() == SketchPlugin_ConstraintTangent::ID()) {
471       AttributeRefAttrPtr anAttrRefA = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(
472         aFeature->attribute(SketchPlugin_ConstraintTangent::ENTITY_A()));
473       AttributeRefAttrPtr anAttrRefB = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(
474         aFeature->attribute(SketchPlugin_ConstraintTangent::ENTITY_B()));
475       if(anAttrRefA.get()) {
476         ResultPtr aResA = std::dynamic_pointer_cast<ModelAPI_Result>(anAttrRefA->object());
477         if(aResA.get()) {
478           DocumentPtr aDoc = aResA->document();
479           if(aDoc.get()) {
480             FeaturePtr aFeatureA = aDoc->feature(aResA);
481             if(aFeatureA.get() && aFeatureA == theFeature) {
482               return true;
483             }
484           }
485         }
486       }
487       if(anAttrRefB.get()) {
488         ResultPtr aResB = std::dynamic_pointer_cast<ModelAPI_Result>(anAttrRefB->object());
489         if(aResB.get()) {
490           DocumentPtr aDoc = aResB->document();
491           if(aDoc.get()) {
492             FeaturePtr aFeatureB = aDoc->feature(aResB);
493             if(aFeatureB.get() && aFeatureB == theFeature) {
494               return true;
495             }
496           }
497         }
498       }
499     }
500   }
501   return false;
502 }
503
504 static bool isPointPointCoincidence(const FeaturePtr& theCoincidence)
505 {
506   AttributeRefAttrPtr aRefAttr[2] = {
507       theCoincidence->refattr(SketchPlugin_Constraint::ENTITY_A()),
508       theCoincidence->refattr(SketchPlugin_Constraint::ENTITY_B())
509   };
510
511   bool arePoints = true;
512   for (int i = 0; i < 2 && arePoints; ++i) {
513     if (aRefAttr[i]->isObject()) {
514       FeaturePtr aFeature = ModelAPI_Feature::feature(aRefAttr[i]->object());
515       arePoints = aFeature.get() && aFeature->getKind() == SketchPlugin_Point::ID();
516     } else
517       arePoints = aRefAttr[i]->attr().get() != NULL;
518   }
519   return arePoints;
520 }
521
522 bool SketchPlugin_FilletVertexValidator::isValid(const AttributePtr& theAttribute,
523                                                  const std::list<std::string>& theArguments,
524                                                  Events_InfoMessage& theError) const
525 {
526   AttributeRefAttrPtr aPointRefAttr =
527     std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
528   if(!aPointRefAttr.get()) {
529     theError = "Error: Point not selected.";
530     return false;
531   }
532
533   AttributePtr aPointAttribute = aPointRefAttr->attr();
534   if (!aPointAttribute.get()) {
535     theError = "Error: Bad point selected.";
536     return false;
537   }
538   std::shared_ptr<GeomAPI_Pnt2d> aSelectedPnt =
539     std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aPointAttribute)->pnt();
540
541   // Obtain constraint coincidence for the fillet point.
542   const std::set<AttributePtr>& aRefsList = aPointAttribute->owner()->data()->refsToMe();
543   FeaturePtr aConstraintCoincidence;
544   for(std::set<AttributePtr>::const_iterator anIt = aRefsList.cbegin();
545       anIt != aRefsList.cend(); ++anIt) {
546     std::shared_ptr<ModelAPI_Attribute> aAttr = (*anIt);
547     FeaturePtr aConstrFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aAttr->owner());
548     if (aConstrFeature->getKind() == SketchPlugin_ConstraintCoincidence::ID()) {
549       if (!isPointPointCoincidence(aConstrFeature))
550         continue;
551
552       AttributeRefAttrPtr anAttrRefA = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(
553         aConstrFeature->attribute(SketchPlugin_ConstraintCoincidence::ENTITY_A()));
554       AttributeRefAttrPtr anAttrRefB = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(
555         aConstrFeature->attribute(SketchPlugin_ConstraintCoincidence::ENTITY_B()));
556
557       AttributePtr anAttrA = anAttrRefA->attr();
558       if(aPointAttribute == anAttrA) {
559         aConstraintCoincidence = aConstrFeature;
560         break;
561       }
562
563       AttributePtr anAttrB = anAttrRefB->attr();
564       if(aPointAttribute == anAttrB) {
565         aConstraintCoincidence = aConstrFeature;
566         break;
567       }
568     }
569   }
570
571   if(!aConstraintCoincidence.get()) {
572     theError = "Error: one of the selected point does not have coicidence.";
573     return false;
574   }
575
576   // Get coincides from constraint.
577   std::set<FeaturePtr> aCoinsides;
578   SketchPlugin_Tools::findCoincidences(aConstraintCoincidence,
579                                         SketchPlugin_ConstraintCoincidence::ENTITY_A(),
580                                         aCoinsides,
581                                         true);
582   SketchPlugin_Tools::findCoincidences(aConstraintCoincidence,
583                                         SketchPlugin_ConstraintCoincidence::ENTITY_B(),
584                                         aCoinsides,
585                                         true);
586
587   // Remove points and external lines from set of coincides.
588   std::set<FeaturePtr> aNewSetOfCoincides;
589   for(std::set<FeaturePtr>::iterator anIt = aCoinsides.begin();
590       anIt != aCoinsides.end(); ++anIt) {
591     std::shared_ptr<SketchPlugin_SketchEntity> aSketchEntity =
592       std::dynamic_pointer_cast<SketchPlugin_SketchEntity>(*anIt);
593     if(aSketchEntity.get() && (aSketchEntity->isCopy() || aSketchEntity->isExternal())) {
594       continue;
595     }
596     if((*anIt)->getKind() != SketchPlugin_Line::ID() &&
597         (*anIt)->getKind() != SketchPlugin_Arc::ID()) {
598           continue;
599     }
600     if((*anIt)->getKind() == SketchPlugin_Arc::ID()) {
601       AttributePtr anArcCenter = (*anIt)->attribute(SketchPlugin_Arc::CENTER_ID());
602       std::shared_ptr<GeomAPI_Pnt2d> anArcCenterPnt =
603         std::dynamic_pointer_cast<GeomDataAPI_Point2D>(anArcCenter)->pnt();
604       double aDistSelectedArcCenter = aSelectedPnt->distance(anArcCenterPnt);
605       if(aDistSelectedArcCenter < tolerance) {
606         continue;
607       }
608     }
609     aNewSetOfCoincides.insert(*anIt);
610   }
611   aCoinsides = aNewSetOfCoincides;
612
613   // If we still have more than two coincides remove auxilary entities from set of coincides.
614   if(aCoinsides.size() > 2) {
615     aNewSetOfCoincides.clear();
616     for(std::set<FeaturePtr>::iterator anIt = aCoinsides.begin();
617         anIt != aCoinsides.end(); ++anIt) {
618       if(!(*anIt)->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID())->value()) {
619         aNewSetOfCoincides.insert(*anIt);
620       }
621     }
622     aCoinsides = aNewSetOfCoincides;
623   }
624
625   if(aCoinsides.size() != 2) {
626     theError = "Error: One of the selected points does not have two suitable edges for fillet.";
627     return false;
628   }
629
630   // Check that selected edges don't have tangent constraint.
631   std::set<FeaturePtr>::iterator anIt = aCoinsides.begin();
632   FeaturePtr aFirstFeature = *anIt++;
633   FeaturePtr aSecondFeature = *anIt;
634   const std::set<AttributePtr>& aFirstFeatureRefsList = aFirstFeature->data()->refsToMe();
635   if(hasSameTangentFeature(aFirstFeatureRefsList, aSecondFeature)) {
636     theError = "Error: Edges in selected point has tangent constraint.";
637     return false;
638   }
639
640   std::list<ResultPtr> aFirstResults = aFirstFeature->results();
641   for(std::list<ResultPtr>::iterator aResIt = aFirstResults.begin();
642       aResIt != aFirstResults.end(); ++aResIt) {
643     ResultPtr aRes = *aResIt;
644     const std::set<AttributePtr>& aResRefsList = aRes->data()->refsToMe();
645     if(hasSameTangentFeature(aResRefsList, aSecondFeature)) {
646       theError = "Error: Edges in selected point has tangent constraint.";
647       return false;
648     }
649   }
650
651   // Check the features are not tangent
652   std::shared_ptr<GeomAPI_Shape> aFirstShape = aFirstFeature->lastResult()->shape();
653   std::shared_ptr<GeomAPI_Shape> aSecondShape = aSecondFeature->lastResult()->shape();
654   if (!aFirstShape || !aFirstShape->isEdge() ||
655       !aSecondShape || !aSecondShape->isEdge()) {
656     theError = "Error: At least on of the features is not an edge";
657     return false;
658   }
659
660   std::shared_ptr<GeomAPI_Edge> anEdge1 = std::dynamic_pointer_cast<GeomAPI_Edge>(aFirstShape);
661   std::shared_ptr<GeomAPI_Edge> anEdge2 = std::dynamic_pointer_cast<GeomAPI_Edge>(aSecondShape);
662
663   static const double TOL = 1.e-7;
664   if (anEdge1->isLine() && anEdge2->isLine()) {
665     // Check that lines not collinear
666     std::shared_ptr<GeomAPI_Dir> aDir1 = anEdge1->line()->direction();
667     std::shared_ptr<GeomAPI_Dir> aDir2 = anEdge2->line()->direction();
668     double aCross = aDir1->cross(aDir2)->squareModulus();
669     if (aCross < TOL * TOL)
670       return false;
671   } else if (anEdge1->isArc() && anEdge2->isArc()) {
672     // check the circles are not tangent
673     std::shared_ptr<GeomAPI_Circ> aCirc1 = anEdge1->circle();
674     std::shared_ptr<GeomAPI_Circ> aCirc2 = anEdge2->circle();
675     double aDistCC = aCirc1->center()->distance(aCirc2->center());
676     double aRadSum = aCirc1->radius() + aCirc2->radius();
677     double aRadDiff = fabs(aCirc1->radius() - aCirc2->radius());
678     if (fabs(aDistCC - aRadSum) < TOL || fabs(aDistCC - aRadDiff) < TOL)
679       return false;
680   } else {
681     // check whether line and arc are tangent
682     std::shared_ptr<GeomAPI_Circ> aCirc;
683     std::shared_ptr<GeomAPI_Lin> aLine;
684     if (anEdge1->isLine()) {
685       aLine = anEdge1->line();
686       aCirc = anEdge2->circle();
687     } else {
688       aCirc = anEdge1->circle();
689       aLine = anEdge2->line();
690     }
691
692     double aDistCL = aLine->distance(aCirc->center());
693     if (fabs(aDistCL - aCirc->radius()) < TOL)
694       return false;
695   }
696
697   return true;
698 }
699
700 bool SketchPlugin_MiddlePointAttrValidator::isValid(const AttributePtr& theAttribute,
701                                                     const std::list<std::string>& theArguments,
702                                                     Events_InfoMessage& theError) const
703 {
704   if (theAttribute->attributeType() != ModelAPI_AttributeRefAttr::typeId()) {
705     theError = "The attribute with the %1 type is not processed";
706     theError.arg(theAttribute->attributeType());
707     return false;
708   }
709
710   // there is a check whether the feature contains a point and a linear edge or two point values
711   std::string aParamA = theArguments.front();
712   SessionPtr aMgr = ModelAPI_Session::get();
713   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
714
715   FeaturePtr anAttributeFeature =
716     std::dynamic_pointer_cast<ModelAPI_Feature>(theAttribute->owner());
717   AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
718   AttributeRefAttrPtr anOtherAttr = anAttributeFeature->data()->refattr(aParamA);
719
720   AttributeRefAttrPtr aRefAttrs[2] = {aRefAttr, anOtherAttr};
721   int aNbPoints = 0;
722   int aNbLines = 0;
723   for (int i = 0; i < 2; ++i) {
724     if (!aRefAttrs[i]->isObject())
725       ++aNbPoints;
726     else {
727       FeaturePtr aFeature = ModelAPI_Feature::feature(aRefAttrs[i]->object());
728       if (!aFeature) {
729         if (aNbPoints + aNbLines != 0)
730           return true;
731         else continue;
732       }
733
734       if (aFeature->getKind() == SketchPlugin_Point::ID())
735         ++aNbPoints;
736       else if (aFeature->getKind() == SketchPlugin_Line::ID())
737         ++aNbLines;
738     }
739   }
740
741   if (aNbPoints != 1 || aNbLines != 1) {
742     theError = "Middle point constraint allows points and lines only";
743     return false;
744   }
745   return true;
746 }
747
748 bool SketchPlugin_ArcTangentPointValidator::isValid(const AttributePtr& theAttribute,
749                                                     const std::list<std::string>& /*theArguments*/,
750                                                     Events_InfoMessage& theError) const
751 {
752   if (theAttribute->attributeType() != ModelAPI_AttributeRefAttr::typeId()) {
753     theError = "The attribute with the %1 type is not processed";
754     theError.arg(theAttribute->attributeType());
755     return false;
756   }
757   AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
758   AttributePtr anAttr = aRefAttr->attr();
759   if (!anAttr) {
760     theError = "The attribute %1 should be a point";
761     theError.arg(theAttribute->id());
762     return false;
763   }
764
765   FeaturePtr anAttrFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(anAttr->owner());
766   const std::string& aFeatureType = anAttrFeature->getKind();
767   if (aFeatureType == SketchPlugin_Arc::ID()) {
768     // selected point should not be a center of arc
769     const std::string& aPntId = anAttr->id();
770     if (aPntId != SketchPlugin_Arc::START_ID() && aPntId != SketchPlugin_Arc::END_ID()) {
771       theError = "The attribute %1 is not supported";
772       theError.arg(aPntId);
773       return false;
774     }
775   }
776   else if (aFeatureType == SketchPlugin_Line::ID()) {
777     // selected point should be bound point of line
778     const std::string& aPntId = anAttr->id();
779     if (aPntId != SketchPlugin_Line::START_ID() && aPntId != SketchPlugin_Line::END_ID()) {
780       theError = "The attribute %1 is not supported";
781       theError.arg(aPntId);
782       return false;
783     }
784   }
785   else {
786     theError = "Unable to build tangent arc on %1";
787     theError.arg(anAttrFeature->getKind());
788     return false;
789   }
790
791   return true;
792 }
793
794 bool SketchPlugin_IntersectionValidator::isValid(const AttributePtr& theAttribute,
795                                                  const std::list<std::string>& theArguments,
796                                                  Events_InfoMessage& theError) const
797 {
798   if (theAttribute->attributeType() != ModelAPI_AttributeSelection::typeId()) {
799     theError = "The attribute with the %1 type is not processed";
800     theError.arg(theAttribute->attributeType());
801     return false;
802   }
803   AttributeSelectionPtr aLineAttr =
804                        std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(theAttribute);
805   std::shared_ptr<GeomAPI_Edge> anEdge;
806   if(aLineAttr && aLineAttr->value() && aLineAttr->value()->isEdge()) {
807     anEdge = std::shared_ptr<GeomAPI_Edge>(new GeomAPI_Edge(aLineAttr->value()));
808   } else if(aLineAttr->context() &&
809             aLineAttr->context()->shape() && aLineAttr->context()->shape()->isEdge()) {
810     anEdge = std::shared_ptr<GeomAPI_Edge>(new GeomAPI_Edge(aLineAttr->context()->shape()));
811   }
812
813   if (!anEdge || !anEdge->isLine()) {
814     theError = "The attribute %1 should be a line";
815     theError.arg(theAttribute->id());
816     return false;
817   }
818
819   std::shared_ptr<GeomAPI_Dir> aLineDir = anEdge->line()->direction();
820
821   // find a sketch
822   std::shared_ptr<SketchPlugin_Sketch> aSketch;
823   std::set<AttributePtr> aRefs = aLineAttr->owner()->data()->refsToMe();
824   std::set<AttributePtr>::const_iterator anIt = aRefs.begin();
825   for (; anIt != aRefs.end(); ++anIt) {
826     CompositeFeaturePtr aComp =
827         std::dynamic_pointer_cast<ModelAPI_CompositeFeature>((*anIt)->owner());
828     if (aComp && aComp->getKind() == SketchPlugin_Sketch::ID()) {
829       aSketch = std::dynamic_pointer_cast<SketchPlugin_Sketch>(aComp);
830       break;
831     }
832   }
833   if (!aSketch) {
834     theError = "There is no sketch referring to the current feature";
835     return false;
836   }
837
838   std::shared_ptr<GeomAPI_Pln> aPlane = aSketch->plane();
839   std::shared_ptr<GeomAPI_Dir> aNormal = aPlane->direction();
840   return fabs(aNormal->dot(aLineDir)) > tolerance * tolerance;
841 }
842
843 bool SketchPlugin_SplitValidator::isValid(const AttributePtr& theAttribute,
844                                           const std::list<std::string>& theArguments,
845                                           Events_InfoMessage& theError) const
846 {
847   bool aValid = false;
848
849   if (theAttribute->attributeType() != ModelAPI_AttributeReference::typeId()) {
850     theError = "The attribute with the %1 type is not processed";
851     theError.arg(theAttribute->attributeType());
852     return aValid;
853   }
854   AttributeReferencePtr aFeatureAttr =
855             std::dynamic_pointer_cast<ModelAPI_AttributeReference>(theAttribute);
856
857   ObjectPtr anAttrObject = aFeatureAttr->value();
858   FeaturePtr anAttrFeature = ModelAPI_Feature::feature(anAttrObject);
859   if (!anAttrFeature)
860     return aValid;
861
862   std::string aKind = anAttrFeature->getKind();
863   if (aKind == SketchPlugin_Line::ID() ||
864       aKind == SketchPlugin_Arc::ID() ||
865       aKind == SketchPlugin_Circle::ID()) {
866
867     std::set<ResultPtr> anEdgeShapes;
868     ModelGeomAlgo_Shape::shapesOfType(anAttrFeature, GeomAPI_Shape::EDGE, anEdgeShapes);
869     if (anEdgeShapes.empty() || anEdgeShapes.size() > 1 /*there case has not existed yet*/)
870       return aValid;
871
872     // coincidences to the feature
873     std::set<std::shared_ptr<GeomDataAPI_Point2D> > aRefAttributes;
874     ModelGeomAlgo_Point2D::getPointsOfReference(anAttrFeature,
875                         SketchPlugin_ConstraintCoincidence::ID(),
876                         aRefAttributes, SketchPlugin_Point::ID(), SketchPlugin_Point::COORD_ID());
877
878     GeomShapePtr anAttrShape = (*anEdgeShapes.begin())->shape();
879     std::shared_ptr<SketchPlugin_Feature> aSFeature =
880                                  std::dynamic_pointer_cast<SketchPlugin_Feature>(anAttrFeature);
881     SketchPlugin_Sketch* aSketch = aSFeature->sketch();
882
883     std::shared_ptr<ModelAPI_Data> aData = aSketch->data();
884     std::shared_ptr<GeomDataAPI_Point> aC = std::dynamic_pointer_cast<GeomDataAPI_Point>(
885         aData->attribute(SketchPlugin_Sketch::ORIGIN_ID()));
886     std::shared_ptr<GeomDataAPI_Dir> aX = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
887         aData->attribute(SketchPlugin_Sketch::DIRX_ID()));
888     std::shared_ptr<GeomDataAPI_Dir> aNorm = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
889         aData->attribute(SketchPlugin_Sketch::NORM_ID()));
890     std::shared_ptr<GeomAPI_Dir> aDirY(new GeomAPI_Dir(aNorm->dir()->cross(aX->dir())));
891
892     typedef std::map<std::shared_ptr<GeomAPI_Pnt>,
893                      std::pair<std::list<std::shared_ptr<GeomDataAPI_Point2D> >,
894                                std::list<std::shared_ptr<ModelAPI_Object> > > > PointToRefsMap;
895     PointToRefsMap aPointsInfo;
896
897     ModelGeomAlgo_Point2D::getPointsInsideShape(anAttrShape, aRefAttributes, aC->pnt(),
898                                                 aX->dir(), aDirY, aPointsInfo);
899     int aCoincidentToFeature = (int)aPointsInfo.size();
900     if (aKind == SketchPlugin_Circle::ID())
901       aValid = aCoincidentToFeature >= 2;
902     else
903       aValid = aCoincidentToFeature >= 1;
904   }
905
906   return aValid;
907 }
908
909 bool SketchPlugin_TrimValidator::isValid(const AttributePtr& theAttribute,
910                                          const std::list<std::string>& theArguments,
911                                          Events_InfoMessage& theError) const
912 {
913   bool aValid = false;
914
915   if (theAttribute->attributeType() != ModelAPI_AttributeReference::typeId()) {
916     theError = "The attribute with the %1 type is not processed";
917     theError.arg(theAttribute->attributeType());
918     return aValid;
919   }
920   AttributeReferencePtr aBaseObjectAttr =
921             std::dynamic_pointer_cast<ModelAPI_AttributeReference>(theAttribute);
922
923   std::shared_ptr<SketchPlugin_Feature> aTrimFeature =
924                  std::dynamic_pointer_cast<SketchPlugin_Feature>(theAttribute->owner());
925
926   ObjectPtr aBaseObject = aBaseObjectAttr->value();
927   if (!aBaseObject) {
928     AttributePtr aPreviewAttr = aTrimFeature->attribute(SketchPlugin_Trim::PREVIEW_OBJECT());
929     aBaseObjectAttr = std::dynamic_pointer_cast<ModelAPI_AttributeReference>(aPreviewAttr);
930     aBaseObject = aBaseObjectAttr->value();
931   }
932
933   FeaturePtr aBaseFeature = ModelAPI_Feature::feature(aBaseObject);
934   if (!aBaseFeature)
935     return aValid;
936
937   std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
938                                  std::dynamic_pointer_cast<SketchPlugin_Feature>(aBaseFeature);
939   if (!aSketchFeature.get() || aSketchFeature->isCopy())
940     return aValid;
941
942   std::string aKind = aBaseFeature->getKind();
943   if (aKind != SketchPlugin_Line::ID() &&
944       aKind != SketchPlugin_Arc::ID() &&
945       aKind != SketchPlugin_Circle::ID())
946     return aValid;
947
948   // point on feature
949   AttributePoint2DPtr aPoint = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
950                        aTrimFeature->data()->attribute(SketchPlugin_Trim::PREVIEW_POINT()));
951
952   SketchPlugin_Sketch* aSketch = aTrimFeature->sketch();
953
954   std::shared_ptr<GeomAPI_Pnt2d> anAttributePnt2d = aPoint->pnt();
955   std::shared_ptr<GeomAPI_Pnt> anAttributePnt = aSketch->to3D(anAttributePnt2d->x(),
956                                                               anAttributePnt2d->y());
957
958   std::map<ObjectPtr, std::set<GeomShapePtr> > aCashedShapes;
959   std::map<ObjectPtr, std::map<std::shared_ptr<GeomAPI_Pnt>,
960            std::pair<std::list<std::shared_ptr<GeomDataAPI_Point2D> >,
961                      std::list<std::shared_ptr<ModelAPI_Object> > > > > anObjectToPoints;
962   SketchPlugin_Trim::fillObjectShapes(aBaseObject, aSketch->data()->owner(),
963                                       aCashedShapes, anObjectToPoints);
964   const std::set<GeomShapePtr>& aShapes = aCashedShapes[aBaseObject];
965
966   return aShapes.size() > 1;
967 }
968
969 bool SketchPlugin_ProjectionValidator::isValid(const AttributePtr& theAttribute,
970                                                const std::list<std::string>& theArguments,
971                                                Events_InfoMessage& theError) const
972 {
973   if (theAttribute->attributeType() != ModelAPI_AttributeSelection::typeId()) {
974     theError = "The attribute with the %1 type is not processed";
975     theError.arg(theAttribute->attributeType());
976     return false;
977   }
978
979   AttributeSelectionPtr aFeatureAttr =
980       std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(theAttribute);
981   std::shared_ptr<GeomAPI_Edge> anEdge;
982   if (aFeatureAttr.get()) {
983     GeomShapePtr aVal = aFeatureAttr->value();
984     ResultPtr aRes = aFeatureAttr->context();
985     if(aFeatureAttr->value() && aFeatureAttr->value()->isEdge()) {
986       anEdge = std::shared_ptr<GeomAPI_Edge>(new GeomAPI_Edge(aFeatureAttr->value()));
987     } else if(aFeatureAttr->context() && aFeatureAttr->context()->shape() &&
988               aFeatureAttr->context()->shape()->isEdge()) {
989       anEdge = std::shared_ptr<GeomAPI_Edge>(new GeomAPI_Edge(aFeatureAttr->context()->shape()));
990     }
991   }
992   if (!anEdge) {
993     theError = "The attribute %1 should be an edge";
994     theError.arg(theAttribute->id());
995     return false;
996   }
997
998   // find a sketch
999   std::shared_ptr<SketchPlugin_Sketch> aSketch;
1000   std::set<AttributePtr> aRefs = theAttribute->owner()->data()->refsToMe();
1001   std::set<AttributePtr>::const_iterator anIt = aRefs.begin();
1002   for (; anIt != aRefs.end(); ++anIt) {
1003     CompositeFeaturePtr aComp =
1004         std::dynamic_pointer_cast<ModelAPI_CompositeFeature>((*anIt)->owner());
1005     if (aComp && aComp->getKind() == SketchPlugin_Sketch::ID()) {
1006       aSketch = std::dynamic_pointer_cast<SketchPlugin_Sketch>(aComp);
1007       break;
1008     }
1009   }
1010   if (!aSketch) {
1011     theError = "There is no sketch referring to the current feature";
1012     return false;
1013   }
1014
1015   std::shared_ptr<GeomAPI_Pln> aPlane = aSketch->plane();
1016   std::shared_ptr<GeomAPI_Dir> aNormal = aPlane->direction();
1017   std::shared_ptr<GeomAPI_Pnt> anOrigin = aPlane->location();
1018
1019   if (anEdge->isLine()) {
1020     std::shared_ptr<GeomAPI_Lin> aLine = anEdge->line();
1021     std::shared_ptr<GeomAPI_Dir> aLineDir = aLine->direction();
1022     std::shared_ptr<GeomAPI_Pnt> aLineLoc = aLine->location();
1023     double aDot = aNormal->dot(aLineDir);
1024     double aDist = aLineLoc->xyz()->decreased(anOrigin->xyz())->dot(aNormal->xyz());
1025     bool aValid = (fabs(aDot) >= tolerance && fabs(aDot) < 1.0 - tolerance) ||
1026            (fabs(aDot) < tolerance && fabs(aDist) > tolerance);
1027     if (!aValid)
1028       theError = "Error: Edge is already in the sketch plane.";
1029     return aValid;
1030   }
1031   else if (anEdge->isCircle() || anEdge->isArc()) {
1032     std::shared_ptr<GeomAPI_Circ> aCircle = anEdge->circle();
1033     std::shared_ptr<GeomAPI_Dir> aCircNormal = aCircle->normal();
1034     std::shared_ptr<GeomAPI_Pnt> aCircCenter = aCircle->center();
1035     double aDot = fabs(aNormal->dot(aCircNormal));
1036     double aDist = aCircCenter->xyz()->decreased(anOrigin->xyz())->dot(aNormal->xyz());
1037     bool aValid = fabs(aDot - 1.0) < tolerance * tolerance && fabs(aDist) > tolerance;
1038     if (!aValid)
1039       theError.arg(anEdge->isCircle() ? "Error: Cirlce is already in the sketch plane."
1040                                       : "Error: Arc is already in the sketch plane.");
1041     return aValid;
1042   }
1043
1044   theError = "Error: Selected object is not line, circle or arc.";
1045   return false;
1046 }
1047
1048
1049 static std::set<FeaturePtr> common(const std::set<FeaturePtr>& theSet1,
1050                                    const std::set<FeaturePtr>& theSet2)
1051 {
1052   std::set<FeaturePtr> aCommon;
1053   if (theSet1.empty() || theSet2.empty())
1054     return aCommon;
1055
1056   std::set<FeaturePtr>::const_iterator anIt2 = theSet2.begin();
1057   for (; anIt2 != theSet2.end(); ++anIt2)
1058     if (theSet1.find(*anIt2) != theSet1.end())
1059       aCommon.insert(*anIt2);
1060   return aCommon;
1061 }
1062
1063 bool SketchPlugin_DifferentReferenceValidator::isValid(
1064     const AttributePtr& theAttribute,
1065     const std::list<std::string>& theArguments,
1066     Events_InfoMessage& theError) const
1067 {
1068   FeaturePtr anOwner = ModelAPI_Feature::feature(theAttribute->owner());
1069
1070   int aNbFeaturesReferred = 0;
1071   int aNbAttributesReferred = 0;
1072   std::set<FeaturePtr> aCommonReferredFeatures;
1073
1074   // find all features referred by attributes listed in theArguments
1075   std::list<std::string>::const_iterator anArgIt = theArguments.begin();
1076   for (; anArgIt != theArguments.end(); ++anArgIt) {
1077     AttributeRefAttrPtr aRefAttr = anOwner->refattr(*anArgIt);
1078     if (!aRefAttr)
1079       continue;
1080
1081     std::set<FeaturePtr> aCoincidentFeatures;
1082     if (aRefAttr->isObject()) {
1083       FeaturePtr aFeature = ModelAPI_Feature::feature(aRefAttr->object());
1084       if (aFeature) {
1085         aCoincidentFeatures.insert(aFeature);
1086         aNbFeaturesReferred += 1;
1087       }
1088     } else {
1089       AttributePoint2DPtr aPoint =
1090           std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aRefAttr->attr());
1091       if (aPoint) {
1092         aCoincidentFeatures = SketchPlugin_Tools::findFeaturesCoincidentToPoint(aPoint);
1093         aNbAttributesReferred += 1;
1094       }
1095     }
1096
1097     if (aCommonReferredFeatures.empty())
1098       aCommonReferredFeatures = aCoincidentFeatures;
1099     else
1100       aCommonReferredFeatures = common(aCommonReferredFeatures, aCoincidentFeatures);
1101
1102     if (aCommonReferredFeatures.empty())
1103       return true;
1104   }
1105
1106   bool isOk = aNbFeaturesReferred < 1;
1107   if (aNbFeaturesReferred == 1) {
1108     if (aCommonReferredFeatures.size() == 1) {
1109       FeaturePtr aFeature = *aCommonReferredFeatures.begin();
1110       isOk = aNbAttributesReferred <= 1 ||
1111              aFeature->getKind() == SketchPlugin_Circle::ID() ||
1112              aFeature->getKind() == SketchPlugin_Arc::ID();
1113     } else
1114       isOk = false;
1115   }
1116
1117   if (!isOk)
1118     theError = "Attributes are referred to the same feature";
1119   return isOk;
1120 }
1121
1122 bool SketchPlugin_DifferentPointReferenceValidator::isValid(
1123     const AttributePtr& theAttribute,
1124     const std::list<std::string>& theArguments,
1125     Events_InfoMessage& theError) const
1126 {
1127   FeaturePtr anOwner = ModelAPI_Feature::feature(theAttribute->owner());
1128   std::set<AttributePoint2DPtr> aReferredCoincidentPoints;
1129
1130   // find all points referred by attributes listed in theArguments
1131   bool hasRefsToPoints = false;
1132   std::list<std::string>::const_iterator anArgIt = theArguments.begin();
1133   for (; anArgIt != theArguments.end(); ++anArgIt) {
1134     AttributeRefAttrPtr aRefAttr = anOwner->refattr(*anArgIt);
1135     if (!aRefAttr)
1136       continue;
1137
1138     if (!aRefAttr->isObject()) {
1139       AttributePoint2DPtr aPoint =
1140           std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aRefAttr->attr());
1141       if (aReferredCoincidentPoints.empty())
1142         aReferredCoincidentPoints = SketchPlugin_Tools::findPointsCoincidentToPoint(aPoint);
1143       else if (aReferredCoincidentPoints.find(aPoint) == aReferredCoincidentPoints.end())
1144         return true; // non-coincident point has been found
1145       else
1146         hasRefsToPoints = true;
1147     }
1148   }
1149
1150   if (hasRefsToPoints)
1151     theError = "Attributes are referred to the same point";
1152   return !hasRefsToPoints;
1153 }
1154
1155 bool SketchPlugin_CirclePassedPointValidator::isValid(
1156     const AttributePtr& theAttribute,
1157     const std::list<std::string>&,
1158     Events_InfoMessage& theError) const
1159 {
1160   static const std::string aErrorMessage(
1161       "Passed point refers to the same feature as a center point");
1162
1163   FeaturePtr anOwner = ModelAPI_Feature::feature(theAttribute->owner());
1164
1165   AttributeRefAttrPtr aCenterRef =
1166       anOwner->refattr(SketchPlugin_MacroCircle::CENTER_POINT_REF_ID());
1167   AttributeRefAttrPtr aPassedRef =
1168       anOwner->refattr(SketchPlugin_MacroCircle::PASSED_POINT_REF_ID());
1169
1170   if (!aPassedRef->isObject())
1171     return true;
1172
1173   FeaturePtr aPassedFeature = ModelAPI_Feature::feature(aPassedRef->object());
1174   if (!aPassedFeature)
1175     return true;
1176
1177   if (aCenterRef->isObject()) {
1178     if (aCenterRef->object() == aPassedRef->object()) {
1179       theError = aErrorMessage;
1180       return false;
1181     }
1182   } else {
1183     AttributePoint2DPtr aCenterPoint =
1184         std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aCenterRef->attr());
1185     if (aCenterPoint) {
1186       std::set<FeaturePtr> aCoincidentFeatures =
1187           SketchPlugin_Tools::findFeaturesCoincidentToPoint(aCenterPoint);
1188       // check one of coincident features is a feature referred by passed point
1189       std::set<FeaturePtr>::const_iterator anIt = aCoincidentFeatures.begin();
1190       for(; anIt != aCoincidentFeatures.end(); ++anIt)
1191         if (*anIt == aPassedFeature) {
1192           theError = aErrorMessage;
1193           return false;
1194         }
1195     }
1196   }
1197   return true;
1198 }
1199
1200 bool SketchPlugin_ThirdPointValidator::isValid(
1201     const AttributePtr& theAttribute,
1202     const std::list<std::string>& theArguments,
1203     Events_InfoMessage& theError) const
1204 {
1205   FeaturePtr anOwner = ModelAPI_Feature::feature(theAttribute->owner());
1206   return arePointsNotOnLine(anOwner, theError) &&
1207          arePointsNotSeparated(anOwner, theArguments, theError);
1208 }
1209
1210 static std::shared_ptr<GeomAPI_Pnt2d> toPoint(const FeaturePtr& theMacroCircle,
1211                                               const std::string& thePointAttrName,
1212                                               const std::string& theRefPointAttrName)
1213 {
1214   AttributePoint2DPtr aPointAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
1215       theMacroCircle->attribute(thePointAttrName));
1216   AttributeRefAttrPtr aRefAttr = theMacroCircle->refattr(theRefPointAttrName);
1217
1218   std::shared_ptr<GeomAPI_Pnt2d> aPoint = aPointAttr->pnt();
1219   if (aRefAttr) {
1220     if (aRefAttr->isObject()) {
1221       // project a point onto selected feature
1222       std::shared_ptr<SketchPlugin_Feature> aFeature =
1223           std::dynamic_pointer_cast<SketchPlugin_Feature>(
1224           ModelAPI_Feature::feature(aRefAttr->object()));
1225       if (aFeature) {
1226         SketchPlugin_Sketch* aSketch = aFeature->sketch();
1227         std::shared_ptr<GeomAPI_Edge> anEdge =
1228             std::dynamic_pointer_cast<GeomAPI_Edge>(aFeature->lastResult()->shape());
1229         if (anEdge) {
1230           std::shared_ptr<GeomAPI_Pnt> aPoint3D = aSketch->to3D(aPoint->x(), aPoint->y());
1231           if (anEdge->isLine())
1232             aPoint3D = anEdge->line()->project(aPoint3D);
1233           else if (anEdge->isCircle())
1234             aPoint3D = anEdge->circle()->project(aPoint3D);
1235           if(aPoint3D)
1236             aPoint = aSketch->to2D(aPoint3D);
1237         }
1238       }
1239     } else {
1240       AttributePoint2DPtr anOtherPoint =
1241           std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aRefAttr->attr());
1242       if (anOtherPoint)
1243         aPoint = anOtherPoint->pnt(); // the reference point is much more precise, use it
1244     }
1245   }
1246
1247   return aPoint;
1248 }
1249
1250 static void threePointsOfFeature(const FeaturePtr& theMacroFeature,
1251                                  std::shared_ptr<GeomAPI_Pnt2d> thePoints[3])
1252 {
1253   if (theMacroFeature->getKind() == SketchPlugin_MacroCircle::ID()) {
1254     thePoints[0] = toPoint(theMacroFeature,
1255           SketchPlugin_MacroCircle::FIRST_POINT_ID(),
1256           SketchPlugin_MacroCircle::FIRST_POINT_REF_ID());
1257     thePoints[1] = toPoint(theMacroFeature,
1258           SketchPlugin_MacroCircle::SECOND_POINT_ID(),
1259           SketchPlugin_MacroCircle::SECOND_POINT_REF_ID());
1260     thePoints[2] = toPoint(theMacroFeature,
1261           SketchPlugin_MacroCircle::THIRD_POINT_ID(),
1262           SketchPlugin_MacroCircle::THIRD_POINT_REF_ID());
1263   } else if (theMacroFeature->getKind() == SketchPlugin_MacroArc::ID()) {
1264     thePoints[0] = toPoint(theMacroFeature,
1265           SketchPlugin_MacroArc::START_POINT_2_ID(),
1266           SketchPlugin_MacroArc::START_POINT_REF_ID());
1267     thePoints[1] = toPoint(theMacroFeature,
1268           SketchPlugin_MacroArc::END_POINT_2_ID(),
1269           SketchPlugin_MacroArc::END_POINT_REF_ID());
1270     thePoints[2] = toPoint(theMacroFeature,
1271           SketchPlugin_MacroArc::PASSED_POINT_ID(),
1272           SketchPlugin_MacroArc::PASSED_POINT_REF_ID());
1273   }
1274 }
1275
1276 static bool isPointsOnLine(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint1,
1277                            const std::shared_ptr<GeomAPI_Pnt2d>& thePoint2,
1278                            const std::shared_ptr<GeomAPI_Pnt2d>& thePoint3)
1279 {
1280   static const double aTolerance = 1.e-7;
1281   if (thePoint1->distance(thePoint2) < aTolerance ||
1282       thePoint1->distance(thePoint3) < aTolerance)
1283     return true;
1284
1285   std::shared_ptr<GeomAPI_Dir2d> aDirP1P2(new GeomAPI_Dir2d(thePoint2->x() - thePoint1->x(),
1286                                                             thePoint2->y() - thePoint1->y()));
1287   std::shared_ptr<GeomAPI_Dir2d> aDirP1P3(new GeomAPI_Dir2d(thePoint3->x() - thePoint1->x(),
1288                                                             thePoint3->y() - thePoint1->y()));
1289   return fabs(aDirP1P2->cross(aDirP1P3)) < aTolerance;
1290 }
1291
1292 static bool isOnSameSide(const std::shared_ptr<GeomAPI_Lin>& theLine,
1293                          const std::shared_ptr<GeomAPI_Pnt>& thePoint1,
1294                          const std::shared_ptr<GeomAPI_Pnt>& thePoint2)
1295 {
1296   static const double aTolerance = 1.e-7;
1297   std::shared_ptr<GeomAPI_Dir> aLineDir = theLine->direction();
1298   std::shared_ptr<GeomAPI_XYZ> aLineLoc = theLine->location()->xyz();
1299
1300   std::shared_ptr<GeomAPI_XYZ> aVec1 = thePoint1->xyz()->decreased(aLineLoc);
1301   // the first point is on the line
1302   if (aVec1->squareModulus() < aTolerance * aTolerance)
1303     return false;
1304   std::shared_ptr<GeomAPI_Dir> aDirP1L(new GeomAPI_Dir(aVec1));
1305   std::shared_ptr<GeomAPI_XYZ> aVec2 = thePoint2->xyz()->decreased(aLineLoc);
1306   // the second point is on the line
1307   if (aVec2->squareModulus() < aTolerance * aTolerance)
1308     return false;
1309   std::shared_ptr<GeomAPI_Dir> aDirP2L(new GeomAPI_Dir(aVec2));
1310
1311   return aLineDir->cross(aDirP1L)->dot(aLineDir->cross(aDirP2L)) > -aTolerance;
1312 }
1313
1314 static bool isOnSameSide(const std::shared_ptr<GeomAPI_Circ>& theCircle,
1315                          const std::shared_ptr<GeomAPI_Pnt>&  thePoint1,
1316                          const std::shared_ptr<GeomAPI_Pnt>&  thePoint2)
1317 {
1318   static const double aTolerance = 1.e-7;
1319   std::shared_ptr<GeomAPI_Pnt> aCenter = theCircle->center();
1320   double aDistP1C = thePoint1->distance(aCenter);
1321   double aDistP2C = thePoint2->distance(aCenter);
1322   return (aDistP1C - theCircle->radius()) * (aDistP2C - theCircle->radius()) > -aTolerance;
1323 }
1324
1325 bool SketchPlugin_ThirdPointValidator::arePointsNotOnLine(
1326     const FeaturePtr& theMacroFeature,
1327     Events_InfoMessage& theError) const
1328 {
1329   static const std::string aErrorPointsOnLine(
1330       "Selected points are on the same line");
1331
1332   std::shared_ptr<GeomAPI_Pnt2d> aPoints[3];
1333   threePointsOfFeature(theMacroFeature, aPoints);
1334
1335   if (isPointsOnLine(aPoints[0], aPoints[1], aPoints[2])) {
1336     theError = aErrorPointsOnLine;
1337     return false;
1338   }
1339   return true;
1340 }
1341
1342 bool SketchPlugin_ThirdPointValidator::arePointsNotSeparated(
1343     const FeaturePtr& theMacroFeature,
1344     const std::list<std::string>& theArguments,
1345     Events_InfoMessage& theError) const
1346 {
1347   static const std::string aErrorPointsApart(
1348       "Selected entity is lying between first two points");
1349
1350   AttributeRefAttrPtr aThirdPointRef = theMacroFeature->refattr(theArguments.front());
1351   FeaturePtr aRefByThird;
1352   if (aThirdPointRef->isObject())
1353     aRefByThird = ModelAPI_Feature::feature(aThirdPointRef->object());
1354   if (!aRefByThird)
1355     return true;
1356
1357   std::shared_ptr<GeomAPI_Pnt2d> aPoints[3];
1358   threePointsOfFeature(theMacroFeature, aPoints);
1359
1360   std::shared_ptr<GeomAPI_Edge> aThirdShape =
1361       std::dynamic_pointer_cast<GeomAPI_Edge>(aRefByThird->lastResult()->shape());
1362   if (!aThirdShape)
1363     return true;
1364
1365   SketchPlugin_Sketch* aSketch =
1366       std::dynamic_pointer_cast<SketchPlugin_Feature>(theMacroFeature)->sketch();
1367   std::shared_ptr<GeomAPI_Pnt> aFirstPnt3D = aSketch->to3D(aPoints[0]->x(), aPoints[0]->y());
1368   std::shared_ptr<GeomAPI_Pnt> aSecondPnt3D = aSketch->to3D(aPoints[1]->x(), aPoints[1]->y());
1369
1370   bool isOk = true;
1371   if (aThirdShape->isLine())
1372     isOk = isOnSameSide(aThirdShape->line(), aFirstPnt3D, aSecondPnt3D);
1373   else if (aThirdShape->isCircle() || aThirdShape->isArc())
1374     isOk = isOnSameSide(aThirdShape->circle(), aFirstPnt3D, aSecondPnt3D);
1375
1376   if (!isOk)
1377     theError = aErrorPointsApart;
1378   return isOk;
1379 }
1380
1381 bool SketchPlugin_ArcEndPointValidator::isValid(
1382     const AttributePtr& theAttribute,
1383     const std::list<std::string>& theArguments,
1384     Events_InfoMessage& theError) const
1385 {
1386   FeaturePtr aFeature = ModelAPI_Feature::feature(theAttribute->owner());
1387   AttributeRefAttrPtr anEndPointRef = aFeature->refattr(theArguments.front());
1388
1389   if(!anEndPointRef.get()) {
1390     return true;
1391   }
1392
1393   ObjectPtr anObject = anEndPointRef->object();
1394   AttributePtr anAttr = anEndPointRef->attr();
1395   if(!anObject.get() && !anAttr.get()) {
1396     return true;
1397   }
1398
1399   if(anEndPointRef->attr().get()) {
1400     return false;
1401   }
1402
1403   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
1404   if(aResult.get()) {
1405     GeomShapePtr aShape = aResult->shape();
1406     if(aShape.get() && aShape->isVertex()) {
1407       return false;
1408     }
1409   }
1410
1411   aFeature = ModelAPI_Feature::feature(anObject);
1412   if(aFeature.get()) {
1413     if(aFeature->getKind() == SketchPlugin_Point::ID()) {
1414       return false;
1415     }
1416   }
1417
1418   return true;
1419 }
1420
1421 static GeomShapePtr toInfiniteEdge(const GeomShapePtr theShape)
1422 {
1423   if(!theShape.get()) {
1424     return theShape;
1425   }
1426
1427   if(!theShape->isEdge()) {
1428     return theShape;
1429   }
1430
1431   std::shared_ptr<GeomAPI_Edge> anEdge(new GeomAPI_Edge(theShape));
1432
1433   if(!anEdge.get()) {
1434     return theShape;
1435   }
1436
1437   if(anEdge->isLine()) {
1438     std::shared_ptr<GeomAPI_Lin> aLine = anEdge->line();
1439     GeomShapePtr aShape = GeomAlgoAPI_EdgeBuilder::line(aLine);
1440     return aShape;
1441   }
1442
1443   if(anEdge->isCircle() || anEdge->isArc()) {
1444     std::shared_ptr<GeomAPI_Circ> aCircle = anEdge->circle();
1445     GeomShapePtr aShape = GeomAlgoAPI_EdgeBuilder::lineCircle(aCircle);
1446     return aShape;
1447   }
1448
1449   return theShape;
1450 }
1451
1452 bool SketchPlugin_ArcEndPointIntersectionValidator::isValid(
1453     const AttributePtr& theAttribute,
1454     const std::list<std::string>& theArguments,
1455     Events_InfoMessage& theError) const
1456 {
1457   std::shared_ptr<SketchPlugin_MacroArc> anArcFeature =
1458       std::dynamic_pointer_cast<SketchPlugin_MacroArc>(theAttribute->owner());
1459   AttributeRefAttrPtr anEndPointRef = anArcFeature->refattr(theArguments.front());
1460
1461   if(!anEndPointRef.get()) {
1462     return true;
1463   }
1464
1465   GeomShapePtr anArcShape = toInfiniteEdge(anArcFeature->getArcShape(false));
1466
1467   if(!anArcShape.get() || anArcShape->isNull()) {
1468     return true;
1469   }
1470
1471   ObjectPtr anObject = anEndPointRef->object();
1472   AttributePtr anAttr = anEndPointRef->attr();
1473   if(!anObject.get() && !anAttr.get()) {
1474     return true;
1475   }
1476
1477   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
1478   if(aResult.get()) {
1479     GeomShapePtr aShape = aResult->shape();
1480     if (!aShape->isEdge())
1481       return true;
1482     aShape = toInfiniteEdge(aShape);
1483     if(aShape.get() && !aShape->isNull()) {
1484       if(anArcShape->isIntersect(aShape)) {
1485         return true;
1486       }
1487     }
1488   }
1489
1490   FeaturePtr aSelectedFeature = ModelAPI_Feature::feature(anObject);
1491   if(aSelectedFeature.get()) {
1492     std::list<ResultPtr> aResults = aSelectedFeature->results();
1493     for(std::list<ResultPtr>::const_iterator anIt = aResults.cbegin();
1494         anIt != aResults.cend();
1495         ++anIt)
1496     {
1497       GeomShapePtr aShape = (*anIt)->shape();
1498       if (!aShape->isEdge())
1499         return true;
1500       aShape = toInfiniteEdge(aShape);
1501       if(aShape.get() && !aShape->isNull()) {
1502         if(anArcShape->isIntersect(aShape)) {
1503           return true;
1504         }
1505       }
1506     }
1507   }
1508
1509   return false;
1510 }