mirror of https://github.com/rusefi/rusefi-1.git
33 lines
910 B
C++
33 lines
910 B
C++
/*
|
|
* @file global_execution_queue.h
|
|
*
|
|
* Created on: Jan 9, 2019
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "scheduler.h"
|
|
#include "event_queue.h"
|
|
|
|
class TestExecutor : public ExecutorInterface {
|
|
public:
|
|
~TestExecutor();
|
|
|
|
void scheduleByTimestamp(const char *msg, scheduling_s *scheduling, efitimeus_t timeUs, action_s action) override;
|
|
void scheduleByTimestampNt(const char *msg, scheduling_s *scheduling, efitick_t timeNt, action_s action) override;
|
|
void scheduleForLater(const char *msg, scheduling_s *scheduling, int delayUs, action_s action) override;
|
|
void cancel(scheduling_s* scheduling) override;
|
|
|
|
void clear();
|
|
int executeAll(efitime_t now);
|
|
int size();
|
|
scheduling_s * getHead();
|
|
scheduling_s * getForUnitTest(int index);
|
|
|
|
void setMockExecutor(ExecutorInterface* exec);
|
|
private:
|
|
EventQueue schedulingQueue;
|
|
ExecutorInterface* m_mockExecutor = nullptr;
|
|
};
|