This file is indexed.

/usr/include/tntdb/decimal.h is in libtntdb-dev 1.3-4.

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
/*
 * Copyright (C) 2007,2012 Tommi Maekitalo, Mark Wright
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * As a special exception, you may use this file as part of a free
 * software library without restriction. Specifically, if other files
 * instantiate templates or use macros or inline functions from this
 * file, or you compile this file and link it with other files to
 * produce an executable, this file does not by itself cause the
 * resulting executable to be covered by the GNU General Public
 * License. This exception does not however invalidate any other
 * reasons why the executable file might be covered by the GNU Library
 * General Public License.
 * 
 * This library 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
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef TNTDB_DECIMAL_H
#define TNTDB_DECIMAL_H

#include <string>
#include <limits>
#include <iosfwd>
#include <tntdb/config.h>

namespace tntdb
{
  class Decimal
  {
    public:
#ifdef HAVE_LONG_LONG
      typedef long long LongType;
#else
      typedef long LongType;
#endif
#ifdef HAVE_UNSIGNED_LONG_LONG
      typedef unsigned long long UnsignedLongType;
#else
      typedef unsigned long UnsignedLongType;
#endif
    private:

      // inf: _mantissa is empty, _exponent = numeric_limits<short>::max()
      // nan: _mantissa is empty, _exponent==0
      std::string _mantissa;  // just '0'-'9'
      short _exponent;
      bool _negative;

      Decimal(const std::string& mantissa, short exponent, bool negative)
        : _mantissa(mantissa),
          _exponent(exponent),
          _negative(negative)
      { }

      friend class Parser;

      LongType _getInteger(LongType min, LongType max) const;
      UnsignedLongType _getUnsigned(UnsignedLongType max) const;

      template <typename IntType> IntType _getInteger() const
      { return _getInteger(std::numeric_limits<IntType>::min(),
                           std::numeric_limits<IntType>::max()); }

      template <typename UnsignedType> UnsignedType _getUnsigned() const
      { return _getUnsigned(std::numeric_limits<UnsignedLongType>::max()); }

      void _getInteger(short& ret) const                         { ret = _getInteger<short>(); }
      void _getInteger(int& ret) const                           { ret = _getInteger<int>(); }
      void _getInteger(long& ret) const                          { ret = _getInteger<long>(); }
#ifdef HAVE_LONG_LONG
      void _getInteger(long long& ret) const                     { ret = _getInteger<long long>(); }
#endif
      void _getInteger(unsigned short& ret) const                { ret = _getUnsigned<unsigned short>(); }
      void _getInteger(unsigned int& ret) const                  { ret = _getUnsigned<unsigned int>(); }
      void _getInteger(unsigned long& ret) const                 { ret = _getUnsigned<unsigned long>(); }
#ifdef HAVE_UNSIGNED_LONG_LONG
      void _getInteger(unsigned long long& ret) const            { ret = _getUnsigned<unsigned long long>(); }
#endif

      void _setInteger(LongType l, short exponent);
      void _setUnsigned(UnsignedLongType l, short exponent);

    public:

      class Parser;

      Decimal();

      explicit Decimal(long double value)
      { setDouble(value); }

      explicit Decimal(const std::string& value);

      explicit Decimal(long mantissa, short exponent)
      { setInteger(mantissa, exponent); }

      static Decimal infinity()
      { return Decimal(std::string(), std::numeric_limits<short>::max(), false); }

      static Decimal nan()
      { return Decimal(std::string(), 0, false); }

      const std::string& mantissa() const
      { return _mantissa; }

      short exponent() const
      { return _exponent; }

      bool negative() const
      { return _negative; }

      bool isInfinity(bool positiveInfinity = true) const
        { return _negative != positiveInfinity && _mantissa.empty() && _exponent == std::numeric_limits<short>::max(); }

      bool isPositiveInfinity() const
        { return isInfinity(true); }

      bool isNegativeInfinity() const
        { return isInfinity(false); }

      bool isNaN() const
        { return _mantissa.empty() && _exponent == 0; }

      bool isZero() const
        { return _mantissa == "0"; }

      void setDouble(long double value);

      long double getDouble() const;

      void setInteger(short l, short exponent = 0)               { _setInteger(l, exponent); }
      void setInteger(int l, short exponent = 0)                 { _setInteger(l, exponent); }
      void setInteger(long l, short exponent = 0)                { _setInteger(l, exponent); }
      void setInteger(long long l, short exponent = 0)           { _setInteger(l, exponent); }
      void setInteger(unsigned short l, short exponent = 0)      { _setUnsigned(l, exponent); }
      void setInteger(unsigned int l, short exponent = 0)        { _setUnsigned(l, exponent); }
      void setInteger(unsigned long l, short exponent = 0)       { _setUnsigned(l, exponent); }
      void setInteger(unsigned long long l, short exponent = 0)  { _setUnsigned(l, exponent); }

      template <typename IntType>
      IntType getInteger() const
      {
        IntType ret;
        _getInteger(ret);
        return ret;
      }

      std::string toString() const;
      std::string toStringSci() const;
      std::string toStringFix() const;

      Decimal operator- () const
        { return Decimal(_mantissa, _exponent, !_negative); }

      bool operator== (const Decimal& other) const
        { return !isNaN() && _mantissa == other._mantissa && _exponent == other._exponent && _negative == other._negative; }

      bool operator!= (const Decimal& other) const
      { return !(*this == other); }

      bool operator< (const Decimal& other) const;

      bool operator> (const Decimal& other) const
      { return other < *this; }

      bool operator<= (const Decimal& other) const
      { return !(other < *this); }

      bool operator>= (const Decimal& other) const
      { return !(other > *this); }

  };

  std::istream& operator>> (std::istream& in, Decimal& dec);
  std::ostream& operator<< (std::ostream& out, const Decimal& dec);

}

#endif // TNTDB_DECIMAL_H
// vim:et:sw=2