/usr/include/osgEarthFeatures/FeatureSource is in libosgearth-dev 2.9.0+dfsg-1.
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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | /* -*-c++-*- */
/* osgEarth - Dynamic map generation toolkit for OpenSceneGraph
* Copyright 2016 Pelican Mapping
* http://osgearth.org
*
* osgEarth 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 of the License, or
* (at your option) any later version.
*
* This program 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 program. If not, see <http://www.gnu.org/licenses/>
*/
#ifndef OSGEARTHFEATURES_FEATURE_SOURCE_H
#define OSGEARTHFEATURES_FEATURE_SOURCE_H 1
#include <osgEarthFeatures/Common>
#include <osgEarthFeatures/Feature>
#include <osgEarthSymbology/Geometry>
#include <osgEarthSymbology/Query>
#include <osgEarthSymbology/Style>
#include <osgEarth/Profile>
#include <osgEarth/GeoData>
#include <osgEarth/Cache>
#include <osgEarth/CachePolicy>
#include <osgEarth/URI>
#include <osgEarth/Revisioning>
#include <osgDB/ReaderWriter>
#include <OpenThreads/Mutex>
#include <list>
namespace osgEarth { namespace Features
{
using namespace osgEarth;
using namespace osgEarth::Symbology;
class FeatureCursor;
class FeatureFilterChain;
/**
* Configuration options for creating a FeatureSource.
*/
class OSGEARTHFEATURES_EXPORT FeatureSourceOptions : public DriverConfigOptions
{
public: // properties
/** Name of this feature source. */
optional<std::string>& name() { return _name; }
const optional<std::string>& name() const { return _name; }
/** Set of FeatureFilter options. */
std::vector<ConfigOptions>& filters() { return _filterOptions; }
const std::vector<ConfigOptions>& filters() const { return _filterOptions; }
/** Opens the feature data for writing, if supported */
optional<bool>& openWrite() { return _openWrite; }
const optional<bool>& openWrite() const { return _openWrite; }
/** Explicitly overrides profile information contained in the actual data source. */
optional<ProfileOptions>& profile() { return _profile; }
const optional<ProfileOptions>& profile() const { return _profile; }
/** Interpolation type to use for geodetic points */
optional<GeoInterpolation>& geoInterp() { return _geoInterp; }
const optional<GeoInterpolation>& geoInterp() const { return _geoInterp; }
/** The feature attribute to use as the fid for the features from this FeatureSource*/
optional<std::string>& fidAttribute() { return _fidAttribute; }
const optional<std::string>& fidAttribute() const { return _fidAttribute; }
public:
FeatureSourceOptions( const ConfigOptions& options =ConfigOptions() );
virtual ~FeatureSourceOptions();
virtual Config getConfig() const;
protected:
virtual void mergeConfig( const Config& conf ) {
DriverConfigOptions::mergeConfig( conf );
fromConfig( conf );
}
private:
void fromConfig( const Config& conf );
std::vector<ConfigOptions> _filterOptions;
optional<std::string> _name;
optional< bool > _openWrite;
optional<ProfileOptions> _profile;
optional<CachePolicy> _cachePolicy;
optional<GeoInterpolation> _geoInterp;
optional<std::string> _fidAttribute;
};
/**
* A FeatureSource is a pluggable object that generates Features, and
* optionally, styling information to go along with them.
*/
class OSGEARTHFEATURES_EXPORT FeatureSource : public osg::Object, public Revisioned
{
public:
/**
* Constructs a new feature source with the provided read/write options.
*/
FeatureSource(
const ConfigOptions& options =ConfigOptions(),
const osgDB::Options* readOptions =0L );
/**
* Opens the feature source and returns an initial status.
*/
const Status& open(const osgDB::Options* readOptions);
const Status& open() { return open(0L); }
/**
* Status of the feature source
*/
const Status& getStatus() const { return _status; }
/**
* Gets a reference to the metadata that describes features that you can
* get from this FeatureSource. A valid feature profile indiciates that the
* feature source successfully initialized.
*/
const FeatureProfile* getFeatureProfile() const { return _featureProfile.get(); }
/**
* Gets the options that were passed into this object's CTOR.
*/
const FeatureSourceOptions& getFeatureSourceOptions() const { return _options; }
/**
* Creates a cursor that iterates over all the features corresponding to the
* specified query.
*
* Caller takes ownership of the returned object.
*/
virtual FeatureCursor* createFeatureCursor(const Symbology::Query& query) =0;
FeatureCursor* createFeatureCursor();
/**
* Whether this FeatureSource supports inserting and deleting features
*/
virtual bool isWritable() const { return false; }
/**
* Deletes the feature with the given FID
* @return True on success; false on failure or if the source is read-only
*/
virtual bool deleteFeature(FeatureID fid) { return false; }
/**
* Gets the number of features in this FeatureSource
* @return
* The number of features or -1 if the number of features cannot be determined.
*/
virtual int getFeatureCount() const { return -1; }
/**
* Whether the source can look up a Feature by its ID.
* @return True or False
*/
virtual bool supportsGetFeature() const { return false; }
/**
* Gets the Feature with the given FID
* @return
* The Feature with the given FID or NULL if not found.
*/
virtual Feature* getFeature( FeatureID fid ) { return 0L; }
/**
* Gets the FeatureSchema for this FeatureSource. If the schema doesn't
* publish a source, this might be empty.
*/
virtual const FeatureSchema& getSchema() const;
/**
* Inserts the given feature into the FeatureSource
* @return
* True if the feature was inserted, false if not
*/
virtual bool insertFeature(Feature* feature) { return false; }
/**
* Gets the Geometry type of the FeatureSource
* @return
* The Geometry type of the FeatureSource
*/
virtual Geometry::Type getGeometryType() const { return Geometry::TYPE_UNKNOWN; }
public: // blacklisting.
/**
* Adds a feature ID to the blacklist.
*/
void addToBlacklist( FeatureID fid );
/**
* Removes a feature from the blacklist.
*/
void removeFromBlacklist( FeatureID fid );
/**
* Clears the blacklist.
*/
void clearBlacklist();
/**
* Checks the blacklist for a feature ID.
*/
bool isBlacklisted( FeatureID fid ) const;
/**
* Sets the feature profile for this source.
* This is required. Usually the subclass should call this from initialize().
*/
void setFeatureProfile(const FeatureProfile* profile);
public: // Styling
/**
* Returns true if this source creates features with embedded style information.
* By default, this is false (features are not expected to carry their own
* style definitions).
*/
virtual bool hasEmbeddedStyles() const {
return false; }
public:
/**
* Accesses the list of feature filters that will transform features
* before they are returned in a feature cursor.
*/
const FeatureFilterChain* getFilters() const;
public:
// META_Object specialization:
virtual osg::Object* cloneType() const { return 0; } // cloneType() not appropriate
virtual osg::Object* clone(const osg::CopyOp&) const { return 0; } // clone() not appropriate
virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast<const FeatureSource*>(obj)!=NULL; }
virtual const char* className() const { return "FeatureSource"; }
virtual const char* libraryName() const { return "osgEarthFeatures"; }
/**
* Dirties the feature profile
*/
void dirtyFeatureProfile() { _featureProfile = 0;}
void setReadOptions(const osgDB::Options* readOptions) { _readOptions = readOptions; }
protected:
/**
* Initialize the FeatureSource.
* If you override this function, please call this base implementation from within.
*/
virtual Status initialize(const osgDB::Options* readOptions) =0;
/**
* DTOR is protected to prevent this object from being allocated on the stack.
*/
virtual ~FeatureSource();
/** Access the raw DB options that came in */
const osgDB::Options* getReadOptions() const { return _readOptions.get(); }
/** The URI context (for resolving relative paths) */
const URIContext& uriContext() const { return _uriContext; }
/** Convenience function to apply the filters to a FeatureList */
void applyFilters(FeatureList& features, const GeoExtent& extent) const;
/** Subclass can call this if the status changes */
void setStatus(const Status& value) { _status = value; }
private:
const FeatureSourceOptions _options;
osg::ref_ptr<const FeatureProfile> _featureProfile;
Threading::Mutex _createMutex;
osg::ref_ptr<const osgDB::Options> _readOptions;
URIContext _uriContext;
Threading::ReadWriteMutex _blacklistMutex;
std::set<FeatureID> _blacklist;
osg::ref_ptr<FeatureFilterChain> _filters;
Status _status;
friend class Map;
friend class FeatureSourceFactory;
};
//--------------------------------------------------------------------
class OSGEARTHFEATURES_EXPORT FeatureSourceDriver : public osgDB::ReaderWriter
{
public:
virtual const FeatureSourceOptions& getFeatureSourceOptions( const osgDB::ReaderWriter::Options* rwopt ) const;
};
//--------------------------------------------------------------------
/**
* Factory class that will instantiate a FeatureSource corresponding to a driver name.
*/
class OSGEARTHFEATURES_EXPORT FeatureSourceFactory
{
public:
static FeatureSource* create( const FeatureSourceOptions& options );
};
} } // namespace osgEarth::Features
#endif // OSGEARTHFEATURES_FEATURE_SOURCE_H
|