This file is indexed.

/usr/include/root/Reflex/Any.h is in libroot-core-dev 5.34.00-2.

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
// @(#)root/reflex:$Id: Any.h 29288 2009-07-01 13:03:35Z axel $
// Author: Stefan Roiser 2004

// See http://www.boost.org/libs/any for Documentation.

// Copyright Kevlin Henney, 2000, 2001, 2002. All rights reserved.
//
// Permission to use, copy, modify, and distribute this software for any
// purpose is hereby granted without fee, provided that this copyright and
// permissions notice appear in all copies and derivatives.
//
// This software is provided "as is" without express or implied warranty.

#ifndef Reflex_Any
#define Reflex_Any

// What:  variant At boost::any
// who:   contributed by Kevlin Henney,
//        with features contributed and bugs found by
//        Ed Brey, Mark Rodgers, Peter Dimov, and James Curran
// when:  July 2001
// where: tested with BCC 5.5, MSVC 6.0, and g++ 2.95

#include "Reflex/Kernel.h"
#include <algorithm>
#include <typeinfo>
#include <iostream>

namespace Reflex {
/**
 * @class Any Any.h Reflex/Any.h
 * @author K. Henney
 */
class RFLX_API Any {
   friend RFLX_API std::ostream& operator <<(std::ostream&,
                                             const Any&);

public:
   /** Constructor */
   Any():
      fContent(0) {}

   /** Constructor */
   template <typename ValueType> Any(const ValueType &value):
      fContent(new Holder<ValueType>(value)) {}

   /** Copy Constructor */
   Any(const Any &other):
      fContent(other.fContent ? other.fContent->Clone() : 0) {}

   /** Dtor */
   ~Any() {
      delete fContent;
   }

   /** Clear the content */
   void
   Clear() {
      if (!Empty()) {
         delete fContent;
         fContent = 0;
      }
   }


   /** bool operator */
   operator bool() {
      return !Empty();
   }

   /** Modifier */
   Any&
   Swap(Any& rhs) {
      std::swap(fContent, rhs.fContent);
      return *this;
   }


   /** Modifier */
   template <typename ValueType> Any&
   operator =(const ValueType& rhs) {
      Any(rhs).Swap(*this);
      return *this;
   }


   /** Modifier */
   Any&
   operator =(const Any& rhs) {
      Any(rhs).Swap(*this);
      return *this;
   }


   /** Query */
   bool
   Empty() const {
      return !fContent;
   }


   /** Query */
   const std::type_info&
   TypeInfo() const {
      return fContent ? fContent->TypeInfo() : typeid(void);
   }


   /** Adress */
   void*
   Address() const {
      return fContent ? fContent->Address() : 0;
   }


private:
   // or public: ?
   /**
    * @class Placeholder BoostAny.h Reflex/BoostAny.h
    * @author K. Henney
    */
   class Placeholder {
   public:
      /** Constructor */
      Placeholder() {}

      /** Destructor */
      virtual ~Placeholder() {}

      /** Query */
      virtual const std::type_info& TypeInfo() const = 0;

      /** Query */
      virtual Placeholder* Clone() const = 0;

      /** Query */
      virtual void* Address() const = 0;

   };

   /**
    * @class Holder BoostAny.h Reflex/BoostAny.h
    * @author K. Henney
    */
   template <typename ValueType> class Holder: public Placeholder {
   public:
      /** Constructor */
      Holder(const ValueType& value):
         fHeld(value) {}

      /** Query */
      virtual const std::type_info&
      TypeInfo() const {
         return typeid(ValueType);
      }


      /** Clone */
      virtual Placeholder*
      Clone() const {
         return new Holder(fHeld);
      }


      /** Address */
      virtual void*
      Address() const {
         return (void*) (&fHeld);
      }


      /** representation */
      ValueType fHeld;

   };


   /** representation */
   template <typename ValueType> friend ValueType* any_cast(Any*);

   // or  public:

   /** representation */
   Placeholder* fContent;

};


/**
 * @class BadAnyCast Any.h Reflex/Any.h
 * @author K. Henney
 */
class BadAnyCast: public std::bad_cast {
public:
   /** Constructor */
   BadAnyCast() {}

   /** Query */
   virtual const char*
   what() const throw() {
      return "BadAnyCast: failed conversion using any_cast";
   }


};

/** throw */
template <class E> void
throw_exception(const E& e) {
   throw e;
}


/** value */
template <typename ValueType> ValueType*
any_cast(Any* operand) {
   return operand && operand->TypeInfo() == typeid(ValueType)
          ? &static_cast<Any::Holder<ValueType>*>(operand->fContent)->fHeld : 0;
}


/** value */
template <typename ValueType> const ValueType*
any_cast(const Any* operand) {
   return any_cast<ValueType>(const_cast<Any*>(operand));
}


/** value */
template <typename ValueType> ValueType
any_cast(const Any& operand) {
   const ValueType* result = any_cast<ValueType>(&operand);

   if (!result) {
      throw_exception(BadAnyCast());
   }
   return *result;
}


/** stream operator */
RFLX_API std::ostream& operator <<(std::ostream&,
                                   const Any&);

} // namespace Reflex

#endif // Reflex_Any