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