Salome HOME
Merge branch 'csgroup_IS2'
[modules/shaper.git] / src / PartSet / PartSet_OverconstraintListener.cpp
1 // Copyright (C) 2014-2021  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 <ModelAPI_Tools.h>
21 #include <ModelAPI_AttributeString.h>
22
23 #include "PartSet_OverconstraintListener.h"
24 #include <PartSet_Module.h>
25 #include <PartSet_SketcherMgr.h>
26 #include <PartSet_SketcherReentrantMgr.h>
27
28 #include "XGUI_Displayer.h"
29 #include "XGUI_ModuleConnector.h"
30 #include "XGUI_OperationMgr.h"
31 #include "XGUI_Tools.h"
32 #include "XGUI_Workshop.h"
33
34 #include "SketcherPrs_SymbolPrs.h"
35 #include "SketchPlugin_SketchEntity.h"
36 #include "SketchPlugin_MacroArcReentrantMessage.h"
37 #include "SketchPlugin_Sketch.h"
38 #include "SketchPlugin_ConstraintHorizontal.h"
39 #include "SketchPlugin_ConstraintVertical.h"
40
41 #include "Events_Loop.h"
42
43 #include <GeomAPI_IPresentable.h>
44 #include <ModelAPI_Events.h>
45 #include <ModelAPI_EventReentrantMessage.h>
46 #include <ModuleBase_Tools.h>
47
48 #include <QString>
49 #include <QTimer>
50
51 //#define DEBUG_FEATURE_OVERCONSTRAINT_LISTENER
52
53 PartSet_OverconstraintListener::PartSet_OverconstraintListener(ModuleBase_IWorkshop* theWorkshop)
54 : myWorkshop(theWorkshop), myIsActive(false), myIsFullyConstrained(false)
55 {
56   Events_Loop* aLoop = Events_Loop::loop();
57   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_SOLVER_FAILED));
58   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_SOLVER_REPAIRED));
59
60   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_SKETCH_UNDER_CONSTRAINED));
61   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_SKETCH_FULLY_CONSTRAINED));
62
63   aLoop->registerListener(this, ModelAPI_EventReentrantMessage::eventId());
64   aLoop->registerListener(this, SketchPlugin_MacroArcReentrantMessage::eventId());
65 }
66
67 void PartSet_OverconstraintListener::setActive(const bool& theActive)
68 {
69   if (myIsActive == theActive)
70     return;
71
72   myIsActive = theActive;
73   myIsFullyConstrained = false; /// returned to default state, no custom color for it
74
75   if (myIsActive) {
76     PartSet_Module* aModule = module();
77     CompositeFeaturePtr aSketch = aModule->sketchMgr()->activeSketch();
78     if (aSketch.get()) {
79       QString aDOFMessage(aSketch->string(SketchPlugin_Sketch::SOLVER_DOF())->value().c_str());
80       if (aDOFMessage.contains('=')) {
81         // to support old data
82         aDOFMessage =
83           aDOFMessage.right(aDOFMessage.length() - aDOFMessage.lastIndexOf('=')).trimmed();
84       }
85       myIsFullyConstrained = (aDOFMessage == "0");
86     }
87   }
88 }
89
90 void PartSet_OverconstraintListener::getCustomColor(const ObjectPtr& theObject,
91                                                     std::vector<int>& theColor)
92 {
93   if (!myIsActive)
94     return;
95
96   FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
97
98   if (myConflictingObjects.find(theObject) != myConflictingObjects.end()) {
99     theColor = Config_PropManager::color("Visualization", "sketch_overconstraint_color");
100   }
101   if (myIsFullyConstrained) {
102     // only entity features has custom color when sketch is fully constrained
103     if (aFeature.get() && PartSet_SketcherMgr::isEntity(aFeature->getKind()) &&
104         !PartSet_SketcherMgr::isExternalFeature(aFeature)) {
105       PartSet_Module* aModule = module();
106       CompositeFeaturePtr aSketch = aModule->sketchMgr()->activeSketch();
107       // the given object is sub feature of the current sketch(created or edited)
108       if (ModelAPI_Tools::compositeOwner(aFeature) == aSketch)
109         theColor = Config_PropManager::color("Visualization", "sketch_fully_constrained_color");
110     }
111   }
112 }
113
114 void PartSet_OverconstraintListener::processEvent(const std::shared_ptr<Events_Message>& theMessage)
115 {
116   // #2271 open document: if sketch has confilcting elements, solver sends message with the
117   // elements by opening the document. Sketch is not active, but an internal container should
118   // be updated. So, we should not check whether the listener is active here
119   //if (!myIsActive)
120   //  return;
121
122 #ifdef DEBUG_FEATURE_OVERCONSTRAINT_LISTENER
123   bool isRepaired = theMessage->eventID() == Events_Loop::eventByName(EVENT_SOLVER_REPAIRED);
124   int aCount = 0;
125
126   std::shared_ptr<ModelAPI_SolverFailedMessage> anErrorMsg =
127                   std::dynamic_pointer_cast<ModelAPI_SolverFailedMessage>(theMessage);
128   QString anInfoStr;
129   if (anErrorMsg.get()) {
130     const std::set<ObjectPtr>& aConflictingObjects = anErrorMsg->objects();
131     aCount = aConflictingObjects.size();
132     anInfoStr = getObjectsInfo(aConflictingObjects);
133   }
134
135   QString aCurrentInfoStr = getObjectsInfo(myConflictingObjects);
136
137   QString aMsg("PartSet_OverconstraintListener::processEvent: %1,\nobjects "
138                "count = %2:%3\ncurrent objects count = %4:%5");
139   qDebug(aMsg.arg(isRepaired ? "REPAIRED" : "FAILED")
140              .arg(aCount).arg(anInfoStr).arg(myConflictingObjects.size())
141              .arg(aCurrentInfoStr).toStdString().c_str());
142 #endif
143
144   Events_ID anEventID = theMessage->eventID();
145   if (anEventID == Events_Loop::eventByName(EVENT_SOLVER_FAILED) ||
146       anEventID == Events_Loop::eventByName(EVENT_SOLVER_REPAIRED)) {
147     std::shared_ptr<ModelAPI_SolverFailedMessage> anErrorMsg =
148                    std::dynamic_pointer_cast<ModelAPI_SolverFailedMessage>(theMessage);
149     if (anErrorMsg.get()) {
150       const std::set<ObjectPtr>& aConflictingObjects = anErrorMsg->objects();
151       if (anEventID == Events_Loop::eventByName(EVENT_SOLVER_FAILED))
152         appendConflictingObjects(aConflictingObjects);
153       else
154         repairConflictingObjects(aConflictingObjects);
155     }
156   }
157   else if (anEventID == Events_Loop::eventByName(EVENT_SKETCH_UNDER_CONSTRAINED) ||
158            anEventID == Events_Loop::eventByName(EVENT_SKETCH_FULLY_CONSTRAINED)) {
159     bool aPrevFullyConstrained = myIsFullyConstrained;
160     myIsFullyConstrained = anEventID == Events_Loop::eventByName(EVENT_SKETCH_FULLY_CONSTRAINED);
161
162     if (aPrevFullyConstrained != myIsFullyConstrained) {
163       std::set<ObjectPtr> aModifiedObjects;
164       PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
165       CompositeFeaturePtr aSketch = aModule->sketchMgr()->activeSketch();
166
167       // check the sketch in the message and the active sketch are the same
168       std::shared_ptr<ModelAPI_SolverFailedMessage> anErrorMsg =
169           std::dynamic_pointer_cast<ModelAPI_SolverFailedMessage>(theMessage);
170       if (aSketch && anErrorMsg && !anErrorMsg->objects().empty()) {
171         ObjectPtr anObject = *anErrorMsg->objects().begin();
172         CompositeFeaturePtr aSketchFromMsg =
173             std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(anObject);
174         if (!aSketchFromMsg || aSketchFromMsg != aSketch)
175           aSketch = CompositeFeaturePtr();
176       }
177
178       if (aSketch.get()) {
179         int aNumberOfSubs = aSketch->numberOfSubs();
180         for (int i = 0; i < aNumberOfSubs; i++) {
181           FeaturePtr aFeature = aSketch->subFeature(i);
182           aModifiedObjects.insert(aFeature); // is necessary to redisplay presentations
183           std::list<ResultPtr> aResults = aFeature->results();
184           for (std::list<ResultPtr>::const_iterator aIt = aResults.begin();
185                aIt != aResults.end(); ++aIt) {
186             aModifiedObjects.insert(*aIt);
187           }
188         }
189         redisplayObjects(aModifiedObjects);
190       }
191     }
192   }
193   else if (anEventID == ModelAPI_EventReentrantMessage::eventId() ||
194            anEventID == SketchPlugin_MacroArcReentrantMessage::eventId()) {
195     // the message is sent to sketcher reentrant manager only if the name of feature
196     // sender is equal to feature name of the current operation. E.g. Horizontal create operation
197     // is active. Sketch Line feature is changed, so execute is called, it will send message
198     // This Line's message should not be processed, as the reentrant operation is not for Line
199     // It is not enoght of kind, the name should be used, e.g. restarted Lines on auxiliary
200     // cirlce sometimes causes previous line change, kind the same, but feature line is different
201     std::wstring aCurrentFeatureName;
202     ModuleBase_Operation* anOperation =
203                 XGUI_Tools::workshop(myWorkshop)->operationMgr()->currentOperation();
204     if (anOperation) {
205       ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
206                                                            (anOperation);
207       if (aFOperation) {
208         FeaturePtr aFeature = aFOperation->feature();
209         // data valid is necessary if the feature has been already deleted
210         // (e.g. Esc of Lenght if lenght value is modified)
211         if (aFeature.get() && aFeature->data()->isValid())
212           aCurrentFeatureName = aFeature->data()->name();
213       }
214     }
215     if (theMessage->sender()) {
216       ModelAPI_Object* aSender = static_cast<ModelAPI_Object*>(theMessage->sender());
217       if (aSender) {
218         FeaturePtr aFeatureSender =
219           std::dynamic_pointer_cast<ModelAPI_Feature>(aSender->data()->owner());
220         if (aFeatureSender.get() && aFeatureSender->data()->name() == aCurrentFeatureName) {
221           PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
222           PartSet_SketcherReentrantMgr* aReentrantMgr = aModule->sketchReentranceMgr();
223           aReentrantMgr->setReentrantMessage(theMessage);
224         }
225       }
226     }
227   }
228
229 #ifdef DEBUG_FEATURE_OVERCONSTRAINT_LISTENER
230   aCurrentInfoStr = getObjectsInfo(myConflictingObjects);
231   qDebug(QString("RESULT: current objects count = %1:%2\n")
232                 .arg(myConflictingObjects.size()).arg(aCurrentInfoStr).toStdString().c_str());
233 #endif
234 }
235
236 bool PartSet_OverconstraintListener::appendConflictingObjects(
237                                                const std::set<ObjectPtr>& theConflictingObjects)
238 {
239   std::set<ObjectPtr> aModifiedObjects;
240
241   // set error state for new objects and append them in the internal map of objects
242   std::set<ObjectPtr>::const_iterator
243     anIt = theConflictingObjects.begin(), aLast = theConflictingObjects.end();
244   FeaturePtr aFeature;
245   bool isHVConstraint = false;
246   for (; anIt != aLast; anIt++) {
247     ObjectPtr anObject = *anIt;
248     if (myConflictingObjects.find(anObject) == myConflictingObjects.end()) { // it is not found
249       aModifiedObjects.insert(anObject);
250       myConflictingObjects.insert(anObject);
251     }
252     if (!isHVConstraint) {
253       aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(anObject);
254       if (aFeature) {
255         std::string aType = aFeature->getKind();
256         isHVConstraint = (aType == SketchPlugin_ConstraintHorizontal::ID()) ||
257           (aType == SketchPlugin_ConstraintVertical::ID());
258       }
259     }
260   }
261   bool isUpdated = !aModifiedObjects.empty();
262   if (isUpdated)
263     redisplayObjects(aModifiedObjects);
264
265   // If the conflicting object is an automatic constraint caused the conflict
266   // then it has to be deleted
267   if (isHVConstraint) {
268     PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
269     QTimer::singleShot(5, aModule, SLOT(onConflictingConstraints()));
270   }
271
272   return isUpdated;
273 }
274
275 bool PartSet_OverconstraintListener::repairConflictingObjects(
276                                               const std::set<ObjectPtr>& theConflictingObjects)
277 {
278   std::set<ObjectPtr> aModifiedObjects;
279   // erase error state of absent current objects in the parameter list
280   std::set<ObjectPtr>::const_iterator anIt, aLast;
281   for (anIt = theConflictingObjects.begin(), aLast = theConflictingObjects.end();
282        anIt != aLast; anIt++) {
283     ObjectPtr anObject = *anIt;
284     if (theConflictingObjects.find(anObject) != theConflictingObjects.end()) { // it is found
285       myConflictingObjects.erase(anObject);
286       aModifiedObjects.insert(anObject);
287     }
288   }
289   bool isUpdated = !aModifiedObjects.empty();
290   if (isUpdated)
291     redisplayObjects(aModifiedObjects);
292
293   return isUpdated;
294 }
295
296 void PartSet_OverconstraintListener::redisplayObjects(
297                                               const std::set<ObjectPtr>& theObjects)
298 {
299   static Events_Loop* aLoop = Events_Loop::loop();
300
301   static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_VISUAL_ATTRIBUTES);
302   static Events_ID EVENT_REDISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
303   static const ModelAPI_EventCreator* aECreator = ModelAPI_EventCreator::get();
304
305   std::set<ObjectPtr>::const_iterator anIt = theObjects.begin(), aLast = theObjects.end();
306   for (; anIt != aLast; anIt++) {
307     ObjectPtr aObj = *anIt;
308     aECreator->sendUpdated(aObj, EVENT_DISP);
309     aECreator->sendUpdated(aObj, EVENT_REDISP);
310   }
311   aLoop->flush(EVENT_DISP);
312   aLoop->flush(EVENT_REDISP);
313 }
314
315 PartSet_Module* PartSet_OverconstraintListener::module() const
316 {
317   return dynamic_cast<PartSet_Module*>(myWorkshop->module());
318 }
319
320 #ifdef _DEBUG
321 QString PartSet_OverconstraintListener::getObjectsInfo(const std::set<ObjectPtr>& theObjects)
322 {
323   std::set<ObjectPtr>::const_iterator anIt = theObjects.begin(),
324                                       aLast = theObjects.end();
325   QStringList anInfo;
326   for (; anIt != aLast; ++anIt)
327     anInfo.append(ModuleBase_Tools::objectInfo((*anIt)));
328
329   return anInfo.join(";\n");
330 }
331 #endif