This file is indexed.

/usr/include/openturns/StorageManager.hxx is in libopenturns-dev 0.15-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
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
//                                               -*- C++ -*-
/**
 *  @file  StorageManager.hxx
 *  @brief StorageManager provides an interface for different storage classes
 *
 *  (C) Copyright 2005-2011 EDF-EADS-Phimeca
 *
 *  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.
 *
 *  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., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 *  @author: $LastChangedBy: schueller $
 *  @date:   $LastChangedDate: 2011-06-01 17:59:24 +0200 (Wed, 01 Jun 2011) $
 *  Id:      $Id: StorageManager.hxx 1920 2011-06-01 15:59:24Z schueller $
 */
#ifndef OPENTURNS_STORAGEMANAGER_HXX
#define OPENTURNS_STORAGEMANAGER_HXX

#include <iostream>              // for std::ostream
#include <vector>                // for std::vector
#include <set>                   // for std::set
#include <map>                   // for std::map
#include <cstddef>               // for ptrdiff_t
#include "Object.hxx"
#include "Pointer.hxx"
#include "Exception.hxx"

namespace OpenTURNS
{

  /* Forward declaration of Advocate */
  class Advocate;

  namespace Base
  {

    namespace Common
    {

      /* Forward declaration of PersistentObject */
      class PersistentObject;

      /* Forward declaration of InterfaceObject */
      class InterfaceObject;

      /* Forward declaration of Study */
      class Study;


      /** Helper classes for StorageManager
       *
       * Allow correct selection of method
       */
      struct SaveAction {};
      struct LoadAction {};

      /**
       * @class StorageManager
       * @brief Abstract class defining the way Open TURNS' objects are saved and reloaded
       *
       * StorageManager defines a common interface implemented by
       * different classes that must store and reload object onto
       * a persistent medium
       * @see Study
       */

      class StorageManager
        : public Object
      {
        CLASSNAME;
      public:

#ifndef SWIG
        typedef OpenTURNS::Advocate Advocate;

        struct InternalObject {
          virtual ~InternalObject() throw() {}
          virtual InternalObject * clone() const { return new InternalObject(*this); }
          virtual void first() {}
          virtual void next() {}
        };

        virtual
        Pointer<Advocate> registerObject(const PersistentObject & obj, bool fromStudy = false);

        virtual
        Advocate readObject();
#endif

        /**
         * Default constructor
         *
         * The default constructor allows the object to be
         * stored in STL containers like vector or map.
         * It takes an optional argument interpreted as the
         * name of the object in a user point of view. This
         * name is never used in another way than for user
         * information. This name has no meaning to the platform.
         */
        explicit StorageManager(UnsignedLong defaultVersion = 1);

        /**
         * Virtual constructor
         */
        virtual StorageManager * clone() const;

        /** @copydoc Object::__repr__() const */
        virtual String __repr__() const;

        /**
         * This method saves the PersistentObject onto the medium
         * @param obj The object to be saved
         * @param fromStudy Tell if the object was explicitely put in the study or not
         */
        virtual void save(const PersistentObject & obj, const String & label, bool fromStudy = false);

        /**
         * This method reloads the whole study from the medium
         * @param study The study to reload objects from
         */
        virtual void load(Study & study);

        /** Study accessor */
        Study * getStudy() const;

        /** Defines the study bound to the manager */
        void setStudy(Study * p_study);

        /** Returns the version of the study that the manager can read/write */
        UnsignedLong getDefaultStudyVersion() const;

        /** Study version accessor */
        UnsignedLong getStudyVersion() const;

        /** Study version accessor */
        void setStudyVersion(UnsignedLong version);


        /** Do some administrative tasks before saving/reloading
         * @internal
         */
        virtual void initialize(const SaveAction caller);
        virtual void initialize(const LoadAction caller);

        /** Do some administrative tasks after saving/reloading
         * @internal
         */
        virtual void finalize(const SaveAction caller);
        virtual void finalize(const LoadAction caller);

        /** Read and create the internal representation
         * @internal
         */
        virtual void read();

        /** Write the internal representation
         * @internal
         */
        virtual void write();

#ifndef SWIG
        /* Create a new empty object that will gather all saved information
         * @internal
         */
        virtual Pointer<InternalObject> createObject(const String & tag) const;

        /* Append an internal object to the collection of saved ones
         * @internal
         */
        virtual void appendObject(Pointer<InternalObject> & p_obj);

        /* Set the visibility attribute of the object
         * @internal
         */
        virtual void setVisibility(Pointer<InternalObject> & p_obj, Bool visible);

        /* Set the label associated with the object
         * @internal
         */
        virtual void setLabel(Pointer<InternalObject> & p_obj, const String & label);

        /* Add an attribute to an internal object
         * @internal
         */
        virtual void addAttribute(Pointer<InternalObject> & p_obj, const String & name, Bool value);
        virtual void addAttribute(Pointer<InternalObject> & p_obj, const String & name, UnsignedLong value);
        virtual void addAttribute(Pointer<InternalObject> & p_obj, const String & name, NumericalScalar value);
        virtual void addAttribute(Pointer<InternalObject> & p_obj, const String & name, NumericalComplex value);
        virtual void addAttribute(Pointer<InternalObject> & p_obj, const String & name, const String & value);
        virtual void addAttribute(Pointer<InternalObject> & p_obj, const String & name, const InterfaceObject & value);
        virtual void addAttribute(Pointer<InternalObject> & p_obj, const String & name, const PersistentObject & value);

        /* Add an indexed value to an internal object
         * @internal
         */
        virtual void addIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, Bool value);
        virtual void addIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, UnsignedLong value);
        virtual void addIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, NumericalScalar value);
        virtual void addIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, NumericalComplex value);
        virtual void addIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, const String & value);
        virtual void addIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, const InterfaceObject & value);
        virtual void addIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, const PersistentObject & value);

        /* Read an attribute
         * @internal
         */
        virtual void readAttribute(Pointer<InternalObject> & p_obj, const String & name, Bool & value);
        virtual void readAttribute(Pointer<InternalObject> & p_obj, const String & name, UnsignedLong & value);
        virtual void readAttribute(Pointer<InternalObject> & p_obj, const String & name, NumericalScalar & value);
        virtual void readAttribute(Pointer<InternalObject> & p_obj, const String & name, NumericalComplex & value);
        virtual void readAttribute(Pointer<InternalObject> & p_obj, const String & name, String & value);
        virtual void readAttribute(Pointer<InternalObject> & p_obj, const String & name,  InterfaceObject & value);
        virtual void readAttribute(Pointer<InternalObject> & p_obj, const String & name, PersistentObject & value);

        /* Read an indexed value
         * @internal
         */
        virtual void readIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, Bool & value);
        virtual void readIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, UnsignedLong & value);
        virtual void readIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, NumericalScalar & value);
        virtual void readIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, NumericalComplex & value);
        virtual void readIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, String & value);
        virtual void readIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, InterfaceObject & value);
        virtual void readIndexedValue(Pointer<InternalObject> & p_obj, UnsignedLong index, PersistentObject & value);
#endif


        /** Returns true if an object is already saved
         * @internal
         */
        Bool isSavedObject(Id id) const;

        /* Tells that an object is saved
         * @internal
         */
        void markObjectAsSaved(Id id) const;

      protected:

        /** Refresh the status of saved objects */
        void cleanSavedObjects() const;

        /** Query the manager if the version is correct */
        virtual Bool canManageVersion(UnsignedLong version) const;

        /** Return the current state of the storage manager (for those having one) */
        virtual const InternalObject & getState() const;

        /** Label element in study */
        void defineLabel(Id id, const String & label);

        /** Define element visibility in study */
        void defineVisibility(Id id, Bool visible);



      private:

        /** A reference to the current study */
        Study * p_study_;

        /** The default version of the study */
        const UnsignedLong defaultVersion_;

        /** The version of the study actually used */
        UnsignedLong version_;

        /** The map that tells if objects wera already saved */
        mutable std::map<Id, Bool> savedObjects_;

      }; /* class StorageManager */


    } /* namespace Common */
  } /* namespace Base */


#ifndef SWIG

  class Advocate
  {
  public:

    typedef Base::Common::StorageManager StorageManager;

    Advocate(StorageManager & mgr, const StorageManager::InternalObject & state)
      : mgr_(mgr),
        p_state_(state.clone()),
        p_obj_(0),
        studyVisible_(false),
        label_(),
        savedAttributes_()
    {}

    Advocate(StorageManager & mgr, const StorageManager::InternalObject & state, const String & tag)
      : mgr_(mgr),
        p_state_(state.clone()),
        p_obj_(mgr.createObject(tag)),
        studyVisible_(false),
        label_(),
        savedAttributes_()
    {}

    Advocate(const Advocate & other)
      : mgr_(other.mgr_),
        p_state_(other.p_state_->clone()),
        p_obj_(other.p_obj_),
        studyVisible_(other.studyVisible_),
        label_(other.label_),
        savedAttributes_(other.savedAttributes_)
    {}

    void saveObject()
    {
      mgr_.setVisibility( p_obj_, studyVisible_ );
      mgr_.setLabel( p_obj_, label_ );
      mgr_.appendObject( p_obj_ );
    }

    void setLabel(const String & label)
    {
      label_ = label;
      studyVisible_ = true;
    }

    void firstValue()
    {
      p_state_->first();
    }

    void nextValue()
    {
      p_state_->next();
    }

    template <typename _Tp>
    inline
    Advocate & saveAttribute(const String & attributeName, const _Tp & attributeValue)
    {
      checkSavedAttribute( attributeName );
      mgr_.addAttribute( p_obj_, attributeName, attributeValue );
      return *this;
    }

    template <typename _Tp>
    inline
    Advocate & saveIndexedValue(long attributeIndex, const _Tp & attributeValue)
    {
      mgr_.addIndexedValue( p_obj_, attributeIndex, attributeValue );
      return *this;
    }

    template <typename _Tp>
    inline
    Advocate & loadAttribute(const String & attributeName, _Tp & attributeValue)
    {
      mgr_.readAttribute( p_state_, attributeName, attributeValue );
      return *this;
    }

    template <typename _Tp>
    inline
    Advocate & loadIndexedValue(long attributeIndex, _Tp & attributeValue)
    {
      mgr_.readIndexedValue( p_state_, attributeIndex, attributeValue );
      return *this;
    }

  private:

    StorageManager & mgr_;
    Pointer<StorageManager::InternalObject> p_state_;
    Pointer<StorageManager::InternalObject> p_obj_;
    Bool studyVisible_;
    String label_;
    std::set<String> savedAttributes_;

    void checkSavedAttribute(const String & attributeName)
    {
#ifdef SAVELOAD_CHECKING
      if (savedAttributes_.insert(attributeName).second == false)
        throw Base::Common::InternalException(HERE) << "Attribute '" << attributeName << "' is already saved. Report bug";
#endif
    }
  }; /* end class Advocate */


  template <typename _Tp>
  struct PtrTraits
  {
    typedef _Tp       value_type;
    typedef ptrdiff_t difference_type;
    typedef _Tp *     pointer;
    typedef _Tp &     reference;
  };


  template <typename _Tp>
  class AdvocateIterator
  {
    Advocate advocate_;
    long index_;
    Bool first_;
  public:
    typedef typename PtrTraits<_Tp>::value_type      value_type;
    typedef typename PtrTraits<_Tp>::difference_type difference_type;
    typedef typename PtrTraits<_Tp>::pointer         pointer;
    typedef typename PtrTraits<_Tp>::reference       reference;
    typedef std::output_iterator_tag                 iterator_category;

    explicit AdvocateIterator(Advocate & advocate) : advocate_(advocate), index_(0), first_(true) {}

    AdvocateIterator &
    operator = (const _Tp & value)
    {
      advocate_.saveIndexedValue( index_, value );
      ++index_;
      return *this;
    }
    _Tp operator () ()
    {
      _Tp value;
      if (first_) {
        advocate_.firstValue();
        first_ = false;
      }
      advocate_.loadIndexedValue( index_, value );
      advocate_.nextValue();
      ++index_;
      return value;
    }
    AdvocateIterator & operator *  ()    { return *this; }
    AdvocateIterator & operator ++ ()    { return *this; }
    AdvocateIterator & operator ++ (int) { return *this; }
  }; /* end class AdvocateIterator */


#endif /* SWIG */

} /* namespace OpenTURNS */

#endif /* OPENTURNS_STORAGEMANAGER_HXX */