Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / SketchSolver / SketchSolver_Manager.h
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 email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
18 //
19
20 #ifndef SketchSolver_Manager_H_
21 #define SketchSolver_Manager_H_
22
23 #include <SketchSolver_Group.h>
24
25 #include <Events_Listener.h>
26 #include <SketchPlugin_Constraint.h>
27
28 #include <list>
29 #include <set>
30
31 /** \class   SketchSolver_Manager
32  *  \ingroup Plugins
33  *  \brief   Listens the changes of SketchPlugin features and transforms the Constraint
34  *           feature into the format understandable by sketch solver.
35  *
36  *  \remark This is a singleton.
37  */
38 class SketchSolver_Manager : public Events_Listener
39 {
40 public:
41   /** \brief Main method to create constraint manager
42    *  \return pointer to the singleton
43    */
44   static SketchSolver_Manager* instance();
45
46   /** \brief Implementation of Event Listener method
47    *  \param[in] theMessage the data of the event
48    */
49   virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
50
51   /**
52    * The solver needs all the updated objects are transfered in one group, not one by one.
53    * This iscreases performance and avoids problems in resolve of only part of the made updates.
54    */
55   virtual bool groupMessages();
56
57 protected:
58   SketchSolver_Manager();
59   ~SketchSolver_Manager();
60
61   /** \brief Adds or updates a constraint or an entity in the suitable group
62    *  \param[in] theFeature sketch feature to be changed
63    *  \param[in] theMoved   \c true if the feature has been moved in the viewer
64    *  \return \c true if the feature changed successfully
65    */
66   bool updateFeature(std::shared_ptr<SketchPlugin_Feature> theFeature, bool theMoved = false);
67
68   /** \brief Removes a constraint from the manager
69    *  \param[in] theConstraint constraint to be removed
70    *  \return \c true if the constraint removed successfully
71    */
72   bool removeConstraint(std::shared_ptr<SketchPlugin_Constraint> theConstraint);
73
74   /** \brief Goes through the list of groups and solve the constraints
75    *  \return \c true, if groups are resolved, and features should be updated 
76    *  (send the Update event)
77    */
78   bool resolveConstraints();
79
80 private:
81   /** \brief Searches group which interact with specified feature
82    *  \param[in]  theFeature  object to be found
83    *  \return Pointer to corresponding group or NULL if the group cannot be created.
84    */
85   SketchGroupPtr findGroup(std::shared_ptr<SketchPlugin_Feature> theFeature);
86
87   /// \brief Stop sending the Update event until all features updated
88   /// \return \c true, if the last flushed event is Update
89   bool stopSendUpdate() const;
90   /// \brief Allow to send the Update event
91   void allowSendUpdate() const;
92
93   /// \brief Allow send events about changing features in groups
94   void releaseFeaturesIfEventsBlocked() const;
95
96 private:
97   std::list<SketchGroupPtr> myGroups; ///< Groups of constraints
98   /// true if computation is performed and all "updates" are generated by this algo
99   /// and needs no recomputation
100   bool myIsComputed;
101 };
102
103 #endif