1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-10 18:51:21 +03:00
occt/src/IGESSelect/IGESSelect_SelectName.cxx
dpasukhi a5a7b3185b Coding - Apply .clang-format formatting #286
Update empty method guards to new style with regex (see PR).
Used clang-format 18.1.8.
New actions to validate code formatting is added.
Update .clang-format with disabling of include sorting.
  It is temporary changes, then include will be sorted.
Apply formatting for /src and /tools folder.
The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
2025-01-26 00:43:57 +00:00

84 lines
2.7 KiB
C++

// 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.
#include <IGESData_IGESEntity.hxx>
#include <IGESSelect_SelectName.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Interface_Macros.hxx>
#include <Standard_Transient.hxx>
#include <Standard_Type.hxx>
#include <TCollection_AsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <stdio.h>
IMPLEMENT_STANDARD_RTTIEXT(IGESSelect_SelectName, IFSelect_SelectExtract)
IGESSelect_SelectName::IGESSelect_SelectName() {}
void IGESSelect_SelectName::SetName(const Handle(TCollection_HAsciiString)& levnum)
{
thename = levnum;
}
Handle(TCollection_HAsciiString) IGESSelect_SelectName::Name() const
{
return thename;
}
Standard_Boolean IGESSelect_SelectName::Sort(
const Standard_Integer /*rank*/,
const Handle(Standard_Transient)& ent,
const Handle(Interface_InterfaceModel)& /*model*/) const
{
DeclareAndCast(IGESData_IGESEntity, igesent, ent);
if (igesent.IsNull())
return Standard_False;
if (!igesent->HasName())
return Standard_False;
if (thename.IsNull())
return Standard_False;
Handle(TCollection_HAsciiString) name = igesent->NameValue();
// std::cout<<"SelectName:"<<thename->ToCString()<<",with:"<<name->ToCString()<<",IsSameString="<<thename->IsSameString
// (name,Standard_False)<<std::endl;
Standard_Integer nb0 = thename->Length();
Standard_Integer nb1 = name->Length();
Standard_Integer nbf = (nb1 <= nb0 ? nb1 : nb0);
Standard_Integer nbt = (nb1 >= nb0 ? nb1 : nb0);
Standard_Integer i; // svv Jan11 2000 : porting on DEC
for (i = 1; i <= nbf; i++)
{
if (name->Value(i) != thename->Value(i))
return Standard_False;
}
if (nb0 > nb1)
name = thename;
for (i = nbf + 1; i <= nbt; i++)
{
if (name->Value(i) != ' ')
return Standard_False;
}
return Standard_True;
}
TCollection_AsciiString IGESSelect_SelectName::ExtractLabel() const
{
char labl[50];
if (!thename.IsNull())
{
sprintf(labl, "IGES Entity, Name : %s", thename->ToCString());
return TCollection_AsciiString(labl);
}
else
return TCollection_AsciiString("IGES Entity, Name : (undefined)");
}