]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Implementation of features cashing and undo/redo functionality in document.
authormpv <mikhail.ponikarov@opencascade.com>
Thu, 10 Apr 2014 09:21:32 +0000 (13:21 +0400)
committermpv <mikhail.ponikarov@opencascade.com>
Thu, 10 Apr 2014 09:21:32 +0000 (13:21 +0400)
src/Model/Model_Application.cxx
src/Model/Model_Application.h
src/Model/Model_Document.cxx
src/Model/Model_Document.h
src/Model/Model_Iterator.cxx
src/Model/Model_Iterator.h
src/Model/Model_Object.h
src/ModelAPI/ModelAPI_Feature.h

index aab352e75c7ecd02a8052759619e1afd879e7462..260db7d444ae0841f47903849630f20e3eb95b01 100644 (file)
@@ -8,6 +8,8 @@
 IMPLEMENT_STANDARD_HANDLE(Model_Application, TDocStd_Application)
 IMPLEMENT_STANDARD_RTTIEXT(Model_Application, TDocStd_Application)
 
+using namespace std;
+
 static Handle_Model_Application TheApplication = new Model_Application;
 
 //=======================================================================
@@ -23,7 +25,7 @@ Handle(Model_Application) Model_Application::getApplication()
 //function : getDocument
 //purpose  : 
 //=======================================================================
-std::shared_ptr<Model_Document> Model_Application::getDocument(std::string theDocID)
+std::shared_ptr<Model_Document> Model_Application::getDocument(string theDocID)
 {
   if (myDocs.find(theDocID) != myDocs.end())
     return myDocs[theDocID];
@@ -33,6 +35,11 @@ std::shared_ptr<Model_Document> Model_Application::getDocument(std::string theDo
   return aNew;
 }
 
+void Model_Application::deleteDocument(string theDocID)
+{
+  myDocs.erase(theDocID);
+}
+
 //=======================================================================
 //function : OCAFApp_Application
 //purpose  : 
index 75aa172afbaae4798eac9f331427a73551aa4362..998aba08b0792db08a6c1112a9ef3de1cf6c01f5 100644 (file)
@@ -31,6 +31,8 @@ public:
   MODEL_EXPORT static Handle_Model_Application getApplication();
   //! Returns the main document (on first call creates it) by the string identifier
   MODEL_EXPORT std::shared_ptr<Model_Document> getDocument(std::string theDocID);
+  //! Deletes the document from the application
+  MODEL_EXPORT void deleteDocument(std::string theDocID);
 
 public:
   // Redefined OCAF methods
index b7f195242b01c28297f02a454a682fc245861acf..9eebe15d103f5f84e9dab52c49ae2b72ba55cd18 100644 (file)
@@ -12,6 +12,7 @@
 
 #include <TDataStd_Integer.hxx>
 #include <TDataStd_Comment.hxx>
+#include <TDF_ChildIDIterator.hxx>
 
 static const int UNDO_LIMIT = 10; // number of possible undo operations
 
@@ -102,55 +103,104 @@ bool Model_Document::save(const char* theFileName)
 
 void Model_Document::close()
 {
+  // close all subs
+  set<string>::iterator aSubIter = mySubs.begin();
+  for(; aSubIter != mySubs.end(); aSubIter++)
+    subDocument(*aSubIter)->close();
+  mySubs.clear();
+  // close this
   myDoc->Close();
+  Model_Application::getApplication()->deleteDocument(myID);
 }
 
 void Model_Document::startOperation()
 {
+  // new command for this
   myDoc->NewCommand();
+  // new command for all subs
+  set<string>::iterator aSubIter = mySubs.begin();
+  for(; aSubIter != mySubs.end(); aSubIter++)
+    subDocument(*aSubIter)->startOperation();
 }
 
 void Model_Document::finishOperation()
 {
-  myDoc->CommitCommand();
+  // returns false if delta is empty and no transaction was made
+  myIsEmptyTr[myTransactionsAfterSave] = !myDoc->CommitCommand();
   myTransactionsAfterSave++;
+  // finish for all subs
+  set<string>::iterator aSubIter = mySubs.begin();
+  for(; aSubIter != mySubs.end(); aSubIter++)
+    subDocument(*aSubIter)->finishOperation();
 }
 
 void Model_Document::abortOperation()
 {
   myDoc->AbortCommand();
+  // abort for all subs
+  set<string>::iterator aSubIter = mySubs.begin();
+  for(; aSubIter != mySubs.end(); aSubIter++)
+    subDocument(*aSubIter)->abortOperation();
 }
 
 bool Model_Document::isOperation()
 {
+  // operation is opened for all documents: no need to check subs
   return myDoc->HasOpenCommand() == Standard_True ;
 }
 
 bool Model_Document::isModified()
 {
-  return myTransactionsAfterSave != 0;
+  // is modified if at least one operation was commited and not undoed
+  return myTransactionsAfterSave > 0;
 }
 
 bool Model_Document::canUndo()
 {
-  return myDoc->GetAvailableUndos() > 0;
+  if (myDoc->GetAvailableUndos() > 0)
+    return true;
+  // check other subs contains operation that can be undoed
+  set<string>::iterator aSubIter = mySubs.begin();
+  for(; aSubIter != mySubs.end(); aSubIter++)
+    if (subDocument(*aSubIter)->canUndo())
+      return true;
+  return false;
 }
 
 void Model_Document::undo()
 {
-  myDoc->Undo();
   myTransactionsAfterSave--;
+  if (!myIsEmptyTr[myTransactionsAfterSave])
+    myDoc->Undo();
+  synchronizeFeatures();
+  // undo for all subs
+  set<string>::iterator aSubIter = mySubs.begin();
+  for(; aSubIter != mySubs.end(); aSubIter++)
+    subDocument(*aSubIter)->undo();
 }
 
 bool Model_Document::canRedo()
 {
-  return myDoc->GetAvailableRedos() > 0;
+  if (myDoc->GetAvailableRedos() > 0)
+    return true;
+  // check other subs contains operation that can be redoed
+  set<string>::iterator aSubIter = mySubs.begin();
+  for(; aSubIter != mySubs.end(); aSubIter++)
+    if (subDocument(*aSubIter)->canRedo())
+      return true;
+  return false;
 }
 
 void Model_Document::redo()
 {
-  myDoc->Redo();
+  if (!myIsEmptyTr[myTransactionsAfterSave])
+    myDoc->Redo();
   myTransactionsAfterSave++;
+  synchronizeFeatures();
+  // redo for all subs
+  set<string>::iterator aSubIter = mySubs.begin();
+  for(; aSubIter != mySubs.end(); aSubIter++)
+    subDocument(*aSubIter)->redo();
 }
 
 shared_ptr<ModelAPI_Feature> Model_Document::addFeature(string theID)
@@ -166,7 +216,8 @@ shared_ptr<ModelAPI_Feature> Model_Document::addFeature(string theID)
 
 void Model_Document::addFeature(const std::shared_ptr<ModelAPI_Feature> theFeature)
 {
-  TDF_Label aGroupLab = groupLabel(theFeature->getGroup());
+  const std::string& aGroup = theFeature->getGroup();
+  TDF_Label aGroupLab = groupLabel(aGroup);
   TDF_Label anObjLab = aGroupLab.NewChild();
   std::shared_ptr<Model_Object> aData(new Model_Object);
   aData->setLabel(anObjLab);
@@ -176,6 +227,9 @@ void Model_Document::addFeature(const std::shared_ptr<ModelAPI_Feature> theFeatu
   theFeature->initAttributes();
   // keep the feature ID to restore document later correctly
   TDataStd_Comment::Set(anObjLab, theFeature->getKind().c_str());
+  // put index of the feature in the group in the tree
+  TDataStd_Integer::Set(anObjLab, myFeatures[aGroup].size());
+  myFeatures[aGroup].push_back(theFeature);
 
   // event: model is updated
   static Event_ID anEvent = Event_Loop::eventByName(EVENT_FEATURE_UPDATED);
@@ -185,40 +239,45 @@ void Model_Document::addFeature(const std::shared_ptr<ModelAPI_Feature> theFeatu
 
 shared_ptr<ModelAPI_Feature> Model_Document::feature(TDF_Label& theLabel)
 {
-  Handle(TDataStd_Comment) aFeatureID;
-  if (theLabel.FindAttribute(TDataStd_Comment::GetID(), aFeatureID)) {
-    string anID(TCollection_AsciiString(aFeatureID->Get()).ToCString());
-    std::shared_ptr<ModelAPI_Feature> aResult = 
-      Model_PluginManager::get()->createFeature(anID);
-    std::shared_ptr<Model_Object> aData(new Model_Object);
-    aData->setLabel(theLabel);
-    aData->setDocument(Model_Application::getApplication()->getDocument(myID));
-    aResult->setData(aData);
-    aResult->initAttributes();
-    return aResult;
+  Handle(TDataStd_Integer) aFeatureIndex;
+  if (theLabel.FindAttribute(TDataStd_Integer::GetID(), aFeatureIndex)) {
+    Handle(TDataStd_Comment) aGroupID;
+    if (theLabel.Father().FindAttribute(TDataStd_Comment::GetID(), aGroupID)) {
+      string aGroup = TCollection_AsciiString(aGroupID->Get()).ToCString();
+      return myFeatures[aGroup][aFeatureIndex->Get()];
+    }
   }
   return std::shared_ptr<ModelAPI_Feature>(); // not found
 }
 
 int Model_Document::featureIndex(shared_ptr<ModelAPI_Feature> theFeature)
 {
-  if (theFeature->data()->document().get() != this)
+  if (theFeature->data()->document().get() != this) {
     return theFeature->data()->document()->featureIndex(theFeature);
-  shared_ptr<ModelAPI_Iterator> anIter(featuresIterator(theFeature->getGroup()));
-  for(int anIndex = 0; anIter->more(); anIter->next(), anIndex++)
-    if (anIter->is(theFeature)) 
-      return anIndex;
+  }
+  shared_ptr<Model_Object> aData = dynamic_pointer_cast<Model_Object>(theFeature->data());
+  Handle(TDataStd_Integer) aFeatureIndex;
+  if (aData->label().FindAttribute(TDataStd_Integer::GetID(), aFeatureIndex)) {
+    return aFeatureIndex->Get();
+  }
   return -1; // not found
 }
 
 shared_ptr<ModelAPI_Document> Model_Document::subDocument(string theDocID)
 {
+  // just store sub-document identifier here to manage it later
+  if (mySubs.find(theDocID) == mySubs.end())
+    mySubs.insert(theDocID);
   return Model_Application::getApplication()->getDocument(theDocID);
 }
 
 shared_ptr<ModelAPI_Iterator> Model_Document::featuresIterator(const string theGroup)
 {
   shared_ptr<Model_Document> aThis(Model_Application::getApplication()->getDocument(myID));
+  // create an empty iterator for not existing group 
+  // (to avoidance of attributes management outside the transaction)
+  if (myGroups.find(theGroup) == myGroups.end())
+    return shared_ptr<ModelAPI_Iterator>(new Model_Iterator());
   return shared_ptr<ModelAPI_Iterator>(new Model_Iterator(aThis, groupLabel(theGroup)));
 }
 
@@ -240,6 +299,11 @@ Model_Document::Model_Document(const std::string theID)
 {
   myDoc->SetUndoLimit(UNDO_LIMIT);
   myTransactionsAfterSave = 0;
+  // to avoid creation of tag outside of the transaction (by iterator, for example)
+  /*
+  if (!myDoc->Main().FindChild(TAG_OBJECTS).IsAttribute(TDF_TagSource::GetID()))
+    TDataStd_Comment::Set(myDoc->Main().FindChild(TAG_OBJECTS).NewChild(), "");
+    */
 }
 
 TDF_Label Model_Document::groupLabel(const string theGroup)
@@ -247,6 +311,9 @@ TDF_Label Model_Document::groupLabel(const string theGroup)
   if (myGroups.find(theGroup) == myGroups.end()) {
     myGroups[theGroup] = myDoc->Main().FindChild(TAG_OBJECTS).NewChild();
     myGroupsNames.push_back(theGroup);
+    // set to the group label the group idntifier to restore on "open"
+    TDataStd_Comment::Set(myGroups[theGroup], theGroup.c_str());
+    myFeatures[theGroup] = vector<shared_ptr<ModelAPI_Feature> >();
   }
   return myGroups[theGroup];
 }
@@ -279,6 +346,91 @@ void Model_Document::setUniqueName(
   theFeature->data()->setName(aName);
 }
 
+void Model_Document::synchronizeFeatures()
+{
+  // iterate groups labels
+  TDF_ChildIDIterator aGroupsIter(myDoc->Main().FindChild(TAG_OBJECTS),
+    TDataStd_Comment::GetID(), Standard_False);
+  vector<string>::iterator aGroupNamesIter = myGroupsNames.begin();
+  for(; aGroupsIter.More() && aGroupNamesIter != myGroupsNames.end();
+        aGroupsIter.Next(), aGroupNamesIter++) {
+    string aGroupName = TCollection_AsciiString(Handle(TDataStd_Comment)::DownCast(
+      aGroupsIter.Value())->Get()).ToCString();
+    if (*aGroupNamesIter != aGroupName) 
+      break; // all since there is a change this must be recreated from scratch
+  }
+  // delete all groups left after the data model groups iteration
+  while(aGroupNamesIter != myGroupsNames.end()) {
+    myFeatures.erase(*aGroupNamesIter);
+    myGroups.erase(*aGroupNamesIter);
+    aGroupNamesIter = myGroupsNames.erase(aGroupNamesIter);
+  }
+  // create new groups basing on the following data model update
+  for(; aGroupsIter.More(); aGroupsIter.Next()) {
+    string aGroupName = TCollection_AsciiString(Handle(TDataStd_Comment)::DownCast(
+      aGroupsIter.Value())->Get()).ToCString();
+    myGroupsNames.push_back(aGroupName);
+    myGroups[aGroupName] = aGroupsIter.Value()->Label();
+    myFeatures[aGroupName] = vector<shared_ptr<ModelAPI_Feature> >();
+  }
+  // update features group by group
+  aGroupsIter.Initialize(myDoc->Main().FindChild(TAG_OBJECTS),
+    TDataStd_Comment::GetID(), Standard_False);
+  for(; aGroupsIter.More(); aGroupsIter.Next()) {
+    string aGroupName = TCollection_AsciiString(Handle(TDataStd_Comment)::DownCast(
+      aGroupsIter.Value())->Get()).ToCString();
+    // iterate features in internal container
+    vector<shared_ptr<ModelAPI_Feature> >& aFeatures = myFeatures[aGroupName];
+    vector<shared_ptr<ModelAPI_Feature> >::iterator aFIter = aFeatures.begin();
+    // and in parallel iterate labels of features
+    TDF_ChildIDIterator aFLabIter(
+      aGroupsIter.Value()->Label(), TDataStd_Comment::GetID(), Standard_False);
+    while(aFIter != aFeatures.end() || aFLabIter.More()) {
+      static const int INFINITE_TAG = MAXINT; // no label means that it exists somwhere in infinite
+      int aFeatureTag = INFINITE_TAG; 
+      if (aFIter != aFeatures.end()) { // existing tag for feature
+        shared_ptr<Model_Object> aData = dynamic_pointer_cast<Model_Object>((*aFIter)->data());
+        aFeatureTag = aData->label().Tag();
+      }
+      int aDSTag = INFINITE_TAG; 
+      if (aFLabIter.More()) { // next label in DS is existing
+        aDSTag = aFLabIter.Value()->Label().Tag();
+      }
+      if (aDSTag > aFeatureTag) { // feature is removed
+        aFIter = aFeatures.erase(aFIter);
+      } else if (aDSTag < aFeatureTag) { // a new feature is inserted
+        // create a feature
+        shared_ptr<ModelAPI_Feature> aFeature = ModelAPI_PluginManager::get()->createFeature(
+          TCollection_AsciiString(Handle(TDataStd_Comment)::DownCast(
+          aFLabIter.Value())->Get()).ToCString());
+
+        std::shared_ptr<Model_Object> aData(new Model_Object);
+        TDF_Label aLab = aFLabIter.Value()->Label();
+        aData->setLabel(aLab);
+        aData->setDocument(Model_Application::getApplication()->getDocument(myID));
+        aFeature->setData(aData);
+        aFeature->initAttributes();
+        // event: model is updated
+        static Event_ID anEvent = Event_Loop::eventByName(EVENT_FEATURE_UPDATED);
+        ModelAPI_FeatureUpdatedMessage aMsg(aFeature);
+        Event_Loop::loop()->send(aMsg);
+
+        if (aFIter == aFeatures.end()) {
+          aFeatures.push_back(aFeature);
+          aFIter = aFeatures.end();
+        } else {
+          aFIter++;
+          aFeatures.insert(aFIter, aFeature);
+        }
+        // feature for this label is added, so go to the next label
+        aFLabIter.Next();
+      } else { // nothing is changed, both iterators are incremented
+        aFIter++;
+        aFLabIter.Next();
+      }
+    }
+  }
+}
 
 ModelAPI_FeatureUpdatedMessage::ModelAPI_FeatureUpdatedMessage(
   shared_ptr<ModelAPI_Feature> theFeature)
index 6dd9e4396c0e8b57c06c307739fdecf28cea9682..ec5de4b9f4c5869227c061952bd35e99f23a8333 100644 (file)
@@ -11,6 +11,7 @@
 
 #include <TDocStd_Document.hxx>
 #include <map>
+#include <set>
 
 class Handle_Model_Document;
 
@@ -31,35 +32,36 @@ public:
   //! \param theFileName full name of the file to load
   //! \param theStudyID identifier of the SALOME study to associate with loaded file
   //! \returns true if file was loaded successfully
-  MODEL_EXPORT bool load(const char* theFileName);
+  MODEL_EXPORT virtual bool load(const char* theFileName);
 
   //! Saves the OCAF document to the file.
   //! \param theFileName full name of the file to store
   //! \returns true if file was stored successfully
-  MODEL_EXPORT bool save(const char* theFileName);
+  MODEL_EXPORT virtual bool save(const char* theFileName);
 
   //! Removes document data
-  MODEL_EXPORT void close();
+  MODEL_EXPORT virtual void close();
 
   //! Starts a new operation (opens a tansaction)
-  MODEL_EXPORT void startOperation();
+  MODEL_EXPORT virtual void startOperation();
   //! Finishes the previously started operation (closes the transaction)
-  MODEL_EXPORT void finishOperation();
+  //! Returns true if transaction in this document is not empty and really was performed
+  MODEL_EXPORT virtual void finishOperation();
   //! Aborts the operation 
-  MODEL_EXPORT void abortOperation();
+  MODEL_EXPORT virtual void abortOperation();
   //! Returns true if operation has been started, but not yet finished or aborted
-  MODEL_EXPORT bool isOperation();
+  MODEL_EXPORT virtual bool isOperation();
   //! Returns true if document was modified (since creation/opening)
-  MODEL_EXPORT bool isModified();
+  MODEL_EXPORT virtual bool isModified();
 
   //! Returns True if there are available Undos
-  MODEL_EXPORT bool canUndo();
+  MODEL_EXPORT virtual bool canUndo();
   //! Undoes last operation
-  MODEL_EXPORT void undo();
+  MODEL_EXPORT virtual void undo();
   //! Returns True if there are available Redos
-  MODEL_EXPORT bool canRedo();
+  MODEL_EXPORT virtual bool canRedo();
   //! Redoes last operation
-  MODEL_EXPORT void redo();
+  MODEL_EXPORT virtual void redo();
 
   //! Adds to the document the new feature of the given feature id
   //! \param creates feature and puts it in the document
@@ -101,6 +103,9 @@ protected:
   //! Adds to the document the new feature
   void addFeature(const std::shared_ptr<ModelAPI_Feature> theFeature);
 
+  //! Synchronizes myGroups, myGroupsNames, myFeatures and mySubs list with the updated document
+  void synchronizeFeatures();
+
   //! Creates new document with binary file format
   Model_Document(const std::string theID);
 
@@ -109,9 +114,16 @@ protected:
 private:
   std::string myID; ///< identifier of the document in the application
   Handle_TDocStd_Document myDoc; ///< OCAF document
-  int myTransactionsAfterSave; ///< number of transactions after the last "save" call, used for "IsModified" method
-  std::map<std::string, TDF_Label> myGroups; ///< root labels of the features groups identified by names
+  /// number of transactions after the last "save" call, used for "IsModified" method
+  int myTransactionsAfterSave;
+  /// root labels of the features groups identified by names
+  std::map<std::string, TDF_Label> myGroups;
   std::vector<std::string> myGroupsNames; ///< names of added groups to the document
+  /// Features managed by this document: by group name
+  std::map<std::string, std::vector<std::shared_ptr<ModelAPI_Feature> > > myFeatures;
+  std::set<std::string> mySubs; ///< set of identifiers of sub-documents of this document
+  /// transaction indexes (related to myTransactionsAfterSave) which were empty in this doc
+  std::map<int, bool> myIsEmptyTr;
 };
 
 /// Event ID that model is updated
index 4e2cf09422e38ff824874185903bd65301719f17..42ed7309ffc8fa2d133f1ca636f26b220709bafa 100644 (file)
@@ -18,7 +18,7 @@ void Model_Iterator::next()
 
 bool Model_Iterator::more()
 {
-  return myIter.More();
+  return myIter.More() == Standard_True;
 }
 
 shared_ptr<ModelAPI_Feature> Model_Iterator::current()
@@ -53,11 +53,14 @@ int Model_Iterator::numIterationsLeft()
 
 bool Model_Iterator::is(std::shared_ptr<ModelAPI_Feature> theFeature)
 {
-  return myIter.Value()->Label() == 
-    dynamic_pointer_cast<Model_Object>(theFeature->data())->label();
+  return (myIter.Value()->Label() == 
+    dynamic_pointer_cast<Model_Object>(theFeature->data())->label()) == Standard_True;
 
 }
 
+Model_Iterator::Model_Iterator()
+{
+}
 
 Model_Iterator::Model_Iterator(std::shared_ptr<Model_Document> theDoc, TDF_Label theLab)
   : myDoc(theDoc), myIter(theLab, TDataStd_Comment::GetID(), Standard_False)
index 80fc76caf047c36afab07652e136acf56993ae24..b28423bcf5e23dc2fa14243b37da1504e57032fb 100644 (file)
@@ -18,30 +18,32 @@ class Model_Document;
  * (see method featuresIterator).
  */
 
-class MODEL_EXPORT Model_Iterator : public ModelAPI_Iterator
+class Model_Iterator : public ModelAPI_Iterator
 {
   std::shared_ptr<Model_Document> myDoc; ///< the document of iterated objects
   TDF_ChildIDIterator myIter; ///< iterator of the features-labels
 public:
   /// Iterates to the next feature
-  virtual void next();
+  MODEL_EXPORT virtual void next();
   /// Returns true if the current iteration is valid and next iteration is possible
-  virtual bool more();
+  MODEL_EXPORT virtual bool more();
   /// Returns the currently iterated feature
-  virtual std::shared_ptr<ModelAPI_Feature> current();
+  MODEL_EXPORT virtual std::shared_ptr<ModelAPI_Feature> current();
   /// Returns the kind of the current feature (faster than Current()->getKind())
-  virtual std::string currentKind();
+  MODEL_EXPORT virtual std::string currentKind();
   /// Returns the name of the current feature (faster than Current()->getName())
-  virtual std::string currentName();
+  MODEL_EXPORT virtual std::string currentName();
   /// Don't changes the current position of iterator. Not fast: iterates the left items.
   /// \returns number of left iterations
-  virtual int numIterationsLeft();
+  MODEL_EXPORT virtual int numIterationsLeft();
 
   /// Compares the current feature with the given one
   /// \returns true if given feature equals to the current one
-  virtual bool is(std::shared_ptr<ModelAPI_Feature> theFeature);
+  MODEL_EXPORT virtual bool is(std::shared_ptr<ModelAPI_Feature> theFeature);
 
 protected:
+  /// Creates an empty iterator that alway returns More false
+  Model_Iterator();
   /// Initializes iterator
   /// \param theDoc document where the iteration is performed
   /// \param theLab label of the features group to iterate
index 6b1f785f4a6da6fd62553fb362d4482bb4fa5afb..9a778c99d6ae7a58ce5b3e41cd7d0104ba3fbbdf 100644 (file)
@@ -19,7 +19,7 @@ class ModelAPI_Attribute;
  * to get/set attributes from the document and compute result of an operation.
  */
 
-class MODEL_EXPORT Model_Object: public ModelAPI_Object
+class Model_Object: public ModelAPI_Object
 {
   TDF_Label myLab; ///< label of the feature in the document
   /// All attributes of the object identified by the attribute ID
@@ -36,28 +36,28 @@ class MODEL_EXPORT Model_Object: public ModelAPI_Object
 
 public:
   /// Returns the name of the feature visible by the user in the object browser
-  virtual std::string getName();
+  MODEL_EXPORT virtual std::string getName();
   /// Defines the name of the feature visible by the user in the object browser
-  virtual void setName(std::string theName);
+  MODEL_EXPORT virtual void setName(std::string theName);
   /// Returns the attribute that references to another document
-  virtual std::shared_ptr<ModelAPI_AttributeDocRef> docRef(const std::string theID);
+  MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeDocRef> docRef(const std::string theID);
   /// Returns the attribute that contains real value with double precision
-  virtual std::shared_ptr<ModelAPI_AttributeDouble> real(const std::string theID);
+  MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeDouble> real(const std::string theID);
 
   /// Initializes object by the attributes: must be called just after the object is created
   /// for each attribute of the object
   /// \param theID identifier of the attribute that can be referenced by this ID later
   /// \param theAttrType type of the created attribute (received from the type method)
-  virtual void addAttribute(std::string theID, std::string theAttrType);
+  MODEL_EXPORT virtual void addAttribute(std::string theID, std::string theAttrType);
 
   /// Returns the document of this data
-  virtual std::shared_ptr<ModelAPI_Document> document() {return myDoc;}
+  MODEL_EXPORT virtual std::shared_ptr<ModelAPI_Document> document() {return myDoc;}
 
   /// Puts feature to the document data sub-structure
-  void setLabel(TDF_Label& theLab);
+  MODEL_EXPORT void setLabel(TDF_Label& theLab);
 
   /// Sets the document of this data
-  virtual void setDocument(const std::shared_ptr<ModelAPI_Document>& theDoc) {myDoc = theDoc;}
+  MODEL_EXPORT virtual void setDocument(const std::shared_ptr<ModelAPI_Document>& theDoc) {myDoc = theDoc;}
 };
 
 #endif
index fd19221b0b246c4223ec5f9eec5bac5eadb27d8c..1b166b600c1dfaa4116612b4904a832821435078 100644 (file)
@@ -19,29 +19,29 @@ class ModelAPI_Document;
  * \brief Functionality of the model object: to update result,
  * to initialize attributes, etc.
  */
-class MODELAPI_EXPORT ModelAPI_Feature
+class ModelAPI_Feature
 {
   std::shared_ptr<ModelAPI_Object> myData; ///< manager of the data model of a feature
 
 public:
   /// Returns the kind of a feature (like "Point")
-  virtual const std::string& getKind() = 0;
+  MODELAPI_EXPORT virtual const std::string& getKind() = 0;
 
   /// Returns to which group in the document must be added feature
-  virtual const std::string& getGroup() = 0;
+  MODELAPI_EXPORT virtual const std::string& getGroup() = 0;
 
   /// Request for initialization of data model of the feature: adding all attributes
-  virtual void initAttributes() = 0;
+  MODELAPI_EXPORT virtual void initAttributes() = 0;
 
   /// Computes or recomputes the result
-  virtual void execute() = 0;
+  MODELAPI_EXPORT virtual void execute() = 0;
 
   /// Returns the data manager of this feature
-  virtual std::shared_ptr<ModelAPI_Object> data() {return myData;}
+  MODELAPI_EXPORT virtual std::shared_ptr<ModelAPI_Object> data() {return myData;}
 
   /// Must return document where the new feature must be added to
   /// By default it is current document
-  virtual std::shared_ptr<ModelAPI_Document> documentToAdd()
+  MODELAPI_EXPORT virtual std::shared_ptr<ModelAPI_Document> documentToAdd()
   {return ModelAPI_PluginManager::get()->currentDocument();}
 
 protected:
@@ -51,7 +51,7 @@ protected:
   {}
 
   /// Sets the data manager of an object (document does)
-  void setData(std::shared_ptr<ModelAPI_Object> theData) {myData = theData;}
+  MODELAPI_EXPORT void setData(std::shared_ptr<ModelAPI_Object> theData) {myData = theData;}
   friend class Model_Document;
 };