This file is indexed.

/usr/include/dune/grid/common/universalmapper.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
// $Id: universalmapper.hh 7390 2011-02-08 11:26:32Z christi $

#ifndef DUNE_UNIVERSALMAPPER_HH
#define DUNE_UNIVERSALMAPPER_HH

#include <iostream>
#include <map>
#include "mapper.hh"

/**
 * @file 
 * @brief  Mapper for any set of entities
 * @author Peter Bastian
 */

namespace Dune
{
  /** 
   * @addtogroup Mapper
   *
   * @{ 
   */
  
  /** @brief Implements a mapper for an arbitrary subset of entities

      This implementation uses an ID set and a map, thus it has log complexity for each access.
	  Template parameters are:

      Entities need to be registered in order to use them. If an entity is queried with map, the known index is returned or a new index is created. The method contains only return true, if the entites was queried via map already.
      
	  \par G
	  A Dune grid type.
	  \par IDS
	  An Id set for the given grid
  */
  template <typename G, typename IDS>
  class UniversalMapper :
        public Mapper<G,UniversalMapper<G,IDS> >
  {
	typedef typename IDS::IdType IdType;
  public:

    //! import the base class implementation of map and contains (including the deprecated version)
    //! \todo remove after next release
    using Mapper< G, UniversalMapper >::map;
    using Mapper< G, UniversalMapper >::contains;

	/** @brief Construct mapper from grid and one of its id sets

	   \param grid A Dune grid object.
	   \param idset An IndexSet object of the grid.

	 */
	UniversalMapper (const G& grid, const IDS& idset)
	  : g(grid), ids(idset), index()
	{
	  n=0; // zero data elements
	}

	/** @brief Map entity to array index.

        If an entity is queried with map, the known index is returned or a new index is created. A call to map can never fail.
        
		\param e Reference to codim cc entity, where cc is the template parameter of the function.
		\return An index in the range 0 ... Max number of entities in set - 1.
	 */
	template<class EntityType>
	int map (const EntityType& e) const
	{
	  IdType id = ids.id(e);                             // get id
	  typename std::map<IdType,int>::iterator it = index.find(id);// look up in map
	  if (it!=index.end()) return it->second;            // return index if found
	  index[id] = n++;                                   // put next index in map
	  return n-1;                                        // and return it
	}

  
	/** @brief Map subentity of codim 0 entity to array index.

        If an entity is queried with map, the known index is returned or a new index is created. A call to map can never fail.
        
	   \param e Reference to codim 0 entity.
	   \param i Number of codim cc subentity of e, where cc is the template parameter of the function.
       \param cc codim of the subentity
	   \return An index in the range 0 ... Max number of entities in set - 1.
	 */
    int map (const typename G::Traits::template Codim<0>::Entity& e, int i, int cc) const
	{
      IdType id = ids.subId(e,i,cc);           // get id
	  typename std::map<IdType,int>::iterator it = index.find(id);// look up in map
	  if (it!=index.end()) return it->second;            // return index if found
	  index[id] = n++;                                   // put next index in map
	  return n-1;                                        // and return it
	}

	/** @brief Return total number of entities in the entity set managed by the mapper.

	   This number can be used to allocate a vector of data elements associated with the 
       entities of the set. In the parallel case this number is per process (i.e. it
       may be different in different processes).

	   \return Size of the entity set.
	*/
	int size () const
	{
	  return n;
	}
 
	/** @brief Returns true if the entity is contained in the index set

        The method contains only return true, if the entites was queried via map already.
        
	   \param e Reference to entity
	   \param result integer reference where corresponding index is  stored if true
	   \return true if entity is in entity set of the mapper
	 */
	template<class EntityType>
	bool contains (const EntityType& e, int& result) const
	{
	  IdType id = ids.id(e);                             // get id
	  typename std::map<IdType,int>::iterator it = index.find(id);// look up in map
	  if (it!=index.end())
		{
		  result = it->second;
		  return true;
		}
	  else
		return false;
	}

	/** @brief Returns true if the entity is contained in the index set

	   \param[in] e Reference to codim 0 entity
	   \param[in] i subentity number
	   \param[in] cc subentity codim
	   \param[out] result integer reference where corresponding index is stored if true
	   \return true if entity is in entity set of the mapper
	 */
    bool contains (const typename G::Traits::template Codim<0>::Entity& e, int i, int cc, int& result) const
	{
      IdType id = ids.subId(e,i,cc);           // get id
	  typename std::map<IdType,int>::iterator it = index.find(id);// look up in map
	  if (it!=index.end())
		{
		  result = it->second;
		  return true;
		}
	  else
		return false;
	}
 
 	/** @brief Recalculates map after mesh adaptation
	 */
	void update ()
	{ // nothing to do here
	}

	// clear the mapper
	void clear ()
	{
	  index.clear();
	  n = 0;
	}
  
  private:
	mutable int n; // number of data elements required
	const G& g;
	const IDS& ids;
	mutable std::map<IdType,int> index;
  };




  /** @brief Universal mapper based on global ids
   
  Template parameters are:
  
  \par G
  A Dune grid type.
  */
  template <typename G>
  class GlobalUniversalMapper : public UniversalMapper<G,typename G::Traits::GlobalIdSet> 
  {
  public:
	/* @brief The constructor
	   @param grid A reference to a grid.
	 */
	GlobalUniversalMapper (const G& grid) 
	  : UniversalMapper<G,typename G::Traits::GlobalIdSet>(grid,grid.globalIdSet())
	{}
  };

  /** @brief Universal mapper based on local ids
   
  Template parameters are:
  
  \par G
  A Dune grid type.
  */
  template <typename G>
  class LocalUniversalMapper : public UniversalMapper<G,typename G::Traits::LocalIdSet> 
  {
  public:
	/* @brief The constructor
	   @param grid A reference to a grid.
	 */
	LocalUniversalMapper (const G& grid) 
	  : UniversalMapper<G,typename G::Traits::LocalIdSet>(grid,grid.localIdSet())
	{}
  };


  /** @} */
}
#endif