1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-08 18:40:55 +03:00
occt/src/TDataStd/TDataStd_AsciiString.cxx
szy 4a5eefb909 0029371: The problem of the attributes constructor call
Default Guid is assigned in constructor.
Add test case: tests\bugs\caf\bug29371.
2017-12-25 18:33:05 +03:00

202 lines
6.4 KiB
C++

// Created on: 2007-07-31
// Created by: Sergey ZARITCHNY
// Copyright (c) 2007-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.
#include <Standard_GUID.hxx>
#include <Standard_Type.hxx>
#include <TCollection_AsciiString.hxx>
#include <TDataStd_AsciiString.hxx>
#include <TDF_Attribute.hxx>
#include <TDF_Label.hxx>
#include <TDF_RelocationTable.hxx>
IMPLEMENT_STANDARD_RTTIEXT(TDataStd_AsciiString,TDF_Attribute)
//=======================================================================
//function : TDataStd_AsciiString
//purpose :
//=======================================================================
TDataStd_AsciiString::TDataStd_AsciiString(): myID(GetID())
{
myString.Clear();
}
//=======================================================================
//function : GetID
//purpose :
//=======================================================================
const Standard_GUID& TDataStd_AsciiString::GetID()
{
static Standard_GUID theGUID ("3bbefc60-e618-11d4-ba38-0060b0ee18ea");
return theGUID;
}
//=======================================================================
//function : ID
//purpose :
//=======================================================================
const Standard_GUID& TDataStd_AsciiString::ID() const
{
return myID;
}
//=======================================================================
//function : SetAttr
//purpose : Implements Set functionality
//=======================================================================
static Handle(TDataStd_AsciiString) SetAttr(
const TDF_Label& label,
const TCollection_AsciiString& theString,
const Standard_GUID& theGuid)
{
Handle(TDataStd_AsciiString) A;
if (!label.FindAttribute(theGuid, A)) {
A = new TDataStd_AsciiString ();
A->SetID(theGuid);
label.AddAttribute(A);
}
A->Set (theString);
return A;
}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
Handle(TDataStd_AsciiString) TDataStd_AsciiString::Set (
const TDF_Label& theLabel,
const TCollection_AsciiString& theAsciiString)
{
return SetAttr(theLabel, theAsciiString, GetID());
}
//=======================================================================
//function : Set
//purpose : Set user defined attribute
//=======================================================================
Handle(TDataStd_AsciiString) TDataStd_AsciiString::Set (
const TDF_Label& theLabel,
const Standard_GUID& theGuid,
const TCollection_AsciiString& theAsciiString)
{
return SetAttr(theLabel, theAsciiString, theGuid);
}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
void TDataStd_AsciiString::Set (const TCollection_AsciiString& theAsciiString)
{
if(myString == theAsciiString) return;
Backup();
myString = theAsciiString;
}
//=======================================================================
//function : Get
//purpose :
//=======================================================================
const TCollection_AsciiString& TDataStd_AsciiString::Get () const
{
return myString;
}
//=======================================================================
//function : SetID
//purpose :
//=======================================================================
void TDataStd_AsciiString::SetID( const Standard_GUID& theGuid)
{
if(myID == theGuid) return;
Backup();
myID = theGuid;
}
//=======================================================================
//function : SetID
//purpose : sets default ID
//=======================================================================
void TDataStd_AsciiString::SetID()
{
Backup();
myID = GetID();
}
//=======================================================================
//function : NewEmpty
//purpose :
//=======================================================================
Handle(TDF_Attribute) TDataStd_AsciiString::NewEmpty () const
{
return new TDataStd_AsciiString();
}
//=======================================================================
//function : Restore
//purpose :
//=======================================================================
void TDataStd_AsciiString::Restore (const Handle(TDF_Attribute)& theWith)
{
Handle(TDataStd_AsciiString) R = Handle(TDataStd_AsciiString)::DownCast(theWith);
myString = R->Get();
myID = R->ID();
}
//=======================================================================
//function : Paste
//purpose :
//=======================================================================
void TDataStd_AsciiString::Paste (const Handle(TDF_Attribute)& theInto,
const Handle(TDF_RelocationTable)& /* RT */) const
{
Handle(TDataStd_AsciiString) R = Handle(TDataStd_AsciiString)::DownCast (theInto);
R->Set(myString);
R->SetID(myID);
}
//=======================================================================
//function : IsEmpty
//purpose :
//=======================================================================
Standard_Boolean TDataStd_AsciiString::IsEmpty () const
{
return myString.IsEmpty();
}
//=======================================================================
//function : Dump
//purpose :
//=======================================================================
Standard_OStream& TDataStd_AsciiString::Dump(Standard_OStream& theOS) const
{
Standard_OStream& anOS = TDF_Attribute::Dump( theOS );
anOS << myString;
anOS << " Name=|"<<myString<<"|";
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
myID.ToCString(sguid);
anOS << sguid << "|" <<endl;
return anOS;
}