mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-07-20 06:09:50 +08:00
293 lines
8.8 KiB
C++
Executable File
293 lines
8.8 KiB
C++
Executable File
// Created on: 2008-06-22
|
|
// Created by: Vladislav ROMASHKO
|
|
// Copyright (c) 2008-2012 OPEN CASCADE SAS
|
|
//
|
|
// The content of this file is subject to the Open CASCADE Technology Public
|
|
// License Version 6.5 (the "License"). You may not use the content of this file
|
|
// except in compliance with the License. Please obtain a copy of the License
|
|
// at http://www.opencascade.org and read it completely before using this file.
|
|
//
|
|
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
|
|
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
|
|
//
|
|
// The Original Code and all software distributed under the License is
|
|
// distributed on an "AS IS" basis, without warranty of any kind, and the
|
|
// Initial Developer hereby disclaims all such warranties, including without
|
|
// limitation, any warranties of merchantability, fitness for a particular
|
|
// purpose or non-infringement. Please see the License for the specific terms
|
|
// and conditions governing the rights and limitations under the License.
|
|
|
|
|
|
|
|
#include <TFunction_Scope.ixx>
|
|
#include <TDF_MapIteratorOfLabelMap.hxx>
|
|
|
|
//=======================================================================
|
|
//function : GetID
|
|
//purpose : Static method to get an ID
|
|
//=======================================================================
|
|
|
|
const Standard_GUID& TFunction_Scope::GetID()
|
|
{
|
|
static Standard_GUID TFunction_ScopeID("F2DE4EFF-7FE8-40a3-AAD5-5B6DDEA83469");
|
|
return TFunction_ScopeID;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Set
|
|
//purpose : Finds or creates a Scope attribute
|
|
//=======================================================================
|
|
|
|
Handle(TFunction_Scope) TFunction_Scope::Set(const TDF_Label& Access)
|
|
{
|
|
Handle(TFunction_Scope) S;
|
|
if (!Access.Root().FindAttribute(TFunction_Scope::GetID(), S))
|
|
{
|
|
S = new TFunction_Scope();
|
|
Access.Root().AddAttribute(S);
|
|
}
|
|
return S;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ID
|
|
//purpose : Returns GUID of the function
|
|
//=======================================================================
|
|
|
|
const Standard_GUID& TFunction_Scope::ID() const
|
|
{
|
|
return GetID();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : TFunction_Scope
|
|
//purpose : Constructor
|
|
//=======================================================================
|
|
|
|
TFunction_Scope::TFunction_Scope():myFreeID(1)
|
|
{
|
|
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : AddFunction
|
|
//purpose : Adds a function to the scope.
|
|
//=======================================================================
|
|
|
|
Standard_Boolean TFunction_Scope::AddFunction(const TDF_Label& L)
|
|
{
|
|
if (myFunctions.IsBound2(L))
|
|
return Standard_False;
|
|
|
|
Backup();
|
|
|
|
myFunctions.Bind(myFreeID++, L);
|
|
return Standard_True;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RemoveFunction
|
|
//purpose : Removes a function from the scope.
|
|
//=======================================================================
|
|
|
|
Standard_Boolean TFunction_Scope::RemoveFunction(const TDF_Label& L)
|
|
{
|
|
if (!myFunctions.IsBound2(L))
|
|
return Standard_False;
|
|
|
|
Backup();
|
|
|
|
return myFunctions.UnBind2(L);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RemoveFunction
|
|
//purpose : Removes a function from the scope.
|
|
//=======================================================================
|
|
|
|
Standard_Boolean TFunction_Scope::RemoveFunction(const Standard_Integer ID)
|
|
{
|
|
if (!myFunctions.IsBound1(ID))
|
|
return Standard_False;
|
|
|
|
Backup();
|
|
|
|
return myFunctions.UnBind1(ID);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RemoveAllFunctions
|
|
//purpose : Removes a function from the scope.
|
|
//=======================================================================
|
|
|
|
void TFunction_Scope::RemoveAllFunctions()
|
|
{
|
|
if (myFunctions.IsEmpty())
|
|
return;
|
|
|
|
Backup();
|
|
|
|
myFunctions.Clear();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : HasFunction
|
|
//purpose : Checks presence of a function.
|
|
//=======================================================================
|
|
|
|
Standard_Boolean TFunction_Scope::HasFunction(const Standard_Integer ID) const
|
|
{
|
|
return myFunctions.IsBound1(ID);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : HasFunction
|
|
//purpose : Checks presence of a function.
|
|
//=======================================================================
|
|
|
|
Standard_Boolean TFunction_Scope::HasFunction(const TDF_Label& L) const
|
|
{
|
|
return myFunctions.IsBound2(L);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : GetFunction
|
|
//purpose : Returns a function.
|
|
//=======================================================================
|
|
|
|
Standard_Integer TFunction_Scope::GetFunction(const TDF_Label& L) const
|
|
{
|
|
return myFunctions.Find2(L);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : GetFunction
|
|
//purpose : Returns a function.
|
|
//=======================================================================
|
|
|
|
const TDF_Label& TFunction_Scope::GetFunction(const Standard_Integer ID) const
|
|
{
|
|
return myFunctions.Find1(ID);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : GetLogbook
|
|
//purpose : Returns the Logbook.
|
|
//=======================================================================
|
|
|
|
TFunction_Logbook& TFunction_Scope::GetLogbook()
|
|
{
|
|
return myLogbook;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Restore
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void TFunction_Scope::Restore(const Handle(TDF_Attribute)& other)
|
|
{
|
|
Handle(TFunction_Scope) S = Handle(TFunction_Scope)::DownCast(other);
|
|
|
|
// Functions
|
|
myFunctions = S->myFunctions; // copying...
|
|
myFreeID = S->myFreeID;
|
|
|
|
// Logbook
|
|
myLogbook.Clear();
|
|
TDF_MapIteratorOfLabelMap itrm;
|
|
// Valid labels
|
|
for (itrm.Initialize(S->myLogbook.GetValid()); itrm.More(); itrm.Next())
|
|
{
|
|
myLogbook.SetValid(itrm.Key(), Standard_False);
|
|
}
|
|
// Touched labels
|
|
for (itrm.Initialize(S->myLogbook.GetTouched()); itrm.More(); itrm.Next())
|
|
{
|
|
myLogbook.SetTouched(itrm.Key());
|
|
}
|
|
// Impacted labels
|
|
for (itrm.Initialize(S->myLogbook.GetImpacted()); itrm.More(); itrm.Next())
|
|
{
|
|
myLogbook.SetImpacted(itrm.Key(), Standard_False);
|
|
}
|
|
myLogbook.Done(S->myLogbook.IsDone());
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste
|
|
//purpose : Method for Copy mechanism
|
|
//=======================================================================
|
|
|
|
void TFunction_Scope::Paste(const Handle(TDF_Attribute)& /*into*/,
|
|
const Handle(TDF_RelocationTable)& /*RT*/) const
|
|
{
|
|
// Do we need to copy a Scope attribute somewhere?
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : NewEmpty
|
|
//purpose : Returns new empty graph node attribute
|
|
//=======================================================================
|
|
|
|
Handle(TDF_Attribute) TFunction_Scope::NewEmpty() const
|
|
{
|
|
return new TFunction_Scope();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Dump
|
|
//purpose : Dump of the scope of functions
|
|
//=======================================================================
|
|
|
|
Standard_OStream& TFunction_Scope::Dump (Standard_OStream& anOS) const
|
|
{
|
|
TDF_Attribute::Dump(anOS);
|
|
return anOS;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : GetFunctions
|
|
//purpose : Returns the scope of functions.
|
|
//=======================================================================
|
|
|
|
const TFunction_DoubleMapOfIntegerLabel& TFunction_Scope::GetFunctions() const
|
|
{
|
|
return myFunctions;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ChangeFunctions
|
|
//purpose : Returns the scope of functions.
|
|
//=======================================================================
|
|
|
|
TFunction_DoubleMapOfIntegerLabel& TFunction_Scope::ChangeFunctions()
|
|
{
|
|
return myFunctions;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetFreeID
|
|
//purpose : Defines a free function ID
|
|
//=======================================================================
|
|
|
|
void TFunction_Scope::SetFreeID (const Standard_Integer ID)
|
|
{
|
|
if (myFreeID == ID)
|
|
return;
|
|
|
|
Backup();
|
|
|
|
myFreeID = ID;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : GetFreeID
|
|
//purpose : Returns a free function ID
|
|
//=======================================================================
|
|
|
|
Standard_Integer TFunction_Scope::GetFreeID () const
|
|
{
|
|
return myFreeID;
|
|
}
|