2014-12-04 14:45:47 -05: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"
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-05-29 18:45:30 -04:00
|
|
|
#include "core/hle/kernel/wait_object.h"
|
2014-12-04 14:45:47 -05:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2015-01-26 23:40:21 -05:00
|
|
|
class Timer final : public WaitObject {
|
2015-01-22 23:19:33 -05:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Creates a timer
|
|
|
|
* @param reset_type ResetType describing how to create the timer
|
|
|
|
* @param name Optional name of timer
|
|
|
|
* @return The created Timer
|
|
|
|
*/
|
2015-01-31 21:14:40 -05:00
|
|
|
static SharedPtr<Timer> Create(ResetType reset_type, std::string name = "Unknown");
|
2015-01-22 23:19:33 -05:00
|
|
|
|
2016-09-17 20:38:01 -04:00
|
|
|
std::string GetTypeName() const override {
|
|
|
|
return "Timer";
|
|
|
|
}
|
|
|
|
std::string GetName() const override {
|
|
|
|
return name;
|
|
|
|
}
|
2015-01-22 23:19:33 -05:00
|
|
|
|
|
|
|
static const HandleType HANDLE_TYPE = HandleType::Timer;
|
2016-09-17 20:38:01 -04:00
|
|
|
HandleType GetHandleType() const override {
|
|
|
|
return HANDLE_TYPE;
|
|
|
|
}
|
2015-01-22 23:19:33 -05:00
|
|
|
|
2018-07-26 09:45:18 -04:00
|
|
|
ResetType GetResetType() const {
|
|
|
|
return reset_type;
|
|
|
|
}
|
2015-01-22 23:19:33 -05:00
|
|
|
|
2018-07-26 09:45:18 -04:00
|
|
|
u64 GetInitialDelay() const {
|
|
|
|
return initial_delay;
|
|
|
|
}
|
2015-01-22 23:19:33 -05:00
|
|
|
|
2018-07-26 09:45:18 -04:00
|
|
|
u64 GetIntervalDelay() const {
|
|
|
|
return interval_delay;
|
|
|
|
}
|
2015-01-22 23:19:33 -05:00
|
|
|
|
2017-01-01 16:53:22 -05:00
|
|
|
bool ShouldWait(Thread* thread) const override;
|
|
|
|
void Acquire(Thread* thread) override;
|
2015-01-22 23:19:33 -05:00
|
|
|
|
2017-01-01 19:23:19 -05:00
|
|
|
void WakeupAllWaitingThreads() override;
|
|
|
|
|
2015-01-22 23:19:33 -05: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 12:48:17 -05: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.
|
|
|
|
*/
|
|
|
|
void Signal(int cycles_late);
|
|
|
|
|
2015-01-22 23:19:33 -05:00
|
|
|
private:
|
2015-01-31 19:56:59 -05:00
|
|
|
Timer();
|
|
|
|
~Timer() override;
|
2015-01-31 11:23:09 -05:00
|
|
|
|
2018-07-26 09:45:18 -04: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)
|
|
|
|
|
2015-01-31 11:23:09 -05:00
|
|
|
/// Handle used as userdata to reference this object when inserting into the CoreTiming queue.
|
|
|
|
Handle callback_handle;
|
2015-01-22 23:19:33 -05:00
|
|
|
};
|
2014-12-04 14:45:47 -05:00
|
|
|
|
|
|
|
/// Initializes the required variables for timers
|
|
|
|
void TimersInit();
|
|
|
|
/// Tears down the timer variables
|
|
|
|
void TimersShutdown();
|
2015-01-22 23:19:33 -05:00
|
|
|
|
2018-01-20 02:48:02 -05:00
|
|
|
} // namespace Kernel
|