This file is indexed.

/usr/include/dune/grid/albertagrid/indexstack.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
#ifndef DUNE_ALBERTAGRID_INDEXSTACK_HH
#define DUNE_ALBERTAGRID_INDEXSTACK_HH

#include <assert.h>
#include <stack>

#include <dune/common/exceptions.hh>
#include <dune/common/reservedvector.hh>

/** @file
 @author Robert Kloefkorn 
 @brief Provides an index stack that supplies indices for element numbering
 for a grid (i.e. AlbertaGrid and ALUGrid)
*/

namespace Dune {

//!  IndexStack providing indices via getIndex and freeIndex
//!  indices that are freed, are put on a stack and get
template <class T, int length> 
class IndexStack 
{
  class MyFiniteStack : public ReservedVector<T,length> 
  {
    typedef ReservedVector<T,length>  BaseType ;
  public:
    //! Returns true if the stack is full
    bool full () const { return this->size() >= length; }

    //! standard psuh method 
    void push( const T& t )  { BaseType :: push_back( t ); }

    //! Removes and returns the uppermost object from the stack 
    T topAndPop ()
    {
      assert( !this->empty() );
      assert( this->size() <= length );
      // This code is not slower than using the array structure directly.
      // The compiler removes the temporary completely.  I measured this.
      // See the commit message for revision 7837 for more details.
      T tmp = this->back();
      this->pop_back();
      return tmp;
    }
  };

  typedef MyFiniteStack StackType;
  typedef typename std::stack < StackType * > StackListType;
  
  StackListType fullStackList_;
  StackListType emptyStackList_;
  
  //typedef typename StackListType::Iterator DListIteratorType;
  StackType * stack_; 

  // current maxIndex 
  int maxIndex_; 
public:
  //! Constructor, create new IndexStack
  inline IndexStack(); 

  //! Destructor, deleting all stacks 
  inline ~IndexStack (); 

  //! set index as maxIndex if index is bigger than maxIndex
  inline void checkAndSetMax(T index) { if(index > maxIndex_) maxIndex_ = index;  }
  
  //! set index as maxIndex
  inline void setMaxIndex(T index) { maxIndex_ = index; }

  //! return maxIndex which is also the 
  inline int getMaxIndex() const { return maxIndex_;  }
  
  //! return maxIndex which is also the 
  inline int size() const { return getMaxIndex(); }
  
  //! restore index from stack or create new index 
  inline T getIndex (); 

  //! store index on stack 
  inline void freeIndex(T index);

  //! test stack funtcionality
  inline void test ();

  // backup set to out stream 
  inline void backupIndexSet ( std::ostream & os ); 

  // restore from in stream 
  inline void restoreIndexSet ( std::istream & is );
private:
  // no copy constructor allowed 
  IndexStack( const IndexStack<T,length> & s) : maxIndex_ (0) , stack_(0) {}
 
  // no assignment operator allowed 
  IndexStack<T,length> & operator = ( const IndexStack<T,length> & s) 
  {
    DUNE_THROW(Exception, "IndexStack::operator = () not allowed!");
    return *this; 
  }

  // clear fullStacks 
  void clearStack ();
  
};  // end class IndexStack 

//****************************************************************
// Inline implementation 
// ***************************************************************
template <class T, int length>
inline IndexStack<T,length>::IndexStack()
  : stack_ ( new StackType () ) , maxIndex_ (0) {} 
  
template <class T, int length>
inline IndexStack<T,length>::~IndexStack () 
{
  if(stack_) delete stack_;
  stack_ = 0;

  while( !fullStackList_.empty() )
  {
    StackType * st = fullStackList_.top();
    if(st) delete st; 
    fullStackList_.pop();
  }
  while( !emptyStackList_.empty() )
  {
    StackType * st = emptyStackList_.top();
    if(st) delete st; 
    emptyStackList_.pop();
  }
}

template <class T, int length>
inline T IndexStack<T,length>::getIndex () 
{
  if((*stack_).empty()) 
  {
    if( fullStackList_.size() <= 0)
    {
      return maxIndex_++;
    }
    else 
    {
      emptyStackList_.push( stack_ );
      stack_ = fullStackList_.top();
      fullStackList_.pop();
    }
  }
  return (*stack_).topAndPop();
}

template <class T, int length>
inline void IndexStack<T,length>::freeIndex ( T index ) 
{
  if((*stack_).full())
  {
    fullStackList_.push(  stack_ );
    if(emptyStackList_.size() <= 0)
    {
      stack_ = new StackType (); 
    }
    else 
    {
      stack_ = emptyStackList_.top();
      emptyStackList_.pop();
    }
  }
  (*stack_).push(index); 
}

template <class T, int length>
inline void IndexStack<T,length>::test () 
{
  T vec[2*length];

  for(int i=0; i<2*length; i++)
    vec[i] = getIndex();

  for(int i=0; i<2*length; i++)
    freeIndex(vec[i]);
  
  for(int i=0; i<2*length; i++)
    vec[i] = getIndex();
  
  for(int i=0; i<2*length; i++)
    printf(" index [%d] = %d \n",i,vec[i]);
}

template <class T, int length>
inline void IndexStack<T,length>::backupIndexSet ( std::ostream & os ) 
{
  // holes are not stored at the moment 
  os.write( ((const char *) &maxIndex_ ), sizeof(int) ) ;
  return ;
}

template <class T, int length>
inline void IndexStack<T,length>::restoreIndexSet ( std::istream & is )
{
  is.read ( ((char *) &maxIndex_), sizeof(int) );
  clearStack ();

  return ;
}

template <class T, int length>
inline void IndexStack<T,length>::clearStack () 
{
  if(stack_) 
  {
    delete stack_;
    stack_ = new StackType();
    assert(stack_);
  }

  while( !fullStackList_.empty() )
  {
    StackType * st = fullStackList_.top();
    if(st) delete st; 
    fullStackList_.pop();
  }
  return;
}

} // end namespace Dune
#endif