This file is indexed.

/usr/include/teem/hoover.h is in libteem-dev 1.11.0~svn6057-1.1ubuntu1.

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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
  Teem: Tools to process and visualize scientific data and images             .
  Copyright (C) 2013, 2012, 2011, 2010, 2009  University of Chicago
  Copyright (C) 2008, 2007, 2006, 2005  Gordon Kindlmann
  Copyright (C) 2004, 2003, 2002, 2001, 2000, 1999, 1998  University of Utah

  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public License
  (LGPL) as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.
  The terms of redistributing and/or modifying this software also
  include exceptions to the LGPL that facilitate static linking.

  This library is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public License
  along with this library; if not, write to Free Software Foundation, Inc.,
  51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/

#ifndef HOOVER_HAS_BEEN_INCLUDED
#define HOOVER_HAS_BEEN_INCLUDED

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#include <teem/air.h>
#include <teem/biff.h>
#include <teem/ell.h>
#include <teem/nrrd.h>
#include <teem/limn.h>
#include <teem/gage.h>

#if defined(_WIN32) && !defined(__CYGWIN__) && !defined(TEEM_STATIC)
#  if defined(TEEM_BUILD) || defined(hoover_EXPORTS) || defined(teem_EXPORTS)
#    define HOOVER_EXPORT extern __declspec(dllexport)
#  else
#    define HOOVER_EXPORT extern __declspec(dllimport)
#  endif
#else /* TEEM_STATIC || UNIX */
#  define HOOVER_EXPORT extern
#endif

#ifdef __cplusplus
extern "C" {
#endif

#define HOOVER hooverBiffKey

#define HOOVER_THREAD_MAX 512

/*
******** the mess of typedefs for callbacks used below
*/
typedef int (hooverRenderBegin_t)(void **renderP,
                                  void *user);
typedef int (hooverThreadBegin_t)(void **threadP,
                                  void *render,
                                  void *user,
                                  int whichThread);
typedef int (hooverRayBegin_t)(void *thread,
                               void *render,
                               void *user,
                               int uIndex,    /* img coords of current ray */
                               int vIndex,
                               double rayLen, /* length of ray segment between
                                                 near and far planes,  */
                               double rayStartWorld[3],
                               double rayStartIndex[3],
                               double rayDirWorld[3],
                               double rayDirIndex[3]);
typedef double (hooverSample_t)(void *thread,
                                void *render,
                                void *user,
                                int num,    /* which sample this is, 0-based */
                                double rayT,/* position along ray */
                                int inside, /* sample is inside the volume */
                                double samplePosWorld[3],
                                double samplePosIndex[3]);
typedef int (hooverRayEnd_t)(void *thread,
                             void *render,
                             void *user);
typedef int (hooverThreadEnd_t)(void *thread,
                                void *render,
                                void *user);
typedef int (hooverRenderEnd_t)(void *rend, void *user);

/*
******** hooverContext struct
**
** Everything that hooverRender() needs to do its thing, and no more.
** This is all read-only information.
** 1) camera information
** 3) volume information
** 4) image information
** 5) opaque "user information" pointer
** 6) stuff about multi-threading
** 7) the callbacks
*/
typedef struct {

  /******** 1) camera information */
  limnCamera *cam;           /* camera info */

  /******** 2) volume information: size and spacing, centering, or
            a gageShape that sets everything */
  int volSize[3];            /* X,Y,Z resolution of volume */
  double volSpacing[3];      /* distance between samples in X,Y,Z direction */
  int volCentering;          /* either nrrdCenterNode or nrrdCenterCell */
  const gageShape *shape;    /* if non-NULL, use this gageShape (which we do
                                NOT own), which over-rides
                                volSize, volSpacing, volCentering */

  /******** 3) image information: dimensions + centering */
  int imgSize[2],            /* # samples of image along U and V axes */
    imgCentering;            /* either nrrdCenterNode or nrrdCenterCell */

  /******** 4) opaque "user information" pointer */
  void *user;                /* passed to all callbacks */

  /******** 5) stuff about multi-threading */
  unsigned int numThreads;   /* number of threads to spawn per rendering */
  int workIdx;               /* next work assignment (such as a scanline) */
  airThreadMutex *workMutex; /* mutex around work assignment */

  /*
  ******* 6) the callbacks
  **
  ** The conceptual ordering of these callbacks is as they are listed
  ** below.  For example, rayBegin and rayEnd are called multiple
  ** times between threadBegin and threadEnd, and so on.  All of these
  ** are initialized to one of the stub functions provided by hoover.
  **
  ** A non-zero return of any of these indicates error. Which callback
  ** failed is represented by the return value of hooverRender(), the
  ** return value from the callback is stored in *errCodeP by
  ** hooverRender(), and the problem thread number is stored in
  ** *errThreadP.
  */

  /*
  ** renderBegin()
  **
  ** called once at beginning of whole rendering, and
  ** *renderP is passed to all following calls as "render".
  ** Any mechanisms for inter-thread communication go nicely in
  ** the render.
  **
  ** int (*renderBegin)(void **renderP, void *user);
  */
  hooverRenderBegin_t *renderBegin;

  /*
  ** threadBegin()
  **
  ** called once per thread, and *threadP is passed to all
  ** following calls as "thread".
  **
  ** int (*threadBegin)(void **threadP, void *render, void *user,
  **                    int whichThread);
  */
  hooverThreadBegin_t *threadBegin;

  /*
  ** rayBegin()
  **
  ** called once at the beginning of each ray.  This function will be
  ** called regardless of whether the ray actually intersects the
  ** volume, but this will change in the future.
  **
  ** int (*rayBegin)(void *thread, void *render, void *user,
  **                 int uIndex, int vIndex,
  **                 double rayLen,
  **                 double rayStartWorld[3], double rayStartIndex[3],
  **                 double rayDirWorld[3], double rayDirIndex[3]);
  */
  hooverRayBegin_t *rayBegin;

  /*
  ** sample()
  **
  ** called once per sample along the ray, and the return value is
  ** used to indicate how far to increment the ray position for the
  ** next sample.  Negative values back you up.  A return of 0.0 is
  ** taken to mean a non-erroneous ray termination, a return of NaN is
  ** taken to mean an error condition.  It is the user's
  ** responsibility to store an error code or whatever they want
  ** somewhere accessible.
  **
  ** This is not a terribly flexible scheme (don't forget, this is
  ** hoover) in that it imposes some constraints on how multi-threading
  ** can work: one thread can not render multiple rays
  ** simulatenously.  If there were more args to sample() (like a
  ** ray, or an integral rayIndex), then this would be possible,
  ** but it would mean that _hooverThreadBody() would have to
  ** implement all the smarts about which samples belong on which rays,
  ** and which rays belong with which threads.
  **
  ** At some point now or in the future, an effort will be made to
  ** never call this function if the ray does not in fact intersect
  ** the volume at all.
  **
  ** double (*sample)(void *thread, void *render, void *user,
  **                  int num, double rayT, int inside,
  **                  double samplePosWorld[3],
  **                  double samplePosIndex[3]);
  */
  hooverSample_t *sample;

  /*
  ** rayEnd()
  **
  ** called at the end of the ray.  The end of a ray is when:
  ** 1) sample returns 0.0, or,
  ** 2) the sample location goes behind far plane
  **
  ** int (*rayEnd)(void *thread, void *render, void *user);
  */
  hooverRayEnd_t *rayEnd;

  /*
  ** threadEnd()
  **
  ** called at end of thread
  **
  ** int (*threadEnd)(void *thread, void *render, void *user);
  */
  hooverThreadEnd_t *threadEnd;

  /*
  ** renderEnd()
  **
  ** called once at end of whole rendering
  **
  ** int (*renderEnd)(void *rend, void *user);
  */
  hooverRenderEnd_t *renderEnd;

} hooverContext;

/*
******** hooverErr* enum
**
** possible returns from hooverRender.
** hooverErrNone: no error, all is well:
** hooverErrInit: error detected in hoover, call biffGet(HOOVER)
** otherwise, return indicates which call-back had trouble
*/
enum {
  hooverErrNone,           /*  0 */
  hooverErrInit,           /*  1: call biffGet(HOOVER) */
  hooverErrRenderBegin,    /*  2 */
  hooverErrThreadCreate,   /*  3 */
  hooverErrThreadBegin,    /*  4 */
  hooverErrRayBegin,       /*  5 */
  hooverErrSample,         /*  6 */
  hooverErrRayEnd,         /*  7 */
  hooverErrThreadEnd,      /*  8 */
  hooverErrThreadJoin,     /*  9 */
  hooverErrRenderEnd,      /* 10 */
  hooverErrLast
};
#define HOOVER_ERR_MAX        10

/* defaultsHoover.c */
HOOVER_EXPORT const int hooverPresent;
HOOVER_EXPORT const char *hooverBiffKey;
HOOVER_EXPORT int hooverDefVolCentering;
HOOVER_EXPORT int hooverDefImgCentering;
HOOVER_EXPORT const airEnum *const hooverErr;

/* methodsHoover.c */
HOOVER_EXPORT hooverContext *hooverContextNew(void);
HOOVER_EXPORT int hooverContextCheck(hooverContext *ctx);
HOOVER_EXPORT void hooverContextNix(hooverContext *ctx);

/* rays.c */
HOOVER_EXPORT int hooverRender(hooverContext *ctx,
                               int *errCodeP, int *errThreadP);

/* stub.c */
HOOVER_EXPORT hooverRenderBegin_t hooverStubRenderBegin;
HOOVER_EXPORT hooverThreadBegin_t hooverStubThreadBegin;
HOOVER_EXPORT hooverRayBegin_t hooverStubRayBegin;
HOOVER_EXPORT hooverSample_t hooverStubSample;
HOOVER_EXPORT hooverRayEnd_t hooverStubRayEnd;
HOOVER_EXPORT hooverThreadEnd_t hooverStubThreadEnd;
HOOVER_EXPORT hooverRenderEnd_t hooverStubRenderEnd;

#ifdef __cplusplus
}
#endif

#endif /* HOOVER_HAS_BEEN_INCLUDED */