2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2004-10-24 22:24:15 +08:00
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OSGDB_ARCHIVE
|
|
|
|
#define OSGDB_ARCHIVE 1
|
|
|
|
|
|
|
|
#include <osgDB/ReaderWriter>
|
2004-11-08 05:17:31 +08:00
|
|
|
#include <osgDB/Registry>
|
2011-04-30 00:34:26 +08:00
|
|
|
#include <osgDB/FileUtils>
|
2004-10-24 22:24:15 +08:00
|
|
|
|
2004-10-26 03:16:38 +08:00
|
|
|
#include <fstream>
|
2004-10-27 22:09:24 +08:00
|
|
|
#include <list>
|
2004-10-24 22:24:15 +08:00
|
|
|
|
|
|
|
namespace osgDB {
|
|
|
|
|
|
|
|
|
2004-11-11 21:22:55 +08:00
|
|
|
/** Base class for implementing database Archives. See src/osgPlugins/osga for an example of a concrete implementation. */
|
2004-10-24 22:24:15 +08:00
|
|
|
class OSGDB_EXPORT Archive : public ReaderWriter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Archive();
|
|
|
|
virtual ~Archive();
|
2004-10-26 03:16:38 +08:00
|
|
|
|
|
|
|
virtual const char* libraryName() const { return "osgDB"; }
|
|
|
|
|
|
|
|
virtual const char* className() const { return "Archive"; }
|
|
|
|
|
2005-05-16 19:18:11 +08:00
|
|
|
virtual bool acceptsExtension(const std::string& /*extension*/) const { return true; }
|
2011-04-30 00:34:26 +08:00
|
|
|
|
2004-10-24 22:24:15 +08:00
|
|
|
/** close the archive.*/
|
2004-11-11 21:22:55 +08:00
|
|
|
virtual void close() = 0;
|
2004-10-24 22:24:15 +08:00
|
|
|
|
2011-04-30 00:34:26 +08:00
|
|
|
/** Get the file name which represents the archived file.*/
|
|
|
|
virtual std::string getArchiveFileName() const = 0;
|
|
|
|
|
2004-11-10 21:03:52 +08:00
|
|
|
/** Get the file name which represents the master file recorded in the Archive.*/
|
2004-11-11 21:22:55 +08:00
|
|
|
virtual std::string getMasterFileName() const = 0;
|
2011-04-30 00:34:26 +08:00
|
|
|
|
|
|
|
/** return true if file exists in archive.*/
|
|
|
|
virtual bool fileExists(const std::string& filename) const = 0;
|
|
|
|
|
|
|
|
/** return type of file. */
|
|
|
|
virtual FileType getFileType(const std::string& filename) const = 0;
|
|
|
|
|
|
|
|
typedef osgDB::DirectoryContents FileNameList;
|
|
|
|
|
2004-11-10 21:03:52 +08:00
|
|
|
/** Get the full list of file names available in the archive.*/
|
2011-04-30 00:34:26 +08:00
|
|
|
virtual bool getFileNames(FileNameList& fileNames) const = 0;
|
|
|
|
|
|
|
|
/** return the contents of a directory.
|
|
|
|
* returns an empty array on any error.*/
|
2011-05-25 17:04:44 +08:00
|
|
|
virtual DirectoryContents getDirectoryContents(const std::string& dirName) const;
|
2011-04-30 00:34:26 +08:00
|
|
|
|
2004-10-28 22:27:41 +08:00
|
|
|
|
2004-11-23 23:29:52 +08:00
|
|
|
virtual ReadResult readObject(const std::string& /*fileName*/,const Options* =NULL) const = 0;
|
|
|
|
virtual ReadResult readImage(const std::string& /*fileName*/,const Options* =NULL) const = 0;
|
|
|
|
virtual ReadResult readHeightField(const std::string& /*fileName*/,const Options* =NULL) const = 0;
|
|
|
|
virtual ReadResult readNode(const std::string& /*fileName*/,const Options* =NULL) const = 0;
|
2011-06-24 20:40:18 +08:00
|
|
|
virtual ReadResult readShader(const std::string& /*fileName*/,const Options* =NULL) const = 0;
|
2004-11-23 23:29:52 +08:00
|
|
|
|
|
|
|
virtual WriteResult writeObject(const osg::Object& /*obj*/,const std::string& /*fileName*/,const Options* =NULL) const = 0;
|
|
|
|
virtual WriteResult writeImage(const osg::Image& /*image*/,const std::string& /*fileName*/,const Options* =NULL) const = 0;
|
|
|
|
virtual WriteResult writeHeightField(const osg::HeightField& /*heightField*/,const std::string& /*fileName*/,const Options* =NULL) const = 0;
|
|
|
|
virtual WriteResult writeNode(const osg::Node& /*node*/,const std::string& /*fileName*/,const Options* =NULL) const = 0;
|
2011-06-24 20:40:18 +08:00
|
|
|
virtual WriteResult writeShader(const osg::Shader& /*shader*/,const std::string& /*fileName*/,const Options* =NULL) const = 0;
|
2004-10-24 22:24:15 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2004-11-08 05:17:31 +08:00
|
|
|
/** Open an archive for reading or writing.*/
|
2008-07-15 22:15:42 +08:00
|
|
|
OSGDB_EXPORT Archive* openArchive(const std::string& filename, ReaderWriter::ArchiveStatus status, unsigned int indexBlockSizeHint=4096);
|
2004-11-08 05:17:31 +08:00
|
|
|
|
|
|
|
/** Open an archive for reading or writing.*/
|
2009-05-09 16:49:27 +08:00
|
|
|
OSGDB_EXPORT Archive* openArchive(const std::string& filename, ReaderWriter::ArchiveStatus status, unsigned int indexBlockSizeHint,Options* options);
|
2004-10-24 22:24:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // OSGDB_ARCHIVE
|