This file is indexed.

/usr/include/geos/geom/prep/BasicPreparedGeometry.h is in libgeos-dev 3.2.2-3ubuntu1.

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
/**********************************************************************
 * $Id: BasicPreparedGeometry.h 2419 2009-04-29 08:22:16Z strk $
 *
 * GEOS - Geometry Engine Open Source
 * http://geos.refractions.net
 *
 * Copyright (C) 2006 Refractions Research Inc.
 *
 * This is free software; you can redistribute and/or modify it under
 * the terms of the GNU Lesser General Public Licence as published
 * by the Free Software Foundation. 
 * See the COPYING file for more information.
 *
 *
 **********************************************************************
 *
 * Last port: geom/prep/BasicPreparedGeometry.java rev. 1.5 (JTS-1.10)
 *
 **********************************************************************/

#ifndef GEOS_GEOM_PREP_BASICPREPAREDGEOMETRY_H
#define GEOS_GEOM_PREP_BASICPREPAREDGEOMETRY_H

#include <geos/geom/prep/PreparedGeometry.h> // for inheritance
//#include <geos/algorithm/PointLocator.h> 
//#include <geos/geom/util/ComponentCoordinateExtracter.h> 
#include <geos/geom/Coordinate.h> 
//#include <geos/geom/Location.h>

#include <vector>
#include <string>

namespace geos {
	namespace geom {
		class Geometry;
		class Coordinate;
	}
}


namespace geos {
namespace geom { // geos::geom
namespace prep { // geos::geom::prep

// * \class BasicPreparedGeometry

/**
 * 
 * \brief
 * A base class for {@link PreparedGeometry} subclasses.
 * 
 * Contains default implementations for methods, which simply delegate
 * to the equivalent {@link Geometry} methods.
 * This class may be used as a "no-op" class for Geometry types
 * which do not have a corresponding {@link PreparedGeometry} implementation.
 * 
 * @author Martin Davis
 *
 */
class BasicPreparedGeometry: public PreparedGeometry 
{
private:
	const geom::Geometry * baseGeom;
	Coordinate::ConstVect representativePts;

protected:
	/**
	 * Sets the original {@link Geometry} which will be prepared.
	 */
	void setGeometry( const geom::Geometry * geom );
	
	/**
	 * Determines whether a Geometry g interacts with 
	 * this geometry by testing the geometry envelopes.
	 *  
	 * @param g a Geometry
	 * @return true if the envelopes intersect
	 */
	bool envelopesIntersect(const geom::Geometry* g) const;

	/**
	 * Determines whether the envelope of 
	 * this geometry covers the Geometry g.
	 * 
	 *  
	 * @param g a Geometry
	 * @return true if g is contained in this envelope
	 */
	bool envelopeCovers(const geom::Geometry* g) const;

public:
	BasicPreparedGeometry( const Geometry * geom);

	~BasicPreparedGeometry( );

	const geom::Geometry & getGeometry() const
	{
		return *baseGeom;
	}

	/**
	 * Gets the list of representative points for this geometry.
	 * One vertex is included for every component of the geometry
	 * (i.e. including one for every ring of polygonal geometries) 
	 * 
	 * @return a List of Coordinate
	 */
	const Coordinate::ConstVect * getRepresentativePoints()  const
	{
		return &representativePts;
	}

	/**
	 * Tests whether any representative of the target geometry 
	 * intersects the test geometry.
	 * This is useful in A/A, A/L, A/P, L/P, and P/P cases.
	 * 
	 * @param geom the test geometry
	 * @param repPts the representative points of the target geometry
	 * @return true if any component intersects the areal test geometry
	 */
	bool isAnyTargetComponentInTest(const geom::Geometry * testGeom) const;

	/**
	 * Default implementation.
	 */
	bool contains(const geom::Geometry * g) const;

	/**
	 * Default implementation.
	 */
	bool containsProperly(const geom::Geometry * g)	const;

	/**
	 * Default implementation.
	 */
	bool coveredBy(const geom::Geometry * g) const;

	/**
	 * Default implementation.
	 */
	bool covers(const geom::Geometry * g) const;

	/**
	 * Default implementation.
	 */
	bool crosses(const geom::Geometry * g) const;

	/**
	 * Standard implementation for all geometries.
	 * Supports {@link GeometryCollection}s as input.
	 */
	bool disjoint(const geom::Geometry * g)	const;

	/**
	 * Default implementation.
	 */
	bool intersects(const geom::Geometry * g) const;

	/**
	 * Default implementation.
	 */
	bool overlaps(const geom::Geometry * g)	const;

	/**
	 * Default implementation.
	 */
	bool touches(const geom::Geometry * g) const;

	/**
	 * Default implementation.
	 */
	bool within(const geom::Geometry * g) const;

	std::string toString();

};

} // namespace geos::geom::prep
} // namespace geos::geom
} // namespace geos

#endif // GEOS_GEOM_PREP_BASICPREPAREDGEOMETRY_H
/**********************************************************************
 * $Log$
 **********************************************************************/