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