]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
List of references attribute and usage of it in the sketch
authormpv <mikhail.ponikarov@opencascade.com>
Mon, 12 May 2014 12:23:00 +0000 (16:23 +0400)
committermpv <mikhail.ponikarov@opencascade.com>
Mon, 12 May 2014 12:23:00 +0000 (16:23 +0400)
14 files changed:
src/Model/CMakeLists.txt
src/Model/Model_AttributeRefList.cpp [new file with mode: 0644]
src/Model/Model_AttributeRefList.h [new file with mode: 0644]
src/Model/Model_Data.cpp
src/Model/Model_Data.h
src/Model/Model_Document.cpp
src/ModelAPI/CMakeLists.txt
src/ModelAPI/ModelAPI_AttributeRefList.h [new file with mode: 0644]
src/ModelAPI/ModelAPI_Data.h
src/ModelAPI/ModelAPI_Feature.h
src/ModelAPI/ModelAPI_PluginManager.cpp
src/SketchPlugin/SketchPlugin_Feature.h
src/SketchPlugin/SketchPlugin_Sketch.cpp
src/SketchPlugin/SketchPlugin_Sketch.h

index 872f089f629ae44573fddb738bb1d1ba0fce2e90..c5764b5459b0ecc2493f99842ae2f3fe52ac9a1c 100644 (file)
@@ -11,6 +11,7 @@ SET(PROJECT_HEADERS
     Model_AttributeDocRef.h
     Model_AttributeReference.h
     Model_AttributeRefAttr.h
+    Model_AttributeRefList.h
     Model_Events.h
 )
 
@@ -23,6 +24,7 @@ SET(PROJECT_SOURCES
     Model_AttributeDocRef.cpp
     Model_AttributeReference.cpp
     Model_AttributeRefAttr.cpp
+    Model_AttributeRefList.cpp
     Model_Events.cpp
 )
 
diff --git a/src/Model/Model_AttributeRefList.cpp b/src/Model/Model_AttributeRefList.cpp
new file mode 100644 (file)
index 0000000..0366e0a
--- /dev/null
@@ -0,0 +1,59 @@
+// File:        ModelAPI_AttributeRefList.cxx
+// Created:     8 May 2014
+// Author:      Mikhail PONIKAROV
+
+#include "Model_AttributeRefList.h"
+#include "Model_Application.h"
+#include "Model_Events.h"
+#include "Model_Data.h"
+#include <ModelAPI_Feature.h>
+#include <Events_Loop.h>
+#include <TDF_ListIteratorOfLabelList.hxx>
+
+using namespace std;
+
+void Model_AttributeRefList::append(boost::shared_ptr<ModelAPI_Feature> theFeature)
+{
+  boost::shared_ptr<Model_Data> aData = 
+    boost::dynamic_pointer_cast<Model_Data>(theFeature->data());
+  myRef->Append(aData->label());
+
+  static Events_ID anEvent = Events_Loop::eventByName(EVENT_FEATURE_UPDATED);
+  Model_FeatureUpdatedMessage aMsg(feature(), anEvent);
+  Events_Loop::loop()->send(aMsg);
+}
+
+void Model_AttributeRefList::remove(boost::shared_ptr<ModelAPI_Feature> theFeature)
+{
+  boost::shared_ptr<Model_Data> aData = 
+    boost::dynamic_pointer_cast<Model_Data>(theFeature->data());
+  myRef->Remove(aData->label());
+
+}
+
+int Model_AttributeRefList::size()
+{
+  return myRef->Extent();
+}
+
+list<boost::shared_ptr<ModelAPI_Feature> > Model_AttributeRefList::list()
+{
+  std::list< boost::shared_ptr<ModelAPI_Feature> > aResult;
+  boost::shared_ptr<Model_Document> aDoc = 
+    boost::dynamic_pointer_cast<Model_Document>(feature()->document());
+  if (aDoc) {
+    const TDF_LabelList& aList = myRef->List();
+    for(TDF_ListIteratorOfLabelList aLIter(aList); aLIter.More(); aLIter.Next()) {
+      aResult.push_back(aDoc->feature(aLIter.Value()));
+    }
+  }
+  return aResult;
+}
+
+Model_AttributeRefList::Model_AttributeRefList(TDF_Label& theLabel)
+{
+  // check the attribute could be already presented in this doc (after load document)
+  if (!theLabel.FindAttribute(TDataStd_ReferenceList::GetID(), myRef)) {
+    myRef = TDataStd_ReferenceList::Set(theLabel);
+  }
+}
diff --git a/src/Model/Model_AttributeRefList.h b/src/Model/Model_AttributeRefList.h
new file mode 100644 (file)
index 0000000..bf6290c
--- /dev/null
@@ -0,0 +1,40 @@
+// File:        Model_AttributeRefList.h
+// Created:     8 May 2014
+// Author:      Mikhail PONIKAROV
+
+#ifndef Model_AttributeRefList_HeaderFile
+#define Model_AttributeRefList_HeaderFile
+
+#include "Model.h"
+#include "ModelAPI_AttributeRefList.h"
+#include <TDataStd_ReferenceList.hxx>
+
+/**\class Model_AttributeRefList
+ * \ingroup DataModel
+ * \brief Attribute that contains list of references to features (located in the same document).
+ */
+
+class Model_AttributeRefList : public ModelAPI_AttributeRefList
+{
+  Handle_TDataStd_ReferenceList myRef; ///< references to the features labels
+public:
+  /// Appends the feature to the end of a list
+  MODEL_EXPORT virtual void append(boost::shared_ptr<ModelAPI_Feature> theFeature);
+
+  /// Erases the first meet of the feature in the list
+  MODEL_EXPORT virtual void remove(boost::shared_ptr<ModelAPI_Feature> theFeature);
+
+  /// Returns number of features in the list
+  MODEL_EXPORT virtual int size();
+
+  /// Returns the list of features
+  MODEL_EXPORT virtual std::list<boost::shared_ptr<ModelAPI_Feature> > list();
+
+protected:
+  /// Objects are created for features automatically
+  MODEL_EXPORT Model_AttributeRefList(TDF_Label& theLabel);
+
+  friend class Model_Data;
+};
+
+#endif
index 0c8f77bdfb8ba6875b77d61102940e57affcdb79..487d0ca913e052650f6490c6554e6774650de3a1 100644 (file)
@@ -7,6 +7,7 @@
 #include <Model_AttributeDouble.h>
 #include <Model_AttributeReference.h>
 #include <Model_AttributeRefAttr.h>
+#include <Model_AttributeRefList.h>
 #include <GeomData_Point.h>
 #include <GeomData_Point2D.h>
 #include <GeomData_Dir.h>
@@ -48,6 +49,8 @@ void Model_Data::addAttribute(string theID, string theAttrType)
     anAttr = new Model_AttributeReference(anAttrLab);
   else if (theAttrType == ModelAPI_AttributeRefAttr::type())
     anAttr = new Model_AttributeRefAttr(anAttrLab);
+  else if (theAttrType == ModelAPI_AttributeRefList::type())
+    anAttr = new Model_AttributeRefList(anAttrLab);
   else if (theAttrType == GeomData_Point::type())
     anAttr = new GeomData_Point(anAttrLab);
   else if (theAttrType == GeomData_Dir::type())
@@ -123,6 +126,21 @@ boost::shared_ptr<ModelAPI_AttributeRefAttr> Model_Data::refattr(const string th
   return aRes;
 }
 
+boost::shared_ptr<ModelAPI_AttributeRefList> Model_Data::reflist(const string theID)
+{
+  map<string, boost::shared_ptr<ModelAPI_Attribute> >::iterator aFound = myAttrs.find(theID);
+  if (aFound == myAttrs.end()) {
+    // TODO: generate error on unknown attribute request and/or add mechanism for customization
+    return boost::shared_ptr<ModelAPI_AttributeRefList>();
+  }
+  boost::shared_ptr<ModelAPI_AttributeRefList> aRes = 
+    boost::dynamic_pointer_cast<ModelAPI_AttributeRefList>(aFound->second);
+  if (!aRes) {
+    // TODO: generate error on invalid attribute type request
+  }
+  return aRes;
+}
+
 boost::shared_ptr<ModelAPI_Attribute> Model_Data::attribute(const std::string theID)
 {
   boost::shared_ptr<ModelAPI_Attribute> aResult;
index 56d81e1235cda5054d40a5b776dbc05c47dfd04d..1484f68c8db0ac5b7b05c1113ee466b805828002 100644 (file)
@@ -37,6 +37,7 @@ class Model_Data: public ModelAPI_Data
   friend class Model_Document;
   friend class Model_AttributeReference;
   friend class Model_AttributeRefAttr;
+  friend class Model_AttributeRefList;
 
 public:
   /// Returns the name of the feature visible by the user in the object browser
@@ -53,6 +54,9 @@ public:
   /// Returns the attribute that contains reference to an attribute of a feature
   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_AttributeRefAttr>
     refattr(const std::string theID);
+  /// Returns the attribute that contains list of references to features
+  MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_AttributeRefList> 
+    reflist(const std::string theID);
   /// Returns the generic attribute by identifier
   /// \param theID identifier of the attribute
   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Attribute> attribute(const std::string theID);
index 0255a4f93bcd62fa53c20c42821e60d286bbb9c2..8c305effa4f45ff18eee37728e9f1cf8a144e732 100644 (file)
@@ -239,18 +239,20 @@ void Model_Document::addFeature(const boost::shared_ptr<ModelAPI_Feature> theFea
   TDataStd_Integer::Set(anObjLab, myFeatures[aGroup].size());
   myFeatures[aGroup].push_back(theFeature);
   // store feature in the history of features array
-  Handle(TDataStd_ReferenceArray) aRefs;
-  if (!groupLabel(FEATURES_GROUP).FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
-    aRefs = TDataStd_ReferenceArray::Set(groupLabel(FEATURES_GROUP), 0, 0);
-    aRefs->SetValue(0, anObjLab);
-  } else { // extend array by one more element
-    Handle(TDataStd_HLabelArray1) aNewArray = 
-      new TDataStd_HLabelArray1(aRefs->Lower(), aRefs->Upper() + 1);
-    for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
-      aNewArray->SetValue(a, aRefs->Value(a));
+  if (theFeature->isInHistory()) {
+    Handle(TDataStd_ReferenceArray) aRefs;
+    if (!groupLabel(FEATURES_GROUP).FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
+      aRefs = TDataStd_ReferenceArray::Set(groupLabel(FEATURES_GROUP), 0, 0);
+      aRefs->SetValue(0, anObjLab);
+    } else { // extend array by one more element
+      Handle(TDataStd_HLabelArray1) aNewArray = 
+        new TDataStd_HLabelArray1(aRefs->Lower(), aRefs->Upper() + 1);
+      for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
+        aNewArray->SetValue(a, aRefs->Value(a));
+      }
+      aNewArray->SetValue(aRefs->Upper() + 1, anObjLab);
+      aRefs->SetInternalArray(aNewArray);
     }
-    aNewArray->SetValue(aRefs->Upper() + 1, anObjLab);
-    aRefs->SetInternalArray(aNewArray);
   }
 
   // event: feature is added
index 9c6015acd55206770a3e65a92b9face8dece5e4c..c8a1e56ff867987b50dafaa7ab84ab374bdd51ae 100644 (file)
@@ -14,6 +14,7 @@ SET(PROJECT_HEADERS
     ModelAPI_AttributeDocRef.h
     ModelAPI_AttributeReference.h
     ModelAPI_AttributeRefAttr.h
+    ModelAPI_AttributeRefList.h
 )
 
 SET(PROJECT_SOURCES
diff --git a/src/ModelAPI/ModelAPI_AttributeRefList.h b/src/ModelAPI/ModelAPI_AttributeRefList.h
new file mode 100644 (file)
index 0000000..973fbc4
--- /dev/null
@@ -0,0 +1,43 @@
+// File:        ModelAPI_AttributeRefList.h
+// Created:     8 May 2014
+// Author:      Mikhail PONIKAROV
+
+#ifndef ModelAPI_AttributeRefList_HeaderFile
+#define ModelAPI_AttributeRefList_HeaderFile
+
+#include "ModelAPI_Attribute.h"
+#include <list>
+
+/**\class ModelAPI_AttributeRefList
+ * \ingroup DataModel
+ * \brief Attribute that contains list of references to features (located in the same document).
+ */
+
+class ModelAPI_AttributeRefList : public ModelAPI_Attribute
+{
+public:
+  /// Returns the type of this class of attributes
+  MODELAPI_EXPORT static std::string type() {return "RefList";}
+
+  /// Returns the type of this class of attributes, not static method
+  MODELAPI_EXPORT virtual std::string attributeType() {return type();}
+
+  /// Appends the feature to the end of a list
+  MODELAPI_EXPORT virtual void append(boost::shared_ptr<ModelAPI_Feature> theFeature) = 0;
+
+  /// Erases the first meet of the feature in the list
+  MODELAPI_EXPORT virtual void remove(boost::shared_ptr<ModelAPI_Feature> theFeature) = 0;
+
+  /// Returns number of features in the list
+  MODELAPI_EXPORT virtual int size() = 0;
+
+  /// Returns the list of features
+  MODELAPI_EXPORT virtual std::list<boost::shared_ptr<ModelAPI_Feature> > list() = 0;
+
+protected:
+  /// Objects are created for features automatically
+  MODELAPI_EXPORT ModelAPI_AttributeRefList()
+  {}
+};
+
+#endif
index 86fc564096fcb24ff5d541c613304fb7fd1e932e..3b46bc4a068638a7ab53410e8b5d990572acb98c 100644 (file)
@@ -13,6 +13,7 @@ class ModelAPI_AttributeDocRef;
 class ModelAPI_AttributeDouble;
 class ModelAPI_AttributeReference;
 class ModelAPI_AttributeRefAttr;
+class ModelAPI_AttributeRefList;
 class ModelAPI_Document;
 class ModelAPI_Attribute;
 
@@ -40,6 +41,8 @@ public:
   virtual boost::shared_ptr<ModelAPI_AttributeReference> reference(const std::string theID) = 0;
   /// Returns the attribute that contains reference to an attribute of a feature
   virtual boost::shared_ptr<ModelAPI_AttributeRefAttr> refattr(const std::string theID) = 0;
+  /// Returns the attribute that contains list of references to features
+  virtual boost::shared_ptr<ModelAPI_AttributeRefList> reflist(const std::string theID) = 0;
 
   /// Returns the generic attribute by identifier
   /// \param theID identifier of the attribute
index 6c458bab42218957046fac00a45df1818fb6e192..b55e7984621a922f9c7ae197a88bb67c71019648 100644 (file)
@@ -37,6 +37,9 @@ public:
   /// Computes or recomputes the result
   MODELAPI_EXPORT virtual void execute() = 0;
 
+  /// Returns true if this feature must be displayed in the history (top level of Part tree)
+  MODELAPI_EXPORT virtual bool isInHistory() {return true;}
+
   /// Returns the data manager of this feature
   MODELAPI_EXPORT virtual boost::shared_ptr<ModelAPI_Data> data() {return myData;}
 
index 554c1c2281d2f2e08a7efd7db94f432130175b6a..63bca2d8a14728ee2c9cfcd8963c5da89909b5aa 100644 (file)
@@ -16,6 +16,7 @@
 #include <ModelAPI_AttributeDouble.h>
 #include <ModelAPI_AttributeReference.h>
 #include <ModelAPI_AttributeRefAttr.h>
+#include <ModelAPI_AttributeRefList.h>
 
 #ifdef WIN32
 #include <windows.h>
index 0419550a84cc36da75907cec9368ed5651f46130..d02728011b148aa4589d52b6a26f09ad1e3dc390 100644 (file)
@@ -29,6 +29,9 @@ public:
   SKETCHPLUGIN_EXPORT virtual const void addSub(
     const boost::shared_ptr<ModelAPI_Feature>& theFeature) = 0;
 
+  /// Returns true if this feature must be displayed in the history (top level of Part tree)
+  SKETCHPLUGIN_EXPORT virtual bool isInHistory() {return false;}
+
 protected:
   /// Set the shape to the internal preview field
   /// \param theShape a preview shape
index 35d90ab5d8682df9c526f89fc87cffe71e35ad20..6691c6f85e5230299161e16484d53b0e3647cbcc 100644 (file)
@@ -4,6 +4,7 @@
 
 #include "SketchPlugin_Sketch.h"
 #include <ModelAPI_Data.h>
+#include <ModelAPI_AttributeRefList.h>
 #include <GeomAPI_XYZ.h>
 #include <GeomDataAPI_Dir.h>
 #include <GeomDataAPI_Point.h>
@@ -28,6 +29,7 @@ void SketchPlugin_Sketch::initAttributes()
   data()->addAttribute(SKETCH_ATTR_DIRX, GeomDataAPI_Dir::type());
   data()->addAttribute(SKETCH_ATTR_DIRY, GeomDataAPI_Dir::type());
   data()->addAttribute(SKETCH_ATTR_NORM, GeomDataAPI_Dir::type());
+  data()->addAttribute(SKETCH_ATTR_FEATURES, ModelAPI_AttributeRefList::type());
 }
 
 void SketchPlugin_Sketch::execute() 
@@ -50,6 +52,7 @@ const boost::shared_ptr<GeomAPI_Shape>& SketchPlugin_Sketch::preview()
 const void SketchPlugin_Sketch::addSub(const boost::shared_ptr<ModelAPI_Feature>& theFeature)
 {
   boost::dynamic_pointer_cast<SketchPlugin_Feature>(theFeature)->setSketch(this);
+  data()->reflist(SKETCH_ATTR_FEATURES)->append(theFeature);
 }
 
 void SketchPlugin_Sketch::addPlane(double theX, double theY, double theZ,
index 0fc24fb11ed0bea2f9b5f91501a7da4194ad3c0a..371943ec599254f9b1d520c90cf87404ffa41704 100644 (file)
@@ -18,6 +18,8 @@ const std::string SKETCH_ATTR_DIRX("DirX");
 const std::string SKETCH_ATTR_DIRY("DirY");
 /// Vector Z, normal to the sketch plane
 const std::string SKETCH_ATTR_NORM("Norm");
+/// All features of this sketch (list of references)
+const std::string SKETCH_ATTR_FEATURES("Features");
 
 /**\class SketchPlugin_Sketch
  * \ingroup DataModel
@@ -52,6 +54,9 @@ public:
   SKETCHPLUGIN_EXPORT boost::shared_ptr<GeomAPI_Pnt> to3D(
     const double theX, const double theY);
 
+  /// Returns true if this feature must be displayed in the history (top level of Part tree)
+  SKETCHPLUGIN_EXPORT virtual bool isInHistory() {return true;}
+
   /// Use plugin manager for features creation
   SketchPlugin_Sketch();
 protected: