This file is indexed.

/usr/include/vtk-7.1/vtkDispatcher.h is in libvtk7-dev 7.1.1+dfsg1-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
/*=========================================================================

  Program:   Visualization Toolkit
  Module:    vtkDispatcher.h

  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
  All rights reserved.
  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     PURPOSE.  See the above copyright notice for more information.

=========================================================================*/

////////////////////////////////////////////////////////////////////////////////
// The Loki Library
// Copyright (c) 2001 by Andrei Alexandrescu
// This code accompanies the book:
// Alexandrescu, Andrei. "Modern C++ Design: Generic Programming and Design
//     Patterns Applied". Copyright (c) 2001. Addison-Wesley.
// Permission to use, copy, modify, distribute and sell this software for any
//     purpose is hereby granted without fee, provided that the above copyright
//     notice appear in all copies and that both that copyright notice and this
//     permission notice appear in supporting documentation.
// The author or Addison-Wesley Longman make no representations about the
//     suitability of this software for any purpose. It is provided "as is"
//     without express or implied warranty.
////////////////////////////////////////////////////////////////////////////////

/**
 * @class   vtkDispatcher
 * @brief   Dispatch to functor based on a pointer type.
 *
 * vtkDispatcher is a class that allows calling a functor based
 * on the derived types of a pointer. This form of dynamic dispatching
 * allows the conversion of runtime polymorphism to a compile time polymorphism.
 * For example it can be used as a replacement for the vtkTemplateMacro, with
 * bonus of being easier to understand
 *
 * Note: By default the return type is void.
 *
 * The functors that are passed around can contain state, and are allowed
 * to be const or non const. If you are using a functor that does have state,
 * make sure your copy constructor is correct.
 *
 * \code
 * struct functor{
 *   template<typename T>
 *   void operator()(T& t) const
 *   {
 *
 *   }
 * };
 *
 * Here is an example of using the dispatcher.
 *  \code
 *  statefull functor;
 *  vtkDispatcher<vtkDataArray> dispatcher;
 *  dispatcher.Add<vtkCharArray>(&functor);
 *  dispatcher.Add<vtkDoubleArray>(&functor);
 *  dispatcher.Add<vtkIdTypeArray>(&functor);
 *  dispatcher.Add<vtkIntArray>(&functor);
 *  dispatcher.Add<vtkFloatArray>(&functor);
 *  dispatcher.Go(ptr1);
 *  \endcode
 *
 *
 * @sa
 * vtkDispatcher
*/

#ifndef vtkDispatcher_h
#define vtkDispatcher_h

#include "vtkDispatcher_Private.h" //needed for Functor,CastingPolicy,TypeInfo
#include <map> //Required for the storage of template params to runtime params

////////////////////////////////////////////////////////////////////////////////
// class template FunctorDispatcher
////////////////////////////////////////////////////////////////////////////////
template
  <
    class BaseLhs,
    typename ReturnType = void,
    template <class, class> class CastingPolicy = vtkDispatcherCommon::vtkCaster
  >
class vtkDispatcher
{
public:
  /**
   * Add in a functor that is mapped to the template SomeLhs parameter.
   * When instances of the parameter is passed in on the Go method we will call
   * the functor and pass along the given parameter.
   * Note: This copies the functor so pass stateful functors by pointer.

   * \code
   * vtkDispatcher<vtkDataModel> dispatcher;
   * dispatcher.Add<vtkImageData>(exampleFunctor());
   * dispatcher.Add<vtkImageData>(&exampleFunctorWithState);
   * \endcode
   */
  template <class SomeLhs, class Functor>
  void Add(Functor fun) { this->AddInternal<SomeLhs>(fun, 1); }

  /**
   * Remove a functor that is bound to the given parameter type. Will
   * return true if we did remove a functor.
   */
  template <class SomeLhs>
  bool Remove() { return DoRemove(typeid(SomeLhs)); }

  /**
   * Given a pointer to an object that derives from the BaseLhs
   * we find the matching functor that was added, and call it passing along
   * the given parameter. It should be noted that the functor will be called
   * with the parameter being the derived type that Functor was registered with.

   * Note: This will only find exact matches. So if you add functor to find
   * vtkDataArray, it will not be called if passed with a vtkDoubleArray.

   * \code

   * vtkDispatcher<vtkDataArray> dispatcher;
   * dispatcher.Add(vtkFloatArray>(floatFunctor())
   * dispatcher.Add(vtkDoubleArray>(doubleFunctor())
   * dispatcher.Go(dataArray1);
   * dispatcher.Go(dataArray2);
   * \endcode
   */
  ReturnType Go(BaseLhs* lhs);

protected:
  typedef vtkDispatcherCommon::TypeInfo TypeInfo;
  typedef vtkDispatcherPrivate::Functor<ReturnType,BaseLhs> MappedType;

  void DoAddFunctor(TypeInfo lhs, MappedType fun);
  bool DoRemove(TypeInfo lhs);
  typedef std::map<TypeInfo, MappedType > MapType;
  MapType FunctorMap;
private:
  template <class SomeLhs, class Functor>
  void AddInternal(Functor const& fun, long);
  template <class SomeLhs, class Functor>
  void AddInternal(Functor* fun, int);
};

//We are making all these method non-inline to reduce compile time overhead
//----------------------------------------------------------------------------
template<class BaseLhs,typename ReturnType,
         template <class, class> class CastingPolicy>
template <class SomeLhs, class Functor>
void vtkDispatcher<BaseLhs,ReturnType,CastingPolicy>::AddInternal(const Functor& fun, long)
{
  typedef vtkDispatcherPrivate::FunctorDispatcherHelper<
      BaseLhs,
      SomeLhs,
      ReturnType,
      CastingPolicy<SomeLhs, BaseLhs>,
      Functor> Adapter;
  Adapter ada(fun);
  MappedType mt(ada);
  DoAddFunctor(typeid(SomeLhs),mt);
}


//----------------------------------------------------------------------------
template<class BaseLhs,typename ReturnType,
         template <class, class> class CastingPolicy>
template <class SomeLhs, class Functor>
void vtkDispatcher<BaseLhs,ReturnType,CastingPolicy>::AddInternal(Functor* fun, int)
{
  typedef vtkDispatcherPrivate::FunctorRefDispatcherHelper<
      BaseLhs,
      SomeLhs,
      ReturnType,
      CastingPolicy<SomeLhs, BaseLhs>,
      Functor> Adapter;
  Adapter ada(*fun);
  MappedType mt(ada);
  DoAddFunctor(typeid(SomeLhs),mt);
}

//----------------------------------------------------------------------------
template<class BaseLhs,typename ReturnType,
         template <class, class> class CastingPolicy>
void vtkDispatcher<BaseLhs,ReturnType,CastingPolicy>
::DoAddFunctor(TypeInfo lhs, MappedType fun)
{
  FunctorMap[TypeInfo(lhs)] = fun;
}

//----------------------------------------------------------------------------
template <class BaseLhs, typename ReturnType,
          template <class, class> class CastingPolicy>
bool vtkDispatcher<BaseLhs,ReturnType,CastingPolicy>
::DoRemove(TypeInfo lhs)
{
  return FunctorMap.erase(TypeInfo(lhs)) == 1;
}

//----------------------------------------------------------------------------
template <class BaseLhs,typename ReturnType,
          template <class, class> class CastingPolicy>
ReturnType vtkDispatcher<BaseLhs,ReturnType,CastingPolicy>
::Go(BaseLhs* lhs)
{
  typename MapType::key_type k(typeid(*lhs));
  typename MapType::iterator i = FunctorMap.find(k);
  if (i == FunctorMap.end())
  {
    //we return a default type, currently i don't want exceptions thrown
    return ReturnType();
  }
  return (i->second)(*lhs);
}

#endif // vtkDispatcher_h
// VTK-HeaderTest-Exclude: vtkDispatcher.h