This file is indexed.

/usr/include/dune/grid/common/entitypointer.hh is in libdune-grid-dev 2.2.1-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
#ifndef DUNE_GRID_ENTITYPOINTER_HH
#define DUNE_GRID_ENTITYPOINTER_HH

#include <dune/common/iteratorfacades.hh>
#include <dune/grid/common/grid.hh>

/** \file
    \brief Wrapper and interface classe for a static iterator (EntityPointer)
*/

namespace Dune
{

/**
   @brief Wrapper class for pointers to entities

   Template parameters are:

   - <tt>GridImp</tt> Type that is a model of Dune::Grid
   - <tt>IteratorImp</tt> Class template that is a model of Dune::EntityPointer
 
   <H3>Engine Concept</H3>

   The EntityPointer class template wraps an object of type IteratorImp and forwards all member 
   function calls to corresponding members of this class. In that sense EntityPointer
   defines the interface and IteratorImp supplies the implementation.

   <H3>Relation of EntityPointer and Iterators</H3>

    The EntityPointer can be used like a static iterator. It points to a
    Dune::Entity and can be dereferenced, compared and it knows the
    Entity's level.

    You should be able to initialize and interpret every Dune::EntityIterator
    as a Dune::EntityPointer. Therefore we need an inheritance hierarchy of
    the Iterator wrappers:
    \code
    class Dune::EntityPointer< Grid, IteratorImp >;

    class Dune::EntityIterator< codim, Grid, IteratorImp >
    : public Dune::EntityPointer< Grid, IteratorImp >;
    \endcode

    This hierarchy must be mimicked in the implementation (i.e. SGrid):
    \code
    class SEntityPointer<...>;

    class SLevelIterator<...> :
       public SEntityPointer <...>;

    class SHierarchicIterator<...> :
       public SEntityPointer <...>;
       
    ...
    \endcode
    Please note that dereference(...), equals(...) and level() are only
    implemented in SEntityPointer -- SLevelIterator inherits these methods.
    And it is not possible to specialize these, because EntityPointer always
    uses the base class.

    This leads to a hierarchy where
    Dune::LevelIterator<..., SLevelIterator> inherits
    Dune::EntityPointer<..., SLevelIterator> and
    Dune::HierarchicIterator<..., SHierarchicIterator> inherits
    Dune::EntityPointer<..., SHierarchicIterator>.
    And virtualy all Dune::EntityPointer<..., SXxxIterator> are descendents
    of Dune::EntityPointer<..., SEntityPointer>.

    Now you can compare Dune::LevelIterator with Dune::EntityPointer and
    Dune::LeafIterator with Dune::HierarchicIterator. And you can assign
    Dune::EntityPointer from any Dune::XxxIterator class. Even more, you can
    cast an Iterator refence to a reference pointing to Dune::EntityPointer.

    The compiler takes care that you only assign/compare Iterators from the same
    Grid.

    The downside (or advantage) of this inheritance is that you can
    not use different comparison operators and different dereference
    oprators for the different Iterators in one Grid. On the first
    sight it is a downside because one might consider it a good idea
    to have special treatment for different iterators. On the other
    hand it's very confusing for the user if different Iterators show
    different behavior in the same situation. So now they are forced to
    show the same behavior.
    

    \ingroup GIEntityPointer
*/
template<class GridImp, class IteratorImp>
class EntityPointer
{
  // we must be able to initialize a GenericLeafIterator.realIterator from
  // EntityPointer.realIterator
  friend class Dune::GenericLeafIterator<GridImp>;

  // need to make copy constructor of EntityPointer work for any iterator
  //friend class EntityPointer<GridImp,typename IteratorImp::EntityPointerImp>;
  template< class, class > friend class EntityPointer;

#if DUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS
public:
#else
protected:
  // give the GridDefaultImplementation class access to the realImp 
  friend class GridDefaultImplementation< 
            GridImp::dimension, GridImp::dimensionworld,
            typename GridImp::ctype,
            typename GridImp::GridFamily> ;
#endif
  // type of underlying implementation, for internal use only 
  typedef IteratorImp Implementation;

  //! return reference to the real implementation 
  Implementation &impl () { return realIterator; }
  //! return reference to the real implementation 
  const Implementation &impl () const { return realIterator; }

protected:
  Implementation realIterator;

public:
  //! codimension of entity pointer 
  enum { codimension = IteratorImp::codimension };
  
  /** \brief The Entity that this EntityPointer can point to */
  typedef typename IteratorImp::Entity Entity;

  enum { 
	/** \brief The codimension of this EntityPointer */
	codim = IteratorImp::codimension 
  };

  //===========================================================
  /** @name Constructor & conversion
   */
  //@{
  //===========================================================

  /** \brief Templatized copy constructor from arbitrary IteratorImp.
	  This enables that an EntityPointer can be copy-constructed from
	  LevelIterator, LeafIterator and HierarchicIterator (because
	  these are derived from EntityPointer<...> with their 
	  corresponding implementation.
   */
  template< class ItImp >
  explicit EntityPointer ( const EntityPointer< GridImp, ItImp > &ep )
  : realIterator( ep.realIterator )
  {}

  /** \brief Templatized constructor from type of entity that 
      this entity pointer points to. This constructor can be used to
      create an entity pointer from an entity in order to store an
      entity. The implementation of EntityPointer has to have a
      constructor taking a Dune::Entity. 
   */
  EntityPointer(const Entity& entity)
  : realIterator( entity.impl() )
  {}

  /** \brief Constructor from type of entity implementation that 
      this entity pointer points to. This constructor is only 
      used in the EntityDefaultImplementation to implement the method 
      seed() by default when the type of EntitySeed and EntityPointer coniside.
   */
  EntityPointer ( const typename Entity::Implementation &entityImp )
  : realIterator( entityImp )
  {}

  template< class ItImp >
  EntityPointer &operator= ( const EntityPointer< GridImp, ItImp > &ep )
  {
    realIterator = ep.realIterator;
    return *this;
  }

  //@}

  //===========================================================
  /** @name Dereferencing
   */
  //@{
  //===========================================================

  /** \brief Dereferencing operator. */
  Entity & operator*() const
    {
      return realIterator.dereference();
    }

  /** \brief Pointer operator. */
  Entity * operator->() const
    {
      return & realIterator.dereference();
    }
  //@}

  //===========================================================
  /** @name Compare methods
   */
  //@{
  //===========================================================

  /** \brief Checks for equality.
	  Only works for EntityPointers and iterators on the same grid.
	  Due to the conversion operators one can compare
	  all kinds of iterators and EntityPointer.
  */
  template< class ItImp >
  bool operator== ( const EntityPointer< GridImp, ItImp > &rhs ) const
  {
    return equals( rhs );
  }

  /** \brief Checks for inequality.
	  Only works for EntityPointers and iterators on the same grid.
	  Due to the conversion operators one can compare
	  all kinds of iterators and EntityPointer.
  */
  template< class ItImp >
  bool operator!= ( const EntityPointer< GridImp, ItImp > &rhs ) const
  {
    return !equals( rhs );
  }
  //@}


  //===========================================================
  /** @name Query methods
   */
  //@{
  //===========================================================

  /** \brief Ask for level of entity.
	  This method is redundant and is only there for efficiency reasons.
	  It allows an implementation to return the level without actually
	  constructing the entity.
   */
  int level () const
    {
      return realIterator.level();
    }

  //@}
  

  //===========================================================
  /** @name Implementor interface
   */
  //@{
  //===========================================================


  /** \brief Copy Constructor from an Iterator implementation.

     You can supply LeafIterator, LevelIterator, HierarchicIterator
     or EntityPointer.
  */
  EntityPointer(const IteratorImp & i) :
    realIterator(i) {}

  /** @brief Forward equality check to realIterator */
  template< class ItImp >
  bool equals ( const EntityPointer< GridImp, ItImp > &rhs ) const
  {
    return realIterator.equals( rhs.realIterator );
  }
  //@}
};

}

#endif // DUNE_GRID_ENTITYPOINTER_HH