2014-12-04 20:45:47 +01:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2018-10-23 20:17:30 +02:00
|
|
|
#include "core/core_timing.h"
|
2018-08-02 04:40:00 +02:00
|
|
|
#include "core/hle/kernel/object.h"
|
2017-05-30 00:45:30 +02:00
|
|
|
#include "core/hle/kernel/wait_object.h"
|
2014-12-04 20:45:47 +01:00
|
|
|
|
2019-02-01 17:54:52 +01:00
|
|
|
namespace Core {
|
|
|
|
class Timing;
|
|
|
|
}
|
|
|
|
|
2014-12-04 20:45:47 +01:00
|
|
|
namespace Kernel {
|
|
|
|
|
2018-10-23 20:17:30 +02:00
|
|
|
class TimerManager {
|
|
|
|
public:
|
2019-02-01 17:54:52 +01:00
|
|
|
TimerManager(Core::Timing& timing);
|
2018-10-23 20:17:30 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
/// The timer callback event, called when a timer is fired
|
|
|
|
void TimerCallback(u64 callback_id, s64 cycles_late);
|
|
|
|
|
2019-02-01 17:54:52 +01:00
|
|
|
Core::Timing& timing;
|
|
|
|
|
2018-10-23 20:17:30 +02:00
|
|
|
/// The event type of the generic timer callback event
|
2018-10-27 21:53:20 +02:00
|
|
|
Core::TimingEventType* timer_callback_event_type = nullptr;
|
2018-10-23 20:17:30 +02:00
|
|
|
|
|
|
|
u64 next_timer_callback_id = 0;
|
|
|
|
std::unordered_map<u64, Timer*> timer_callback_table;
|
|
|
|
|
|
|
|
friend class Timer;
|
|
|
|
friend class KernelSystem;
|
|
|
|
};
|
|
|
|
|
2015-01-27 05:40:21 +01:00
|
|
|
class Timer final : public WaitObject {
|
2015-01-23 05:19:33 +01:00
|
|
|
public:
|
2019-03-23 21:04:19 +01:00
|
|
|
explicit Timer(KernelSystem& kernel);
|
|
|
|
~Timer() override;
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
std::string GetTypeName() const override {
|
|
|
|
return "Timer";
|
|
|
|
}
|
|
|
|
std::string GetName() const override {
|
|
|
|
return name;
|
|
|
|
}
|
2015-01-23 05:19:33 +01:00
|
|
|
|
2019-04-11 22:30:52 +02:00
|
|
|
static constexpr HandleType HANDLE_TYPE = HandleType::Timer;
|
2016-09-18 02:38:01 +02:00
|
|
|
HandleType GetHandleType() const override {
|
|
|
|
return HANDLE_TYPE;
|
|
|
|
}
|
2015-01-23 05:19:33 +01:00
|
|
|
|
2018-07-26 15:45:18 +02:00
|
|
|
ResetType GetResetType() const {
|
|
|
|
return reset_type;
|
|
|
|
}
|
2015-01-23 05:19:33 +01:00
|
|
|
|
2018-07-26 15:45:18 +02:00
|
|
|
u64 GetInitialDelay() const {
|
|
|
|
return initial_delay;
|
|
|
|
}
|
2015-01-23 05:19:33 +01:00
|
|
|
|
2018-07-26 15:45:18 +02:00
|
|
|
u64 GetIntervalDelay() const {
|
|
|
|
return interval_delay;
|
|
|
|
}
|
2015-01-23 05:19:33 +01:00
|
|
|
|
2017-01-01 22:53:22 +01:00
|
|
|
bool ShouldWait(Thread* thread) const override;
|
|
|
|
void Acquire(Thread* thread) override;
|
2015-01-23 05:19:33 +01:00
|
|
|
|
2017-01-02 01:23:19 +01:00
|
|
|
void WakeupAllWaitingThreads() override;
|
|
|
|
|
2015-01-23 05:19:33 +01:00
|
|
|
/**
|
|
|
|
* Starts the timer, with the specified initial delay and interval.
|
|
|
|
* @param initial Delay until the timer is first fired
|
|
|
|
* @param interval Delay until the timer is fired after the first time
|
|
|
|
*/
|
|
|
|
void Set(s64 initial, s64 interval);
|
|
|
|
|
|
|
|
void Cancel();
|
|
|
|
void Clear();
|
|
|
|
|
2017-01-09 18:48:17 +01:00
|
|
|
/**
|
|
|
|
* Signals the timer, waking up any waiting threads and rescheduling it
|
|
|
|
* for the next interval.
|
|
|
|
* This method should not be called from outside the timer callback handler,
|
|
|
|
* lest multiple callback events get scheduled.
|
|
|
|
*/
|
2018-07-23 23:08:14 +02:00
|
|
|
void Signal(s64 cycles_late);
|
2017-01-09 18:48:17 +01:00
|
|
|
|
2015-01-23 05:19:33 +01:00
|
|
|
private:
|
2018-07-26 15:45:18 +02:00
|
|
|
ResetType reset_type; ///< The ResetType of this timer
|
|
|
|
|
|
|
|
u64 initial_delay; ///< The delay until the timer fires for the first time
|
|
|
|
u64 interval_delay; ///< The delay until the timer fires after the first time
|
|
|
|
|
|
|
|
bool signaled; ///< Whether the timer has been signaled or not
|
|
|
|
std::string name; ///< Name of timer (optional)
|
|
|
|
|
2018-10-19 03:40:22 +02:00
|
|
|
/// ID used as userdata to reference this object when inserting into the CoreTiming queue.
|
|
|
|
u64 callback_id;
|
2018-10-12 22:26:23 +02:00
|
|
|
|
2019-02-01 17:54:52 +01:00
|
|
|
KernelSystem& kernel;
|
2018-10-23 20:17:30 +02:00
|
|
|
TimerManager& timer_manager;
|
|
|
|
|
2018-10-12 22:26:23 +02:00
|
|
|
friend class KernelSystem;
|
2015-01-23 05:19:33 +01:00
|
|
|
};
|
2014-12-04 20:45:47 +01:00
|
|
|
|
2018-03-09 18:54:43 +01:00
|
|
|
} // namespace Kernel
|