DYT/Tool/OpenSceneGraph-3.6.5/include/osgEarth/CacheBin
2024-12-25 07:49:36 +08:00

164 lines
5.5 KiB
C++

/* -*-c++-*- */
/* osgEarth - Geospatial SDK for OpenSceneGraph
* Copyright 2020 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.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*
* 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_CACHE_BIN_H
#define OSGEARTH_CACHE_BIN_H 1
#include <osgEarth/Common>
#include <osgEarth/Config>
#include <osgEarth/IOTypes>
#include <osgDB/ReaderWriter>
namespace osgEarth
{
/**
* CacheBin is a names container within a Cache. It allows different
* application modules to compartmentalize their data withing a single
* cache location.
*/
class OSGEARTH_EXPORT CacheBin : public osg::Referenced
{
public:
/** returned by the getRecordStatus() function */
enum RecordStatus {
STATUS_NOT_FOUND, // record is not in the cache
STATUS_OK, // record is in the cache and newer than the test time
STATUS_EXPIRED // record is in the cache and older than the test time
};
public:
/** dtor */
virtual ~CacheBin() { }
/**
* The identifier (unique withing a Cache) of this bin.
*/
const std::string& getID() const { return _binID; }
/**
* Whether the implemention should hash record keys instead of using
* them directly. Default = false.
*/
void setHashKeys(bool value) { _hashKeys = value; }
bool getHashKeys() const { return _hashKeys; }
/**
* Reads an object from the cache bin.
* @param key Lookup key to read
*/
virtual ReadResult readObject(const std::string& key, const osgDB::Options* dbo) =0;
/**
* Reads an image from the cache bin.
* @param key Lookup key to read
*/
virtual ReadResult readImage(const std::string& key, const osgDB::Options* dbo) = 0;
/**
* Reads a string buffer from the cache bin.
* @param key Lookup key to read.
*/
virtual ReadResult readString(const std::string& key, const osgDB::Options* dbo) = 0;
/**
* Writes an object (or an image) to the cache bin.
* @param key Lookup key to write to
* @param object Object to serialize to the cache
*/
virtual bool write(
const std::string& key,
const osg::Object* object,
const Config& metadata,
const osgDB::Options* dbo) = 0;
bool write(
const std::string& key,
const osg::Object* object,
const osgDB::Options* dbo) { return write(key, object, Config(), dbo); }
bool writeNode(
const std::string& key,
osg::Node* node,
const Config& metadata,
const osgDB::Options* writeOptions);
/**
* Gets the status of a key, i.e. not found, valid or expired.
* Pass in a minTime = 0 to simply check whether the record exists.
* @param key Lookup key to check for
*/
virtual RecordStatus getRecordStatus(const std::string& key) =0;
/**
* Purge an entry from the cache bin
*/
virtual bool remove(const std::string& key) =0;
/**
* Update a record's timestamp to "now", as if it were a
* new entry.
*/
virtual bool touch(const std::string& key) =0;
/**
* Purges all entries in the cache bin.
*/
virtual bool clear() { return false; }
/**
* Compacts the cache bin (where applicable in the implementation,
* no-op otherwise)
*/
virtual bool compact() { return false; }
/**
* Returns the approximate disk space being used by this cache,
* or 0 if the information is unavailable.
*/
virtual unsigned getStorageSize() { return 0u; }
/**
* Metadata associated with a cache bin.
*/
void setMetadata(osg::Referenced* data) { _metadata = data; }
osg::Referenced* getMetadata() { return _metadata.get(); }
protected:
/**
* Constructs a caching bin.
* @param binID Name of this caching bin (unique withing a Cache)
* @param driver ReaderWriter that serializes data for this caching bin.
*/
CacheBin(const std::string& binID, bool enableNodeCaching = false)
: _binID(binID), _hashKeys(true), _minTime(0), _enableNodeCaching(enableNodeCaching) { }
std::string _binID;
bool _hashKeys;
TimeStamp _minTime;
osg::ref_ptr<osg::Referenced> _metadata;
bool _enableNodeCaching;
};
}
#endif // OSGEARTH_CACHE_BIN_H