/usr/include/dar/real_infinint.hpp is in libdar-dev 2.4.8-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | /*********************************************************************/
// dar - disk archive - a backup/restoration program
// Copyright (C) 2002-2052 Denis Corbin
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// to contact the author : http://dar.linux.free.fr/email.html
/*********************************************************************/
/// \file real_infinint.hpp
/// \brief the original infinint class implementation
/// \ingroup Private
///
/// the infinint class implementation defined in this module can
/// handle arbitrary large positive integer numbers
#ifndef REAL_INFININT_HPP
#define REAL_INFININT_HPP
#include "/usr/include/dar/libdar_my_config.h"
extern "C"
{
#if LIBDAR_HAS_SYS_TYPES_H
#include <sys/types.h>
#endif
} // end extern "C"
#include <typeinfo>
#include <new>
#include "/usr/include/dar/storage.hpp"
#include "/usr/include/dar/integers.hpp"
#include "/usr/include/dar/int_tools.hpp"
#define ZEROED_SIZE 50
namespace libdar
{
class generic_file;
class user_interaction;
/// the arbitrary large positive integer class
/// can only handle positive integer numbers
/// \ingroup Private
class infinint
{
public :
#if LIBDAR_SIZEOF_OFF_T > LIBDAR_SIZEOF_TIME_T
#if LIBDAR_SIZEOF_OFF_T > LIBDAR_SIZEOF_SIZE_T
infinint(off_t a = 0)
{ infinint_from(a); };
#else
infinint(size_t a = 0)
{ infinint_from(a); };
#endif
#else
#if LIBDAR_SIZEOF_TIME_T > LIBDAR_SIZEOF_SIZE_T
infinint(time_t a = 0)
{ infinint_from(a); };
#else
infinint(size_t a = 0)
{ infinint_from(a); };
#endif
#endif
infinint(const infinint & ref)
{ copy_from(ref); }
// read an infinint from a file
infinint(user_interaction & dialog, S_I fd);
infinint(generic_file & x);
~infinint()
{ detruit(); };
const infinint & operator = (const infinint & ref)
{ detruit(); copy_from(ref); return *this; };
void dump(user_interaction & dialog, int fd) const; // write byte sequence to file
void dump(generic_file &x) const; // write byte sequence to file
void read(generic_file &f) { detruit(); build_from_file(f); };
infinint & operator += (const infinint & ref);
infinint & operator -= (const infinint & ref);
infinint & operator *= (unsigned char arg);
infinint & operator *= (const infinint & ref);
template <class T> infinint power(const T & exponent) const;
inline infinint & operator /= (const infinint & ref);
inline infinint & operator %= (const infinint & ref);
infinint & operator &= (const infinint & ref);
infinint & operator |= (const infinint & ref);
infinint & operator ^= (const infinint & ref);
infinint & operator >>= (U_32 bit);
infinint & operator >>= (infinint bit);
infinint & operator <<= (U_32 bit);
infinint & operator <<= (infinint bit);
infinint operator ++(int a)
{ infinint ret = *this; ++(*this); return ret; };
infinint operator --(int a)
{ infinint ret = *this; --(*this); return ret; };
infinint & operator ++()
{ return *this += 1; };
infinint & operator --()
{ return *this -= 1; };
U_32 operator % (U_32 arg) const
{ return modulo(arg); };
// increment the argument up to a legal value for its storage type and decrement the object in consequence
// note that the initial value of the argument is not ignored !
// when the object is null the value of the argument is unchanged
template <class T>void unstack(T &v)
{ infinint_unstack_to(v); }
infinint get_storage_size() const { return field->size(); };
// it returns number of byte of information necessary to store the integer
unsigned char operator [] (const infinint & position) const;
// return in big endian order the information byte storing the integer
friend bool operator < (const infinint &, const infinint &);
friend bool operator == (const infinint &, const infinint &);
friend bool operator > (const infinint &, const infinint &);
friend bool operator <= (const infinint &, const infinint &);
friend bool operator != (const infinint &, const infinint &);
friend bool operator >= (const infinint &, const infinint &);
friend void euclide(infinint a, const infinint &b, infinint &q, infinint &r);
static bool is_system_big_endian();
#ifdef LIBDAR_SPECIAL_ALLOC
USE_SPECIAL_ALLOC(infinint);
#endif
private :
static const int TG = 4;
enum endian { big_endian, little_endian, not_initialized };
typedef unsigned char group[TG];
storage *field;
bool is_valid() const;
void build_from_file(generic_file & x);
void reduce(); // put the object in canonical form : no leading byte equal to zero
void copy_from(const infinint & ref);
void detruit();
void make_at_least_as_wider_as(const infinint & ref);
template <class T> void infinint_from(T a);
template <class T> T max_val_of(T x);
template <class T> void infinint_unstack_to(T &a);
template <class T> T modulo(T arg) const;
signed int difference(const infinint & b) const; // gives the sign of (*this - arg) but only the sign !
/////////////////////////
// static statments
//
static endian used_endian;
static U_8 zeroed_field[ZEROED_SIZE];
static void setup_endian();
};
#define OPERATOR(OP) inline bool operator OP (const infinint &a, const infinint &b) \
{ \
return a.difference(b) OP 0; \
}
OPERATOR(<)
OPERATOR(>)
OPERATOR(<=)
OPERATOR(>=)
OPERATOR(==)
OPERATOR(!=)
infinint operator + (const infinint &, const infinint &);
infinint operator - (const infinint &, const infinint &);
infinint operator * (const infinint &, const infinint &);
infinint operator * (const infinint &, const unsigned char);
infinint operator * (const unsigned char, const infinint &);
infinint operator / (const infinint &, const infinint &);
infinint operator % (const infinint &, const infinint &);
infinint operator & (const infinint & a, const infinint & bit);
infinint operator | (const infinint & a, const infinint & bit);
infinint operator ^ (const infinint & a, const infinint & bit);
infinint operator >> (const infinint & a, U_32 bit);
infinint operator >> (const infinint & a, const infinint & bit);
infinint operator << (const infinint & a, U_32 bit);
infinint operator << (const infinint & a, const infinint & bit);
void euclide(infinint a, const infinint &b, infinint &q, infinint &r);
template <class T> inline void euclide(T a, T b, T & q, T &r)
{
q = a/b; r = a%b;
}
inline infinint & infinint::operator /= (const infinint & ref)
{
*this = *this / ref;
return *this;
}
inline infinint & infinint::operator %= (const infinint & ref)
{
*this = *this % ref;
return *this;
}
/////////////////////////////////////////////////////
///////////////// TEMPLATE BODIES ///////////////////
/////////////////////////////////////////////////////
template <class T> infinint infinint::power(const T & exponent) const
{
infinint ret = 1;
for(T count = 0; count < exponent; ++count)
ret *= *this;
return ret;
}
template <class T> T infinint::modulo(T arg) const
{
infinint tmp = *this % infinint(arg);
T ret = 0;
unsigned char *debut = (unsigned char *)(&ret);
unsigned char *ptr = debut + sizeof(T) - 1;
storage::iterator it = tmp.field->rbegin();
while(it != tmp.field->rend() && ptr >= debut)
{
*ptr = *it;
--ptr;
--it;
}
// checking for overflow (should never occur, but for sanity, we check it anyway)
while(it != tmp.field->rend()) // field may not be reduced (some zeros are leading)
{
if(*it != 0)
throw SRC_BUG; // could not put all the data in the returned value !
--it;
}
if(used_endian == little_endian)
int_tools_swap_bytes(debut, sizeof(T));
return ret;
}
template <class T> void infinint::infinint_from(T a)
{
U_I size = sizeof(a);
S_I direction = +1;
unsigned char *ptr, *fin;
if(used_endian == not_initialized)
setup_endian();
if(used_endian == little_endian)
{
direction = -1;
ptr = (unsigned char *)(&a) + (size - 1);
fin = (unsigned char *)(&a) - 1;
}
else
{
direction = +1;
ptr = (unsigned char *)(&a);
fin = (unsigned char *)(&a) + size;
}
while(ptr != fin && *ptr == 0)
{
ptr += direction;
--size;
}
if(size == 0)
{
size = 1;
ptr -= direction;
}
field = new (std::nothrow) storage(size);
if(field != NULL)
{
storage::iterator it = field->begin();
while(ptr != fin)
{
*it = *ptr;
++it;
ptr += direction;
}
if(it != field->end())
throw SRC_BUG; // size mismatch in this algorithm
}
else
throw Ememory("template infinint::infinint_from");
}
template <class T> T infinint::max_val_of(T x)
{
x = 0;
x = ~x;
if(x <= 0) // T is a signed integer type. Note that it should be "x < 0" but to avoid compiler warning when T is unsigned it does not hurt having "x <= 0" here
{
x = 1;
x = int_tools_rotate_right_one_bit(x);
x = ~x;
}
return x;
}
template <class T> void infinint::infinint_unstack_to(T &a)
{
// T is supposed to be an unsigned "integer"
// (ie.: sizeof() returns the width of the storage bit field and no sign bit is present)
// Note : static here avoids the recalculation of max_T at each call
static const T max_T = max_val_of(a);
infinint step = max_T - a;
if(*this < step)
{
T transfert = 0;
unsigned char *debut = (unsigned char *)&transfert;
unsigned char *ptr = debut + sizeof(transfert) - 1;
storage::iterator it = field->rbegin();
while(ptr >= debut && it != field->rend())
{
*ptr = *it;
--ptr;
--it;
}
if(used_endian == little_endian)
int_tools_swap_bytes(debut, sizeof(transfert));
a += transfert;
*this -= *this;
}
else
{
*this -= step;
a = max_T;
}
}
} // end of namespace
#endif
|