This file is indexed.

/usr/include/geomview/nodedata.h is in libgeomview-dev 1.9.4-3.

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
/* Copyright (C) 2007 Claus-Justus Heine 
 *
 * This file is part of Geomview.
 * 
 * Geomview is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 * 
 * Geomview 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 Geomview; see the file COPYING.  If not, write
 * to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
 * USA, or visit http://www.gnu.org.
 */
#ifndef _GV_NODEDATA_H_
#define _GV_NODEDATA_H_

#include "geomclass.h"
#include "mg.h"

/* A geometry hierarchy may refer aribitrarily often to the same
 * Geometry object via "Handle" references. In some cases, however, we
 * need data which is attached to a node in the hierarchy tree. For
 * the time being the only case is the "tagged apperance" handle used
 * to refer to appearances out of BSPTree nodes.
 *
 * "path" is a unique tag and is computed during hierarchy
 * traversal. 'L' stands for a list element, 'I' for Inst.
 *
 * L -> (L) -> nil
 * |     |
 * G1    I
 *       |
 *       G2
 *
 * The leaf-nodes of the hierarchy will have the paths "L" and
 * "LI". This should be a unique id for earch hierarchy node, because
 * it records the history of the path through the hierarchy to the
 * node. Only the head of a list is included in the path, so the
 * second id is "LI" and not "LLI" in the example above.
 */
typedef struct NodeData {
  DblListNode   node;       /* Link into Geom->pernode */
  char          *ppath;     /* The path to this geom in the hierarchy (copy).*/
  const void    *tagged_ap; /* tagged appearance pointer */
  const BSPTree *node_tree; /* BSP-tree we belong to, if any */
} NodeData;

#define GeomMakePath(geom, c, path, pathlen)		\
  int pathlen = (geom)->ppathlen+1;			\
  char *path = alloca(pathlen+1);			\
  							\
  memcpy(path, (geom)->ppath, (geom)->ppathlen);	\
  path[pathlen-1] = c;					\
  path[pathlen] = '\0'

/* Transfer one Geom's per-node data to another Geom. Priamrily meant
 * as hack during ND-drawing
 */
static inline void GeomNodeDataMove(Geom *from, Geom *to)
{
  DblListMove(&from->pernode, &to->pernode);
  to->ppath = from->ppath;
  to->ppathlen = from->ppathlen;
}

static inline NodeData *GeomNodeDataByPath(Geom *geom, const char *ppath)
{
  NodeData *pos;
  
  if (!ppath) {
    ppath = geom->ppath ? geom->ppath : "";
  }
  DblListIterateNoDelete(&geom->pernode, NodeData, node, pos) {
    if (strcmp(pos->ppath, ppath) == 0) {
      return pos;
    }
  }

  return NULL;
}

extern DEF_FREELIST(NodeData);

static inline NodeData *GeomNodeDataCreate(Geom *geom, const char *ppath)
{
  NodeData *data;

  if (!ppath) {
    ppath = geom->ppath ? geom->ppath : "";
  }
  data = GeomNodeDataByPath(geom, ppath);
  if (data == NULL) {
    FREELIST_NEW(NodeData, data);
    data->ppath = strdup(ppath);
    data->tagged_ap = NULL;
    data->node_tree = NULL;
    DblListAdd(&geom->pernode, &data->node);
  }

  return data;
}

static inline void GeomNodeDataPrune(Geom *geom)
{
  NodeData *data, *data_next;

  DblListIterate(&geom->pernode, NodeData, node, data, data_next) {
    DblListDelete(&data->node);
    if (data->tagged_ap) {
      mguntagappearance(data->tagged_ap);
    }
    if (data->node_tree) {
      BSPTreeFreeTree(data->node_tree);
    }
    if (data->ppath) {
	free(data->ppath);
	data->ppath = NULL;
    }
    FREELIST_FREE(NodeData, data);
  }
}

#endif