2014-05-10 02:11:18 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project / PPSSPP Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-10 02:11:18 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-06-21 12:40:28 +00:00
|
|
|
#include <cstddef>
|
2014-08-18 03:03:22 +00:00
|
|
|
#include <string>
|
2017-05-29 23:45:42 +00:00
|
|
|
#include <utility>
|
2016-09-20 15:21:23 +00:00
|
|
|
#include <boost/smart_ptr/intrusive_ptr.hpp>
|
2017-08-19 17:04:40 +00:00
|
|
|
#include "common/assert.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/common_types.h"
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
namespace Kernel {
|
|
|
|
|
2016-12-16 05:37:38 +00:00
|
|
|
using Handle = u32;
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
enum class HandleType : u32 {
|
2016-12-01 04:28:31 +00:00
|
|
|
Unknown,
|
|
|
|
Event,
|
|
|
|
SharedMemory,
|
|
|
|
Thread,
|
|
|
|
Process,
|
|
|
|
AddressArbiter,
|
|
|
|
Timer,
|
|
|
|
ResourceLimit,
|
|
|
|
CodeSet,
|
|
|
|
ClientPort,
|
|
|
|
ServerPort,
|
|
|
|
ClientSession,
|
|
|
|
ServerSession,
|
2014-05-14 01:57:12 +00:00
|
|
|
};
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2016-05-25 10:36:15 +00:00
|
|
|
enum class ResetType {
|
|
|
|
OneShot,
|
|
|
|
Sticky,
|
|
|
|
Pulse,
|
|
|
|
};
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
class Object : NonCopyable {
|
2014-05-10 02:11:18 +00:00
|
|
|
public:
|
2016-09-19 01:01:46 +00:00
|
|
|
virtual ~Object() {}
|
2015-01-18 19:33:11 +00:00
|
|
|
|
2015-01-31 16:55:40 +00:00
|
|
|
/// Returns a unique identifier for the object. For debugging purposes only.
|
2016-09-18 00:38:01 +00:00
|
|
|
unsigned int GetObjectId() const {
|
|
|
|
return object_id;
|
|
|
|
}
|
2015-01-31 16:55:40 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
virtual std::string GetTypeName() const {
|
|
|
|
return "[BAD KERNEL OBJECT TYPE]";
|
|
|
|
}
|
|
|
|
virtual std::string GetName() const {
|
|
|
|
return "[UNKNOWN KERNEL OBJECT]";
|
|
|
|
}
|
2014-05-20 22:13:25 +00:00
|
|
|
virtual Kernel::HandleType GetHandleType() const = 0;
|
2014-05-27 02:12:46 +00:00
|
|
|
|
2014-05-27 02:17:49 +00:00
|
|
|
/**
|
2015-01-18 19:33:11 +00:00
|
|
|
* Check if a thread can wait on the object
|
|
|
|
* @return True if a thread can wait on the object, otherwise false
|
2014-05-27 02:17:49 +00:00
|
|
|
*/
|
2015-01-18 19:33:11 +00:00
|
|
|
bool IsWaitable() const {
|
|
|
|
switch (GetHandleType()) {
|
|
|
|
case HandleType::Event:
|
|
|
|
case HandleType::Thread:
|
|
|
|
case HandleType::Timer:
|
2016-06-17 20:24:38 +00:00
|
|
|
case HandleType::ServerPort:
|
|
|
|
case HandleType::ServerSession:
|
2015-01-18 19:33:11 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
case HandleType::Unknown:
|
|
|
|
case HandleType::SharedMemory:
|
|
|
|
case HandleType::Process:
|
|
|
|
case HandleType::AddressArbiter:
|
2015-05-21 18:54:49 +00:00
|
|
|
case HandleType::ResourceLimit:
|
2015-07-12 21:14:26 +00:00
|
|
|
case HandleType::CodeSet:
|
2016-05-22 16:22:49 +00:00
|
|
|
case HandleType::ClientPort:
|
2016-06-17 20:24:38 +00:00
|
|
|
case HandleType::ClientSession:
|
2015-01-18 19:33:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-08-19 17:04:40 +00:00
|
|
|
|
|
|
|
UNREACHABLE();
|
2014-12-06 01:53:49 +00:00
|
|
|
}
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2015-04-28 02:12:35 +00:00
|
|
|
public:
|
|
|
|
static unsigned int next_object_id;
|
|
|
|
|
2014-12-21 12:04:08 +00:00
|
|
|
private:
|
|
|
|
friend void intrusive_ptr_add_ref(Object*);
|
|
|
|
friend void intrusive_ptr_release(Object*);
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-12-21 12:04:08 +00:00
|
|
|
unsigned int ref_count = 0;
|
2015-01-31 16:55:40 +00:00
|
|
|
unsigned int object_id = next_object_id++;
|
2014-12-21 12:04:08 +00:00
|
|
|
};
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
// Special functions used by boost::instrusive_ptr to do automatic ref-counting
|
2014-12-21 12:04:08 +00:00
|
|
|
inline void intrusive_ptr_add_ref(Object* object) {
|
|
|
|
++object->ref_count;
|
|
|
|
}
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-12-21 12:04:08 +00:00
|
|
|
inline void intrusive_ptr_release(Object* object) {
|
|
|
|
if (--object->ref_count == 0) {
|
|
|
|
delete object;
|
2014-11-18 13:27:16 +00:00
|
|
|
}
|
2014-12-21 12:04:08 +00:00
|
|
|
}
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
template <typename T>
|
|
|
|
using SharedPtr = boost::intrusive_ptr<T>;
|
|
|
|
|
2017-05-29 21:42:27 +00: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>
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-11-20 01:40:04 +00:00
|
|
|
/// Initialize the kernel with the specified system mode.
|
|
|
|
void Init(u32 system_mode);
|
2014-06-11 02:43:50 +00:00
|
|
|
|
|
|
|
/// Shutdown the kernel
|
|
|
|
void Shutdown();
|
|
|
|
|
2017-07-21 04:52:50 +00:00
|
|
|
} // namespace Kernel
|