diff --git a/src/DE/DE_ConfigurationNode.cxx b/src/DE/DE_ConfigurationNode.cxx index 4ebd69e49b..2d978fc71a 100644 --- a/src/DE/DE_ConfigurationNode.cxx +++ b/src/DE/DE_ConfigurationNode.cxx @@ -88,8 +88,11 @@ bool DE_ConfigurationNode::Save(const TCollection_AsciiString& theResourcePath) // function : UpdateLoad // purpose : //======================================================================= -bool DE_ConfigurationNode::UpdateLoad() +bool DE_ConfigurationNode::UpdateLoad(const Standard_Boolean theToImport, + const Standard_Boolean theToKeep) { + (void)theToImport; + (void)theToKeep; return true; } diff --git a/src/DE/DE_ConfigurationNode.hxx b/src/DE/DE_ConfigurationNode.hxx index 3798dc3b35..0f48ac5e55 100644 --- a/src/DE/DE_ConfigurationNode.hxx +++ b/src/DE/DE_ConfigurationNode.hxx @@ -85,9 +85,12 @@ public: //! @return new object with the same field values Standard_EXPORT virtual Handle(DE_ConfigurationNode) Copy() const = 0; - //! Update loading status. Checking for the license. + //! Update loading status. Checking for the ability to read and write. + //! @param[in] theToImport flag to updates for import. Standard_True-import, Standard_False-export + //! @param[in] theToKeep flag to save update result //! @return Standard_True, if node can be used - Standard_EXPORT virtual bool UpdateLoad(); + Standard_EXPORT virtual bool UpdateLoad(const Standard_Boolean theToImport, + const Standard_Boolean theToKeep); public: diff --git a/src/DE/DE_Wrapper.cxx b/src/DE/DE_Wrapper.cxx index b22c5b7d80..091fde72d6 100644 --- a/src/DE/DE_Wrapper.cxx +++ b/src/DE/DE_Wrapper.cxx @@ -44,6 +44,7 @@ namespace // purpose : //======================================================================= DE_Wrapper::DE_Wrapper() + :myKeepUpdates(Standard_False) {} //======================================================================= @@ -67,6 +68,7 @@ DE_Wrapper::DE_Wrapper(const Handle(DE_Wrapper)& theWrapper) Bind(aVendorIter.Value()); } } + theWrapper->myKeepUpdates = myKeepUpdates; } //======================================================================= @@ -445,7 +447,6 @@ void DE_Wrapper::ChangePriority(const TCollection_AsciiString& theFormat, if (aVendorMap.FindFromKey(aVendorName, aNode)) { aNode->SetEnabled(Standard_True); - aNode->UpdateLoad(); aNewVendorMap.Add(aVendorName, aNode); } } @@ -532,7 +533,8 @@ Standard_Boolean DE_Wrapper::FindProvider(const TCollection_AsciiString& thePath ((theToImport && aNode->IsImportSupported()) || (!theToImport && aNode->IsExportSupported())) && (aNode->CheckExtension(anExtr) || - (theToImport && aNode->CheckContent(aBuffer)))) + (theToImport && aNode->CheckContent(aBuffer))) && + aNode->UpdateLoad(theToImport, myKeepUpdates)) { theProvider = aNode->BuildProvider(); aNode->GlobalParameters = GlobalParameters; @@ -544,6 +546,28 @@ Standard_Boolean DE_Wrapper::FindProvider(const TCollection_AsciiString& thePath return Standard_False; } +//======================================================================= +// function : UpdateLoad +// purpose : +//======================================================================= +Standard_EXPORT void DE_Wrapper::UpdateLoad(const Standard_Boolean theToForceUpdate) const +{ + for (DE_ConfigurationFormatMap::Iterator aFormatIter(myConfiguration); + aFormatIter.More(); aFormatIter.Next()) + { + for (DE_ConfigurationVendorMap::Iterator aVendorIter(aFormatIter.Value()); + aVendorIter.More(); aVendorIter.Next()) + { + const Handle(DE_ConfigurationNode)& aNode = aVendorIter.Value(); + aNode->UpdateLoad(Standard_True, Standard_True); + aNode->UpdateLoad(Standard_False, Standard_True); + if (!theToForceUpdate) + continue; + aNode->SetEnabled(aNode->IsExportSupported() || aNode->IsImportSupported()); + } + } +} + //======================================================================= // function : sort // purpose : diff --git a/src/DE/DE_Wrapper.hxx b/src/DE/DE_Wrapper.hxx index 98587aa7d5..eb5fedb91e 100644 --- a/src/DE/DE_Wrapper.hxx +++ b/src/DE/DE_Wrapper.hxx @@ -226,6 +226,16 @@ public: const Standard_Boolean theToImport, Handle(DE_Provider)& theProvider) const; + //! Updates all registered nodes, all changes will be saved in nodes + //! @param[in] theToForceUpdate flag that turns on/of nodes, according to updated ability to import/export + Standard_EXPORT void UpdateLoad(const Standard_Boolean theToForceUpdate = Standard_False) const; + + //! Gets flag that keeps changes on configuration nodes which are being updated, false by default + Standard_Boolean KeepUpdates() const { return myKeepUpdates; } + + //! Sets flag that keeps changes on configuration nodes which are being updated, false by default + void SetKeepUpdates(const Standard_Boolean theToKeepUpdates) { myKeepUpdates = theToKeepUpdates; } + //! Gets format map, contains vendor map with nodes //! @return internal map of formats Standard_EXPORT const DE_ConfigurationFormatMap& Nodes() const; @@ -248,6 +258,7 @@ public: private: + Standard_Boolean myKeepUpdates; //!< Flag that keeps changes on configuration nodes which are being updated DE_ConfigurationFormatMap myConfiguration; //!< Internal map of formats }; diff --git a/src/DEBRepCascade/DEBRepCascade_ConfigurationNode.cxx b/src/DEBRepCascade/DEBRepCascade_ConfigurationNode.cxx index 6a5234c1d3..ac23714a9e 100644 --- a/src/DEBRepCascade/DEBRepCascade_ConfigurationNode.cxx +++ b/src/DEBRepCascade/DEBRepCascade_ConfigurationNode.cxx @@ -34,9 +34,7 @@ namespace //======================================================================= DEBRepCascade_ConfigurationNode::DEBRepCascade_ConfigurationNode() : DE_ConfigurationNode() -{ - UpdateLoad(); -} +{} //======================================================================= // function : DEBRepCascade_ConfigurationNode @@ -46,7 +44,6 @@ DEBRepCascade_ConfigurationNode::DEBRepCascade_ConfigurationNode(const Handle(DE :DE_ConfigurationNode(theNode) { InternalParameters = theNode->InternalParameters; - UpdateLoad(); } //======================================================================= diff --git a/src/DEXCAFCascade/DEXCAFCascade_ConfigurationNode.cxx b/src/DEXCAFCascade/DEXCAFCascade_ConfigurationNode.cxx index e666a3c188..4f91e2d0ba 100644 --- a/src/DEXCAFCascade/DEXCAFCascade_ConfigurationNode.cxx +++ b/src/DEXCAFCascade/DEXCAFCascade_ConfigurationNode.cxx @@ -34,9 +34,7 @@ namespace //======================================================================= DEXCAFCascade_ConfigurationNode::DEXCAFCascade_ConfigurationNode() : DE_ConfigurationNode() -{ - UpdateLoad(); -} +{} //======================================================================= // function : DEXCAFCascade_ConfigurationNode @@ -46,7 +44,6 @@ DEXCAFCascade_ConfigurationNode::DEXCAFCascade_ConfigurationNode(const Handle(DE :DE_ConfigurationNode(theNode) { InternalParameters = theNode->InternalParameters; - UpdateLoad(); } //======================================================================= diff --git a/src/IGESCAFControl/IGESCAFControl_ConfigurationNode.cxx b/src/IGESCAFControl/IGESCAFControl_ConfigurationNode.cxx index 51956d9db6..68f5312c43 100644 --- a/src/IGESCAFControl/IGESCAFControl_ConfigurationNode.cxx +++ b/src/IGESCAFControl/IGESCAFControl_ConfigurationNode.cxx @@ -34,9 +34,7 @@ namespace //======================================================================= IGESCAFControl_ConfigurationNode::IGESCAFControl_ConfigurationNode() : DE_ConfigurationNode() -{ - UpdateLoad(); -} +{} //======================================================================= // function : IGESCAFControl_ConfigurationNode @@ -46,7 +44,6 @@ IGESCAFControl_ConfigurationNode::IGESCAFControl_ConfigurationNode(const Handle( :DE_ConfigurationNode(theNode) { InternalParameters = theNode->InternalParameters; - UpdateLoad(); } //======================================================================= diff --git a/src/RWGltf/RWGltf_ConfigurationNode.cxx b/src/RWGltf/RWGltf_ConfigurationNode.cxx index ad42b0c958..28ce153cbc 100644 --- a/src/RWGltf/RWGltf_ConfigurationNode.cxx +++ b/src/RWGltf/RWGltf_ConfigurationNode.cxx @@ -33,9 +33,7 @@ namespace //======================================================================= RWGltf_ConfigurationNode::RWGltf_ConfigurationNode() : DE_ConfigurationNode() -{ - UpdateLoad(); -} +{} //======================================================================= // function : RWGltf_ConfigurationNode @@ -45,7 +43,6 @@ RWGltf_ConfigurationNode::RWGltf_ConfigurationNode(const Handle(RWGltf_Configura :DE_ConfigurationNode(theNode) { InternalParameters = theNode->InternalParameters; - UpdateLoad(); } //======================================================================= diff --git a/src/RWObj/RWObj_ConfigurationNode.cxx b/src/RWObj/RWObj_ConfigurationNode.cxx index f860d800cf..94b6b1d4d8 100644 --- a/src/RWObj/RWObj_ConfigurationNode.cxx +++ b/src/RWObj/RWObj_ConfigurationNode.cxx @@ -33,9 +33,7 @@ namespace //======================================================================= RWObj_ConfigurationNode::RWObj_ConfigurationNode() : DE_ConfigurationNode() -{ - UpdateLoad(); -} +{} //======================================================================= // function : RWObj_ConfigurationNode @@ -45,7 +43,6 @@ RWObj_ConfigurationNode::RWObj_ConfigurationNode(const Handle(RWObj_Configuratio :DE_ConfigurationNode(theNode) { InternalParameters = theNode->InternalParameters; - UpdateLoad(); } //======================================================================= diff --git a/src/RWPly/RWPly_ConfigurationNode.cxx b/src/RWPly/RWPly_ConfigurationNode.cxx index ecd16f4bbb..fb978975f6 100644 --- a/src/RWPly/RWPly_ConfigurationNode.cxx +++ b/src/RWPly/RWPly_ConfigurationNode.cxx @@ -27,9 +27,7 @@ static const TCollection_AsciiString THE_CONFIGURATION_SCOPE = "provider"; //======================================================================= RWPly_ConfigurationNode::RWPly_ConfigurationNode() : DE_ConfigurationNode() -{ - UpdateLoad(); -} +{} //======================================================================= // function : RWPly_ConfigurationNode @@ -39,7 +37,6 @@ RWPly_ConfigurationNode::RWPly_ConfigurationNode(const Handle(RWPly_Configuratio :DE_ConfigurationNode(theNode) { InternalParameters = theNode->InternalParameters; - UpdateLoad(); } //======================================================================= diff --git a/src/RWStl/RWStl_ConfigurationNode.cxx b/src/RWStl/RWStl_ConfigurationNode.cxx index edc4c13aad..990f24c737 100644 --- a/src/RWStl/RWStl_ConfigurationNode.cxx +++ b/src/RWStl/RWStl_ConfigurationNode.cxx @@ -34,9 +34,7 @@ namespace //======================================================================= RWStl_ConfigurationNode::RWStl_ConfigurationNode() : DE_ConfigurationNode() -{ - UpdateLoad(); -} +{} //======================================================================= // function : STEPCAFControl_ConfigurationNode @@ -46,7 +44,6 @@ RWStl_ConfigurationNode::RWStl_ConfigurationNode(const Handle(RWStl_Configuratio :DE_ConfigurationNode(theNode) { InternalParameters = theNode->InternalParameters; - UpdateLoad(); } //======================================================================= diff --git a/src/STEPCAFControl/STEPCAFControl_ConfigurationNode.cxx b/src/STEPCAFControl/STEPCAFControl_ConfigurationNode.cxx index 5405ec67bd..588c18deba 100644 --- a/src/STEPCAFControl/STEPCAFControl_ConfigurationNode.cxx +++ b/src/STEPCAFControl/STEPCAFControl_ConfigurationNode.cxx @@ -34,9 +34,7 @@ namespace //======================================================================= STEPCAFControl_ConfigurationNode::STEPCAFControl_ConfigurationNode() : DE_ConfigurationNode() -{ - UpdateLoad(); -} +{} //======================================================================= // function : STEPCAFControl_ConfigurationNode @@ -45,9 +43,7 @@ STEPCAFControl_ConfigurationNode::STEPCAFControl_ConfigurationNode() : STEPCAFControl_ConfigurationNode::STEPCAFControl_ConfigurationNode(const Handle(STEPCAFControl_ConfigurationNode)& theNode) :DE_ConfigurationNode(theNode), InternalParameters(theNode->InternalParameters) -{ - UpdateLoad(); -} +{} //======================================================================= // function : Load diff --git a/src/Vrml/Vrml_ConfigurationNode.cxx b/src/Vrml/Vrml_ConfigurationNode.cxx index 97c729d6f9..6cb9de24b2 100644 --- a/src/Vrml/Vrml_ConfigurationNode.cxx +++ b/src/Vrml/Vrml_ConfigurationNode.cxx @@ -33,9 +33,7 @@ namespace //======================================================================= Vrml_ConfigurationNode::Vrml_ConfigurationNode() : DE_ConfigurationNode() -{ - UpdateLoad(); -} +{} //======================================================================= // function : STEPCAFControl_ConfigurationNode @@ -45,7 +43,6 @@ Vrml_ConfigurationNode::Vrml_ConfigurationNode(const Handle(Vrml_ConfigurationNo :DE_ConfigurationNode(theNode) { InternalParameters = theNode->InternalParameters; - UpdateLoad(); } //=======================================================================