0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / Expr / Expr_RelationIterator.cxx
CommitLineData
b311480e 1// Created on: 1991-06-13
2// Created by: Arnaud BOUZY
3// Copyright (c) 1991-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
42cf5bc1 17
18#include <Expr_GeneralRelation.hxx>
19#include <Expr_RelationIterator.hxx>
20#include <Expr_SingleRelation.hxx>
21#include <Expr_SystemRelation.hxx>
7fd59977 22#include <Standard_NoMoreObject.hxx>
23#include <Standard_NoSuchObject.hxx>
7fd59977 24
25Expr_RelationIterator::Expr_RelationIterator (const Handle(Expr_GeneralRelation)& rel):myRelation(1,rel->NbOfSingleRelations())
26{
27 if (rel->IsKind(STANDARD_TYPE(Expr_SingleRelation))) {
28 myRelation(1) = Handle(Expr_SingleRelation)::DownCast(rel);
29 }
30 else {
31 Standard_Integer nbcur = 1;
32 Handle(Expr_GeneralRelation) currel;
33 for (Standard_Integer i =1; i<= rel->NbOfSubRelations(); i++) {
34 currel = rel->SubRelation(i);
35 if (currel->IsKind(STANDARD_TYPE(Expr_SingleRelation))) {
36 myRelation(nbcur) = Handle(Expr_SingleRelation)::DownCast(currel);
37 nbcur++;
38 }
39 else {
40 Expr_RelationIterator subit(currel);
41 while (subit.More()) {
42 myRelation(nbcur) = subit.Value();
43 subit.Next();
44 nbcur++;
45 }
46 }
47 }
48 }
49 current = 1;
50}
51
52Standard_Boolean Expr_RelationIterator::More () const
53{
54 return (current <= myRelation.Length());
55}
56
57void Expr_RelationIterator::Next ()
58{
59 if (!More()) {
9775fa61 60 throw Standard_NoMoreObject();
7fd59977 61 }
62 current++;
63}
64
65Handle(Expr_SingleRelation) Expr_RelationIterator::Value () const
66{
67 if (!More()) {
9775fa61 68 throw Standard_NoSuchObject();
7fd59977 69 }
70 return myRelation(current);
71}
72