1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-07-15 12:35:51 +03:00
occt/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_AsciiString.cxx
Pasukhin Dmitry 0947067ed5
Coding - Function guard update (#610)
- Removed verbose function header comments (name, purpose) across multiple C++ source files.
- Introduced a single-line separator comment before each function for consistent formatting.
- Applied the change in visualization, modeling, algorithms, foundation, and application framework modules.
2025-07-13 13:16:51 +01:00

184 lines
5.7 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 <TDataStd_AsciiString.hxx>
#include <Standard_Dump.hxx>
#include <Standard_GUID.hxx>
#include <Standard_Type.hxx>
#include <TCollection_AsciiString.hxx>
#include <TDF_Attribute.hxx>
#include <TDF_Label.hxx>
#include <TDF_RelocationTable.hxx>
IMPLEMENT_STANDARD_RTTIEXT(TDataStd_AsciiString, TDF_Attribute)
//=================================================================================================
TDataStd_AsciiString::TDataStd_AsciiString()
: myID(GetID())
{
myString.Clear();
}
//=================================================================================================
const Standard_GUID& TDataStd_AsciiString::GetID()
{
static Standard_GUID theGUID("3bbefc60-e618-11d4-ba38-0060b0ee18ea");
return theGUID;
}
//=================================================================================================
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;
}
//=================================================================================================
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);
}
//=================================================================================================
void TDataStd_AsciiString::Set(const TCollection_AsciiString& theAsciiString)
{
if (myString == theAsciiString)
return;
Backup();
myString = theAsciiString;
}
//=================================================================================================
const TCollection_AsciiString& TDataStd_AsciiString::Get() const
{
return myString;
}
//=================================================================================================
void TDataStd_AsciiString::SetID(const Standard_GUID& theGuid)
{
if (myID == theGuid)
return;
Backup();
myID = theGuid;
}
//=================================================================================================
void TDataStd_AsciiString::SetID()
{
Backup();
myID = GetID();
}
//=================================================================================================
Handle(TDF_Attribute) TDataStd_AsciiString::NewEmpty() const
{
return new TDataStd_AsciiString();
}
//=================================================================================================
void TDataStd_AsciiString::Restore(const Handle(TDF_Attribute)& theWith)
{
Handle(TDataStd_AsciiString) R = Handle(TDataStd_AsciiString)::DownCast(theWith);
myString = R->Get();
myID = R->ID();
}
//=================================================================================================
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);
}
//=================================================================================================
Standard_Boolean TDataStd_AsciiString::IsEmpty() const
{
return myString.IsEmpty();
}
//=================================================================================================
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 << "|" << std::endl;
return anOS;
}
//=================================================================================================
void TDataStd_AsciiString::DumpJson(Standard_OStream& theOStream, Standard_Integer theDepth) const
{
OCCT_DUMP_TRANSIENT_CLASS_BEGIN(theOStream)
OCCT_DUMP_BASE_CLASS(theOStream, theDepth, TDF_Attribute)
OCCT_DUMP_FIELD_VALUE_STRING(theOStream, myString)
}