You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/components/bsa/bsa_file.hpp

145 lines
3.4 KiB
C++

/*
OpenMW - The completely unofficial reimplementation of Morrowind
Copyright (C) 2008-2010 Nicolay Korslund
Email: < korslund@gmail.com >
WWW: https://openmw.org/
This file (bsa_file.h) is part of the OpenMW package.
OpenMW is distributed as free software: you can redistribute it
and/or modify it under the terms of the GNU General Public License
version 3, as published by the Free Software Foundation.
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
General Public License for more details.
You should have received a copy of the GNU General Public License
version 3 along with this program. If not, see
https://www.gnu.org/licenses/ .
*/
#ifndef BSA_BSA_FILE_H
#define BSA_BSA_FILE_H
#include <cstdint>
#include <string>
#include <vector>
#include <filesystem>
#include <components/files/istreamptr.hpp>
#include <components/files/conversion.hpp>
namespace Bsa
{
/**
This class is used to read "Bethesda Archive Files", or BSAs.
*/
class BSAFile
{
public:
4 years ago
#pragma pack(push)
#pragma pack(1)
struct Hash
{
uint32_t low, high;
};
#pragma pack(pop)
/// Represents one file entry in the archive
struct FileStruct
{
4 years ago
void setNameInfos(size_t index,
std::vector<char>* stringBuf
) {
namesOffset = static_cast<uint32_t>(index);
4 years ago
namesBuffer = stringBuf;
}
// File size and offset in file. We store the offset from the
// beginning of the file, not the offset into the data buffer
// (which is what is stored in the archive.)
uint32_t fileSize, offset;
4 years ago
Hash hash;
// Zero-terminated file name
4 years ago
const char* name() const { return &(*namesBuffer)[namesOffset]; };
uint32_t namesOffset = 0;
std::vector<char>* namesBuffer = nullptr;
};
typedef std::vector<FileStruct> FileList;
protected:
4 years ago
bool mHasChanged = false;
/// Table of files in this archive
FileList mFiles;
/// Filename string buffer
std::vector<char> mStringBuf;
/// True when an archive has been loaded
bool mIsLoaded;
/// Used for error messages
std::filesystem::path mFilepath;
/// Error handling
[[noreturn]] void fail(const std::string &msg) const;
/// Read header information from the input source
virtual void readHeader();
4 years ago
virtual void writeHeader();
public:
/* -----------------------------------
* BSA management methods
* -----------------------------------
*/
BSAFile()
: mIsLoaded(false)
{ }
4 years ago
virtual ~BSAFile()
{
close();
}
/// Open an archive file.
void open(const std::filesystem::path &file);
4 years ago
void close();
/* -----------------------------------
* Archive file routines
* -----------------------------------
*/
/** Open a file contained in the archive.
* @note Thread safe.
*/
Files::IStreamPtr getFile(const FileStruct *file);
void addFile(const std::string& filename, std::istream& file);
4 years ago
/// Get a list of all files
/// @note Thread safe.
const FileList &getList() const
{ return mFiles; }
4 years ago
std::string getFilename() const
4 years ago
{
return Files::pathToUnicodeString(mFilepath);
4 years ago
}
};
}
#endif