This file is indexed.

/usr/include/dune/grid/common/datahandleif.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
#ifndef DUNE_DATAHANDLEIF_HH
#define DUNE_DATAHANDLEIF_HH

/** @file
  @author Robert Kloefkorn 
  @brief Describes the parallel communication interface class for
  MessageBuffers and DataHandles
*/

#include <dune/common/bartonnackmanifcheck.hh>

namespace Dune 
{

/** @brief 
   Communication message buffer interface. This class describes the
   interface for reading and writing data to the communication message
   buffer. As message buffers might be deeply implemented in various
   packages the message buffers implementations cannot be derived from
   this interface class. Therefore we just apply the engine concept to
   wrap the message buffer call and make sure that the interface is
   fulfilled.

   Template parameters:

   - <tt>MessageBufferImp</tt> implementation of message buffer used by the grids communication method 
   \ingroup GICollectiveCommunication
 */ 
template <class MessageBufferImp>
class MessageBufferIF 
{
  MessageBufferImp & buff_;
public:
  //! stores reference to original buffer \c buff 
  MessageBufferIF(MessageBufferImp & buff) : buff_(buff) {}
  
  /** @brief just wraps the call of the internal buffer method write
    which writes the data of type T from the buffer by using the
    assigment operator of T 
    @param val reference to object that is written 
  */
  template <class T> 
  void write(const T & val) 
  {
    buff_.write(val);
  }

  /** @brief just wraps the call of the internal buffer method read
    which reads the data of type T from the buffer by using the 
    assigment operator of T 
    @param val reference to object that is read 
  */
  template <class T> 
  void read(T & val) const
  {
    buff_.read(val);
  }
}; // end class MessageBufferIF 


/** @brief CommDataHandleIF describes the features of a data handle for
  communication in parallel runs using the Grid::communicate methods. 
  Here the Barton-Nackman trick is used to interprete data handle objects
  as its interface. Therefore usable data handle classes need to be
  derived from this class.

   \tparam DataHandleImp implementation of the users data handle 
   \tparam DataTypeImp type of data that are going to be communicated which is exported as \c DataType (for example double)
  \ingroup GICollectiveCommunication
 */
template <class DataHandleImp, class DataTypeImp>
class CommDataHandleIF
{
public:
  //! data type of data to communicate 
  typedef DataTypeImp DataType; 

protected:  
  // one should not create an explicit instance of this inteface object
  CommDataHandleIF() {} 

public:
  /** @brief 
     returns true if data for given valid codim should be communicated
     @param dim valid dimension (i.e. the grids dimension) 
     @param codim valid codimension of the entity set for which data should be communicated 
  */
  bool contains (int dim, int codim) const
  {
    CHECK_INTERFACE_IMPLEMENTATION((asImp().contains(dim,codim)));
    return asImp().contains(dim,codim);
  }
  
  /** @brief 
     returns true if size of data per entity of given dim and codim is a constant
     @param dim valid dimension (i.e. the grids dimension) 
     @param codim valid codimension of the entity set for which data should be communicated 
  */
  bool fixedsize (int dim, int codim) const
  {
    CHECK_INTERFACE_IMPLEMENTATION((asImp().fixedsize(dim,codim)));
    return asImp().fixedsize(dim,codim); 
  }
  
  /** @brief how many objects of type DataType have to be sent for a given entity
      @note Only the sender side needs to know this size. 
      @param e entity for which the size should be dertermined 
  */
  template<class EntityType>
  size_t size (const EntityType& e) const
  { 
    CHECK_INTERFACE_IMPLEMENTATION((asImp().size(e)));
    return asImp().size(e);
  }
  
  /** @brief pack data from user to message buffer
      @param buff message buffer provided by the grid 
      @param e entity for which date should be packed to buffer 
  */
  template<class MessageBufferImp, class EntityType>
  void gather (MessageBufferImp& buff, const EntityType& e) const
  { 
    MessageBufferIF<MessageBufferImp> buffIF(buff);
    CHECK_AND_CALL_INTERFACE_IMPLEMENTATION((asImp().gather(buffIF,e)));
  }

  /*! unpack data from message buffer to user 
      n is the number of objects sent by the sender
      @param buff message buffer provided by the grid 
      @param e entity for which date should be unpacked from buffer 
      @param n number of data written to buffer for this entity before 
  */
  template<class MessageBufferImp, class EntityType>
  void scatter (MessageBufferImp& buff, const EntityType& e, size_t n)
  { 
    MessageBufferIF<MessageBufferImp> buffIF(buff);
    CHECK_AND_CALL_INTERFACE_IMPLEMENTATION((asImp().scatter(buffIF,e,n)));
  }

private:
  //!  Barton-Nackman trick 
  DataHandleImp& asImp () {return static_cast<DataHandleImp &> (*this);}
  //!  Barton-Nackman trick 
  const DataHandleImp& asImp () const 
  {
    return static_cast<const DataHandleImp &>(*this);
  }
}; // end class CommDataHandleIF 

#undef CHECK_INTERFACE_IMPLEMENTATION
#undef CHECK_AND_CALL_INTERFACE_IMPLEMENTATION

} // end namespace Dune 
#endif