1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-21 10:13:43 +03:00
occt/src/IGESSelect/IGESSelect_SelectName.cxx
bugmster 973c2be1e1 0024428: Implementation of LGPL license
The copying permission statements at the beginning of source files updated to refer to LGPL.
Copyright dates extended till 2014 in advance.
2013-12-17 12:42:41 +04:00

67 lines
2.4 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 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 <IGESSelect_SelectName.ixx>
#include <IGESData_IGESEntity.hxx>
#include <Interface_Macros.hxx>
#include <stdio.h>
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();
// cout<<"SelectName:"<<thename->ToCString()<<",with:"<<name->ToCString()<<",IsSameString="<<thename->IsSameString (name,Standard_False)<<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)");
}