1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-06 18:26:22 +03:00
occt/src/TDF/TDF_Attribute.cxx
tiv 0423218095 0030895: Coding Rules - specify std namespace explicitly for std::cout and streams
"endl" manipulator for Message_Messenger is renamed to "Message_EndLine".

The following entities from std namespace are now used
with std:: explicitly specified (from Standard_Stream.hxx):
std::istream,std::ostream,std::ofstream,std::ifstream,std::fstream,
std::filebuf,std::streambuf,std::streampos,std::ios,std::cout,std::cerr,
std::cin,std::endl,std::ends,std::flush,std::setw,std::setprecision,
std::hex,std::dec.
2019-08-16 12:16:38 +03:00

408 lines
13 KiB
C++

// Created by: DAUTRY Philippe
// Copyright (c) 1997-1999 Matra Datavision
// Copyright (c) 1999-2014 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.
// ------------------
// Version: 0.0
//Version Date Purpose
// 0.0 Feb 7 1997 Creation
#include <Standard_DomainError.hxx>
#include <Standard_GUID.hxx>
#include <Standard_ImmutableObject.hxx>
#include <Standard_Type.hxx>
#include <TCollection_AsciiString.hxx>
#include <TDF_Attribute.hxx>
#include <TDF_AttributeDelta.hxx>
#include <TDF_AttributeIterator.hxx>
#include <TDF_Data.hxx>
#include <TDF_DataSet.hxx>
#include <TDF_DefaultDeltaOnModification.hxx>
#include <TDF_DefaultDeltaOnRemoval.hxx>
#include <TDF_DeltaOnAddition.hxx>
#include <TDF_DeltaOnForget.hxx>
#include <TDF_DeltaOnModification.hxx>
#include <TDF_DeltaOnRemoval.hxx>
#include <TDF_DeltaOnResume.hxx>
#include <TDF_IDFilter.hxx>
#include <TDF_Label.hxx>
#include <TDF_LabelNode.hxx>
#include <TDF_RelocationTable.hxx>
#include <TDF_Tool.hxx>
IMPLEMENT_STANDARD_RTTIEXT(TDF_Attribute,Standard_Transient)
#undef TDF_DATA_COMMIT_OPTIMIZED
//=======================================================================
//function : TDF_Attribute
//purpose : Initializes fields.
//=======================================================================
TDF_Attribute::TDF_Attribute() :
myLabelNode(NULL),
myTransaction(0),
mySavedTransaction(0),
myFlags(1)
{}
//=======================================================================
//function : Label
//purpose :
//=======================================================================
const TDF_Label TDF_Attribute::Label() const
{ return TDF_Label(myLabelNode); }
//=======================================================================
//function : Find
//purpose :
//=======================================================================
Standard_Boolean TDF_Attribute::FindAttribute (const Standard_GUID& anID,
Handle(TDF_Attribute)& anAttribute) const
{
return Label().FindAttribute(anID,anAttribute);
}
//=======================================================================
//function : IsAttribute
//purpose :
//=======================================================================
Standard_Boolean TDF_Attribute::IsAttribute (const Standard_GUID& anID) const
{
return Label().IsAttribute(anID);
}
//=======================================================================
//function : AddAttribute
//purpose :
//=======================================================================
void TDF_Attribute::AddAttribute (const Handle(TDF_Attribute)& otherAttribute) const
{ Label().AddAttribute (otherAttribute); }
//=======================================================================
//function : ForgetAttribute
//purpose :
//=======================================================================
Standard_Boolean TDF_Attribute::ForgetAttribute (const Standard_GUID& anID) const
{ return Label().ForgetAttribute (anID); }
//=======================================================================
//function : ForgetAllAttributes
//purpose :
//=======================================================================
void TDF_Attribute::ForgetAllAttributes (const Standard_Boolean clearChildren) const
{ Label().ForgetAllAttributes (clearChildren); }
//=======================================================================
//function : Forget
//purpose :
//=======================================================================
void TDF_Attribute::Forget (const Standard_Integer aTransaction)
{
mySavedTransaction = myTransaction;
myTransaction = aTransaction;
myFlags = (myFlags | TDF_AttributeForgottenMsk);
Validate(Standard_False);
}
//=======================================================================
//function : Resume
//purpose :
//=======================================================================
void TDF_Attribute::Resume()
{
myTransaction = mySavedTransaction;
mySavedTransaction = -1; // To say "just resumed"!
myFlags = (myFlags & ~TDF_AttributeForgottenMsk);
Validate(Standard_True);
}
//=======================================================================
//function : UntilTransaction
//purpose :
//=======================================================================
Standard_Integer TDF_Attribute::UntilTransaction() const
{
if (IsForgotten()) return myTransaction;
else if (IsBackuped()) return myNext->myTransaction - 1;
else if (IsValid()) return myLabelNode->Data()->Transaction();
throw Standard_DomainError("The attribute structure is wrong.");
}
//=======================================================================
//function : AfterAddition
//purpose :
//=======================================================================
void TDF_Attribute::AfterAddition()
{}
//=======================================================================
//function : BeforeRemoval
//purpose :
//=======================================================================
void TDF_Attribute::BeforeRemoval()
{}
//=======================================================================
//function : BeforeForget
//purpose :
//=======================================================================
void TDF_Attribute::BeforeForget()
{}
//=======================================================================
//function : AfterResume
//purpose :
//=======================================================================
void TDF_Attribute::AfterResume()
{}
//=======================================================================
//function : BeforeUndo
//purpose : Before application of a TDF_Delta.
//=======================================================================
Standard_Boolean TDF_Attribute::BeforeUndo
(const Handle(TDF_AttributeDelta)& /*anAttDelta*/,
const Standard_Boolean /*forceIt*/)
{ return Standard_True; }
//=======================================================================
//function : AfterUndo
//purpose : After application of a TDF_Delta.
//=======================================================================
Standard_Boolean TDF_Attribute::AfterUndo
(const Handle(TDF_AttributeDelta)& /*anAttDelta*/,
const Standard_Boolean /*forceIt*/)
{ return Standard_True; }
//=======================================================================
//function : AfterRetrieval
//purpose :
//=======================================================================
Standard_Boolean TDF_Attribute::AfterRetrieval
(const Standard_Boolean /*forceIt*/)
{ return Standard_True; }
//=======================================================================
//function : BeforeCommitTransaction
//purpose :
//=======================================================================
void TDF_Attribute::BeforeCommitTransaction() {}
//=======================================================================
//function : Backup
//purpose : Backups the attribute.
//=======================================================================
void TDF_Attribute::Backup()
{
// The attribute must be valid and attached to a label.
if (IsValid() && (myLabelNode != NULL)) {
Handle(TDF_Data) aData = myLabelNode->Data();
// check that modification is allowed
if ( !aData->IsModificationAllowed() ) {
TCollection_AsciiString aMess;
aMess = "Attribute \"";
aMess += DynamicType()->Name();
aMess += "\" is changed outside transaction";
throw Standard_ImmutableObject(aMess.ToCString());
}
const Standard_Integer currentTransaction =
aData->Transaction();
if (myTransaction < currentTransaction) {//"!=" is less secure.
Handle(TDF_Attribute) backup = BackupCopy();
#ifdef TDF_DATA_COMMIT_OPTIMIZED
myLabelNode->AttributesModified(Standard_True);
#endif
backup->myLabelNode = myLabelNode;
backup->myNext = this; // Back reference;
backup->myBackup = myBackup;
backup->myTransaction = myTransaction;
backup->Backup(Standard_True);
myBackup = backup;
myTransaction = currentTransaction;
}
}
}
//=======================================================================
//function : BackupCopy
//purpose : Standard implementation of BackupCopy.
//=======================================================================
Handle(TDF_Attribute) TDF_Attribute::BackupCopy() const
{
Handle(TDF_Attribute) copy = NewEmpty(); copy->Restore(this);
return copy;
}
//=======================================================================
//function : RemoveBackup
//purpose :
//=======================================================================
void TDF_Attribute::RemoveBackup()
{
#ifdef OCCT_DEBUG
if (myBackup.IsNull())
throw Standard_DomainError("Impossible to remove a nonexistent backup.");
#endif
myBackup->BeforeRemoval();
myBackup->myLabelNode = NULL; // Absolutly necessary!
myBackup->myNext.Nullify(); // Absolutly necessary!
myBackup = myBackup->myBackup;
if (!myBackup.IsNull()) myBackup->myNext = this; // New back reference.
}
//=======================================================================
//function : References
//purpose : Adds the referenced attributes or labels.
//=======================================================================
void TDF_Attribute::References(const Handle(TDF_DataSet)& /*aDataSet*/) const
{}
//=======================================================================
//function : DeltaOnAddition
//purpose : Creates such a delta.
//=======================================================================
Handle(TDF_DeltaOnAddition) TDF_Attribute::DeltaOnAddition() const
{ return new TDF_DeltaOnAddition(this); }
//=======================================================================
//function : DeltaOnForget
//purpose : Creates such a delta.
//=======================================================================
Handle(TDF_DeltaOnForget) TDF_Attribute::DeltaOnForget() const
{ return new TDF_DeltaOnForget(this); }
//=======================================================================
//function : DeltaOnResume
//purpose : Creates such a delta.
//=======================================================================
Handle(TDF_DeltaOnResume) TDF_Attribute::DeltaOnResume() const
{ return new TDF_DeltaOnResume(this); }
//=======================================================================
//function : DeltaOnModification
//purpose : Creates such a delta.
//=======================================================================
Handle(TDF_DeltaOnModification) TDF_Attribute::DeltaOnModification
(const Handle(TDF_Attribute)& anOldAttribute) const
{ return new TDF_DefaultDeltaOnModification(anOldAttribute); }
//=======================================================================
//function : DeltaOnModification
//purpose : Applies such a delta.
//=======================================================================
void TDF_Attribute::DeltaOnModification
(const Handle(TDF_DeltaOnModification)& aDelta)
{
Backup();
Restore(aDelta->Attribute());
}
//=======================================================================
//function : DeltaOnRemoval
//purpose : Creates such a delta.
//=======================================================================
Handle(TDF_DeltaOnRemoval) TDF_Attribute::DeltaOnRemoval() const
{ return new TDF_DefaultDeltaOnRemoval(this); } // myBackup
//=======================================================================
//function : Dump
//purpose : This method is equivalent to operator <<
//=======================================================================
Standard_OStream& TDF_Attribute::Dump(Standard_OStream& anOS) const
{
anOS<<"\t"<<DynamicType()->Name()<<"\tTrans. "<<myTransaction<<";";
if (IsValid()) anOS<<" Valid";
if (IsBackuped()) anOS<<" Backuped";
if (IsForgotten()) anOS<<" Forgotten";
char toto[45];
Standard_PCharacter pStr;
//
pStr=toto;
ID().ToCString(pStr);
anOS<<";\tID = "<<toto<<std::endl;
return anOS;
}
//=======================================================================
//function :ExtendedDump
//purpose :
//=======================================================================
void TDF_Attribute::ExtendedDump
(Standard_OStream& anOS,
const TDF_IDFilter& /*aFilter*/,
TDF_AttributeIndexedMap& /*aMap*/) const
{ Dump(anOS); }