1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-01 10:26:12 +03:00
occt/src/IFSelect/IFSelect_SelectAnyList.cxx
ski 9775fa6110 0026937: Eliminate NO_CXX_EXCEPTION macro support
Macro NO_CXX_EXCEPTION was removed from code.
Method Raise() was replaced by explicit throw statement.
Method Standard_Failure::Caught() was replaced by normal C++mechanism of exception transfer.
Method Standard_Failure::Caught() is deprecated now.
Eliminated empty constructors.
Updated samples.
Eliminate empty method ChangeValue from NCollection_Map class.
Removed not operable methods from NCollection classes.
2017-02-02 16:35:54 +03:00

113 lines
3.9 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 <IFSelect_IntParam.hxx>
#include <IFSelect_SelectAnyList.hxx>
#include <Interface_EntityIterator.hxx>
#include <Interface_Graph.hxx>
#include <Interface_InterfaceError.hxx>
#include <Standard_OutOfRange.hxx>
#include <Standard_Transient.hxx>
#include <Standard_Type.hxx>
#include <TCollection_AsciiString.hxx>
#include <stdio.h>
IMPLEMENT_STANDARD_RTTIEXT(IFSelect_SelectAnyList,IFSelect_SelectDeduct)
// .... Definition de liste : methodes "deferred" NbItems & FillResult
void IFSelect_SelectAnyList::SetRange
(const Handle(IFSelect_IntParam)& rankfrom,
const Handle(IFSelect_IntParam)& rankto)
{ thelower = rankfrom; theupper = rankto; }
void IFSelect_SelectAnyList::SetOne (const Handle(IFSelect_IntParam)& rank)
{ thelower = theupper = rank; }
void IFSelect_SelectAnyList::SetFrom
(const Handle(IFSelect_IntParam)& rankfrom)
{ thelower = rankfrom; theupper.Nullify(); }
void IFSelect_SelectAnyList::SetUntil
(const Handle(IFSelect_IntParam)& rankto)
{ thelower.Nullify(); theupper = rankto; }
Standard_Boolean IFSelect_SelectAnyList::HasLower () const
{ return (!thelower.IsNull()); }
Handle(IFSelect_IntParam) IFSelect_SelectAnyList::Lower () const
{ return thelower; }
Standard_Integer IFSelect_SelectAnyList::LowerValue () const
{
if (thelower.IsNull()) return 0;
return thelower->Value();
}
Standard_Boolean IFSelect_SelectAnyList::HasUpper () const
{ return (!theupper.IsNull()); }
Handle(IFSelect_IntParam) IFSelect_SelectAnyList::Upper () const
{ return theupper; }
Standard_Integer IFSelect_SelectAnyList::UpperValue () const
{
if (theupper.IsNull()) return 0;
return theupper->Value();
}
// On prend les sous-entites de lower a upper (inclus)
Interface_EntityIterator IFSelect_SelectAnyList::RootResult
(const Interface_Graph& G) const
{
Interface_EntityIterator input = InputResult(G);
KeepInputEntity (input); // selon type voulu
if (input.NbEntities() > 1) throw Interface_InterfaceError("SelectAnyList : more than ONE Entity in input");
if (input.NbEntities() == 0) return input;
Handle(Standard_Transient) ent;
for (input.Start(); input.More(); input.Next()) ent = input.Value();
Standard_Integer rankmax = NbItems(ent);
Standard_Integer rankfrom = 1;
if (!thelower.IsNull()) rankfrom = thelower->Value();
Standard_Integer rankto;
if (!theupper.IsNull()) rankto = theupper->Value();
else rankto = rankmax;
if (rankfrom < 1) rankfrom = 1;
if (rankto > rankmax) rankto = rankmax;
Interface_EntityIterator iter;
if (rankfrom <= rankto) FillResult(rankfrom,rankto,ent,iter);
return iter;
}
TCollection_AsciiString IFSelect_SelectAnyList::Label () const
{
char lab[30];
Standard_Integer rankfrom = 0;
if (HasLower()) rankfrom = LowerValue();
Standard_Integer rankto = 0;
if (HasUpper()) rankto = UpperValue();
if (rankfrom == rankto) sprintf(lab," (no %d)",rankfrom);
else if (rankfrom == 0) sprintf(lab," (-> %d)",rankfrom);
else if (rankto == 0) sprintf(lab," (%d ->)",rankto);
else sprintf(lab," (%d -> %d)",rankfrom,rankto);
TCollection_AsciiString labl("In List ");
labl.AssignCat(ListLabel());
labl.AssignCat(lab);
return labl;
}