// 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. #ifndef _TDF_RelocationTable_HeaderFile #define _TDF_RelocationTable_HeaderFile #include "Standard.hxx" #include "TDF_LabelDataMap.hxx" #include "TDF_AttributeDataMap.hxx" #include "TColStd_IndexedDataMapOfTransientTransient.hxx" #include "Standard_Transient.hxx" #include "TDF_LabelMap.hxx" #include "TDF_AttributeMap.hxx" #include "Standard_OStream.hxx" class TDF_Label; class TDF_Attribute; class TDF_RelocationTable; DEFINE_STANDARD_HANDLE(TDF_RelocationTable, Standard_Transient) //! This is a relocation dictionary between source //! and target labels, attributes or any //! transient(useful for copy or paste actions). //! Note that one target value may be the //! relocation value of more than one source object. //! //! Common behaviour: it returns true and the found //! relocation value as target object; false //! otherwise. //! //! Look at SelfRelocate method for more explanation //! about self relocation behavior of this class. class TDF_RelocationTable : public Standard_Transient { public: //! Creates an relocation table. says //! if a value without explicit relocation is its own //! relocation. Standard_EXPORT TDF_RelocationTable(const Standard_Boolean selfRelocate = Standard_False); //! Sets to . //! //! This flag affects the HasRelocation method //! behavior like this: //! //! == False: //! //! If no relocation object is found in the map, a //! null object is returned //! //! == True: //! //! If no relocation object is found in the map, the //! method assumes the source object is relocation //! value; so the source object is returned as target //! object. Standard_EXPORT void SelfRelocate(const Standard_Boolean selfRelocate); //! Returns . Standard_EXPORT Standard_Boolean SelfRelocate() const; Standard_EXPORT void AfterRelocate(const Standard_Boolean afterRelocate); //! Returns . Standard_EXPORT Standard_Boolean AfterRelocate() const; //! Sets the relocation value of to //! . Standard_EXPORT void SetRelocation(const TDF_Label& aSourceLabel, const TDF_Label& aTargetLabel); //! Finds the relocation value of //! and returns it into . //! //! (See above SelfRelocate method for more //! explanation about the method behavior) Standard_EXPORT Standard_Boolean HasRelocation(const TDF_Label& aSourceLabel, TDF_Label& aTargetLabel) const; //! Sets the relocation value of to //! . Standard_EXPORT void SetRelocation(const Handle(TDF_Attribute)& aSourceAttribute, const Handle(TDF_Attribute)& aTargetAttribute); //! Finds the relocation value of //! and returns it into . //! //! (See above SelfRelocate method for more //! explanation about the method behavior) Standard_EXPORT Standard_Boolean HasRelocation(const Handle(TDF_Attribute)& aSourceAttribute, Handle(TDF_Attribute)& aTargetAttribute) const; //! Safe variant for arbitrary type of argument template Standard_Boolean HasRelocation(const Handle(TDF_Attribute)& theSource, Handle(T)& theTarget) const { Handle(TDF_Attribute) anAttr = theTarget; return HasRelocation(theSource, anAttr) && !(theTarget = Handle(T)::DownCast(anAttr)).IsNull(); } //! Sets the relocation value of to //! . Standard_EXPORT void SetTransientRelocation(const Handle(Standard_Transient)& aSourceTransient, const Handle(Standard_Transient)& aTargetTransient); //! Finds the relocation value of //! and returns it into . //! //! (See above SelfRelocate method for more //! explanation about the method behavior) Standard_EXPORT Standard_Boolean HasTransientRelocation(const Handle(Standard_Transient)& aSourceTransient, Handle(Standard_Transient)& aTargetTransient) const; //! Clears the relocation dictionary, but lets the //! self relocation flag to its current value. Standard_EXPORT void Clear(); //! Fills with target relocation //! labels. is not cleared before use. Standard_EXPORT void TargetLabelMap(TDF_LabelMap& aLabelMap) const; //! Fills with target relocation //! attributes. is not cleared before //! use. Standard_EXPORT void TargetAttributeMap(TDF_AttributeMap& anAttributeMap) const; //! Returns to be used or updated. Standard_EXPORT TDF_LabelDataMap& LabelTable(); //! Returns to be used or updated. Standard_EXPORT TDF_AttributeDataMap& AttributeTable(); //! Returns to be used or updated. Standard_EXPORT TColStd_IndexedDataMapOfTransientTransient& TransientTable(); //! Dumps the relocation table. Standard_EXPORT Standard_OStream& Dump(const Standard_Boolean dumpLabels, const Standard_Boolean dumpAttributes, const Standard_Boolean dumpTransients, Standard_OStream& anOS) const; DEFINE_STANDARD_RTTIEXT(TDF_RelocationTable, Standard_Transient) protected: private: Standard_Boolean mySelfRelocate; Standard_Boolean myAfterRelocate; TDF_LabelDataMap myLabelTable; TDF_AttributeDataMap myAttributeTable; TColStd_IndexedDataMapOfTransientTransient myTransientTable; }; #endif // _TDF_RelocationTable_HeaderFile