/usr/include/osgEarth/URI 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 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 | /* -*-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 OSGEARTH_URI
#define OSGEARTH_URI 1
#include <osgEarth/Common>
#include <osgEarth/CacheBin>
#include <osgEarth/CachePolicy>
#include <osgEarth/Containers>
#include <osgEarth/IOTypes>
#include <osg/Image>
#include <osg/Node>
#include <osgDB/ReaderWriter>
#include <iostream>
#include <sstream>
namespace osgEarth
{
class URI;
class ProgressCallback;
/**
* Context for resolving relative URIs.
*
* This object provides "context" for a relative URI. In other words, it provides
* all of the information the system needs to resolve it to an absolute location from
* which OSG can load data.
*
* The "referrer" is the location of an object that "points" to the object in the
* corresponding URI. The location conveyed by the URI will be relative to the location of
* its referrer. For example, a referrer of "http://server/folder/hello.xml" applied
* to the URI "there.jpg" will resolve to "http://server/folder/there.jpg". NOTE that referrer
* it not itself a location (like a folder); rather it's the object that referred to the URI
* being contextualized.
*/
class OSGEARTH_EXPORT URIContext
{
public:
/** Creates an empty context. */
URIContext() { }
/** Creates a context that specifies a referring object. */
URIContext( const std::string& referrer ) : _referrer(referrer) { }
/** Copy constructor. */
URIContext( const URIContext& rhs ) : _referrer(rhs._referrer) { }
/** dtor */
virtual ~URIContext() { }
/** Serializes this context to an Options structure. This is useful when passing context information
to an osgDB::ReaderWriter that takes a stream as input -- the stream is anonymous, therefore this
is the preferred way to communicate the context information. */
void store( osgDB::Options* options );
/** Creates a context from the serialized version in an Options structure (see above) */
URIContext( const osgDB::Options* options );
/** Returns the referring object. */
const std::string& referrer() const { return _referrer; }
/** True if the context is empty */
bool empty() const { return _referrer.empty(); }
/** Parents the input context with the current object, placing the subContext's information
under it. Used to re-parent relative locations with a higher-level referrer object. */
URIContext add( const URIContext& subContext ) const;
/** Returns a new context with the sub path appended to the current referrer path. */
URIContext add( const std::string& subPath ) const;
/** creates a string suitable for passing to an osgDB::ReaderWriter implementation */
std::string getOSGPath( const std::string& target ) const;
private:
friend class URI;
std::string _referrer;
};
//--------------------------------------------------------------------
/**
* Stream container for reading a URI directly from a stream
*/
class OSGEARTH_EXPORT URIStream
{
public:
URIStream( const URI& uri );
virtual ~URIStream();
public:
// auto-cast to istream
operator std::istream& ();
protected:
friend class URI;
std::istream* _fileStream;
std::stringstream _bufStream;
};
//--------------------------------------------------------------------
/**
* Represents the location of a resource, providing the raw (original, possibly
* relative) and absolute forms.
*
* URI is serializable and may be used in an earth file, like in the following
* example. Note that in earth files, the URI is actually called "url"; this is
* simply because of an old convention and we wish to avoid breaking backwards
* compatibility.
*
* <url>../path/relative/to/earth/file</url>
*
* Note also that a relative URI will be relative to the location of the
* parent resource (usually the earth file itself).
*
* You can also specify osgDB plugin options; for example:
*
* <url options_string="JPEG_QUALITY 60">../path/to/image.jpg</url>
*
* Of course, options are particular to OSG plugins, so please consult the
* code for your plugin for more information.
*/
class OSGEARTH_EXPORT URI
{
public:
/**
* Constructs an empty (and invalid) URI.
*/
URI();
/**
* Constructs a new URI from a location (typically an absolute url)
*/
URI( const std::string& location );
/**
* Constructs a new URI from a location and an existing context.
*/
URI( const std::string& location, const URIContext& context );
/**
* Constructs a new URI from a string.
*/
URI( const char* location );
/** dtor */
virtual ~URI() { }
public:
/** The base (possibly relative) location string. */
const std::string& base() const { return _baseURI; }
/** The fully qualified location string. */
const std::string& full() const { return _fullURI; }
/** The dereference operator also returns the fully qualified URI, since it's a common operation. */
const std::string& operator * () const { return _fullURI; }
/** Context with which this URI was created. */
const URIContext& context() const { return _context; }
/** Whether the URI is empty */
bool empty() const { return _baseURI.empty(); }
/** Whether the object of the URI is cacheable. */
bool isRemote() const;
/** Returns a copy of this URI with the suffix appended */
URI append( const std::string& suffix ) const;
/** String used for keying the cache */
const std::string& cacheKey() const { return !_cacheKey.empty() ? _cacheKey : _fullURI; }
/** osgDB::Options option string (plugin options) */
optional<std::string>& optionString() { return _optionString; }
const optional<std::string>& optionString() const { return _optionString; }
public:
/** Sets a cache key. By default the cache key is the full URI, but you can override that. */
void setCacheKey( const std::string& key ) { _cacheKey = key; }
public: // read methods return a ReadResult object
ReadResult readObject(
const osgDB::Options* dbOptions =0L,
ProgressCallback* progress =0L ) const;
ReadResult readImage(
const osgDB::Options* dbOptions =0L,
ProgressCallback* progress =0L ) const;
ReadResult readNode(
const osgDB::Options* dbOptions =0L,
ProgressCallback* progress =0L ) const;
ReadResult readString(
const osgDB::Options* dbOptions =0L,
ProgressCallback* progress =0L ) const;
ReadResult readConfig(
const osgDB::Options* dbOptions =0L,
ProgressCallback* progress =0L ) const;
public: // get methods call the read* methods, then just return the raw data.
osg::Object* getObject(
const osgDB::Options* dbOptions =0L,
ProgressCallback* progress =0L ) const { return readObject(dbOptions, progress).releaseObject(); }
osg::Image* getImage(
const osgDB::Options* dbOptions =0L,
ProgressCallback* progress =0L ) const { return readImage(dbOptions, progress).releaseImage(); }
osg::Node* getNode(
const osgDB::Options* dbOptions =0L,
ProgressCallback* progress =0L ) const { return readNode(dbOptions, progress).releaseNode(); }
std::string getString(
const osgDB::Options* dbOptions =0L,
ProgressCallback* progress =0L ) const { return readString(dbOptions, progress).getString(); }
public:
bool operator < ( const URI& rhs ) const { return _fullURI < rhs._fullURI; }
bool operator == ( const URI& rhs ) const { return _fullURI.compare(rhs._fullURI) == 0; }
bool operator != ( const URI& rhs ) const { return _fullURI.compare(rhs._fullURI) != 0; }
public:
/** Copier */
URI( const URI& rhs );
public: // config methods
Config getConfig() const
{
Config conf("uri", base());
conf.addIfSet("option_string", _optionString);
conf.setReferrer( context().referrer() );
conf.setIsLocation( true );
return conf;
}
void mergeConfig(const Config& conf)
{
conf.getIfSet("option_string", _optionString);
}
public: // Static convenience methods
/** Encodes text to URL safe test. Escapes special charaters */
inline static std::string urlEncode(const std::string &value);
protected:
std::string _baseURI;
std::string _fullURI;
std::string _cacheKey;
URIContext _context;
optional<std::string> _optionString;
void ctorCacheKey();
};
//------------------------------------------------------------------------
/**
* A lookup table that maps URI references to other URI references. This
* is used as an optional resource mapping table. (See KML's ResourceMap
* for usage example)
*
* WARNING: osgDB::Options will only store a raw pointer to the class, so
* make sure the scope of the osgDB::Options does not exceed the scope of
* the embedded alias map!
*/
class OSGEARTH_EXPORT URIAliasMap
{
public:
/**
* Inserts a key-value pair into the map.
*/
void insert( const std::string& key, const std::string& value );
/**
* Resolves the input address into a URI string.
*/
std::string resolve(const std::string& input, const URIContext& context) const;
/**
* True if there are no mappings
*/
bool empty() const { return _map.empty(); }
/**
* Clears out the map.
*/
void clear() { _map.clear(); }
/**
* Loads an alias map from an Options.
*/
static URIAliasMap* from( const osgDB::Options* options ) {
return options ? const_cast<URIAliasMap*>(static_cast<const URIAliasMap*>(options->getPluginData("osgEarth::URIAliasMap"))) : 0L;
}
/**
* Stores an alias map in an Options
*/
void apply( osgDB::Options* options ) {
if ( options ) options->setPluginData("osgEarth::URIAliasMap", this);
}
protected:
std::map<std::string,std::string> _map;
friend class Config;
};
/**
* A custom read callback (that you can set in an osgDB::Options) that will
* attempt to resolve pathnames using a URI alias map.
*/
class OSGEARTH_EXPORT URIAliasMapReadCallback : public osgDB::ReadFileCallback
{
public:
URIAliasMapReadCallback( const URIAliasMap& aliasMap, const URIContext& context );
virtual osgDB::ReaderWriter::ReadResult openArchive(const std::string& filename, osgDB::ReaderWriter::ArchiveStatus status, unsigned int indexBlockSizeHint, const osgDB::Options* useObjectCache);
virtual osgDB::ReaderWriter::ReadResult readObject(const std::string& filename, const osgDB::Options* options);
virtual osgDB::ReaderWriter::ReadResult readImage(const std::string& filename, const osgDB::Options* options);
virtual osgDB::ReaderWriter::ReadResult readHeightField(const std::string& filename, const osgDB::Options* options);
virtual osgDB::ReaderWriter::ReadResult readNode(const std::string& filename, const osgDB::Options* options);
virtual osgDB::ReaderWriter::ReadResult readShader(const std::string& filename, const osgDB::Options* options);
protected:
const URIAliasMap& _aliasMap;
URIContext _context;
};
//------------------------------------------------------------------------
/**
* A URI result cache that you can embed in an osgDB::Options, and if found,
* URI will attempt to use it.
*
* WARNING: osgDB::Options will only store a raw pointer to the class, so
* make sure the scope of the osgDB::Options does not exceed the scope of
* the embedded cache!
*/
struct /*header-only*/ URIResultCache : public LRUCache<URI, ReadResult>
{
URIResultCache( bool threadsafe =true )
: LRUCache<URI,ReadResult>( threadsafe ) { }
static URIResultCache* from(const osgDB::Options* options) {
return options ? const_cast<URIResultCache*>(static_cast<const URIResultCache*>(options->getPluginData("osgEarth::URIResultCache"))) : 0L;
}
void apply( osgDB::Options* options ) {
if ( options ) options->setPluginData("osgEarth::URIResultCache", this);
}
};
//------------------------------------------------------------------------
/**
* You can install a post-read callback in a osgDB::Options and the URI
* class till invoke it on a ReadResult before returning.
*/
class /*header-only*/ URIPostReadCallback : public osg::Referenced
{
public:
URIPostReadCallback() { }
virtual ~URIPostReadCallback() { }
virtual void operator()( ReadResult& result ) =0;
public:
void apply(osgDB::Options* options) {
if ( options ) options->setPluginData("osgEarth::URIPostReadCallback", this);
}
static URIPostReadCallback* from(const osgDB::Options* options) {
return options ? const_cast<URIPostReadCallback*>(static_cast<const URIPostReadCallback*>(options->getPluginData("osgEarth::URIPostReadCallback"))) : 0L;
}
};
//------------------------------------------------------------------------
// Config specialization for URI:
template <> inline
void Config::addIfSet<URI>( const std::string& key, const optional<URI>& opt ) {
if ( opt.isSet() ) {
Config c = opt->getConfig();
c.key() = key;
add( c );
}
}
template<> inline
void Config::updateIfSet<URI>( const std::string& key, const optional<URI>& opt ) {
if ( opt.isSet() ) {
remove(key);
add( key, opt->getConfig() );
}
}
template<> inline
bool Config::getIfSet<URI>( const std::string& key, optional<URI>& output ) const {
if ( hasValue(key) ) {
output = URI( value(key), referrer(key) );
output->mergeConfig(*this);
return true;
}
else
return false;
}
// Config specialization for URIAliasMap
template <> inline
void Config::addIfSet<URIAliasMap>( const std::string& key, const optional<URIAliasMap>& map ) {
if ( map.isSet() ) {
Config conf( key );
for( std::map<std::string,std::string>::const_iterator i = map->_map.begin(); i != map->_map.end(); ++i ) {
Config alias( "alias" );
alias.add( "source", i->first );
alias.add( "target", i->second );
conf.add( alias );
}
add(conf);
}
}
template <> inline
void Config::updateIfSet<URIAliasMap>( const std::string& key, const optional<URIAliasMap>& map ) {
if ( map.isSet() ) {
remove( key );
addIfSet( key, map );
}
}
template <> inline
bool Config::getIfSet<URIAliasMap>( const std::string& key, optional<URIAliasMap>& output ) const {
Config alias = child(key);
if ( !alias.empty() ) {
for( ConfigSet::const_iterator i = alias.children().begin(); i != alias.children().end(); ++i ) {
std::string source = i->value("source");
std::string target = i->value("target");
if ( !source.empty() && !target.empty() )
output->insert( source, target );
}
return true;
}
else {
return false;
}
}
//------------------------------------------------------------------------
// Ref.: https://stackoverflow.com/questions/154536/encode-decode-urls-in-c
std::string URI::urlEncode(const std::string &value)
{
std::ostringstream escaped;
escaped.fill('0');
escaped << std::hex;
for (std::string::const_iterator i = value.begin(), n = value.end(); i != n; ++i) {
std::string::value_type c = (*i);
// Keep alphanumeric and other accepted characters intact
if (isalnum(c) || c == '-' || c == '_' || c == '.' || c == '~') {
escaped << c;
continue;
}
// Any other characters are percent-encoded
escaped << std::uppercase;
escaped << '%' << std::setw(2) << int((unsigned char)c);
escaped << std::nouppercase;
}
return escaped.str();
}
}
#endif // OSGEARTH_URI
|