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
|
|
|
|
|
2018-09-02 15:58:58 +00:00
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
2018-08-28 16:30:33 +00:00
|
|
|
#include "core/hle/kernel/object.h"
|
|
|
|
|
2019-03-05 17:28:10 +00:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2019-02-12 17:32:15 +00:00
|
|
|
namespace Core::Timing {
|
2019-02-14 17:42:58 +00:00
|
|
|
class CoreTiming;
|
2018-08-28 16:30:33 +00:00
|
|
|
struct EventType;
|
2019-02-14 17:42:58 +00:00
|
|
|
} // namespace Core::Timing
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
namespace Kernel {
|
|
|
|
|
2019-03-05 16:54:06 +00:00
|
|
|
class AddressArbiter;
|
2018-09-02 15:58:58 +00:00
|
|
|
class ClientPort;
|
2018-08-28 16:30:33 +00:00
|
|
|
class HandleTable;
|
|
|
|
class Process;
|
|
|
|
class ResourceLimit;
|
|
|
|
class Thread;
|
|
|
|
|
|
|
|
/// Represents a single instance of the kernel.
|
|
|
|
class KernelCore {
|
2018-09-02 15:58:58 +00:00
|
|
|
private:
|
|
|
|
using NamedPortTable = std::unordered_map<std::string, SharedPtr<ClientPort>>;
|
|
|
|
|
2018-08-28 16:30:33 +00:00
|
|
|
public:
|
2019-03-05 17:28:10 +00:00
|
|
|
/// Constructs an instance of the kernel using the given System
|
|
|
|
/// instance as a context for any necessary system-related state,
|
|
|
|
/// such as threads, CPU core state, etc.
|
|
|
|
///
|
|
|
|
/// @post After execution of the constructor, the provided System
|
|
|
|
/// object *must* outlive the kernel instance itself.
|
|
|
|
///
|
|
|
|
explicit KernelCore(Core::System& system);
|
2018-08-28 16:30:33 +00:00
|
|
|
~KernelCore();
|
|
|
|
|
|
|
|
KernelCore(const KernelCore&) = delete;
|
|
|
|
KernelCore& operator=(const KernelCore&) = delete;
|
|
|
|
|
|
|
|
KernelCore(KernelCore&&) = delete;
|
|
|
|
KernelCore& operator=(KernelCore&&) = delete;
|
|
|
|
|
|
|
|
/// Resets the kernel to a clean slate for use.
|
2019-03-05 17:28:10 +00:00
|
|
|
void Initialize();
|
2018-08-28 16:30:33 +00:00
|
|
|
|
|
|
|
/// Clears all resources in use by the kernel instance.
|
|
|
|
void Shutdown();
|
|
|
|
|
2018-11-19 17:54:06 +00:00
|
|
|
/// Retrieves a shared pointer to the system resource limit instance.
|
|
|
|
SharedPtr<ResourceLimit> GetSystemResourceLimit() const;
|
2018-08-28 16:30:33 +00:00
|
|
|
|
|
|
|
/// Retrieves a shared pointer to a Thread instance within the thread wakeup handle table.
|
|
|
|
SharedPtr<Thread> RetrieveThreadFromWakeupCallbackHandleTable(Handle handle) const;
|
|
|
|
|
|
|
|
/// Adds the given shared pointer to an internal list of active processes.
|
|
|
|
void AppendNewProcess(SharedPtr<Process> process);
|
|
|
|
|
2018-09-07 00:34:51 +00:00
|
|
|
/// Makes the given process the new current process.
|
2018-10-10 04:42:10 +00:00
|
|
|
void MakeCurrentProcess(Process* process);
|
2018-09-07 00:34:51 +00:00
|
|
|
|
2018-10-10 04:42:10 +00:00
|
|
|
/// Retrieves a pointer to the current process.
|
|
|
|
Process* CurrentProcess();
|
2018-09-07 00:34:51 +00:00
|
|
|
|
2018-10-10 04:42:10 +00:00
|
|
|
/// Retrieves a const pointer to the current process.
|
|
|
|
const Process* CurrentProcess() const;
|
2018-09-07 00:34:51 +00:00
|
|
|
|
2019-03-20 19:03:52 +00:00
|
|
|
/// Retrieves the list of processes.
|
|
|
|
const std::vector<SharedPtr<Process>>& GetProcessList() const;
|
|
|
|
|
2018-09-02 15:58:58 +00:00
|
|
|
/// Adds a port to the named port table
|
|
|
|
void AddNamedPort(std::string name, SharedPtr<ClientPort> port);
|
|
|
|
|
|
|
|
/// Finds a port within the named port table with the given name.
|
|
|
|
NamedPortTable::iterator FindNamedPort(const std::string& name);
|
|
|
|
|
|
|
|
/// Finds a port within the named port table with the given name.
|
|
|
|
NamedPortTable::const_iterator FindNamedPort(const std::string& name) const;
|
|
|
|
|
|
|
|
/// Determines whether or not the given port is a valid named port.
|
|
|
|
bool IsValidNamedPort(NamedPortTable::const_iterator port) const;
|
|
|
|
|
2018-08-28 16:30:33 +00:00
|
|
|
private:
|
|
|
|
friend class Object;
|
|
|
|
friend class Process;
|
|
|
|
friend class Thread;
|
|
|
|
|
|
|
|
/// Creates a new object ID, incrementing the internal object ID counter.
|
|
|
|
u32 CreateNewObjectID();
|
|
|
|
|
|
|
|
/// Creates a new process ID, incrementing the internal process ID counter;
|
2018-12-19 03:16:53 +00:00
|
|
|
u64 CreateNewProcessID();
|
2018-08-28 16:30:33 +00:00
|
|
|
|
|
|
|
/// Creates a new thread ID, incrementing the internal thread ID counter.
|
2018-12-19 03:37:01 +00:00
|
|
|
u64 CreateNewThreadID();
|
2018-08-28 16:30:33 +00:00
|
|
|
|
|
|
|
/// Retrieves the event type used for thread wakeup callbacks.
|
2019-02-12 17:32:15 +00:00
|
|
|
Core::Timing::EventType* ThreadWakeupCallbackEventType() const;
|
2018-08-28 16:30:33 +00:00
|
|
|
|
|
|
|
/// Provides a reference to the thread wakeup callback handle table.
|
|
|
|
Kernel::HandleTable& ThreadWakeupCallbackHandleTable();
|
|
|
|
|
|
|
|
/// Provides a const reference to the thread wakeup callback handle table.
|
|
|
|
const Kernel::HandleTable& ThreadWakeupCallbackHandleTable() const;
|
2014-06-11 02:43:50 +00:00
|
|
|
|
2018-08-28 16:30:33 +00:00
|
|
|
struct Impl;
|
|
|
|
std::unique_ptr<Impl> impl;
|
|
|
|
};
|
2014-06-11 02:43:50 +00:00
|
|
|
|
2017-07-21 04:52:50 +00:00
|
|
|
} // namespace Kernel
|