Salome HOME
2e6b7aade98523d413c72c1506212f3e399fd28f
[modules/geom.git] / src / XAO / XAO_Step.cxx
1 // Copyright (C) 2013-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Frederic Pons (OpenCascade)
20
21 #include "XAO_Xao.hxx"
22 #include "XAO_XaoUtils.hxx"
23 #include "XAO_Step.hxx"
24 #include "XAO_BooleanStep.hxx"
25 #include "XAO_IntegerStep.hxx"
26 #include "XAO_DoubleStep.hxx"
27 #include "XAO_StringStep.hxx"
28
29 using namespace XAO;
30
31 void Step::checkElementIndex(const int& element)
32 throw (XAO_Exception)
33 {
34     if (element < m_nbElements && element >= 0)
35         return;
36
37     throw XAO_Exception(MsgBuilder() << "Element index is out of range [0, "
38                                      << m_nbElements-1 << "]: " << element);
39 }
40
41 void Step::checkComponentIndex(const int& component)
42 throw (XAO_Exception)
43 {
44     if (component < m_nbComponents && component >= 0)
45         return;
46
47     throw XAO_Exception(MsgBuilder() << "Component index is out of range [0, "
48                                      << m_nbComponents-1 << "]: " << component);
49 }
50
51 void Step::checkNbElements(const int& nbElements)
52 throw (XAO_Exception)
53 {
54     if (nbElements == m_nbElements)
55         return;
56
57     throw XAO_Exception(MsgBuilder() << "Invalid number of elements: " << nbElements
58                                         << ", expected " << m_nbElements);
59 }
60
61 void Step::checkNbComponents(const int& nbComponents)
62 throw (XAO_Exception)
63 {
64     if (nbComponents == m_nbComponents)
65         return;
66
67     throw XAO_Exception(MsgBuilder() << "Invalid number of components: " << nbComponents
68                                         << ", expected " << m_nbComponents);
69 }
70
71 void Step::checkNbValues(const int& nbValues)
72 throw (XAO_Exception)
73 {
74     if (nbValues == m_nbElements * m_nbComponents)
75         return;
76
77     throw XAO_Exception(MsgBuilder() << "Invalid number of values:" << nbValues
78                                         << ", expected " << m_nbElements * m_nbComponents);
79 }