2018-08-02 02:40:00 +00: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 04:13:47 +00:00
|
|
|
#include <atomic>
|
2018-08-02 02:40:00 +00:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include <boost/smart_ptr/intrusive_ptr.hpp>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
|
|
using Handle = u32;
|
|
|
|
|
|
|
|
enum class HandleType : u32 {
|
|
|
|
Unknown,
|
|
|
|
Event,
|
|
|
|
SharedMemory,
|
|
|
|
Thread,
|
|
|
|
Process,
|
|
|
|
AddressArbiter,
|
|
|
|
Timer,
|
|
|
|
ResourceLimit,
|
|
|
|
CodeSet,
|
|
|
|
ClientPort,
|
|
|
|
ServerPort,
|
|
|
|
ClientSession,
|
|
|
|
ServerSession,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class ResetType {
|
|
|
|
OneShot,
|
|
|
|
Sticky,
|
|
|
|
Pulse,
|
|
|
|
};
|
|
|
|
|
|
|
|
class Object : NonCopyable {
|
|
|
|
public:
|
|
|
|
virtual ~Object();
|
|
|
|
|
|
|
|
/// Returns a unique identifier for the object. For debugging purposes only.
|
2018-08-13 04:13:47 +00:00
|
|
|
u32 GetObjectId() const {
|
|
|
|
return object_id.load(std::memory_order_relaxed);
|
2018-08-02 02:40:00 +00: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;
|
|
|
|
|
|
|
|
public:
|
2018-08-13 04:13:47 +00:00
|
|
|
static std::atomic<u32> next_object_id;
|
2018-08-02 02:40:00 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend void intrusive_ptr_add_ref(Object*);
|
|
|
|
friend void intrusive_ptr_release(Object*);
|
|
|
|
|
2018-08-13 04:13:47 +00:00
|
|
|
std::atomic<u32> ref_count{0};
|
|
|
|
std::atomic<u32> object_id{next_object_id++};
|
2018-08-02 02:40:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Special functions used by boost::instrusive_ptr to do automatic ref-counting
|
|
|
|
inline void intrusive_ptr_add_ref(Object* object) {
|
2018-08-13 04:13:47 +00:00
|
|
|
object->ref_count.fetch_add(1, std::memory_order_relaxed);
|
2018-08-02 02:40:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void intrusive_ptr_release(Object* object) {
|
2018-08-13 04:13:47 +00:00
|
|
|
if (object->ref_count.fetch_sub(1, std::memory_order_acq_rel) == 1) {
|
2018-08-02 02:40:00 +00:00
|
|
|
delete object;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
using SharedPtr = boost::intrusive_ptr<T>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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>
|
|
|
|
inline SharedPtr<T> DynamicObjectCast(SharedPtr<Object> object) {
|
|
|
|
if (object != nullptr && object->GetHandleType() == T::HANDLE_TYPE) {
|
|
|
|
return boost::static_pointer_cast<T>(std::move(object));
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Kernel
|