EMANE  1.2.1
parameterconvert.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2015 - Adjacent Link LLC, Bridgewater, New Jersey
3  * Copyright (c) 2009 - DRS CenGen, LLC, Columbia, Maryland
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * * Redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer.
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in
14  * the documentation and/or other materials provided with the
15  * distribution.
16  * * Neither the name of DRS CenGen, LLC nor the names of its
17  * contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef EMANEUTILSPARAMETERCONVERT_HEADER_
35 #define EMANEUTILSPARAMETERCONVERT_HEADER_
36 
37 #include "emane/exception.h"
38 #include "emane/inetaddr.h"
39 #include <string>
40 #include <cstdint>
41 #include <limits>
42 
43 namespace EMANE
44 {
45  namespace Utils
46  {
54  {
55  public:
56 
64  {
65  public:
66  ConversionException(const std::string & sDescription):
67  Exception("ConvertionException",sDescription){}
68 
70  };
71 
77  ParameterConvert(const std::string & sParameter);
78 
83 
95  std::int64_t toINT64(std::int64_t i64Min = std::numeric_limits<std::int64_t>::min(),
96  std::int64_t i64Max = std::numeric_limits<std::int64_t>::max()) const;
97 
109  std::uint64_t toUINT64(std::uint64_t u64Min = std::numeric_limits<std::uint64_t>::min(),
110  std::uint64_t u64Max = std::numeric_limits<std::uint64_t>::max()) const;
111 
112 
124  std::int32_t toINT32(std::int32_t i32Min = std::numeric_limits<std::int32_t>::min(),
125  std::int32_t i32Max = std::numeric_limits<std::int32_t>::max()) const;
126 
138  std::uint32_t toUINT32(std::uint32_t u32Min = std::numeric_limits<std::uint32_t>::min(),
139  std::uint32_t u32Max = std::numeric_limits<std::uint32_t>::max()) const;
140 
152  std::int16_t toINT16(std::int16_t i16Min = std::numeric_limits<std::int16_t>::min(),
153  std::int16_t i16Max = std::numeric_limits<std::int16_t>::max()) const;
154 
166  std::uint16_t toUINT16(std::uint16_t u16Min = std::numeric_limits<std::uint16_t>::min(),
167  std::uint16_t u16Max = std::numeric_limits<std::uint16_t>::max()) const;
168 
180  std::int8_t toINT8(std::int8_t i8Min = std::numeric_limits<std::int8_t>::min(),
181  std::int8_t i8Max = std::numeric_limits<std::int8_t>::max()) const;
182 
194  std::uint8_t toUINT8(std::uint8_t u8Min = std::numeric_limits<std::uint8_t>::min(),
195  std::uint8_t u8Max = std::numeric_limits<std::uint8_t>::max()) const;
196 
208  float toFloat(float fMin = std::numeric_limits<float>::lowest(),
209  float fMax = std::numeric_limits<float>::max()) const;
210 
222  double toDouble(double dMin = std::numeric_limits<double>::lowest(),
223  double dMax = std::numeric_limits<double>::max()) const;
224 
233  INETAddr toINETAddr() const;
234 
243  bool toBool() const;
244 
245  private:
246  std::string sParameter_;
247  };
248  }
249 }
250 
251 #include "parameterconvert.inl"
252 
253 #endif //EMANEUTILSPARAMETERCONVERT_HEADER_
std::int8_t toINT8(std::int8_t i8Min=std::numeric_limits< std::int8_t >::min(), std::int8_t i8Max=std::numeric_limits< std::int8_t >::max()) const
std::uint8_t toUINT8(std::uint8_t u8Min=std::numeric_limits< std::uint8_t >::min(), std::uint8_t u8Max=std::numeric_limits< std::uint8_t >::max()) const
Parameter conversion exception class.
std::uint16_t toUINT16(std::uint16_t u16Min=std::numeric_limits< std::uint16_t >::min(), std::uint16_t u16Max=std::numeric_limits< std::uint16_t >::max()) const
ConversionException(const std::string &sDescription)
float toFloat(float fMin=std::numeric_limits< float >::lowest(), float fMax=std::numeric_limits< float >::max()) const
Exception base class that allows for type and description information.
Definition: exception.h:49
std::uint64_t toUINT64(std::uint64_t u64Min=std::numeric_limits< std::uint64_t >::min(), std::uint64_t u64Max=std::numeric_limits< std::uint64_t >::max()) const
std::uint32_t toUINT32(std::uint32_t u32Min=std::numeric_limits< std::uint32_t >::min(), std::uint32_t u32Max=std::numeric_limits< std::uint32_t >::max()) const
double toDouble(double dMin=std::numeric_limits< double >::lowest(), double dMax=std::numeric_limits< double >::max()) const
ParameterConvert(const std::string &sParameter)
std::int16_t toINT16(std::int16_t i16Min=std::numeric_limits< std::int16_t >::min(), std::int16_t i16Max=std::numeric_limits< std::int16_t >::max()) const
std::int32_t toINT32(std::int32_t i32Min=std::numeric_limits< std::int32_t >::min(), std::int32_t i32Max=std::numeric_limits< std::int32_t >::max()) const
Parameter conversion class with range checks.
Definition: agent.h:43
std::int64_t toINT64(std::int64_t i64Min=std::numeric_limits< std::int64_t >::min(), std::int64_t i64Max=std::numeric_limits< std::int64_t >::max()) const