2014-05-10 02:11:18 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project / PPSSPP Project
|
|
|
|
// Licensed under GPLv2
|
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
|
|
|
|
|
2014-08-19 04:20:56 +00:00
|
|
|
#include <array>
|
2014-08-18 03:03:22 +00:00
|
|
|
#include <string>
|
2014-05-21 02:27:46 +00:00
|
|
|
#include "common/common.h"
|
2014-10-23 03:20:01 +00:00
|
|
|
#include "core/hle/result.h"
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-05-18 22:12:29 +00:00
|
|
|
typedef u32 Handle;
|
|
|
|
typedef s32 Result;
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
namespace Kernel {
|
|
|
|
|
2014-05-27 01:56:23 +00:00
|
|
|
enum KernelHandle {
|
|
|
|
CurrentThread = 0xFFFF8000,
|
|
|
|
CurrentProcess = 0xFFFF8001,
|
|
|
|
};
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
enum class HandleType : u32 {
|
|
|
|
Unknown = 0,
|
|
|
|
Port = 1,
|
2014-12-14 05:30:11 +00:00
|
|
|
Session = 2,
|
2014-05-20 22:13:25 +00:00
|
|
|
Event = 3,
|
|
|
|
Mutex = 4,
|
|
|
|
SharedMemory = 5,
|
|
|
|
Redirection = 6,
|
|
|
|
Thread = 7,
|
|
|
|
Process = 8,
|
2014-07-07 03:15:40 +00:00
|
|
|
AddressArbiter = 9,
|
2014-12-14 05:30:11 +00:00
|
|
|
Semaphore = 10,
|
2014-05-14 01:57:12 +00:00
|
|
|
};
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2014-05-15 22:26:28 +00:00
|
|
|
enum {
|
2014-05-20 22:13:25 +00:00
|
|
|
DEFAULT_STACK_SIZE = 0x4000,
|
2014-05-15 22:26:28 +00:00
|
|
|
};
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
class ObjectPool;
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
class Object : NonCopyable {
|
|
|
|
friend class ObjectPool;
|
2014-05-15 22:26:28 +00:00
|
|
|
u32 handle;
|
2014-05-10 02:11:18 +00:00
|
|
|
public:
|
2014-05-20 22:13:25 +00:00
|
|
|
virtual ~Object() {}
|
2014-05-15 22:26:28 +00:00
|
|
|
Handle GetHandle() const { return handle; }
|
2014-08-18 03:03:22 +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
|
|
|
/**
|
2014-10-23 03:20:01 +00:00
|
|
|
* Wait for kernel object to synchronize.
|
|
|
|
* @return True if the current thread should wait as a result of the wait
|
2014-05-27 02:17:49 +00:00
|
|
|
*/
|
2014-12-06 01:53:49 +00:00
|
|
|
virtual ResultVal<bool> WaitSynchronization() {
|
|
|
|
LOG_ERROR(Kernel, "(UNIMPLEMENTED)");
|
|
|
|
return UnimplementedFunction(ErrorModule::Kernel);
|
|
|
|
}
|
2014-05-10 02:11:18 +00:00
|
|
|
};
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
class ObjectPool : NonCopyable {
|
2014-05-10 02:11:18 +00:00
|
|
|
public:
|
2014-05-20 22:13:25 +00:00
|
|
|
ObjectPool();
|
|
|
|
~ObjectPool() {}
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-05-15 22:26:28 +00:00
|
|
|
// Allocates a handle within the range and inserts the object into the map.
|
2014-05-20 22:13:25 +00:00
|
|
|
Handle Create(Object* obj, int range_bottom=INITIAL_NEXT_ID, int range_top=0x7FFFFFFF);
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
static Object* CreateByIDType(int type);
|
2014-05-10 02:11:18 +00:00
|
|
|
|
|
|
|
template <class T>
|
2014-10-23 03:20:01 +00:00
|
|
|
void Destroy(Handle handle) {
|
|
|
|
if (Get<T>(handle)) {
|
2014-05-14 01:57:12 +00:00
|
|
|
occupied[handle - HANDLE_OFFSET] = false;
|
|
|
|
delete pool[handle - HANDLE_OFFSET];
|
2014-05-10 02:11:18 +00:00
|
|
|
}
|
2014-11-18 13:27:16 +00:00
|
|
|
}
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-12-04 00:48:34 +00:00
|
|
|
bool IsValid(Handle handle) const;
|
2014-05-10 02:11:18 +00:00
|
|
|
|
|
|
|
template <class T>
|
2014-10-23 03:20:01 +00:00
|
|
|
T* Get(Handle handle) {
|
2014-05-14 01:57:12 +00:00
|
|
|
if (handle < HANDLE_OFFSET || handle >= HANDLE_OFFSET + MAX_COUNT || !occupied[handle - HANDLE_OFFSET]) {
|
2014-10-23 03:20:01 +00:00
|
|
|
if (handle != 0) {
|
2014-12-13 15:15:58 +00:00
|
|
|
LOG_ERROR(Kernel, "Bad object handle %08x", handle);
|
2014-05-10 02:11:18 +00:00
|
|
|
}
|
2014-10-23 03:20:01 +00:00
|
|
|
return nullptr;
|
2014-05-10 02:11:18 +00:00
|
|
|
} else {
|
2014-10-23 03:20:01 +00:00
|
|
|
Object* t = pool[handle - HANDLE_OFFSET];
|
|
|
|
if (t->GetHandleType() != T::GetStaticHandleType()) {
|
2014-12-13 15:15:58 +00:00
|
|
|
LOG_ERROR(Kernel, "Wrong object type for %08x", handle);
|
2014-10-23 03:20:01 +00:00
|
|
|
return nullptr;
|
2014-05-10 02:11:18 +00:00
|
|
|
}
|
2014-10-23 03:20:01 +00:00
|
|
|
return static_cast<T*>(t);
|
2014-05-10 02:11:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ONLY use this when you know the handle is valid.
|
|
|
|
template <class T>
|
2014-05-15 22:26:28 +00:00
|
|
|
T *GetFast(Handle handle) {
|
|
|
|
const Handle realHandle = handle - HANDLE_OFFSET;
|
2014-12-06 01:53:49 +00:00
|
|
|
_dbg_assert_(Kernel, realHandle >= 0 && realHandle < MAX_COUNT && occupied[realHandle]);
|
2014-05-20 22:13:25 +00:00
|
|
|
return static_cast<T*>(pool[realHandle]);
|
2014-05-10 02:11:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class T, typename ArgT>
|
2014-05-20 22:13:25 +00:00
|
|
|
void Iterate(bool func(T*, ArgT), ArgT arg) {
|
2014-05-10 02:11:18 +00:00
|
|
|
int type = T::GetStaticIDType();
|
2014-05-14 01:57:12 +00:00
|
|
|
for (int i = 0; i < MAX_COUNT; i++)
|
2014-05-10 02:11:18 +00:00
|
|
|
{
|
|
|
|
if (!occupied[i])
|
|
|
|
continue;
|
2014-05-20 22:13:25 +00:00
|
|
|
T* t = static_cast<T*>(pool[i]);
|
2014-05-10 02:11:18 +00:00
|
|
|
if (t->GetIDType() == type) {
|
|
|
|
if (!func(t, arg))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
bool GetIDType(Handle handle, HandleType* type) const {
|
2014-11-19 08:49:13 +00:00
|
|
|
if ((handle < HANDLE_OFFSET) || (handle >= HANDLE_OFFSET + MAX_COUNT) ||
|
2014-12-06 01:53:49 +00:00
|
|
|
!occupied[handle - HANDLE_OFFSET]) {
|
2014-12-13 15:15:58 +00:00
|
|
|
LOG_ERROR(Kernel, "Bad object handle %08X", handle);
|
2014-05-10 02:11:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-05-20 22:13:25 +00:00
|
|
|
Object* t = pool[handle - HANDLE_OFFSET];
|
|
|
|
*type = t->GetHandleType();
|
2014-05-10 02:11:18 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
Object* &operator [](Handle handle);
|
2014-05-10 02:11:18 +00:00
|
|
|
void List();
|
|
|
|
void Clear();
|
2014-12-04 00:48:34 +00:00
|
|
|
int GetCount() const;
|
2014-05-10 02:11:18 +00:00
|
|
|
|
|
|
|
private:
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2014-05-10 02:11:18 +00:00
|
|
|
enum {
|
|
|
|
MAX_COUNT = 0x1000,
|
|
|
|
HANDLE_OFFSET = 0x100,
|
|
|
|
INITIAL_NEXT_ID = 0x10,
|
|
|
|
};
|
2014-05-20 22:13:25 +00:00
|
|
|
|
2014-08-19 04:20:56 +00:00
|
|
|
std::array<Object*, MAX_COUNT> pool;
|
|
|
|
std::array<bool, MAX_COUNT> occupied;
|
|
|
|
int next_id;
|
2014-05-10 02:11:18 +00:00
|
|
|
};
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
extern ObjectPool g_object_pool;
|
2014-06-02 01:42:50 +00:00
|
|
|
extern Handle g_main_thread;
|
2014-05-20 22:13:25 +00:00
|
|
|
|
2014-12-16 05:33:41 +00:00
|
|
|
/// The ID code of the currently running game
|
|
|
|
/// TODO(Subv): This variable should not be here,
|
|
|
|
/// we need a way to store information about the currently loaded application
|
|
|
|
/// for later query during runtime, maybe using the LDR service?
|
|
|
|
extern u64 g_program_id;
|
|
|
|
|
2014-06-11 02:43:50 +00:00
|
|
|
/// Initialize the kernel
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
/// Shutdown the kernel
|
|
|
|
void Shutdown();
|
|
|
|
|
2014-05-22 23:06:12 +00:00
|
|
|
/**
|
|
|
|
* Loads executable stored at specified address
|
|
|
|
* @entry_point Entry point in memory of loaded executable
|
|
|
|
* @return True on success, otherwise false
|
|
|
|
*/
|
|
|
|
bool LoadExec(u32 entry_point);
|
2014-05-14 01:57:12 +00:00
|
|
|
|
2014-05-22 23:06:12 +00:00
|
|
|
} // namespace
|