summaryrefslogtreecommitdiff
path: root/TAO/tests/Sequence_Unit_Tests/testing_range_checking.hpp
blob: b60024b914ae798563e6face06fe14732f50d835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#ifndef guard_testing_range_checking_hpp
#define guard_testing_range_checking_hpp
/**
 * @file
 *
 * @brief Specialize the range_checking traits in a manner suitable
 * for testing.
 *
 * $Id$
 *
 * @author Carlos O'Ryan
 */

#include "range_checking.hpp"

#include <sstream>
#include <stdexcept>

template<typename T>
struct testing_range_checking
{
  typedef T value_type;

  inline static void check(
      CORBA::ULong index,
      CORBA::ULong length,
      CORBA::ULong maximum,
      char const * function_name)
  {
    if (index < length) {
      return;
    }
    std::ostringstream error;
    error << "Out of range access in " << function_name
          << ", index=" << index
          << ", length=" << length
          << ", maximum=" << maximum;
    throw std::range_error(error.str());
  }

  inline static void check_length(
      CORBA::ULong & new_length,
      CORBA::ULong maximum)
  {
    if (maximum < new_length)
    {
      std::ostringstream error;
      error << "Invalid bounded sequence length "
            << ", length=" << new_length
            << ", maximum=" << maximum;
      throw std::runtime_error(error.str());
    }
  }
};

TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
namespace details
{

template<typename T>
struct range_checking<T,true>
  : public testing_range_checking<T>
{
};

} // namespace details
} // namespace TAO

TAO_END_VERSIONED_NAMESPACE_DECL
#endif // guard_testing_range_checking_hpp