xenia-canary/src/xenia/kernel/kernel_state.h

108 lines
3.2 KiB
C
Raw Normal View History

/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2013 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#ifndef XENIA_KERNEL_KERNEL_STATE_H_
#define XENIA_KERNEL_KERNEL_STATE_H_
2014-08-03 21:38:04 +00:00
#include <memory>
#include <xenia/common.h>
#include <xenia/core.h>
#include <xenia/export_resolver.h>
#include <xenia/xbox.h>
2014-08-03 21:38:04 +00:00
#include <xenia/kernel/app.h>
#include <xenia/kernel/object_table.h>
2014-08-04 04:26:10 +00:00
#include <xenia/kernel/user_profile.h>
#include <xenia/kernel/fs/filesystem.h>
XEDECLARECLASS1(xe, Emulator);
XEDECLARECLASS2(xe, cpu, Processor);
XEDECLARECLASS2(xe, kernel, Dispatcher);
XEDECLARECLASS2(xe, kernel, XModule);
2014-06-23 02:41:26 +00:00
XEDECLARECLASS2(xe, kernel, XNotifyListener);
2014-01-08 04:54:47 +00:00
XEDECLARECLASS2(xe, kernel, XThread);
XEDECLARECLASS2(xe, kernel, XUserModule);
XEDECLARECLASS3(xe, kernel, fs, FileSystem);
namespace xe {
namespace kernel {
class KernelState {
public:
KernelState(Emulator* emulator);
~KernelState();
static KernelState* shared();
Emulator* emulator() const { return emulator_; }
Memory* memory() const { return memory_; }
cpu::Processor* processor() const { return processor_; }
fs::FileSystem* file_system() const { return file_system_; }
Dispatcher* dispatcher() const { return dispatcher_; }
2014-08-03 21:38:04 +00:00
XAppManager* app_manager() const { return app_manager_.get(); }
2014-08-04 04:26:10 +00:00
UserProfile* user_profile() const { return user_profile_.get(); }
2014-08-03 21:38:04 +00:00
ObjectTable* object_table() const { return object_table_; }
XModule* GetModule(const char* name);
XUserModule* GetExecutableModule();
void SetExecutableModule(XUserModule* module);
2014-01-08 04:54:47 +00:00
void RegisterThread(XThread* thread);
void UnregisterThread(XThread* thread);
XThread* GetThreadByID(uint32_t thread_id);
2014-06-23 02:41:26 +00:00
void RegisterNotifyListener(XNotifyListener* listener);
void UnregisterNotifyListener(XNotifyListener* listener);
void BroadcastNotification(XNotificationID id, uint32_t data);
2014-08-04 04:26:10 +00:00
void CompleteOverlapped(uint32_t overlapped_ptr, X_RESULT result, uint32_t length = 0);
void CompleteOverlappedImmediate(uint32_t overlapped_ptr, X_RESULT result, uint32_t length = 0);
private:
Emulator* emulator_;
Memory* memory_;
cpu::Processor* processor_;
fs::FileSystem* file_system_;
Dispatcher* dispatcher_;
2014-08-03 21:38:04 +00:00
std::unique_ptr<XAppManager> app_manager_;
2014-08-04 04:26:10 +00:00
std::unique_ptr<UserProfile> user_profile_;
2014-08-03 21:38:04 +00:00
ObjectTable* object_table_;
xe_mutex_t* object_mutex_;
2014-01-08 04:54:47 +00:00
std::unordered_map<uint32_t, XThread*> threads_by_id_;
2014-06-23 02:41:26 +00:00
std::vector<XNotifyListener*> notify_listeners_;
XUserModule* executable_module_;
friend class XObject;
};
// This is a global object initialized with the KernelState ctor.
// It references the current kernel state object that all kernel methods should
// be using to stash their variables.
// This sucks, but meh.
extern KernelState* shared_kernel_state_;
} // namespace kernel
} // namespace xe
#endif // XENIA_KERNEL_KERNEL_STATE_H_