2014-12-04 19:45:47 +00: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"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2015-01-27 04:40:21 +00:00
|
|
|
class Timer final : public WaitObject {
|
2015-01-23 04:19:33 +00: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-02-01 02:14:40 +00:00
|
|
|
static SharedPtr<Timer> Create(ResetType reset_type, std::string name = "Unknown");
|
2015-01-23 04:19:33 +00:00
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
std::string GetTypeName() const override {
|
|
|
|
return "Timer";
|
|
|
|
}
|
|
|
|
std::string GetName() const override {
|
|
|
|
return name;
|
|
|
|
}
|
2015-01-23 04:19:33 +00:00
|
|
|
|
|
|
|
static const HandleType HANDLE_TYPE = HandleType::Timer;
|
2016-09-18 01:38:01 +01:00
|
|
|
HandleType GetHandleType() const override {
|
|
|
|
return HANDLE_TYPE;
|
|
|
|
}
|
2015-01-23 04:19:33 +00:00
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
ResetType reset_type; ///< The ResetType of this timer
|
2015-01-23 04:19:33 +00:00
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
bool signaled; ///< Whether the timer has been signaled or not
|
|
|
|
std::string name; ///< Name of timer (optional)
|
2015-01-23 04:19:33 +00:00
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
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
|
2015-01-23 04:19:33 +00:00
|
|
|
|
2017-01-01 21:53:22 +00:00
|
|
|
bool ShouldWait(Thread* thread) const override;
|
|
|
|
void Acquire(Thread* thread) override;
|
2015-01-23 04:19:33 +00:00
|
|
|
|
2017-01-02 00:23:19 +00:00
|
|
|
void WakeupAllWaitingThreads() override;
|
|
|
|
|
2015-01-23 04:19:33 +00: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 17:48:17 +00: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-23 04:19:33 +00:00
|
|
|
private:
|
2015-02-01 00:56:59 +00:00
|
|
|
Timer();
|
|
|
|
~Timer() override;
|
2015-01-31 16:23:09 +00:00
|
|
|
|
|
|
|
/// Handle used as userdata to reference this object when inserting into the CoreTiming queue.
|
|
|
|
Handle callback_handle;
|
2015-01-23 04:19:33 +00:00
|
|
|
};
|
2014-12-04 19:45:47 +00:00
|
|
|
|
|
|
|
/// Initializes the required variables for timers
|
|
|
|
void TimersInit();
|
|
|
|
/// Tears down the timer variables
|
|
|
|
void TimersShutdown();
|
2015-01-23 04:19:33 +00:00
|
|
|
|
2014-12-04 19:45:47 +00:00
|
|
|
} // namespace
|