2012-11-01 16:19:01 +01:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 23:01:49 +01:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 16:19:01 +01:00
|
|
|
|
|
|
|
// 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2013-10-06 21:26:08 -07:00
|
|
|
#pragma once
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2017-03-07 20:10:18 +01:00
|
|
|
#include "ppsspp_config.h"
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
// Extremely simple serialization framework.
|
2014-06-22 17:02:04 +02:00
|
|
|
// Currently mis-named, a native ChunkFile is something different (a RIFF file)
|
2012-11-01 16:19:01 +01:00
|
|
|
|
|
|
|
// (mis)-features:
|
|
|
|
// + Super fast
|
|
|
|
// + Very simple
|
|
|
|
// + Same code is used for serialization and deserializaition (in most cases)
|
2013-10-06 21:26:08 -07:00
|
|
|
// + Sections can be versioned for backwards/forwards compatibility
|
2012-11-01 16:19:01 +01:00
|
|
|
// - Serialization code for anything complex has to be manually written.
|
|
|
|
|
2020-08-10 06:38:45 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2020-10-15 00:03:47 +02:00
|
|
|
#include <cstdlib>
|
|
|
|
|
2020-08-10 06:38:45 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "Common/Log.h"
|
2021-05-06 01:31:38 +02:00
|
|
|
#include "Common/File/Path.h"
|
2020-08-10 06:38:45 +00:00
|
|
|
|
|
|
|
namespace File {
|
|
|
|
class IOFile;
|
|
|
|
};
|
2012-11-01 16:19:01 +01:00
|
|
|
|
|
|
|
template <class T>
|
|
|
|
struct LinkedListItem : public T
|
|
|
|
{
|
|
|
|
LinkedListItem<T> *next;
|
|
|
|
};
|
|
|
|
|
2013-09-14 20:19:58 -07:00
|
|
|
class PointerWrap;
|
|
|
|
|
|
|
|
class PointerWrapSection
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PointerWrapSection(PointerWrap &p, int ver, const char *title) : p_(p), ver_(ver), title_(title) {
|
|
|
|
}
|
|
|
|
~PointerWrapSection();
|
|
|
|
|
|
|
|
bool operator == (const int &v) const { return ver_ == v; }
|
|
|
|
bool operator != (const int &v) const { return ver_ != v; }
|
|
|
|
bool operator <= (const int &v) const { return ver_ <= v; }
|
|
|
|
bool operator >= (const int &v) const { return ver_ >= v; }
|
|
|
|
bool operator < (const int &v) const { return ver_ < v; }
|
|
|
|
bool operator > (const int &v) const { return ver_ > v; }
|
|
|
|
|
|
|
|
operator bool() const {
|
|
|
|
return ver_ > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
PointerWrap &p_;
|
|
|
|
int ver_;
|
|
|
|
const char *title_;
|
|
|
|
};
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
// Wrapper class
|
|
|
|
class PointerWrap
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum Mode {
|
|
|
|
MODE_READ = 1, // load
|
|
|
|
MODE_WRITE, // save
|
|
|
|
MODE_MEASURE, // calculate size
|
|
|
|
MODE_VERIFY, // compare
|
|
|
|
};
|
|
|
|
|
2013-04-13 01:39:17 -07:00
|
|
|
enum Error {
|
|
|
|
ERROR_NONE = 0,
|
|
|
|
ERROR_WARNING = 1,
|
|
|
|
ERROR_FAILURE = 2,
|
|
|
|
};
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
u8 **ptr;
|
|
|
|
Mode mode;
|
2020-08-02 17:11:09 +02:00
|
|
|
Error error = ERROR_NONE;
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2020-08-02 17:11:09 +02:00
|
|
|
PointerWrap(u8 **ptr_, Mode mode_) : ptr(ptr_), mode(mode_) {}
|
|
|
|
PointerWrap(unsigned char **ptr_, int mode_) : ptr((u8**)ptr_), mode((Mode)mode_) {}
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2013-10-06 21:26:08 -07:00
|
|
|
PointerWrapSection Section(const char *title, int ver);
|
2013-09-14 20:19:58 -07:00
|
|
|
|
|
|
|
// The returned object can be compared against the version that was loaded.
|
|
|
|
// This can be used to support versions as old as minVer.
|
2013-09-15 07:58:52 -07:00
|
|
|
// Version = 0 means the section was not found.
|
2013-10-06 21:26:08 -07:00
|
|
|
PointerWrapSection Section(const char *title, int minVer, int ver);
|
2013-09-14 20:19:58 -07:00
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
void SetMode(Mode mode_) {mode = mode_;}
|
|
|
|
Mode GetMode() const {return mode;}
|
|
|
|
u8 **GetPPtr() {return ptr;}
|
2013-10-06 21:26:08 -07:00
|
|
|
void SetError(Error error_);
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2020-08-02 17:11:09 +02:00
|
|
|
const char *GetBadSectionTitle() const {
|
|
|
|
return firstBadSectionTitle_;
|
|
|
|
}
|
|
|
|
|
2013-10-06 21:26:08 -07:00
|
|
|
// Same as DoVoid, except doesn't advance pointer if it doesn't match on read.
|
|
|
|
bool ExpectVoid(void *data, int size);
|
|
|
|
void DoVoid(void *data, int size);
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2013-10-06 21:26:08 -07:00
|
|
|
void DoMarker(const char *prevName, u32 arbitraryNumber = 0x42);
|
2020-08-09 21:20:42 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
const char *firstBadSectionTitle_ = nullptr;
|
2012-11-01 16:19:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class CChunkFileReader
|
|
|
|
{
|
|
|
|
public:
|
2013-09-14 21:19:10 -07:00
|
|
|
enum Error {
|
|
|
|
ERROR_NONE,
|
|
|
|
ERROR_BAD_FILE,
|
|
|
|
ERROR_BROKEN_STATE,
|
2017-03-07 15:19:20 +01:00
|
|
|
ERROR_BAD_ALLOC,
|
2013-09-14 21:19:10 -07:00
|
|
|
};
|
|
|
|
|
2013-09-29 13:54:39 -07:00
|
|
|
// May fail badly if ptr doesn't point to valid data.
|
|
|
|
template<class T>
|
2020-08-02 17:11:09 +02:00
|
|
|
static Error LoadPtr(u8 *ptr, T &_class, std::string *errorString)
|
2013-09-29 13:54:39 -07:00
|
|
|
{
|
|
|
|
PointerWrap p(&ptr, PointerWrap::MODE_READ);
|
|
|
|
_class.DoState(p);
|
|
|
|
|
|
|
|
if (p.error != p.ERROR_FAILURE) {
|
|
|
|
return ERROR_NONE;
|
|
|
|
} else {
|
2021-07-24 18:10:38 +02:00
|
|
|
std::string badSectionTitle = p.GetBadSectionTitle() ? p.GetBadSectionTitle() : "(unknown bad section)";
|
|
|
|
*errorString = std::string("Failure at ") + badSectionTitle;
|
2013-09-29 13:54:39 -07:00
|
|
|
return ERROR_BROKEN_STATE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
static size_t MeasurePtr(T &_class)
|
|
|
|
{
|
|
|
|
u8 *ptr = 0;
|
|
|
|
PointerWrap p(&ptr, PointerWrap::MODE_MEASURE);
|
|
|
|
_class.DoState(p);
|
|
|
|
return (size_t)ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expects ptr to have at least MeasurePtr bytes at ptr.
|
|
|
|
template<class T>
|
|
|
|
static Error SavePtr(u8 *ptr, T &_class)
|
|
|
|
{
|
|
|
|
PointerWrap p(&ptr, PointerWrap::MODE_WRITE);
|
|
|
|
_class.DoState(p);
|
|
|
|
|
|
|
|
if (p.error != p.ERROR_FAILURE) {
|
|
|
|
return ERROR_NONE;
|
|
|
|
} else {
|
|
|
|
return ERROR_BROKEN_STATE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
// Load file template
|
|
|
|
template<class T>
|
2021-05-06 01:31:38 +02:00
|
|
|
static Error Load(const Path &filename, std::string *gitVersion, T& _class, std::string *failureReason)
|
2012-11-01 16:19:01 +01:00
|
|
|
{
|
2016-01-23 12:53:03 -08:00
|
|
|
*failureReason = "LoadStateWrongVersion";
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2015-10-04 12:09:05 +02:00
|
|
|
u8 *ptr = nullptr;
|
2013-10-06 21:26:08 -07:00
|
|
|
size_t sz;
|
2016-01-23 12:53:03 -08:00
|
|
|
Error error = LoadFile(filename, gitVersion, ptr, sz, failureReason);
|
2013-10-06 21:26:08 -07:00
|
|
|
if (error == ERROR_NONE) {
|
2016-01-23 12:53:03 -08:00
|
|
|
failureReason->clear();
|
2020-08-02 17:11:09 +02:00
|
|
|
error = LoadPtr(ptr, _class, failureReason);
|
|
|
|
delete [] ptr;
|
|
|
|
INFO_LOG(SAVESTATE, "ChunkReader: Done loading '%s'", filename.c_str());
|
|
|
|
} else {
|
|
|
|
WARN_LOG(SAVESTATE, "ChunkReader: Error found during load of '%s'", filename.c_str());
|
2013-10-06 21:26:08 -07:00
|
|
|
}
|
2013-09-29 13:54:39 -07:00
|
|
|
return error;
|
2012-11-01 16:19:01 +01:00
|
|
|
}
|
2013-09-29 13:54:39 -07:00
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
// Save file template
|
|
|
|
template<class T>
|
2021-05-06 01:31:38 +02:00
|
|
|
static Error Save(const Path &filename, const std::string &title, const char *gitVersion, T& _class)
|
2012-11-01 16:19:01 +01:00
|
|
|
{
|
|
|
|
// Get data
|
2013-09-29 13:54:39 -07:00
|
|
|
size_t const sz = MeasurePtr(_class);
|
2017-11-05 10:04:22 -08:00
|
|
|
u8 *buffer = (u8 *)malloc(sz);
|
|
|
|
if (!buffer)
|
2017-03-07 15:19:20 +01:00
|
|
|
return ERROR_BAD_ALLOC;
|
2013-09-29 13:54:39 -07:00
|
|
|
Error error = SavePtr(buffer, _class);
|
2013-01-02 22:10:41 +01:00
|
|
|
|
2015-10-04 12:09:05 +02:00
|
|
|
// SaveFile takes ownership of buffer
|
2013-10-06 21:26:08 -07:00
|
|
|
if (error == ERROR_NONE)
|
2016-01-23 12:53:03 -08:00
|
|
|
error = SaveFile(filename, title, gitVersion, buffer, sz);
|
2013-09-29 13:54:39 -07:00
|
|
|
return error;
|
2012-11-01 16:19:01 +01:00
|
|
|
}
|
|
|
|
|
2012-12-27 10:34:22 -08:00
|
|
|
template <class T>
|
2013-09-14 21:19:10 -07:00
|
|
|
static Error Verify(T& _class)
|
2012-12-27 10:34:22 -08:00
|
|
|
{
|
|
|
|
u8 *ptr = 0;
|
|
|
|
|
|
|
|
// Step 1: Measure the space required.
|
|
|
|
PointerWrap p(&ptr, PointerWrap::MODE_MEASURE);
|
|
|
|
_class.DoState(p);
|
|
|
|
size_t const sz = (size_t)ptr;
|
|
|
|
std::vector<u8> buffer(sz);
|
|
|
|
|
|
|
|
// Step 2: Dump the state.
|
|
|
|
ptr = &buffer[0];
|
|
|
|
p.SetMode(PointerWrap::MODE_WRITE);
|
|
|
|
_class.DoState(p);
|
|
|
|
|
|
|
|
// Step 3: Verify the state.
|
|
|
|
ptr = &buffer[0];
|
|
|
|
p.SetMode(PointerWrap::MODE_VERIFY);
|
|
|
|
_class.DoState(p);
|
|
|
|
|
2013-09-14 21:19:10 -07:00
|
|
|
return ERROR_NONE;
|
2012-12-27 10:34:22 -08:00
|
|
|
}
|
|
|
|
|
2021-05-06 01:31:38 +02:00
|
|
|
static Error GetFileTitle(const Path &filename, std::string *title);
|
2013-10-06 21:26:08 -07:00
|
|
|
|
2016-01-23 12:53:03 -08:00
|
|
|
private:
|
2012-11-01 16:19:01 +01:00
|
|
|
struct SChunkHeader
|
|
|
|
{
|
|
|
|
int Revision;
|
|
|
|
int Compress;
|
2013-10-19 14:16:07 -07:00
|
|
|
u32 ExpectedSize;
|
|
|
|
u32 UncompressedSize;
|
2013-07-17 02:33:26 -03:00
|
|
|
char GitVersion[32];
|
2012-11-01 16:19:01 +01:00
|
|
|
};
|
2016-01-23 12:53:03 -08:00
|
|
|
|
|
|
|
enum {
|
|
|
|
REVISION_MIN = 4,
|
|
|
|
REVISION_TITLE = 5,
|
|
|
|
REVISION_CURRENT = REVISION_TITLE,
|
|
|
|
};
|
|
|
|
|
2021-05-06 01:31:38 +02:00
|
|
|
static Error LoadFile(const Path &filename, std::string *gitVersion, u8 *&buffer, size_t &sz, std::string *failureReason);
|
|
|
|
static Error SaveFile(const Path &filename, const std::string &title, const char *gitVersion, u8 *buffer, size_t sz);
|
2016-01-23 12:53:03 -08:00
|
|
|
static Error LoadFileHeader(File::IOFile &pFile, SChunkHeader &header, std::string *title);
|
2012-11-01 16:19:01 +01:00
|
|
|
};
|