citra/src/common/memory_ref.h

128 lines
3.2 KiB
C++
Raw Normal View History

2020-03-28 16:21:10 +01:00
// Copyright 2020 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
2020-01-04 23:39:54 +01:00
#pragma once
#include <memory>
#include <vector>
#include <boost/serialization/export.hpp>
#include <boost/serialization/shared_ptr.hpp>
#include <boost/serialization/vector.hpp>
#include "common/assert.h"
#include "common/common_types.h"
/// Abstract host-side memory - for example a static buffer, or local vector
class BackingMem {
public:
virtual ~BackingMem() = default;
virtual u8* GetPtr() = 0;
virtual u32 GetSize() const = 0;
private:
template <class Archive>
void serialize(Archive& ar, const unsigned int) {}
friend class boost::serialization::access;
2020-01-04 23:39:54 +01:00
};
/// Backing memory implemented by a local buffer
class BufferMem : public BackingMem {
public:
BufferMem() = default;
explicit BufferMem(std::size_t size) : data(size) {}
2020-01-04 23:39:54 +01:00
u8* GetPtr() override {
2020-01-04 23:39:54 +01:00
return data.data();
}
u32 GetSize() const override {
2020-01-04 23:39:54 +01:00
return static_cast<u32>(data.size());
}
std::vector<u8>& Vector() {
return data;
}
private:
std::vector<u8> data;
template <class Archive>
void serialize(Archive& ar, const unsigned int) {
ar& boost::serialization::base_object<BackingMem>(*this);
2020-01-04 23:39:54 +01:00
ar& data;
}
friend class boost::serialization::access;
};
BOOST_CLASS_EXPORT_KEY(BufferMem);
/// A managed reference to host-side memory. Fast enough to be used everywhere instead of u8*
/// Supports serialization.
class MemoryRef {
public:
MemoryRef() = default;
MemoryRef(std::nullptr_t) {}
MemoryRef(std::shared_ptr<BackingMem> backing_mem_)
: backing_mem(std::move(backing_mem_)), offset(0) {
Init();
}
MemoryRef(std::shared_ptr<BackingMem> backing_mem_, u32 offset_)
: backing_mem(std::move(backing_mem_)), offset(offset_) {
ASSERT(offset < backing_mem->GetSize());
Init();
}
inline operator u8*() {
return cptr;
}
inline u8* GetPtr() {
return cptr;
}
explicit operator bool() const {
2020-01-04 23:39:54 +01:00
return cptr != nullptr;
}
inline const u8* GetPtr() const {
return cptr;
}
inline u32 GetSize() const {
return csize;
}
inline void operator+=(u32 offset_by) {
ASSERT(offset_by < csize);
offset += offset_by;
Init();
}
inline MemoryRef operator+(u32 offset_by) const {
ASSERT(offset_by < csize);
return MemoryRef(backing_mem, offset + offset_by);
}
inline u8* operator+(std::size_t offset_by) const {
ASSERT(offset_by < csize);
return cptr + offset_by;
}
private:
2020-01-05 14:26:16 +01:00
std::shared_ptr<BackingMem> backing_mem = nullptr;
u32 offset = 0;
2020-01-04 23:39:54 +01:00
// Cached values for speed
2020-01-05 14:26:16 +01:00
u8* cptr = nullptr;
u32 csize = 0;
2020-01-04 23:39:54 +01:00
void Init() {
2020-01-05 14:26:16 +01:00
if (backing_mem) {
cptr = backing_mem->GetPtr() + offset;
csize = static_cast<u32>(backing_mem->GetSize() - offset);
} else {
cptr = nullptr;
csize = 0;
}
2020-01-04 23:39:54 +01:00
}
template <class Archive>
void serialize(Archive& ar, const unsigned int) {
ar& backing_mem;
ar& offset;
Init();
}
friend class boost::serialization::access;
};