mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-13 13:35:14 +01:00
Code review changes - clarified HTTP serialization
This commit is contained in:
parent
bbf8e876ab
commit
d92b3e9754
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
#include <future>
|
#include <future>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <optional>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
@ -215,24 +216,6 @@ public:
|
|||||||
#ifdef ENABLE_WEB_SERVICE
|
#ifdef ENABLE_WEB_SERVICE
|
||||||
httplib::Response response;
|
httplib::Response response;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
private:
|
|
||||||
template <class Archive>
|
|
||||||
void serialize(Archive& ar, const unsigned int) {
|
|
||||||
ar& handle;
|
|
||||||
ar& session_id;
|
|
||||||
ar& url;
|
|
||||||
ar& method;
|
|
||||||
ar& state;
|
|
||||||
ar& proxy;
|
|
||||||
ar& basic_auth;
|
|
||||||
ar& ssl_config;
|
|
||||||
ar& socket_buffer_size;
|
|
||||||
ar& headers;
|
|
||||||
ar& post_data;
|
|
||||||
}
|
|
||||||
friend class boost::serialization::access;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct SessionData : public Kernel::SessionRequestHandler::SessionDataBase {
|
struct SessionData : public Kernel::SessionRequestHandler::SessionDataBase {
|
||||||
@ -453,10 +436,18 @@ private:
|
|||||||
private:
|
private:
|
||||||
template <class Archive>
|
template <class Archive>
|
||||||
void serialize(Archive& ar, const unsigned int) {
|
void serialize(Archive& ar, const unsigned int) {
|
||||||
|
// NOTE: Serialization of the HTTP service is on a 'best effort' basis.
|
||||||
|
// There is a very good chance that saving/loading during a network connection will break,
|
||||||
|
// regardless!
|
||||||
ar& boost::serialization::base_object<Kernel::SessionRequestHandler>(*this);
|
ar& boost::serialization::base_object<Kernel::SessionRequestHandler>(*this);
|
||||||
ar& ClCertA.certificate;
|
ar& ClCertA.certificate;
|
||||||
ar& ClCertA.private_key;
|
ar& ClCertA.private_key;
|
||||||
ar& ClCertA.init;
|
ar& ClCertA.init;
|
||||||
|
ar& context_counter;
|
||||||
|
ar& client_certs_counter;
|
||||||
|
ar& client_certs;
|
||||||
|
// NOTE: `contexts` is not serialized because it contains non-serializable data. (i.e.
|
||||||
|
// handles to ongoing HTTP requests.) Serializing across HTTP contexts will break.
|
||||||
}
|
}
|
||||||
friend class boost::serialization::access;
|
friend class boost::serialization::access;
|
||||||
};
|
};
|
||||||
|
@ -110,6 +110,7 @@ struct State {
|
|||||||
private:
|
private:
|
||||||
template <class Archive>
|
template <class Archive>
|
||||||
void serialize(Archive& ar, const unsigned int) {
|
void serialize(Archive& ar, const unsigned int) {
|
||||||
|
ar& memory_ref;
|
||||||
ar& sharedmem_size;
|
ar& sharedmem_size;
|
||||||
ar& size;
|
ar& size;
|
||||||
ar& offset;
|
ar& offset;
|
||||||
@ -139,6 +140,7 @@ struct MIC_U::Impl {
|
|||||||
|
|
||||||
if (shared_memory) {
|
if (shared_memory) {
|
||||||
shared_memory->SetName("MIC_U:shared_memory");
|
shared_memory->SetName("MIC_U:shared_memory");
|
||||||
|
state.memory_ref = shared_memory;
|
||||||
state.sharedmem_buffer = shared_memory->GetPointer();
|
state.sharedmem_buffer = shared_memory->GetPointer();
|
||||||
state.sharedmem_size = size;
|
state.sharedmem_size = size;
|
||||||
}
|
}
|
||||||
|
@ -5,10 +5,8 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
#include <boost/serialization/access.hpp>
|
||||||
#include "video_core/regs_pipeline.h"
|
#include "video_core/regs_pipeline.h"
|
||||||
namespace boost::serialization {
|
|
||||||
class access;
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace Pica {
|
namespace Pica {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user