summaryrefslogtreecommitdiff
path: root/include/android/hardware
ModeNameSize
d---------libhardware / include / hardware34logplain
'n20' href='#n20'>20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * timer.h - Generic timer
 */
#ifndef __LIBCAMERA_TIMER_H__
#define __LIBCAMERA_TIMER_H__

#include <chrono>
#include <stdint.h>

#include <libcamera/object.h>
#include <libcamera/signal.h>

namespace libcamera {

class Message;

class Timer : public Object
{
public:
	Timer(Object *parent = nullptr);
	~Timer();

	void start(unsigned int msec) { start(std::chrono::milliseconds(msec)); }
	void start(std::chrono::milliseconds duration);
	void start(std::chrono::steady_clock::time_point deadline);
	void stop();
	bool isRunning() const;

	std::chrono::steady_clock::time_point deadline() const { return deadline_; }

	Signal<Timer *> timeout;

protected:
	void message(Message *msg) override;

private:
	void registerTimer();
	void unregisterTimer();

	bool running_;
	std::chrono::steady_clock::time_point deadline_;
};

} /* namespace libcamera */

#endif /* __LIBCAMERA_TIMER_H__ */