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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
// $Id: enumerator.C,v 1.14 2003/08/26 09:17:44 oliver Exp $
//
#include <BALL/COMMON/global.h>
#include <BALL/COMMON/exception.h>
#include <BALL/DATATYPE/string.h>
#include <BALL/CONCEPT/enumerator.h>
#include <algorithm>
#include <functional>
namespace BALL
{
EnumeratorIndex::IncompatibleIndex::IncompatibleIndex
(const char* file, int line)
: Exception::GeneralException(file, line, "IncompatibleIndex", "")
{
message_ = "different enumerator moduli occurred.";
Exception::globalHandler.setMessage(message_);
}
EnumeratorIndex::EnumeratorIndex()
: vector<Position>(),
modulus_(),
base_multipliers_()
{
}
EnumeratorIndex::~EnumeratorIndex()
{
}
EnumeratorIndex& EnumeratorIndex::operator ++ ()
{
Index i;
bool add_one = true;
for (i = (Index) size() - 1; (i >= 0) && add_one; i--)
{
operator[](i)++;
add_one = false;
if ((operator[](i)) >= modulus_[i])
{
operator[](i) = 0;
add_one = true;
}
}
if (add_one)
{
throw Exception::IndexOverflow(__FILE__, __LINE__);
}
return *this;
}
EnumeratorIndex& EnumeratorIndex::operator -- ()
{
Index i;
bool sub_one = true;
for (i = (Index)size() - 1; (i >= 0) && sub_one; i--)
{
if (operator[](i) == 0)
{
operator[](i) = modulus_[i] - 1;
}
else
{
operator[](i)--;
sub_one = false;
}
}
if (sub_one)
{
throw Exception::IndexUnderflow(__FILE__, __LINE__);
}
return *this;
}
const EnumeratorIndex& EnumeratorIndex::operator = (const EnumeratorIndex& rhs)
{
std::vector<Position>::operator = (rhs);
modulus_ = rhs.modulus_;
base_multipliers_ = rhs.base_multipliers_;
return *this;
}
const EnumeratorIndex& EnumeratorIndex::operator = (Position index)
{
for (Position i = 0; i < std::vector<Position>::size(); ++i)
{
Position digit = index / base_multipliers_[i];
if (digit >= modulus_[i])
{
throw Exception::IndexOverflow(__FILE__, __LINE__, index);
}
std::vector<Position>::operator[](i) = digit;
index -= base_multipliers_[i] * digit;
}
return *this;
}
EnumeratorIndex& EnumeratorIndex::operator << (Size modulus)
{
// there's no point in counting in the unary system or below
if (modulus < 2)
{
throw Exception::OutOfRange(__FILE__, __LINE__);
}
// initialize the new digit
std::vector<Position>::push_back(0);
// update the modulus array
modulus_.push_back(modulus);
// transform the multipliers for each digit (by multiplying
// the old contents with the new modulus and adding a one
// for the new digit)
std::transform(base_multipliers_.begin(), base_multipliers_.end(),
base_multipliers_.begin(),
std::bind2nd(std::multiplies<Position>(), modulus));
base_multipliers_.push_back(1);
return *this;
}
bool EnumeratorIndex::operator == (const EnumeratorIndex& rhs) const
{
return (modulus_ == rhs.modulus_) && (static_cast<const vector<Position>&>(*this) == static_cast<const vector<Position>&>(rhs));
}
bool EnumeratorIndex::operator != (const EnumeratorIndex& rhs) const
{
return (modulus_ != rhs.modulus_) || (static_cast<const vector<Position>&>(*this) != static_cast<const vector<Position>&>(rhs));
}
bool EnumeratorIndex::operator < (const EnumeratorIndex& rhs) const
{
if (modulus_ != rhs.modulus_)
{
throw EnumeratorIndex::IncompatibleIndex(__FILE__, __LINE__);
}
return (static_cast<const vector<Position>&>(*this) < static_cast<const vector<Position>&>(rhs));
}
bool EnumeratorIndex::operator > (const EnumeratorIndex& rhs) const
{
if (modulus_ != rhs.modulus_)
{
throw EnumeratorIndex::IncompatibleIndex(__FILE__, __LINE__);
}
return (static_cast<const vector<Position>&>(*this) > static_cast<const vector<Position>&>(rhs));
}
bool EnumeratorIndex::operator <= (const EnumeratorIndex& rhs) const
{
if (modulus_ != rhs.modulus_)
{
throw EnumeratorIndex::IncompatibleIndex(__FILE__, __LINE__);
}
return (static_cast<const vector<Position>&>(*this) <= static_cast<const vector<Position>&>(rhs));
}
bool EnumeratorIndex::operator >= (const EnumeratorIndex& rhs) const
{
if (modulus_ != rhs.modulus_)
{
throw EnumeratorIndex::IncompatibleIndex(__FILE__, __LINE__);
}
return (static_cast<const vector<Position>&>(*this) >= static_cast<const vector<Position>&>(rhs));
}
# ifdef BALL_NO_INLINE_FUNCTIONS
# include <BALL/CONCEPT/enumerator.iC>
# endif
}
|