mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0030169: Application Framework - Document format version management improvement
This commit is contained in:
parent
90fd614536
commit
b34d86cb28
@ -1621,3 +1621,9 @@ Now methods *GeomConvert::ConcatG1*, *GeomConvert::ConcatC1*, *Geom2dConvert::Co
|
||||
|
||||
*SelectBasics_PickResult* structure has been extended, so that it now defines 3D point on detected entity in addition to Depth value along picking ray.
|
||||
*SelectMgr_SelectingVolumeManager::Overlap()* methods have been corrected to fill in *SelectBasics_PickResult* structure (depth and 3D point) instead of only depth value, so that custom *Select3D_SensitiveEntity* implementation should be updated accordingly (including *Select3D_SensitiveSet* subclasses).
|
||||
|
||||
@subsection upgrade_740_ocafpersistence Document format version management improvement.
|
||||
|
||||
Previously Document format version after restoring by DocumentRetrievalDriver was propagated using static methods of corresponding units (like MDataStd or MNaming) to static variables of these units and after that became accessible to Drivers of these units.
|
||||
Now Document format version is available to drivers via RelocationTable. The Relocation table now keeps HeaderData of the document and a format version can be extracted in next way: theRelocTable.GetHeaderData()->StorageVersion().
|
||||
Obsolete methods: *static void SetDocumentVersion (const Standard_Integer DocVersion)* and *static Standard_Integer DocumentVersion()* of *BinMDataStd*, *BinMNaming*, *XmlMDataStd* and *XmlMNaming* are removed.
|
||||
|
@ -106,14 +106,4 @@ void BinDrivers_DocumentRetrievalDriver::Clear()
|
||||
BinLDrivers_DocumentRetrievalDriver::Clear();
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : PropagateDocumentVersion
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
void BinDrivers_DocumentRetrievalDriver::PropagateDocumentVersion(
|
||||
const Standard_Integer theDocVersion )
|
||||
{
|
||||
BinMDataStd::SetDocumentVersion(theDocVersion);
|
||||
BinMNaming::SetDocumentVersion(theDocVersion);
|
||||
}
|
||||
|
||||
|
@ -50,10 +50,6 @@ public:
|
||||
|
||||
//! Clears the NamedShape driver
|
||||
Standard_EXPORT virtual void Clear() Standard_OVERRIDE;
|
||||
|
||||
Standard_EXPORT virtual void PropagateDocumentVersion (const Standard_Integer theVersion) Standard_OVERRIDE;
|
||||
|
||||
|
||||
|
||||
|
||||
DEFINE_STANDARD_RTTIEXT(BinDrivers_DocumentRetrievalDriver,BinLDrivers_DocumentRetrievalDriver)
|
||||
|
@ -215,11 +215,7 @@ void BinLDrivers_DocumentRetrievalDriver::Read (Standard_IStream&
|
||||
myMsgDriver->Send (aTypeNames(i), Message_Warning);
|
||||
}
|
||||
|
||||
// propagate the opened document version to data drivers
|
||||
PropagateDocumentVersion(aFileVer);
|
||||
|
||||
// 2. Read document contents
|
||||
|
||||
// 2a. Retrieve data from the stream:
|
||||
myRelocTable.Clear();
|
||||
myRelocTable.SetHeaderData(aHeaderData);
|
||||
@ -232,7 +228,7 @@ void BinLDrivers_DocumentRetrievalDriver::Read (Standard_IStream&
|
||||
if (aFileVer >= 3) {
|
||||
BinLDrivers_DocumentSection aSection;
|
||||
do {
|
||||
BinLDrivers_DocumentSection::ReadTOC (aSection, theIStream);
|
||||
BinLDrivers_DocumentSection::ReadTOC (aSection, theIStream, aFileVer);
|
||||
mySections.Append(aSection);
|
||||
} while(!aSection.Name().IsEqual((Standard_CString)SHAPESECTION_POS) && !theIStream.eof());
|
||||
|
||||
@ -338,7 +334,7 @@ Standard_Integer BinLDrivers_DocumentRetrievalDriver::ReadSubTree
|
||||
const TDF_Label& theLabel)
|
||||
{
|
||||
Standard_Integer nbRead = 0;
|
||||
static TCollection_ExtendedString aMethStr
|
||||
TCollection_ExtendedString aMethStr
|
||||
("BinLDrivers_DocumentRetrievalDriver: ");
|
||||
|
||||
// Read attributes:
|
||||
@ -511,15 +507,6 @@ void BinLDrivers_DocumentRetrievalDriver::Clear()
|
||||
myMapUnsupported.Clear();
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : PropagateDocumentVersion
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
void BinLDrivers_DocumentRetrievalDriver::PropagateDocumentVersion(const Standard_Integer theDocVersion )
|
||||
{
|
||||
BinMDataStd::SetDocumentVersion(theDocVersion);
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : CheckDocumentVersion
|
||||
//purpose :
|
||||
|
@ -91,9 +91,6 @@ protected:
|
||||
|
||||
//! clears the reading-cash data in drivers if any.
|
||||
Standard_EXPORT virtual void Clear();
|
||||
|
||||
//! provides the version of document to all drivers
|
||||
Standard_EXPORT virtual void PropagateDocumentVersion (const Standard_Integer theVersion);
|
||||
|
||||
//! Check a file version(in which file was written) with a current version.
|
||||
//! Redefining this method is a chance for application to read files
|
||||
|
@ -185,7 +185,8 @@ void BinLDrivers_DocumentSection::Write (Standard_OStream& theStream,
|
||||
|
||||
void BinLDrivers_DocumentSection::ReadTOC
|
||||
(BinLDrivers_DocumentSection& theSection,
|
||||
Standard_IStream& theStream)
|
||||
Standard_IStream& theStream,
|
||||
const Standard_Integer theDocFormatVersion)
|
||||
{
|
||||
char aBuf[512];
|
||||
Standard_Integer aNameBufferSize;
|
||||
@ -198,7 +199,7 @@ void BinLDrivers_DocumentSection::ReadTOC
|
||||
theSection.myName = (Standard_CString)&aBuf[0];
|
||||
|
||||
uint64_t aValue[3];
|
||||
if (BinMDataStd::DocumentVersion() <= 9)
|
||||
if (theDocFormatVersion <= 9)
|
||||
{
|
||||
// Old documents stored file position as 4-bytes values.
|
||||
Standard_Integer aValInt[3];
|
||||
|
@ -72,7 +72,8 @@ public:
|
||||
|
||||
//! Fill a DocumentSection instance from the data that are read
|
||||
//! from TOC.
|
||||
Standard_EXPORT static void ReadTOC (BinLDrivers_DocumentSection& theSection, Standard_IStream& theIS);
|
||||
Standard_EXPORT static void ReadTOC (BinLDrivers_DocumentSection& theSection, Standard_IStream& theIS,
|
||||
const Standard_Integer theDocFormatVersion);
|
||||
|
||||
|
||||
|
||||
|
@ -187,7 +187,7 @@ void BinLDrivers_DocumentStorageDriver::UnsupportedAttrMsg
|
||||
(const Handle(Standard_Type)& theType)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
static TCollection_ExtendedString aMsg
|
||||
TCollection_ExtendedString aMsg
|
||||
("BinDrivers_DocumentStorageDriver: warning: attribute driver for type ");
|
||||
#endif
|
||||
if (!myMapUnsupported.Contains(theType)) {
|
||||
|
@ -44,7 +44,6 @@
|
||||
#include <BinMDF_ADriverTable.hxx>
|
||||
#include <Message_Messenger.hxx>
|
||||
|
||||
static Standard_Integer myDocumentVersion = -1;
|
||||
//=======================================================================
|
||||
//function : AddDrivers
|
||||
//purpose :
|
||||
@ -81,20 +80,3 @@ void BinMDataStd::AddDrivers (const Handle(BinMDF_ADriverTable)& theDriverTable,
|
||||
theDriverTable->AddDriver (new BinMDataStd_AsciiStringDriver (theMsgDriver) );
|
||||
theDriverTable->AddDriver (new BinMDataStd_IntPackedMapDriver (theMsgDriver) );
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : SetDocumentVersion
|
||||
//purpose : Sets current document version
|
||||
//=======================================================================
|
||||
void BinMDataStd::SetDocumentVersion(const Standard_Integer theVersion)
|
||||
{
|
||||
myDocumentVersion = theVersion;
|
||||
}
|
||||
//=======================================================================
|
||||
//function : DocumentVersion
|
||||
//purpose : Retrieved document version
|
||||
//=======================================================================
|
||||
Standard_Integer BinMDataStd::DocumentVersion()
|
||||
{
|
||||
return myDocumentVersion;
|
||||
}
|
||||
|
@ -25,32 +25,6 @@
|
||||
|
||||
class BinMDF_ADriverTable;
|
||||
class Message_Messenger;
|
||||
class BinMDataStd_NameDriver;
|
||||
class BinMDataStd_IntegerDriver;
|
||||
class BinMDataStd_RealDriver;
|
||||
class BinMDataStd_IntegerArrayDriver;
|
||||
class BinMDataStd_RealArrayDriver;
|
||||
class BinMDataStd_UAttributeDriver;
|
||||
class BinMDataStd_DirectoryDriver;
|
||||
class BinMDataStd_CommentDriver;
|
||||
class BinMDataStd_VariableDriver;
|
||||
class BinMDataStd_ExpressionDriver;
|
||||
class BinMDataStd_RelationDriver;
|
||||
class BinMDataStd_NoteBookDriver;
|
||||
class BinMDataStd_TreeNodeDriver;
|
||||
class BinMDataStd_ExtStringArrayDriver;
|
||||
class BinMDataStd_TickDriver;
|
||||
class BinMDataStd_AsciiStringDriver;
|
||||
class BinMDataStd_IntPackedMapDriver;
|
||||
class BinMDataStd_IntegerListDriver;
|
||||
class BinMDataStd_RealListDriver;
|
||||
class BinMDataStd_ExtStringListDriver;
|
||||
class BinMDataStd_BooleanListDriver;
|
||||
class BinMDataStd_ReferenceListDriver;
|
||||
class BinMDataStd_BooleanArrayDriver;
|
||||
class BinMDataStd_ReferenceArrayDriver;
|
||||
class BinMDataStd_ByteArrayDriver;
|
||||
class BinMDataStd_NamedDataDriver;
|
||||
|
||||
//! Storage and Retrieval drivers for modelling attributes.
|
||||
class BinMDataStd
|
||||
@ -62,16 +36,12 @@ public:
|
||||
|
||||
//! Adds the attribute drivers to <theDriverTable>.
|
||||
Standard_EXPORT static void AddDrivers (const Handle(BinMDF_ADriverTable)& theDriverTable, const Handle(Message_Messenger)& aMsgDrv);
|
||||
|
||||
Standard_EXPORT static void SetDocumentVersion (const Standard_Integer DocVersion);
|
||||
|
||||
Standard_EXPORT static Standard_Integer DocumentVersion();
|
||||
|
||||
template<class T>
|
||||
static void SetAttributeID(const BinObjMgt_Persistent& theSource, const Handle(T)& anAtt)
|
||||
static void SetAttributeID(const BinObjMgt_Persistent& theSource, const Handle(T)& anAtt, const Standard_Integer aDocFormatVersion)
|
||||
{
|
||||
Standard_Boolean ok = Standard_True;
|
||||
if(BinMDataStd::DocumentVersion() > 9) { // process user defined guid
|
||||
if(aDocFormatVersion > 9) { // process user defined guid
|
||||
const Standard_Integer& aPos = theSource.Position();
|
||||
Standard_GUID aGuid;
|
||||
ok = theSource >> aGuid;
|
||||
|
@ -55,14 +55,14 @@ Handle(TDF_Attribute) BinMDataStd_AsciiStringDriver::NewEmpty() const
|
||||
Standard_Boolean BinMDataStd_AsciiStringDriver::Paste
|
||||
(const BinObjMgt_Persistent& Source,
|
||||
const Handle(TDF_Attribute)& Target,
|
||||
BinObjMgt_RRelocationTable& /*RelocTable*/) const
|
||||
BinObjMgt_RRelocationTable& RelocTable) const
|
||||
{
|
||||
Handle(TDataStd_AsciiString) aStrAtt = Handle(TDataStd_AsciiString)::DownCast(Target);
|
||||
TCollection_AsciiString aString;
|
||||
Standard_Boolean ok = Source >> aString;
|
||||
if (ok)
|
||||
aStrAtt->Set( aString );
|
||||
if(BinMDataStd::DocumentVersion() > 8) { // process user defined guid
|
||||
if(RelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 8) { // process user defined guid
|
||||
const Standard_Integer& aPos = Source.Position();
|
||||
Standard_GUID aGuid;
|
||||
ok = Source >> aGuid;
|
||||
|
@ -51,7 +51,7 @@ Handle(TDF_Attribute) BinMDataStd_BooleanArrayDriver::NewEmpty() const
|
||||
//=======================================================================
|
||||
Standard_Boolean BinMDataStd_BooleanArrayDriver::Paste(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aFirstInd, aLastInd;
|
||||
if (! (theSource >> aFirstInd >> aLastInd))
|
||||
@ -71,7 +71,7 @@ Standard_Boolean BinMDataStd_BooleanArrayDriver::Paste(const BinObjMgt_Persisten
|
||||
bytes->SetValue(i, aTargetArray.Value(i));
|
||||
}
|
||||
anAtt->SetInternalArray(bytes);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt, theRelocTable.GetHeaderData()->StorageVersion().IntegerValue());
|
||||
return Standard_True;
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ Handle(TDF_Attribute) BinMDataStd_BooleanListDriver::NewEmpty() const
|
||||
//=======================================================================
|
||||
Standard_Boolean BinMDataStd_BooleanListDriver::Paste(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aIndex, aFirstInd, aLastInd;
|
||||
if (! (theSource >> aFirstInd >> aLastInd))
|
||||
@ -71,7 +71,7 @@ Standard_Boolean BinMDataStd_BooleanListDriver::Paste(const BinObjMgt_Persistent
|
||||
}
|
||||
}
|
||||
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt, theRelocTable.GetHeaderData()->StorageVersion().IntegerValue());
|
||||
return Standard_True;
|
||||
}
|
||||
|
||||
@ -101,4 +101,4 @@ void BinMDataStd_BooleanListDriver::Paste(const Handle(TDF_Attribute)& theSource
|
||||
// process user defined guid
|
||||
if(anAtt->ID() != TDataStd_BooleanList::GetID())
|
||||
theTarget << anAtt->ID();
|
||||
}
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ Handle(TDF_Attribute) BinMDataStd_ByteArrayDriver::NewEmpty() const
|
||||
//=======================================================================
|
||||
Standard_Boolean BinMDataStd_ByteArrayDriver::Paste(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aFirstInd, aLastInd;
|
||||
if (! (theSource >> aFirstInd >> aLastInd))
|
||||
@ -71,7 +71,7 @@ Standard_Boolean BinMDataStd_ByteArrayDriver::Paste(const BinObjMgt_Persistent&
|
||||
anAtt->ChangeArray(bytes);
|
||||
|
||||
Standard_Boolean aDelta(Standard_False);
|
||||
if(BinMDataStd::DocumentVersion() > 2) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 2) {
|
||||
Standard_Byte aDeltaValue;
|
||||
if (! (theSource >> aDeltaValue))
|
||||
return Standard_False;
|
||||
@ -80,7 +80,7 @@ Standard_Boolean BinMDataStd_ByteArrayDriver::Paste(const BinObjMgt_Persistent&
|
||||
}
|
||||
anAtt->SetDelta(aDelta);
|
||||
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt, theRelocTable.GetHeaderData()->StorageVersion().IntegerValue());
|
||||
return Standard_True;
|
||||
}
|
||||
|
||||
|
@ -54,7 +54,7 @@ Handle(TDF_Attribute) BinMDataStd_ExtStringArrayDriver::NewEmpty() const
|
||||
Standard_Boolean BinMDataStd_ExtStringArrayDriver::Paste
|
||||
(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aFirstInd, aLastInd;
|
||||
if (! (theSource >> aFirstInd >> aLastInd))
|
||||
@ -81,7 +81,7 @@ Standard_Boolean BinMDataStd_ExtStringArrayDriver::Paste
|
||||
|
||||
if(ok) {
|
||||
Standard_Boolean aDelta(Standard_False);
|
||||
if(BinMDataStd::DocumentVersion() > 2) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 2) {
|
||||
Standard_Byte aDeltaValue;
|
||||
if (! (theSource >> aDeltaValue)) {
|
||||
return Standard_False;
|
||||
@ -92,7 +92,7 @@ Standard_Boolean BinMDataStd_ExtStringArrayDriver::Paste
|
||||
anAtt->SetDelta(aDelta);
|
||||
}
|
||||
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt, theRelocTable.GetHeaderData()->StorageVersion().IntegerValue());
|
||||
return ok;
|
||||
}
|
||||
|
||||
|
@ -52,7 +52,7 @@ Handle(TDF_Attribute) BinMDataStd_ExtStringListDriver::NewEmpty() const
|
||||
Standard_Boolean BinMDataStd_ExtStringListDriver::Paste
|
||||
(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aFirstInd, aLastInd;
|
||||
if (! (theSource >> aFirstInd >> aLastInd))
|
||||
@ -74,7 +74,7 @@ Standard_Boolean BinMDataStd_ExtStringListDriver::Paste
|
||||
}
|
||||
}
|
||||
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt, theRelocTable.GetHeaderData()->StorageVersion().IntegerValue());
|
||||
return Standard_True;
|
||||
}
|
||||
|
||||
|
@ -59,7 +59,7 @@ Handle(TDF_Attribute) BinMDataStd_IntPackedMapDriver::NewEmpty() const
|
||||
Standard_Boolean BinMDataStd_IntPackedMapDriver::Paste
|
||||
(const BinObjMgt_Persistent& Source,
|
||||
const Handle(TDF_Attribute)& Target,
|
||||
BinObjMgt_RRelocationTable& /*RelocTable*/) const
|
||||
BinObjMgt_RRelocationTable& RelocTable) const
|
||||
{
|
||||
Handle(TDataStd_IntPackedMap) aTagAtt = Handle(TDataStd_IntPackedMap)::DownCast(Target);
|
||||
if(aTagAtt.IsNull()) {
|
||||
@ -87,7 +87,7 @@ Standard_Boolean BinMDataStd_IntPackedMapDriver::Paste
|
||||
}
|
||||
|
||||
Standard_Boolean aDelta(Standard_False);
|
||||
if(BinMDataStd::DocumentVersion() > 2) {
|
||||
if(RelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 2) {
|
||||
Standard_Byte aDeltaValue;
|
||||
if (! (Source >> aDeltaValue))
|
||||
return Standard_False;
|
||||
|
@ -53,7 +53,7 @@ Handle(TDF_Attribute) BinMDataStd_IntegerArrayDriver::NewEmpty() const
|
||||
Standard_Boolean BinMDataStd_IntegerArrayDriver::Paste
|
||||
(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aFirstInd, aLastInd;
|
||||
if (! (theSource >> aFirstInd >> aLastInd))
|
||||
@ -69,7 +69,7 @@ Standard_Boolean BinMDataStd_IntegerArrayDriver::Paste
|
||||
if(!theSource.GetIntArray (&aTargetArray(aFirstInd), aLength))
|
||||
return Standard_False;
|
||||
Standard_Boolean aDelta(Standard_False);
|
||||
if(BinMDataStd::DocumentVersion() > 2) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 2) {
|
||||
Standard_Byte aDeltaValue;
|
||||
if (! (theSource >> aDeltaValue))
|
||||
return Standard_False;
|
||||
@ -77,12 +77,11 @@ Standard_Boolean BinMDataStd_IntegerArrayDriver::Paste
|
||||
aDelta = (aDeltaValue != 0);
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else if(BinMDataStd::DocumentVersion() == -1)
|
||||
cout << "Current DocVersion field is not initialized. " <<endl;
|
||||
//cout << "Current Document Format Version = " << theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() <<endl;
|
||||
#endif
|
||||
anAtt->SetDelta(aDelta);
|
||||
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt, theRelocTable.GetHeaderData()->StorageVersion().IntegerValue());
|
||||
return Standard_True;
|
||||
}
|
||||
|
||||
|
@ -52,14 +52,14 @@ Handle(TDF_Attribute) BinMDataStd_IntegerDriver::NewEmpty() const
|
||||
Standard_Boolean BinMDataStd_IntegerDriver::Paste
|
||||
(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRT) const
|
||||
{
|
||||
Handle(TDataStd_Integer) anAtt = Handle(TDataStd_Integer)::DownCast(theTarget);
|
||||
Standard_Integer aValue;
|
||||
Standard_Boolean ok = theSource >> aValue;
|
||||
if (ok)
|
||||
anAtt->Set(aValue);
|
||||
if(BinMDataStd::DocumentVersion() > 8) { // process user defined guid
|
||||
if(theRT.GetHeaderData()->StorageVersion().IntegerValue() > 8) { // process user defined guid
|
||||
const Standard_Integer& aPos = theSource.Position();
|
||||
Standard_GUID aGuid;
|
||||
ok = theSource >> aGuid;
|
||||
|
@ -51,7 +51,7 @@ Handle(TDF_Attribute) BinMDataStd_IntegerListDriver::NewEmpty() const
|
||||
//=======================================================================
|
||||
Standard_Boolean BinMDataStd_IntegerListDriver::Paste(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aIndex, aFirstInd, aLastInd;
|
||||
if (! (theSource >> aFirstInd >> aLastInd))
|
||||
@ -67,7 +67,7 @@ Standard_Boolean BinMDataStd_IntegerListDriver::Paste(const BinObjMgt_Persistent
|
||||
}
|
||||
}
|
||||
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt, theRelocTable.GetHeaderData()->StorageVersion().IntegerValue());
|
||||
return Standard_True;
|
||||
}
|
||||
|
||||
|
@ -52,14 +52,14 @@ Handle(TDF_Attribute) BinMDataStd_NameDriver::NewEmpty() const
|
||||
Standard_Boolean BinMDataStd_NameDriver::Paste
|
||||
(const BinObjMgt_Persistent& Source,
|
||||
const Handle(TDF_Attribute)& Target,
|
||||
BinObjMgt_RRelocationTable& /*RelocTable*/) const
|
||||
BinObjMgt_RRelocationTable& RelocTable) const
|
||||
{
|
||||
Handle(TDataStd_Name) aName = Handle(TDataStd_Name)::DownCast(Target);
|
||||
TCollection_ExtendedString aStr;
|
||||
Standard_Boolean ok = Source >> aStr;
|
||||
if (ok)
|
||||
aName->Set( aStr );
|
||||
if(BinMDataStd::DocumentVersion() > 8) { // process user defined guid
|
||||
if(RelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 8) { // process user defined guid
|
||||
const Standard_Integer& aPos = Source.Position();
|
||||
Standard_GUID aGuid;
|
||||
ok = Source >> aGuid;
|
||||
|
@ -53,7 +53,7 @@ Handle(TDF_Attribute) BinMDataStd_RealArrayDriver::NewEmpty() const
|
||||
Standard_Boolean BinMDataStd_RealArrayDriver::Paste
|
||||
(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aFirstInd, aLastInd;
|
||||
if (! (theSource >> aFirstInd >> aLastInd))
|
||||
@ -70,7 +70,7 @@ Standard_Boolean BinMDataStd_RealArrayDriver::Paste
|
||||
return Standard_False;
|
||||
|
||||
Standard_Boolean aDelta(Standard_False);
|
||||
if(BinMDataStd::DocumentVersion() > 2) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 2) {
|
||||
Standard_Byte aDeltaValue;
|
||||
if (! (theSource >> aDeltaValue))
|
||||
return Standard_False;
|
||||
@ -79,7 +79,7 @@ Standard_Boolean BinMDataStd_RealArrayDriver::Paste
|
||||
}
|
||||
anAtt->SetDelta(aDelta);
|
||||
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt, theRelocTable.GetHeaderData()->StorageVersion().IntegerValue());
|
||||
return Standard_True;
|
||||
}
|
||||
|
||||
|
@ -52,14 +52,14 @@ Handle(TDF_Attribute) BinMDataStd_RealDriver::NewEmpty() const
|
||||
Standard_Boolean BinMDataStd_RealDriver::Paste
|
||||
(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Handle(TDataStd_Real) anAtt= Handle(TDataStd_Real)::DownCast(theTarget);
|
||||
Standard_Real aValue;
|
||||
Standard_Boolean ok = theSource >> aValue;
|
||||
if (ok)
|
||||
anAtt->Set(aValue);
|
||||
if(BinMDataStd::DocumentVersion() > 8) { // process user defined guid
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 8) { // process user defined guid
|
||||
const Standard_Integer& aPos = theSource.Position();
|
||||
Standard_GUID aGuid;
|
||||
ok = theSource >> aGuid;
|
||||
|
@ -51,7 +51,7 @@ Handle(TDF_Attribute) BinMDataStd_RealListDriver::NewEmpty() const
|
||||
//=======================================================================
|
||||
Standard_Boolean BinMDataStd_RealListDriver::Paste(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aIndex, aFirstInd, aLastInd;
|
||||
if (! (theSource >> aFirstInd >> aLastInd))
|
||||
@ -68,7 +68,7 @@ Standard_Boolean BinMDataStd_RealListDriver::Paste(const BinObjMgt_Persistent&
|
||||
}
|
||||
}
|
||||
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt, theRelocTable.GetHeaderData()->StorageVersion().IntegerValue());
|
||||
return Standard_True;
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ Handle(TDF_Attribute) BinMDataStd_ReferenceArrayDriver::NewEmpty() const
|
||||
//=======================================================================
|
||||
Standard_Boolean BinMDataStd_ReferenceArrayDriver::Paste(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aFirstInd, aLastInd;
|
||||
if (! (theSource >> aFirstInd >> aLastInd))
|
||||
@ -73,7 +73,7 @@ Standard_Boolean BinMDataStd_ReferenceArrayDriver::Paste(const BinObjMgt_Persist
|
||||
anAtt->SetValue(i, L);
|
||||
}
|
||||
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt, theRelocTable.GetHeaderData()->StorageVersion().IntegerValue());
|
||||
return Standard_True;
|
||||
}
|
||||
|
||||
|
@ -52,7 +52,7 @@ Handle(TDF_Attribute) BinMDataStd_ReferenceListDriver::NewEmpty() const
|
||||
//=======================================================================
|
||||
Standard_Boolean BinMDataStd_ReferenceListDriver::Paste(const BinObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
BinObjMgt_RRelocationTable& ) const
|
||||
BinObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aFirstInd, aLastInd;
|
||||
if (! (theSource >> aFirstInd >> aLastInd))
|
||||
@ -76,7 +76,7 @@ Standard_Boolean BinMDataStd_ReferenceListDriver::Paste(const BinObjMgt_Persiste
|
||||
}
|
||||
}
|
||||
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt);
|
||||
BinMDataStd::SetAttributeID(theSource, anAtt, theRelocTable.GetHeaderData()->StorageVersion().IntegerValue());
|
||||
return Standard_True;
|
||||
}
|
||||
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include <BinMNaming_NamingDriver.hxx>
|
||||
#include <Message_Messenger.hxx>
|
||||
|
||||
static Standard_Integer myDocumentVersion = -1;
|
||||
//=======================================================================
|
||||
//function : AddDrivers
|
||||
//purpose :
|
||||
@ -32,19 +31,3 @@ void BinMNaming::AddDrivers (const Handle(BinMDF_ADriverTable)& aDriverTable,
|
||||
aDriverTable->AddDriver (new BinMNaming_NamingDriver(aMessageDriver));
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : SetDocumentVersion
|
||||
//purpose : Sets current document version
|
||||
//=======================================================================
|
||||
void BinMNaming::SetDocumentVersion(const Standard_Integer theVersion)
|
||||
{
|
||||
myDocumentVersion = theVersion;
|
||||
}
|
||||
//=======================================================================
|
||||
//function : DocumentVersion
|
||||
//purpose : Retrieved document version
|
||||
//=======================================================================
|
||||
Standard_Integer BinMNaming::DocumentVersion()
|
||||
{
|
||||
return myDocumentVersion;
|
||||
}
|
||||
|
@ -37,13 +37,6 @@ public:
|
||||
|
||||
//! Adds the attribute drivers to <theDriverTable>.
|
||||
Standard_EXPORT static void AddDrivers (const Handle(BinMDF_ADriverTable)& theDriverTable, const Handle(Message_Messenger)& aMsgDrv);
|
||||
|
||||
Standard_EXPORT static void SetDocumentVersion (const Standard_Integer DocVersion);
|
||||
|
||||
Standard_EXPORT static Standard_Integer DocumentVersion();
|
||||
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
|
@ -237,7 +237,7 @@ Standard_Boolean BinMNaming_NamingDriver::Paste
|
||||
myMessageDriver->Send (aMsg, Message_Warning);
|
||||
}
|
||||
|
||||
if(BinMNaming::DocumentVersion() > 3) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 3) {
|
||||
TCollection_AsciiString entry;
|
||||
ok = theSource >> entry;
|
||||
if(ok) {
|
||||
@ -254,7 +254,8 @@ Standard_Boolean BinMNaming_NamingDriver::Paste
|
||||
aName.ContextLabel(tLab);
|
||||
}
|
||||
}
|
||||
if(BinMNaming::DocumentVersion() > 4 && BinMNaming::DocumentVersion() < 7) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 4 &&
|
||||
theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() < 7) {
|
||||
// Orientation processing - converting from old format
|
||||
Handle(TNaming_NamedShape) aNShape;
|
||||
if(anAtt->Label().FindAttribute(TNaming_NamedShape::GetID(), aNShape)) {
|
||||
@ -273,7 +274,7 @@ Standard_Boolean BinMNaming_NamingDriver::Paste
|
||||
}
|
||||
}
|
||||
}
|
||||
if(BinMNaming::DocumentVersion() > 6) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 6) {
|
||||
ok = theSource >> anIndx;
|
||||
TopAbs_Orientation OrientationToApply(TopAbs_FORWARD);
|
||||
if(ok) {
|
||||
@ -290,10 +291,7 @@ Standard_Boolean BinMNaming_NamingDriver::Paste
|
||||
}
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else if(BinMNaming::DocumentVersion() == -1)
|
||||
cout << "Current DocVersion field is not initialized. " <<endl;
|
||||
else
|
||||
cout << "Current DocVersion = " << BinMNaming::DocumentVersion() <<endl;
|
||||
cout << "Current Document Format Version = " << theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() <<endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
@ -92,7 +92,7 @@ Standard_Boolean BinMXCAFDoc_LocationDriver::Translate(const BinObjMgt_Persisten
|
||||
return Standard_True;
|
||||
}
|
||||
|
||||
Standard_Integer aFileVer = BinMDataStd::DocumentVersion();
|
||||
Standard_Integer aFileVer = theMap.GetHeaderData()->StorageVersion().IntegerValue();
|
||||
if( aFileVer > 5 && myLocations == 0 )
|
||||
{
|
||||
return Standard_False;
|
||||
|
@ -60,7 +60,8 @@ CDM_Document::CDM_Document():
|
||||
myRequestedNameIsDefined (Standard_False),
|
||||
myRequestedPreviousVersionIsDefined(Standard_False),
|
||||
myFileExtensionWasFound (Standard_False),
|
||||
myDescriptionWasFound (Standard_False)
|
||||
myDescriptionWasFound (Standard_False),
|
||||
myStorageFormatVersion (0)
|
||||
{}
|
||||
|
||||
|
||||
@ -1264,3 +1265,22 @@ void CDM_Document::SetReferenceCounter (const Standard_Integer aReferenceCounter
|
||||
{
|
||||
myActualReferenceIdentifier=aReferenceCounter;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : StorageFormatVersion
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Integer CDM_Document::StorageFormatVersion() const
|
||||
{
|
||||
return myStorageFormatVersion;
|
||||
}
|
||||
|
||||
//!
|
||||
//=======================================================================
|
||||
//function : ChangeStorageFormatVersion
|
||||
//purpose : Sets <theVersion> of the format to be used to store the document
|
||||
//=======================================================================
|
||||
void CDM_Document::ChangeStorageFormatVersion(const Standard_Integer theVersion)
|
||||
{
|
||||
myStorageFormatVersion = theVersion;
|
||||
}
|
||||
|
@ -343,6 +343,12 @@ Standard_OStream& operator << (Standard_OStream& anOStream);
|
||||
|
||||
Standard_EXPORT void SetReferenceCounter (const Standard_Integer aReferenceCounter);
|
||||
|
||||
//! Returns version of the format to be used to store the document
|
||||
Standard_EXPORT Standard_Integer StorageFormatVersion() const;
|
||||
|
||||
//! Sets <theVersion> of the format to be used to store the document
|
||||
Standard_EXPORT void ChangeStorageFormatVersion(const Standard_Integer theVersion);
|
||||
|
||||
friend class CDM_Reference;
|
||||
friend class CDM_ReferenceIterator;
|
||||
friend class CDM_Application;
|
||||
@ -359,7 +365,6 @@ protected:
|
||||
|
||||
Standard_Boolean myResourcesAreLoaded;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
|
||||
@ -398,7 +403,7 @@ private:
|
||||
Standard_Boolean myFileExtensionWasFound;
|
||||
Standard_Boolean myDescriptionWasFound;
|
||||
Handle(CDM_Application) myApplication;
|
||||
|
||||
Standard_Integer myStorageFormatVersion;
|
||||
|
||||
};
|
||||
|
||||
|
@ -484,10 +484,12 @@ static Standard_Integer DDocStd_SetStorageVersion (Draw_Interpretor& ,
|
||||
Standard_Integer nb,
|
||||
const char** a)
|
||||
{
|
||||
if (nb == 2)
|
||||
if (nb == 3)
|
||||
{
|
||||
const int version = atoi(a[1]);
|
||||
XmlLDrivers::SetStorageVersion(version);
|
||||
Handle(TDocStd_Document) D;
|
||||
if (!DDocStd::GetDocument(a[1], D)) return 1;
|
||||
const int version = atoi(a[2]);
|
||||
D->ChangeStorageFormatVersion(version);
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
@ -498,11 +500,16 @@ static Standard_Integer DDocStd_SetStorageVersion (Draw_Interpretor& ,
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
static Standard_Integer DDocStd_GetStorageVersion (Draw_Interpretor& di,
|
||||
Standard_Integer ,
|
||||
const char** )
|
||||
{
|
||||
di << XmlLDrivers::StorageVersion() << "\n" ;
|
||||
return 0;
|
||||
Standard_Integer nb,
|
||||
const char** a)
|
||||
{
|
||||
if (nb == 2) {
|
||||
Handle(TDocStd_Document) D;
|
||||
if (!DDocStd::GetDocument(a[1], D)) return 1;
|
||||
di << D->StorageFormatVersion() << "\n";
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
@ -565,9 +572,9 @@ void DDocStd::ApplicationCommands(Draw_Interpretor& theCommands)
|
||||
__FILE__, DDocStd_PrintComments, g);
|
||||
|
||||
theCommands.Add("GetStorageVersion",
|
||||
"GetStorageVersion",
|
||||
"GetStorageVersion Doc",
|
||||
__FILE__, DDocStd_GetStorageVersion, g);
|
||||
theCommands.Add("SetStorageVersion",
|
||||
"SetStorageVersion Version",
|
||||
"SetStorageVersion Doc Version",
|
||||
__FILE__, DDocStd_SetStorageVersion, g);
|
||||
}
|
||||
|
@ -19,10 +19,8 @@
|
||||
#include <TNaming_NamedShape.hxx>
|
||||
#include <XmlDrivers.hxx>
|
||||
#include <XmlDrivers_DocumentRetrievalDriver.hxx>
|
||||
#include <XmlMDataStd.hxx>
|
||||
#include <XmlMDF_ADriver.hxx>
|
||||
#include <XmlMDF_ADriverTable.hxx>
|
||||
#include <XmlMNaming.hxx>
|
||||
#include <XmlMNaming_NamedShapeDriver.hxx>
|
||||
#include <XmlObjMgt_Element.hxx>
|
||||
|
||||
@ -46,17 +44,6 @@ Handle(XmlMDF_ADriverTable) XmlDrivers_DocumentRetrievalDriver::AttributeDrivers
|
||||
return XmlDrivers::AttributeDrivers (theMessageDriver);
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : PropagateDocumentVersion
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
void XmlDrivers_DocumentRetrievalDriver::PropagateDocumentVersion(
|
||||
const Standard_Integer theDocVersion )
|
||||
{
|
||||
XmlMDataStd::SetDocumentVersion(theDocVersion);
|
||||
XmlMNaming::SetDocumentVersion(theDocVersion);
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : ReadShapeSection
|
||||
//purpose : Implementation of ReadShapeSection
|
||||
|
@ -43,10 +43,7 @@ public:
|
||||
|
||||
Standard_EXPORT virtual Handle(XmlMDF_ADriver) ReadShapeSection (const XmlObjMgt_Element& thePDoc, const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE;
|
||||
|
||||
Standard_EXPORT virtual void ShapeSetCleaning (const Handle(XmlMDF_ADriver)& theDriver) Standard_OVERRIDE;
|
||||
|
||||
Standard_EXPORT virtual void PropagateDocumentVersion (const Standard_Integer theDocVersion) Standard_OVERRIDE;
|
||||
|
||||
Standard_EXPORT virtual void ShapeSetCleaning (const Handle(XmlMDF_ADriver)& theDriver) Standard_OVERRIDE;
|
||||
|
||||
|
||||
|
||||
|
@ -132,10 +132,6 @@ int XmlLDrivers::StorageVersion()
|
||||
{
|
||||
return CURRENT_DOCUMENT_VERSION;
|
||||
}
|
||||
void XmlLDrivers::SetStorageVersion(const int version)
|
||||
{
|
||||
CURRENT_DOCUMENT_VERSION = version;
|
||||
}
|
||||
|
||||
// Declare entry point PLUGINFACTORY
|
||||
PLUGIN(XmlLDrivers)
|
||||
|
@ -43,7 +43,6 @@ public:
|
||||
Standard_EXPORT static Handle(XmlMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver);
|
||||
|
||||
Standard_EXPORT static int StorageVersion();
|
||||
Standard_EXPORT static void SetStorageVersion (const int version);
|
||||
};
|
||||
|
||||
#endif // _XmlLDrivers_HeaderFile
|
||||
|
@ -34,7 +34,6 @@
|
||||
#include <UTL.hxx>
|
||||
#include <XmlLDrivers.hxx>
|
||||
#include <XmlLDrivers_DocumentRetrievalDriver.hxx>
|
||||
#include <XmlMDataStd.hxx>
|
||||
#include <XmlMDF.hxx>
|
||||
#include <XmlMDF_ADriver.hxx>
|
||||
#include <XmlMDF_ADriverTable.hxx>
|
||||
@ -280,9 +279,6 @@ void XmlLDrivers_DocumentRetrievalDriver::ReadFromDomDocument
|
||||
}
|
||||
|
||||
if( aCurDocVersion < 2) aCurDocVersion = 2;
|
||||
|
||||
PropagateDocumentVersion(aCurDocVersion);
|
||||
|
||||
Standard_Boolean isRef = Standard_False;
|
||||
for (LDOM_Node aNode = anInfoElem.getFirstChild();
|
||||
aNode != NULL; aNode = aNode.getNextSibling()) {
|
||||
@ -438,6 +434,12 @@ void XmlLDrivers_DocumentRetrievalDriver::ReadFromDomDocument
|
||||
if(!aNSDriver.IsNull())
|
||||
::take_time (0, " +++++ Fin reading Shapes : ", aMsgDriver);
|
||||
|
||||
// 2.1. Keep document format version in RT
|
||||
Handle(Storage_HeaderData) aHeaderData = new Storage_HeaderData();
|
||||
aHeaderData->SetStorageVersion(aCurDocVersion);
|
||||
myRelocTable.Clear();
|
||||
myRelocTable.SetHeaderData(aHeaderData);
|
||||
|
||||
// 5. Read document contents
|
||||
try
|
||||
{
|
||||
@ -477,7 +479,6 @@ Standard_Boolean XmlLDrivers_DocumentRetrievalDriver::MakeDocument
|
||||
{
|
||||
Standard_Boolean aResult = Standard_False;
|
||||
Handle(TDocStd_Document) TDOC = Handle(TDocStd_Document)::DownCast(theTDoc);
|
||||
myRelocTable.Clear();
|
||||
if (!TDOC.IsNull())
|
||||
{
|
||||
Handle(TDF_Data) aTDF = new TDF_Data();
|
||||
@ -533,16 +534,6 @@ static void take_time (const Standard_Integer isReset, const char * aHeader,
|
||||
}
|
||||
#endif
|
||||
|
||||
//=======================================================================
|
||||
//function : PropagateDocumentVersion
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
void XmlLDrivers_DocumentRetrievalDriver::PropagateDocumentVersion(
|
||||
const Standard_Integer theDocVersion )
|
||||
{
|
||||
XmlMDataStd::SetDocumentVersion(theDocVersion);
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : ReadShapeSection
|
||||
//purpose : definition of ReadShapeSection
|
||||
|
@ -73,12 +73,10 @@ protected:
|
||||
Standard_EXPORT virtual Handle(XmlMDF_ADriver) ReadShapeSection (const XmlObjMgt_Element& thePDoc, const Handle(Message_Messenger)& theMsgDriver);
|
||||
|
||||
Standard_EXPORT virtual void ShapeSetCleaning (const Handle(XmlMDF_ADriver)& theDriver);
|
||||
|
||||
Standard_EXPORT virtual void PropagateDocumentVersion (const Standard_Integer theDocVersion);
|
||||
|
||||
Handle(XmlMDF_ADriverTable) myDrivers;
|
||||
XmlObjMgt_RRelocationTable myRelocTable;
|
||||
TCollection_ExtendedString myFileName;
|
||||
XmlObjMgt_RRelocationTable myRelocTable;
|
||||
TCollection_ExtendedString myFileName;
|
||||
|
||||
|
||||
private:
|
||||
|
@ -264,7 +264,18 @@ Standard_Boolean XmlLDrivers_DocumentStorageDriver::WriteToDomDocument (const Ha
|
||||
// anInfoElem.setAttribute("appv", anAppVersion.ToCString());
|
||||
|
||||
// Document version
|
||||
anInfoElem.setAttribute("DocVersion", XmlLDrivers::StorageVersion());
|
||||
Standard_Integer aFormatVersion(XmlLDrivers::StorageVersion());// the last version of the format
|
||||
if (theDocument->StorageFormatVersion() > 0)
|
||||
{
|
||||
if (XmlLDrivers::StorageVersion() < theDocument->StorageFormatVersion())
|
||||
{
|
||||
TCollection_ExtendedString anErrorString("Unacceptable storage format version, the last verson is used");
|
||||
aMessageDriver->Send(anErrorString.ToExtString(), Message_Warning);
|
||||
}
|
||||
else
|
||||
aFormatVersion = theDocument->StorageFormatVersion();
|
||||
}
|
||||
anInfoElem.setAttribute("DocVersion", aFormatVersion);
|
||||
|
||||
// User info with Copyright
|
||||
TColStd_SequenceOfAsciiString aUserInfo;
|
||||
@ -282,6 +293,12 @@ Standard_Boolean XmlLDrivers_DocumentStorageDriver::WriteToDomDocument (const Ha
|
||||
for(i = 1; i <= aRefs.Length(); i++)
|
||||
aUserInfo.Append(aRefs.Value(i));
|
||||
|
||||
// Keep fomat version in Reloc. table
|
||||
Handle(Storage_HeaderData) aHeaderData = theData->HeaderData();
|
||||
aHeaderData->SetStorageVersion(aFormatVersion);
|
||||
myRelocTable.Clear();
|
||||
myRelocTable.SetHeaderData(aHeaderData);
|
||||
|
||||
for (i = 1; i <= aUserInfo.Length(); i++)
|
||||
{
|
||||
XmlObjMgt_Element aUIItem = aDOMDoc.createElement ("iitem");
|
||||
@ -351,7 +368,6 @@ Standard_Integer XmlLDrivers_DocumentStorageDriver::MakeDocument
|
||||
{
|
||||
TCollection_ExtendedString aMessage;
|
||||
Handle(TDocStd_Document) TDOC = Handle(TDocStd_Document)::DownCast(theTDoc);
|
||||
myRelocTable.Clear();
|
||||
if (!TDOC.IsNull())
|
||||
{
|
||||
// myRelocTable.SetDocument (theElement.getOwnerDocument());
|
||||
|
@ -45,7 +45,6 @@
|
||||
#include <XmlMDataStd_VariableDriver.hxx>
|
||||
#include <XmlMDF_ADriverTable.hxx>
|
||||
|
||||
static Standard_Integer myDocumentVersion = -1;
|
||||
//=======================================================================
|
||||
//function : AddDrivers
|
||||
//purpose :
|
||||
@ -81,20 +80,3 @@ void XmlMDataStd::AddDrivers (const Handle(XmlMDF_ADriverTable)& aDriverTable,
|
||||
aDriverTable-> AddDriver (new XmlMDataStd_AsciiStringDriver (anMsgDrv));
|
||||
aDriverTable-> AddDriver (new XmlMDataStd_IntPackedMapDriver (anMsgDrv));
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : SetDocumentVersion
|
||||
//purpose : Sets current document version
|
||||
//=======================================================================
|
||||
void XmlMDataStd::SetDocumentVersion(const Standard_Integer theVersion)
|
||||
{
|
||||
myDocumentVersion = theVersion;
|
||||
}
|
||||
//=======================================================================
|
||||
//function : DocumentVersion
|
||||
//purpose : Retrieved document version
|
||||
//=======================================================================
|
||||
Standard_Integer XmlMDataStd::DocumentVersion()
|
||||
{
|
||||
return myDocumentVersion;
|
||||
}
|
||||
|
@ -60,12 +60,6 @@ public:
|
||||
|
||||
//! Adds the attribute drivers to <aDriverTable>.
|
||||
Standard_EXPORT static void AddDrivers (const Handle(XmlMDF_ADriverTable)& aDriverTable, const Handle(Message_Messenger)& anMsgDrv);
|
||||
|
||||
Standard_EXPORT static void SetDocumentVersion (const Standard_Integer DocVersion);
|
||||
|
||||
Standard_EXPORT static Standard_Integer DocumentVersion();
|
||||
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
|
@ -55,7 +55,7 @@ Handle(TDF_Attribute) XmlMDataStd_ByteArrayDriver::NewEmpty() const
|
||||
//=======================================================================
|
||||
Standard_Boolean XmlMDataStd_ByteArrayDriver::Paste(const XmlObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
XmlObjMgt_RRelocationTable& ) const
|
||||
XmlObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aFirstInd, aLastInd, aValue;
|
||||
const XmlObjMgt_Element& anElement = theSource;
|
||||
@ -129,7 +129,7 @@ Standard_Boolean XmlMDataStd_ByteArrayDriver::Paste(const XmlObjMgt_Persistent&
|
||||
|
||||
Standard_Boolean aDelta(Standard_False);
|
||||
|
||||
if(XmlMDataStd::DocumentVersion() > 2) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 2) {
|
||||
Standard_Integer aDeltaValue;
|
||||
if (!anElement.getAttribute(::IsDeltaOn()).GetInteger(aDeltaValue))
|
||||
{
|
||||
@ -144,8 +144,7 @@ Standard_Boolean XmlMDataStd_ByteArrayDriver::Paste(const XmlObjMgt_Persistent&
|
||||
aDelta = aDeltaValue != 0;
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else if(XmlMDataStd::DocumentVersion() == -1)
|
||||
cout << "Current DocVersion field is not initialized. " <<endl;
|
||||
cout << "Current Document Format Version = " << theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() <<endl;
|
||||
#endif
|
||||
aByteArray->SetDelta(aDelta);
|
||||
|
||||
|
@ -76,7 +76,7 @@ Handle(TDF_Attribute) XmlMDataStd_ExtStringArrayDriver::NewEmpty() const
|
||||
Standard_Boolean XmlMDataStd_ExtStringArrayDriver::Paste
|
||||
(const XmlObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
XmlObjMgt_RRelocationTable& ) const
|
||||
XmlObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aFirstInd, aLastInd, ind;
|
||||
TCollection_ExtendedString aValue;
|
||||
@ -195,7 +195,7 @@ Standard_Boolean XmlMDataStd_ExtStringArrayDriver::Paste
|
||||
// Read delta-flag.
|
||||
Standard_Boolean aDelta(Standard_False);
|
||||
|
||||
if(XmlMDataStd::DocumentVersion() > 2) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 2) {
|
||||
Standard_Integer aDeltaValue;
|
||||
if (!anElement.getAttribute(::IsDeltaOn()).GetInteger(aDeltaValue))
|
||||
{
|
||||
@ -209,10 +209,7 @@ Standard_Boolean XmlMDataStd_ExtStringArrayDriver::Paste
|
||||
else
|
||||
aDelta = aDeltaValue != 0;
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else if(XmlMDataStd::DocumentVersion() == -1)
|
||||
cout << "Current DocVersion field is not initialized. " <<endl;
|
||||
#endif
|
||||
|
||||
aExtStringArray->SetDelta(aDelta);
|
||||
|
||||
return Standard_True;
|
||||
@ -224,7 +221,7 @@ Standard_Boolean XmlMDataStd_ExtStringArrayDriver::Paste
|
||||
//=======================================================================
|
||||
void XmlMDataStd_ExtStringArrayDriver::Paste (const Handle(TDF_Attribute)& theSource,
|
||||
XmlObjMgt_Persistent& theTarget,
|
||||
XmlObjMgt_SRelocationTable& ) const
|
||||
XmlObjMgt_SRelocationTable& theRelocTable) const
|
||||
{
|
||||
Handle(TDataStd_ExtStringArray) aExtStringArray =
|
||||
Handle(TDataStd_ExtStringArray)::DownCast(theSource);
|
||||
@ -243,7 +240,7 @@ void XmlMDataStd_ExtStringArrayDriver::Paste (const Handle(TDF_Attribute)& theSo
|
||||
// So, if the user wants to save the document under the 7th or earlier versions,
|
||||
// don't apply this improvement.
|
||||
Standard_Character c = '-';
|
||||
if (XmlLDrivers::StorageVersion() > 7)
|
||||
if (theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 7)
|
||||
{
|
||||
// Preferrable symbols for the separator: - _ . : ^ ~
|
||||
// Don't use a space as a separator: XML low-level parser sometimes "eats" it.
|
||||
|
@ -59,7 +59,7 @@ Handle(TDF_Attribute) XmlMDataStd_IntPackedMapDriver::NewEmpty () const
|
||||
Standard_Boolean XmlMDataStd_IntPackedMapDriver::Paste
|
||||
(const XmlObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
XmlObjMgt_RRelocationTable& ) const
|
||||
XmlObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Handle(TDataStd_IntPackedMap) aPackedMap =
|
||||
Handle(TDataStd_IntPackedMap)::DownCast(theTarget);
|
||||
@ -106,7 +106,7 @@ Standard_Boolean XmlMDataStd_IntPackedMapDriver::Paste
|
||||
if(Ok) {
|
||||
Standard_Boolean aDelta(Standard_False);
|
||||
|
||||
if(XmlMDataStd::DocumentVersion() > 2) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 2) {
|
||||
Standard_Integer aDeltaValue;
|
||||
if (!anElement.getAttribute(::IsDeltaOn()).GetInteger(aDeltaValue))
|
||||
{
|
||||
@ -120,10 +120,6 @@ Standard_Boolean XmlMDataStd_IntPackedMapDriver::Paste
|
||||
else
|
||||
aDelta = aDeltaValue != 0;
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else if(XmlMDataStd::DocumentVersion() == -1)
|
||||
cout << "Current DocVersion field is not initialized. " <<endl;
|
||||
#endif
|
||||
aPackedMap->SetDelta(aDelta);
|
||||
return Standard_True;
|
||||
}
|
||||
|
@ -57,7 +57,7 @@ Handle(TDF_Attribute) XmlMDataStd_IntegerArrayDriver::NewEmpty() const
|
||||
Standard_Boolean XmlMDataStd_IntegerArrayDriver::Paste
|
||||
(const XmlObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
XmlObjMgt_RRelocationTable& ) const
|
||||
XmlObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
Standard_Integer aFirstInd, aLastInd, aValue, ind;
|
||||
const XmlObjMgt_Element& anElement = theSource;
|
||||
@ -129,7 +129,7 @@ Standard_Boolean XmlMDataStd_IntegerArrayDriver::Paste
|
||||
}
|
||||
Standard_Boolean aDelta(Standard_False);
|
||||
|
||||
if(XmlMDataStd::DocumentVersion() > 2) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 2) {
|
||||
Standard_Integer aDeltaValue;
|
||||
if (!anElement.getAttribute(::IsDeltaOn()).GetInteger(aDeltaValue))
|
||||
{
|
||||
@ -143,10 +143,7 @@ Standard_Boolean XmlMDataStd_IntegerArrayDriver::Paste
|
||||
else
|
||||
aDelta = aDeltaValue != 0;
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else if(XmlMDataStd::DocumentVersion() == -1)
|
||||
cout << "Current DocVersion field is not initialized. " <<endl;
|
||||
#endif
|
||||
|
||||
anIntArray->SetDelta(aDelta);
|
||||
|
||||
return Standard_True;
|
||||
|
@ -60,7 +60,7 @@ Handle(TDF_Attribute) XmlMDataStd_RealArrayDriver::NewEmpty() const
|
||||
Standard_Boolean XmlMDataStd_RealArrayDriver::Paste
|
||||
(const XmlObjMgt_Persistent& theSource,
|
||||
const Handle(TDF_Attribute)& theTarget,
|
||||
XmlObjMgt_RRelocationTable& ) const
|
||||
XmlObjMgt_RRelocationTable& theRelocTable) const
|
||||
{
|
||||
|
||||
Handle(TDataStd_RealArray) aRealArray = Handle(TDataStd_RealArray)::DownCast(theTarget);
|
||||
@ -136,7 +136,7 @@ Standard_Boolean XmlMDataStd_RealArrayDriver::Paste
|
||||
}
|
||||
Standard_Boolean aDelta(Standard_False);
|
||||
|
||||
if(XmlMDataStd::DocumentVersion() > 2) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 2) {
|
||||
Standard_Integer aDeltaValue;
|
||||
if (!anElement.getAttribute(::IsDeltaOn()).GetInteger(aDeltaValue))
|
||||
{
|
||||
@ -150,10 +150,6 @@ Standard_Boolean XmlMDataStd_RealArrayDriver::Paste
|
||||
else
|
||||
aDelta = aDeltaValue != 0;
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else if(XmlMDataStd::DocumentVersion() == -1)
|
||||
cout << "Current DocVersion field is not initialized. " <<endl;
|
||||
#endif
|
||||
aRealArray->SetDelta(aDelta);
|
||||
|
||||
return Standard_True;
|
||||
|
@ -118,7 +118,7 @@ void XmlMDataStd_TreeNodeDriver::Paste
|
||||
// tree id
|
||||
// A not default ID is skipped for storage version 8 and newer.
|
||||
if (aS->ID() != TDataStd_TreeNode::GetDefaultTreeID() ||
|
||||
XmlLDrivers::StorageVersion() < 8)
|
||||
theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() < 8)
|
||||
{
|
||||
Standard_Character aGuidStr [40];
|
||||
Standard_PCharacter pGuidStr=aGuidStr;
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include <XmlMNaming_NamedShapeDriver.hxx>
|
||||
#include <XmlMNaming_NamingDriver.hxx>
|
||||
|
||||
static Standard_Integer myDocumentVersion = -1;
|
||||
//=======================================================================
|
||||
//function : AddStorageDrivers
|
||||
//purpose :
|
||||
@ -31,20 +30,3 @@ void XmlMNaming::AddDrivers (const Handle(XmlMDF_ADriverTable)& aDriverTable,
|
||||
aDriverTable->AddDriver (new XmlMNaming_NamedShapeDriver(aMessageDriver));
|
||||
aDriverTable->AddDriver (new XmlMNaming_NamingDriver(aMessageDriver));
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : SetDocumentVersion
|
||||
//purpose : Sets current document version
|
||||
//=======================================================================
|
||||
void XmlMNaming::SetDocumentVersion(const Standard_Integer theVersion)
|
||||
{
|
||||
myDocumentVersion = theVersion;
|
||||
}
|
||||
//=======================================================================
|
||||
//function : DocumentVersion
|
||||
//purpose : Retrieved document version
|
||||
//=======================================================================
|
||||
Standard_Integer XmlMNaming::DocumentVersion()
|
||||
{
|
||||
return myDocumentVersion;
|
||||
}
|
||||
|
@ -38,12 +38,6 @@ public:
|
||||
|
||||
//! Adds the attribute drivers to <aDriverTable>.
|
||||
Standard_EXPORT static void AddDrivers (const Handle(XmlMDF_ADriverTable)& aDriverTable, const Handle(Message_Messenger)& aMessageDriver);
|
||||
|
||||
Standard_EXPORT static void SetDocumentVersion (const Standard_Integer DocVersion);
|
||||
|
||||
Standard_EXPORT static Standard_Integer DocumentVersion();
|
||||
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
|
@ -23,7 +23,6 @@
|
||||
#include <TNaming_Name.hxx>
|
||||
#include <TNaming_NamedShape.hxx>
|
||||
#include <TNaming_Naming.hxx>
|
||||
#include <XmlMNaming.hxx>
|
||||
#include <XmlMNaming_NamingDriver.hxx>
|
||||
#include <XmlObjMgt.hxx>
|
||||
#include <XmlObjMgt_Persistent.hxx>
|
||||
@ -175,7 +174,7 @@ Standard_Boolean XmlMNaming_NamingDriver::Paste
|
||||
}
|
||||
aNgName.Index(aNb);
|
||||
//
|
||||
if(XmlMNaming::DocumentVersion() > 3) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 3) {
|
||||
XmlObjMgt_DOMString aDomEntry = anElem.getAttribute(::ContextLabelString());
|
||||
if (aDomEntry != NULL)
|
||||
{
|
||||
@ -204,7 +203,8 @@ Standard_Boolean XmlMNaming_NamingDriver::Paste
|
||||
cout << "Retrieving Context Label is NULL" <<endl;
|
||||
#endif
|
||||
|
||||
if(XmlMNaming::DocumentVersion() > 4 && XmlMNaming::DocumentVersion() < 7) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 4 &&
|
||||
theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() < 7) {
|
||||
// Orientation processing - converting from old format
|
||||
Handle(TNaming_NamedShape) aNS;
|
||||
if (aNg->Label().FindAttribute(TNaming_NamedShape::GetID(), aNS)) {
|
||||
@ -223,7 +223,7 @@ Standard_Boolean XmlMNaming_NamingDriver::Paste
|
||||
}
|
||||
}
|
||||
}
|
||||
if(XmlMNaming::DocumentVersion() > 6) {
|
||||
if(theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() > 6) {
|
||||
aDOMStr = anElem.getAttribute(::OrientString());
|
||||
if (!aDOMStr.GetInteger(aNb))
|
||||
{
|
||||
@ -238,10 +238,8 @@ Standard_Boolean XmlMNaming_NamingDriver::Paste
|
||||
// or. end
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else if(XmlMNaming::DocumentVersion() == -1)
|
||||
cout << "Current DocVersion field is not initialized. " <<endl;
|
||||
else
|
||||
cout << "Current DocVersion = " << XmlMNaming::DocumentVersion() <<endl;
|
||||
cout << "Current Document Format Version = " << theRelocTable.GetHeaderData()->StorageVersion().IntegerValue() <<endl;
|
||||
#endif
|
||||
return Standard_True;
|
||||
}
|
||||
|
@ -148,7 +148,7 @@ Standard_Boolean XmlMXCAFDoc_LocationDriver::Translate
|
||||
if (aLocElem == NULL)
|
||||
return Standard_False;
|
||||
|
||||
Standard_Integer aFileVer = XmlMNaming::DocumentVersion();
|
||||
Standard_Integer aFileVer = theMap.GetHeaderData()->StorageVersion().IntegerValue();
|
||||
if( aFileVer > 5 && myLocations == 0 )
|
||||
{
|
||||
return Standard_False;
|
||||
|
@ -11,5 +11,7 @@ XmlObjMgt_GP.hxx
|
||||
XmlObjMgt_Persistent.cxx
|
||||
XmlObjMgt_Persistent.hxx
|
||||
XmlObjMgt_Persistent.lxx
|
||||
XmlObjMgt_RRelocationTable.cxx
|
||||
XmlObjMgt_RRelocationTable.hxx
|
||||
XmlObjMgt_SRelocationTable.cxx
|
||||
XmlObjMgt_SRelocationTable.hxx
|
||||
|
49
src/XmlObjMgt/XmlObjMgt_RRelocationTable.cxx
Normal file
49
src/XmlObjMgt/XmlObjMgt_RRelocationTable.cxx
Normal file
@ -0,0 +1,49 @@
|
||||
// Created on: 2018-10-02
|
||||
// Created by: Sergey ZARITCHNY
|
||||
// Copyright (c) 2018 OPEN CASCADE SAS
|
||||
//
|
||||
// This file is part of Open CASCADE Technology software library.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or modify it under
|
||||
// the terms of the GNU Lesser General Public License version 2.1 as published
|
||||
// by the Free Software Foundation, with special exception defined in the file
|
||||
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
||||
// distribution for complete text of the license and disclaimer of any warranty.
|
||||
//
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
#include <XmlObjMgt_RRelocationTable.hxx>
|
||||
|
||||
//=======================================================================
|
||||
//function : GetHeaderData
|
||||
//purpose : getter for the file header data
|
||||
//=======================================================================
|
||||
|
||||
const Handle(Storage_HeaderData)& XmlObjMgt_RRelocationTable::GetHeaderData() const
|
||||
{
|
||||
return myHeaderData;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : SetHeaderData
|
||||
//purpose : setter for the file header data
|
||||
//=======================================================================
|
||||
|
||||
void XmlObjMgt_RRelocationTable::SetHeaderData(
|
||||
const Handle(Storage_HeaderData)& theHeaderData)
|
||||
{
|
||||
myHeaderData = theHeaderData;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : Clear
|
||||
//purpose : The relocation table is cleared before/after reading in a document.
|
||||
// : In this case the reference to the file header data should also be
|
||||
// : cleared, because it is specific to the document.
|
||||
//=======================================================================
|
||||
void XmlObjMgt_RRelocationTable::Clear(const Standard_Boolean doReleaseMemory)
|
||||
{
|
||||
myHeaderData.Nullify();
|
||||
TColStd_DataMapOfIntegerTransient::Clear(doReleaseMemory);
|
||||
}
|
@ -18,7 +18,36 @@
|
||||
|
||||
#include <TColStd_DataMapOfIntegerTransient.hxx>
|
||||
|
||||
typedef TColStd_DataMapOfIntegerTransient XmlObjMgt_RRelocationTable;
|
||||
#include <Storage_HeaderData.hxx>
|
||||
|
||||
//! Retrieval relocation table is modeled as a child class of
|
||||
//! TColStd_DataMapOfIntegerTransient that stores a handle to the file
|
||||
//! header section. With that attribute drivers have access to the file header
|
||||
//! section.
|
||||
class XmlObjMgt_RRelocationTable : public TColStd_DataMapOfIntegerTransient
|
||||
{
|
||||
public:
|
||||
|
||||
//! Returns a handle to the header data of the file that is begin read
|
||||
Standard_EXPORT const Handle(Storage_HeaderData)& GetHeaderData() const;
|
||||
|
||||
//! Sets the storage header data.
|
||||
//!
|
||||
//! @param theHeaderData header data of the file that is begin read
|
||||
Standard_EXPORT void SetHeaderData(
|
||||
const Handle(Storage_HeaderData)& theHeaderData);
|
||||
|
||||
Standard_EXPORT void Clear(const Standard_Boolean doReleaseMemory = Standard_True);
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
|
||||
private:
|
||||
|
||||
Handle(Storage_HeaderData) myHeaderData;
|
||||
};
|
||||
|
||||
#endif // _XmlObjMgt_RRelocationTable_HeaderFile
|
||||
|
49
src/XmlObjMgt/XmlObjMgt_SRelocationTable.cxx
Normal file
49
src/XmlObjMgt/XmlObjMgt_SRelocationTable.cxx
Normal file
@ -0,0 +1,49 @@
|
||||
// Created on: 2018-10-04
|
||||
// Created by: Sergey ZARITCHNY
|
||||
// Copyright (c) 2018 OPEN CASCADE SAS
|
||||
//
|
||||
// This file is part of Open CASCADE Technology software library.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or modify it under
|
||||
// the terms of the GNU Lesser General Public License version 2.1 as published
|
||||
// by the Free Software Foundation, with special exception defined in the file
|
||||
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
||||
// distribution for complete text of the license and disclaimer of any warranty.
|
||||
//
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
#include <XmlObjMgt_SRelocationTable.hxx>
|
||||
|
||||
//=======================================================================
|
||||
//function : GetHeaderData
|
||||
//purpose : getter for the file header data
|
||||
//=======================================================================
|
||||
|
||||
const Handle(Storage_HeaderData)& XmlObjMgt_SRelocationTable::GetHeaderData() const
|
||||
{
|
||||
return myHeaderData;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : SetHeaderData
|
||||
//purpose : setter for the file header data
|
||||
//=======================================================================
|
||||
|
||||
void XmlObjMgt_SRelocationTable::SetHeaderData(
|
||||
const Handle(Storage_HeaderData)& theHeaderData)
|
||||
{
|
||||
myHeaderData = theHeaderData;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : Clear
|
||||
//purpose : The relocation table is cleared before/after reading in a document.
|
||||
// : In this case the reference to the file header data should also be
|
||||
// : cleared, because it is specific to the document.
|
||||
//=======================================================================
|
||||
void XmlObjMgt_SRelocationTable::Clear(const Standard_Boolean doReleaseMemory)
|
||||
{
|
||||
myHeaderData.Nullify();
|
||||
TColStd_IndexedMapOfTransient::Clear(doReleaseMemory);
|
||||
}
|
@ -15,10 +15,37 @@
|
||||
|
||||
#ifndef _XmlObjMgt_SRelocationTable_HeaderFile
|
||||
#define _XmlObjMgt_SRelocationTable_HeaderFile
|
||||
|
||||
#include <Standard_Handle.hxx>
|
||||
#include <TColStd_IndexedMapOfTransient.hxx>
|
||||
#include <Storage_HeaderData.hxx>
|
||||
|
||||
typedef TColStd_IndexedMapOfTransient XmlObjMgt_SRelocationTable;
|
||||
//! Stored relocation table is modeled as a child class of
|
||||
//! TColStd_DataMapOfIntegerTransient that stores a handle to the file
|
||||
//! header section. With that attribute drivers have access to the file header
|
||||
//! section.
|
||||
class XmlObjMgt_SRelocationTable : public TColStd_IndexedMapOfTransient
|
||||
{
|
||||
public:
|
||||
|
||||
//! Returns a handle to the header data of the file that is begin read
|
||||
Standard_EXPORT const Handle(Storage_HeaderData)& GetHeaderData() const;
|
||||
|
||||
//! Sets the storage header data.
|
||||
//!
|
||||
//! @param theHeaderData header data of the file that is begin read
|
||||
Standard_EXPORT void SetHeaderData(
|
||||
const Handle(Storage_HeaderData)& theHeaderData);
|
||||
|
||||
Standard_EXPORT void Clear(const Standard_Boolean doReleaseMemory = Standard_True);
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
|
||||
private:
|
||||
|
||||
Handle(Storage_HeaderData) myHeaderData;
|
||||
};
|
||||
|
||||
#endif // _XmlObjMgt_SRelocationTable_HeaderFile
|
||||
|
@ -15,13 +15,13 @@ AISSet D 0:1 NS
|
||||
|
||||
SaveAs D ${FileV9}
|
||||
|
||||
SetStorageVersion 7
|
||||
SetStorageVersion D 7
|
||||
SaveAs D ${FileV7}
|
||||
|
||||
Close D
|
||||
|
||||
puts "Testing for XML file format in new version document"
|
||||
SetStorageVersion 9
|
||||
|
||||
Open ${FileV9} D9
|
||||
|
||||
set info [Attributes D9 0:1]
|
||||
|
Loading…
x
Reference in New Issue
Block a user