X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Document.cpp;h=274fc6f1b02719f206957a6048cf024abb870d8a;hb=2af52b19b485181c61d1065fa45ec24b94cb1449;hp=d33caaae8109707c31480b20d5ef28a1aa43813f;hpb=8272f8013305da9dd2b1e4fadb5aa7327f63d8e3;p=modules%2Fshaper.git diff --git a/src/Model/Model_Document.cpp b/src/Model/Model_Document.cpp index d33caaae8..274fc6f1b 100644 --- a/src/Model/Model_Document.cpp +++ b/src/Model/Model_Document.cpp @@ -7,101 +7,151 @@ #include #include #include -#include #include #include +#include #include #include #include +#include +#include #include +#ifdef WIN32 +# define _separator_ '\\' +#else +# define _separator_ '/' +#endif + static const int UNDO_LIMIT = 10; // number of possible undo operations static const int TAG_GENERAL = 1; // general properties tag -static const int TAG_OBJECTS = 2; // tag of the objects sub-tree (Root for Model_DatasMgr) -static const int TAG_HISTORY = 3; // tag of the history sub-tree (Root for Model_History) +static const int TAG_OBJECTS = 2; // tag of the objects sub-tree (features) +static const int TAG_HISTORY = 3; // tag of the history sub-tree (python dump) using namespace std; +/// Returns the file name of this document by the nameof directory and identifuer of a document +static TCollection_ExtendedString DocFileName(const char* theFileName, const string& theID) +{ + TCollection_ExtendedString aPath ((const Standard_CString)theFileName); + aPath += _separator_; + aPath += theID.c_str(); + aPath += ".cbf"; // standard binary file extension + return aPath; +} + bool Model_Document::load(const char* theFileName) { - bool myIsError = Standard_False; - /* - TCollection_ExtendedString aPath ((const Standard_CString)theFileName); - PCDM_ReaderStatus aStatus = (PCDM_ReaderStatus) -1; - try - { - Handle(TDocStd_Document) aDoc = this; - aStatus = Model_Application::GetApplication()->Open(aPath, aDoc); - } - catch (Standard_Failure) - {} - myIsError = aStatus != PCDM_RS_OK; - if (myIsError) - { - switch (aStatus) - { - case PCDM_RS_UnknownDocument: cout<<"OCAFApp_Appl_RUnknownDocument"<rootDocument().get()) { + anApp->setLoadPath(theFileName); + } + TCollection_ExtendedString aPath (DocFileName(theFileName, myID)); + PCDM_ReaderStatus aStatus = (PCDM_ReaderStatus) -1; + try + { + aStatus = anApp->Open(aPath, myDoc); + } + catch (Standard_Failure) + { + Handle(Standard_Failure) aFail = Standard_Failure::Caught(); + Events_Error::send(string("Exception in opening of document: ") + aFail->GetMessageString()); + return false; + } + bool isError = aStatus != PCDM_RS_OK; + if (isError) + { + switch (aStatus) + { + case PCDM_RS_UnknownDocument: + Events_Error::send(string("Can not open document: PCDM_RS_UnknownDocument")); break; + case PCDM_RS_AlreadyRetrieved: + Events_Error::send(string("Can not open document: PCDM_RS_AlreadyRetrieved")); break; + case PCDM_RS_AlreadyRetrievedAndModified: + Events_Error::send(string("Can not open document: PCDM_RS_AlreadyRetrievedAndModified")); break; + case PCDM_RS_NoDriver: + Events_Error::send(string("Can not open document: PCDM_RS_NoDriver")); break; + case PCDM_RS_UnknownFileDriver: + Events_Error::send(string("Can not open document: PCDM_RS_UnknownFileDriver")); break; + case PCDM_RS_OpenError: + Events_Error::send(string("Can not open document: PCDM_RS_OpenError")); break; + case PCDM_RS_NoVersion: + Events_Error::send(string("Can not open document: PCDM_RS_NoVersion")); break; + case PCDM_RS_NoModel: + Events_Error::send(string("Can not open document: PCDM_RS_NoModel")); break; + case PCDM_RS_NoDocument: + Events_Error::send(string("Can not open document: PCDM_RS_NoDocument")); break; + case PCDM_RS_FormatFailure: + Events_Error::send(string("Can not open document: PCDM_RS_FormatFailure")); break; + case PCDM_RS_TypeNotFoundInSchema: + Events_Error::send(string("Can not open document: PCDM_RS_TypeNotFoundInSchema")); break; + case PCDM_RS_UnrecognizedFileFormat: + Events_Error::send(string("Can not open document: PCDM_RS_UnrecognizedFileFormat")); break; + case PCDM_RS_MakeFailure: + Events_Error::send(string("Can not open document: PCDM_RS_MakeFailure")); break; + case PCDM_RS_PermissionDenied: + Events_Error::send(string("Can not open document: PCDM_RS_PermissionDenied")); break; + case PCDM_RS_DriverFailure: + Events_Error::send(string("Can not open document: PCDM_RS_DriverFailure")); break; + default: + Events_Error::send(string("Can not open document: unknown error")); break; + } + } + if (!isError) { + myDoc->SetUndoLimit(UNDO_LIMIT); + synchronizeFeatures(); + } + return !isError; } bool Model_Document::save(const char* theFileName) { - bool myIsError = true; - /* - TCollection_ExtendedString aPath ((const Standard_CString)theFileName); - PCDM_StoreStatus aStatus; - try { - Handle(TDocStd_Document) aDoc = this; - aStatus = Model_Application::GetApplication()->SaveAs (aDoc, aPath); - } - catch (Standard_Failure) { - Handle(Standard_Failure) aFail = Standard_Failure::Caught(); - cout<<"OCAFApp_Engine:save Error: "<GetMessageString()<rootDocument().get()) { +#ifdef WIN32 + CreateDirectory(theFileName, NULL); +#else + mkdir(theFileName, 0x1ff); +#endif + } + // filename in the dir is id of document inside of the given directory + TCollection_ExtendedString aPath(DocFileName(theFileName, myID)); + PCDM_StoreStatus aStatus; + try { + aStatus = Model_Application::getApplication()->SaveAs(myDoc, aPath); + } + catch (Standard_Failure) { + Handle(Standard_Failure) aFail = Standard_Failure::Caught(); + Events_Error::send(string("Exception in saving of document: ") + aFail->GetMessageString()); + return false; + } + bool isDone = aStatus == PCDM_SS_OK || aStatus == PCDM_SS_No_Obj; + if (!isDone) + { + switch (aStatus) + { + case PCDM_SS_DriverFailure: + Events_Error::send(string("Can not save document: PCDM_SS_DriverFailure")); + break; + case PCDM_SS_WriteFailure: + Events_Error::send(string("Can not save document: PCDM_SS_WriteFailure")); + break; + case PCDM_SS_Failure: + default: + Events_Error::send(string("Can not save document: PCDM_SS_Failure")); + break; + } + } + myTransactionsAfterSave = 0; + if (isDone) { // save also sub-documents if any + set::iterator aSubIter = mySubs.begin(); + for(; aSubIter != mySubs.end() && isDone; aSubIter++) + isDone = subDocument(*aSubIter)->save(theFileName); + } + return isDone; } void Model_Document::close() @@ -118,6 +168,10 @@ void Model_Document::close() void Model_Document::startOperation() { + // check is it nested or not + if (myDoc->HasOpenCommand()) { + myIsNested = true; + } // new command for this myDoc->NewCommand(); // new command for all subs @@ -131,6 +185,7 @@ void Model_Document::finishOperation() // returns false if delta is empty and no transaction was made myIsEmptyTr[myTransactionsAfterSave] = !myDoc->CommitCommand(); myTransactionsAfterSave++; + myIsNested = false; // finish for all subs set::iterator aSubIter = mySubs.begin(); for(; aSubIter != mySubs.end(); aSubIter++) @@ -208,7 +263,8 @@ void Model_Document::redo() boost::shared_ptr Model_Document::addFeature(string theID) { - boost::shared_ptr aFeature = ModelAPI_PluginManager::get()->createFeature(theID); + boost::shared_ptr aFeature = + ModelAPI_PluginManager::get()->createFeature(theID); if (aFeature) { boost::dynamic_pointer_cast(aFeature->documentToAdd())->addFeature(aFeature); } else { @@ -223,10 +279,12 @@ void Model_Document::addFeature(const boost::shared_ptr theFea TDF_Label aGroupLab = groupLabel(aGroup); TDF_Label anObjLab = aGroupLab.NewChild(); boost::shared_ptr aData(new Model_Data); + aData->setFeature(theFeature); aData->setLabel(anObjLab); - boost::shared_ptr aThis = Model_Application::getApplication()->getDocument(myID); - aData->setDocument(aThis); + boost::shared_ptr aThis = + Model_Application::getApplication()->getDocument(myID); theFeature->setData(aData); + theFeature->setDoc(aThis); setUniqueName(theFeature); theFeature->initAttributes(); // keep the feature ID to restore document later correctly @@ -234,10 +292,26 @@ void Model_Document::addFeature(const boost::shared_ptr theFea // put index of the feature in the group in the tree TDataStd_Integer::Set(anObjLab, myFeatures[aGroup].size()); myFeatures[aGroup].push_back(theFeature); + // store feature in the history of features array + 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); + } + } // event: feature is added static Events_ID anEvent = Events_Loop::eventByName(EVENT_FEATURE_CREATED); - ModelAPI_FeatureUpdatedMessage aMsg(aThis, theFeature, anEvent); + Model_FeatureUpdatedMessage aMsg(theFeature, anEvent); Events_Loop::loop()->send(aMsg); } @@ -256,10 +330,11 @@ boost::shared_ptr Model_Document::feature(TDF_Label& theLabel) int Model_Document::featureIndex(boost::shared_ptr theFeature) { - if (theFeature->data()->document().get() != this) { - return theFeature->data()->document()->featureIndex(theFeature); + if (theFeature->document().get() != this) { + return theFeature->document()->featureIndex(theFeature); } - boost::shared_ptr aData = boost::dynamic_pointer_cast(theFeature->data()); + boost::shared_ptr aData = + boost::dynamic_pointer_cast(theFeature->data()); Handle(TDataStd_Integer) aFeatureIndex; if (aData->label().FindAttribute(TDataStd_Integer::GetID(), aFeatureIndex)) { return aFeatureIndex->Get(); @@ -275,22 +350,42 @@ boost::shared_ptr Model_Document::subDocument(string theDocID return Model_Application::getApplication()->getDocument(theDocID); } -boost::shared_ptr Model_Document::featuresIterator(const string theGroup) +boost::shared_ptr Model_Document::feature( + const string& theGroupID, const int theIndex) { - boost::shared_ptr 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 boost::shared_ptr(new Model_Iterator()); - return boost::shared_ptr(new Model_Iterator(aThis, groupLabel(theGroup))); + if (theGroupID == FEATURES_GROUP) { // history is just a references array + Handle(TDataStd_ReferenceArray) aRefs; + if (groupLabel(FEATURES_GROUP).FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) { + if (aRefs->Lower() <= theIndex && aRefs->Upper() >= theIndex) { + TDF_Label aFeatureLab = aRefs->Value(theIndex); + return feature(aFeatureLab); + } + } + } else { // one of the group + map > >::iterator aGroup = + myFeatures.find(theGroupID); + if (aGroup != myFeatures.end() && (int)(aGroup->second.size()) > theIndex) { + return aGroup->second[theIndex]; + } + } + // not found + return boost::shared_ptr(); } -boost::shared_ptr Model_Document::feature(const string& theGroupID, const int theIndex) +int Model_Document::size(const string& theGroupID) { - // TODO: optimize this method - boost::shared_ptr anIter = featuresIterator(theGroupID); - for(int a = 0; a != theIndex && anIter->more(); anIter->next()) a++; - return anIter->more() ? anIter->current() : boost::shared_ptr(); + if (theGroupID == FEATURES_GROUP) { // history is just a references array + Handle(TDataStd_ReferenceArray) aRefs; + if (groupLabel(FEATURES_GROUP).FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) + return aRefs->Length(); + } else { // one of the group + map > >::iterator aGroup = + myFeatures.find(theGroupID); + if (aGroup != myFeatures.end()) + return aGroup->second.size(); + } + // group is not found + return 0; } const vector& Model_Document::getGroups() const @@ -303,11 +398,10 @@ 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(), ""); - */ + myIsNested = false; + myDoc->SetNestedTransactionMode(); + // to have something in the document and avoid empty doc open/save problem + TDataStd_Integer::Set(myDoc->Main().Father(), 0); } TDF_Label Model_Document::groupLabel(const string theGroup) @@ -325,10 +419,10 @@ TDF_Label Model_Document::groupLabel(const string theGroup) void Model_Document::setUniqueName(boost::shared_ptr theFeature) { // first count all objects of such kind to start with index = count + 1 - int aNumObjects = 0; - boost::shared_ptr anIter = featuresIterator(theFeature->getGroup()); - for(; anIter->more(); anIter->next()) { - if (anIter->currentKind() == theFeature->getKind()) + int a, aNumObjects = 0; + int aSize = size(theFeature->getGroup()); + for(a = 0; a < aSize; a++) { + if (feature(theFeature->getGroup(), a)->getKind() == theFeature->getKind()) aNumObjects++; } // generate candidate name @@ -336,14 +430,14 @@ void Model_Document::setUniqueName(boost::shared_ptr theFeatur aNameStream<getKind()<<"_"<getGroup()); anIter->more();) { - if (anIter->currentName() == aName) { + for(a = 0; a < aSize;) { + if (feature(theFeature->getGroup(), a)->data()->getName() == aName) { aNumObjects++; stringstream aNameStream; aNameStream<getKind()<<"_"<getGroup()); - } else anIter->next(); + a = 0; + } else a++; } theFeature->data()->setName(aName); @@ -370,7 +464,7 @@ void Model_Document::synchronizeFeatures() myGroups.erase(aGroupName); aGroupNamesIter = myGroupsNames.erase(aGroupNamesIter); // say that features were deleted from group - ModelAPI_FeatureDeletedMessage aMsg(aThis, aGroupName); + Model_FeatureDeletedMessage aMsg(aThis, aGroupName); Events_Loop::loop()->send(aMsg); } // create new groups basing on the following data model update @@ -407,7 +501,7 @@ void Model_Document::synchronizeFeatures() if (aDSTag > aFeatureTag) { // feature is removed aFIter = aFeatures.erase(aFIter); // event: model is updated - ModelAPI_FeatureDeletedMessage aMsg(aThis, aGroupName); + Model_FeatureDeletedMessage aMsg(aThis, aGroupName); Events_Loop::loop()->send(aMsg); } else if (aDSTag < aFeatureTag) { // a new feature is inserted // create a feature @@ -418,13 +512,10 @@ void Model_Document::synchronizeFeatures() boost::shared_ptr aData(new Model_Data); TDF_Label aLab = aFLabIter.Value()->Label(); aData->setLabel(aLab); - aData->setDocument(Model_Application::getApplication()->getDocument(myID)); + aData->setFeature(aFeature); + aFeature->setDoc(aThis); aFeature->setData(aData); aFeature->initAttributes(); - // event: model is updated - static Events_ID anEvent = Events_Loop::eventByName(EVENT_FEATURE_CREATED); - ModelAPI_FeatureUpdatedMessage aMsg(aThis, aFeature, anEvent); - Events_Loop::loop()->send(aMsg); if (aFIter == aFeatures.end()) { aFeatures.push_back(aFeature); @@ -433,6 +524,11 @@ void Model_Document::synchronizeFeatures() aFIter++; aFeatures.insert(aFIter, aFeature); } + // event: model is updated + static Events_ID anEvent = Events_Loop::eventByName(EVENT_FEATURE_CREATED); + Model_FeatureUpdatedMessage aMsg(aFeature, anEvent); + Events_Loop::loop()->send(aMsg); + // feature for this label is added, so go to the next label aFLabIter.Next(); } else { // nothing is changed, both iterators are incremented