2018-08-02 03:40:00 +01:00
|
|
|
// Copyright 2018 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-08-13 05:13:47 +01:00
|
|
|
#include <atomic>
|
2019-03-23 20:04:19 +00:00
|
|
|
#include <memory>
|
2018-08-02 03:40:00 +01:00
|
|
|
#include <string>
|
2019-08-11 00:20:09 +01:00
|
|
|
#include <boost/serialization/access.hpp>
|
2019-12-27 18:52:33 +00:00
|
|
|
#include <boost/serialization/assume_abstract.hpp>
|
|
|
|
#include <boost/serialization/export.hpp>
|
2018-08-02 03:40:00 +01:00
|
|
|
#include "common/common_types.h"
|
2019-12-27 21:07:29 +00:00
|
|
|
#include "common/serialization/atomic.h"
|
2019-12-27 18:52:33 +00:00
|
|
|
#include "core/global.h"
|
2019-12-27 21:07:29 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2018-08-02 03:40:00 +01:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2018-10-13 22:24:51 +01:00
|
|
|
class KernelSystem;
|
|
|
|
|
2018-08-02 03:40:00 +01:00
|
|
|
using Handle = u32;
|
|
|
|
|
|
|
|
enum class HandleType : u32 {
|
|
|
|
Unknown,
|
|
|
|
Event,
|
|
|
|
Mutex,
|
|
|
|
SharedMemory,
|
|
|
|
Thread,
|
|
|
|
Process,
|
|
|
|
AddressArbiter,
|
|
|
|
Semaphore,
|
|
|
|
Timer,
|
|
|
|
ResourceLimit,
|
|
|
|
CodeSet,
|
|
|
|
ClientPort,
|
|
|
|
ServerPort,
|
|
|
|
ClientSession,
|
|
|
|
ServerSession,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
DEFAULT_STACK_SIZE = 0x4000,
|
|
|
|
};
|
|
|
|
|
2019-03-23 20:04:19 +00:00
|
|
|
class Object : NonCopyable, public std::enable_shared_from_this<Object> {
|
2018-08-02 03:40:00 +01:00
|
|
|
public:
|
2018-10-13 22:24:51 +01:00
|
|
|
explicit Object(KernelSystem& kernel);
|
2018-08-02 03:40:00 +01:00
|
|
|
virtual ~Object();
|
|
|
|
|
|
|
|
/// Returns a unique identifier for the object. For debugging purposes only.
|
2018-08-13 05:13:47 +01:00
|
|
|
u32 GetObjectId() const {
|
|
|
|
return object_id.load(std::memory_order_relaxed);
|
2018-08-02 03:40:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual std::string GetTypeName() const {
|
|
|
|
return "[BAD KERNEL OBJECT TYPE]";
|
|
|
|
}
|
|
|
|
virtual std::string GetName() const {
|
|
|
|
return "[UNKNOWN KERNEL OBJECT]";
|
|
|
|
}
|
|
|
|
virtual HandleType GetHandleType() const = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a thread can wait on the object
|
|
|
|
* @return True if a thread can wait on the object, otherwise false
|
|
|
|
*/
|
|
|
|
bool IsWaitable() const;
|
|
|
|
|
|
|
|
private:
|
2018-10-13 22:24:51 +01:00
|
|
|
std::atomic<u32> object_id;
|
2019-08-11 00:20:09 +01:00
|
|
|
|
|
|
|
friend class boost::serialization::access;
|
|
|
|
template <class Archive>
|
2019-12-27 21:07:29 +00:00
|
|
|
void serialize(Archive& ar, const unsigned int file_version) {
|
|
|
|
ar& object_id;
|
2019-08-11 00:20:09 +01:00
|
|
|
}
|
2018-08-02 03:40:00 +01:00
|
|
|
};
|
|
|
|
|
2019-03-23 20:04:19 +00:00
|
|
|
template <typename T>
|
|
|
|
std::shared_ptr<T> SharedFrom(T* raw) {
|
|
|
|
if (raw == nullptr)
|
|
|
|
return nullptr;
|
2018-08-02 03:40:00 +01:00
|
|
|
|
2019-03-23 20:04:19 +00:00
|
|
|
return std::static_pointer_cast<T>(raw->shared_from_this());
|
2018-08-02 03:40:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempts to downcast the given Object pointer to a pointer to T.
|
|
|
|
* @return Derived pointer to the object, or `nullptr` if `object` isn't of type T.
|
|
|
|
*/
|
|
|
|
template <typename T>
|
2019-03-23 20:04:19 +00:00
|
|
|
inline std::shared_ptr<T> DynamicObjectCast(std::shared_ptr<Object> object) {
|
2018-08-02 03:40:00 +01:00
|
|
|
if (object != nullptr && object->GetHandleType() == T::HANDLE_TYPE) {
|
2019-03-23 20:04:19 +00:00
|
|
|
return std::static_pointer_cast<T>(object);
|
2018-08-02 03:40:00 +01:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Kernel
|
2019-12-27 18:52:33 +00:00
|
|
|
|
|
|
|
BOOST_SERIALIZATION_ASSUME_ABSTRACT(Kernel::Object)
|
|
|
|
|
2019-12-27 21:07:29 +00:00
|
|
|
#define CONSTRUCT_KERNEL_OBJECT(T) \
|
|
|
|
namespace boost::serialization { \
|
|
|
|
template <class Archive> \
|
2020-03-31 17:54:28 +01:00
|
|
|
void load_construct_data(Archive& ar, T* t, const unsigned int file_version) { \
|
2019-12-27 21:07:29 +00:00
|
|
|
::new (t) T(Core::Global<Kernel::KernelSystem>()); \
|
|
|
|
} \
|
|
|
|
}
|