Salome HOME
37f7e064e6ae181f6998bc80750325eef4220aac
[modules/geom.git] / src / XAO / XAO_Step.cxx
1 // Copyright (C) 2013-2023  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(int element)
32 {
33     if (element < m_nbElements && element >= 0)
34         return;
35
36     throw XAO_Exception(MsgBuilder() << "Element index is out of range [0, "
37                                      << m_nbElements-1 << "]: " << element);
38 }
39
40 void Step::checkComponentIndex(int component)
41 {
42     if (component < m_nbComponents && component >= 0)
43         return;
44
45     throw XAO_Exception(MsgBuilder() << "Component index is out of range [0, "
46                                      << m_nbComponents-1 << "]: " << component);
47 }
48
49 void Step::checkNbElements(int nbElements)
50 {
51     if (nbElements == m_nbElements)
52         return;
53
54     throw XAO_Exception(MsgBuilder() << "Invalid number of elements: " << nbElements
55                                         << ", expected " << m_nbElements);
56 }
57
58 void Step::checkNbComponents(int nbComponents)
59 {
60     if (nbComponents == m_nbComponents)
61         return;
62
63     throw XAO_Exception(MsgBuilder() << "Invalid number of components: " << nbComponents
64                                         << ", expected " << m_nbComponents);
65 }
66
67 void Step::checkNbValues(int nbValues)
68 {
69     if (nbValues == m_nbElements * m_nbComponents)
70         return;
71
72     throw XAO_Exception(MsgBuilder() << "Invalid number of values:" << nbValues
73                                         << ", expected " << m_nbElements * m_nbComponents);
74 }