2010-08-17 05:33:07 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2010-01-23 03:52:57 +03:00
2012-07-18 21:07:51 +04:00
# pragma once
2010-01-23 03:52:57 +03:00
2010-02-03 15:03:47 +03:00
/***
This file is part of systemd .
Copyright 2010 Lennart Poettering
systemd is free software ; you can redistribute it and / or modify it
2012-04-12 02:20:58 +04:00
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation ; either version 2.1 of the License , or
2010-02-03 15:03:47 +03:00
( at your option ) any later version .
systemd is distributed in the hope that it will be useful , but
WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
2012-04-12 02:20:58 +04:00
Lesser General Public License for more details .
2010-02-03 15:03:47 +03:00
2012-04-12 02:20:58 +04:00
You should have received a copy of the GNU Lesser General Public License
2010-02-03 15:03:47 +03:00
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
2010-01-23 03:52:57 +03:00
typedef struct Timer Timer ;
2010-01-26 23:39:06 +03:00
# include "unit.h"
2012-11-24 00:37:58 +04:00
# include "calendarspec.h"
2010-01-23 03:52:57 +03:00
typedef enum TimerState {
TIMER_DEAD ,
TIMER_WAITING ,
TIMER_RUNNING ,
2010-05-24 03:45:54 +04:00
TIMER_ELAPSED ,
2010-08-31 02:23:34 +04:00
TIMER_FAILED ,
2010-05-24 03:45:54 +04:00
_TIMER_STATE_MAX ,
_TIMER_STATE_INVALID = - 1
2010-01-23 03:52:57 +03:00
} TimerState ;
2010-05-24 03:45:54 +04:00
typedef enum TimerBase {
TIMER_ACTIVE ,
TIMER_BOOT ,
TIMER_STARTUP ,
TIMER_UNIT_ACTIVE ,
TIMER_UNIT_INACTIVE ,
2012-11-24 00:37:58 +04:00
TIMER_CALENDAR ,
2010-05-24 03:45:54 +04:00
_TIMER_BASE_MAX ,
_TIMER_BASE_INVALID = - 1
} TimerBase ;
typedef struct TimerValue {
2012-11-24 00:37:58 +04:00
TimerBase base ;
bool disabled ;
clockid_t clock_id ;
2013-01-10 03:54:46 +04:00
usec_t value ; /* only for monotonic events */
CalendarSpec * calendar_spec ; /* only for calendar events */
2010-05-24 03:45:54 +04:00
usec_t next_elapse ;
LIST_FIELDS ( struct TimerValue , value ) ;
} TimerValue ;
2012-02-03 07:03:21 +04:00
typedef enum TimerResult {
TIMER_SUCCESS ,
TIMER_FAILURE_RESOURCES ,
_TIMER_RESULT_MAX ,
_TIMER_RESULT_INVALID = - 1
} TimerResult ;
2010-01-23 03:52:57 +03:00
struct Timer {
2012-01-15 15:04:08 +04:00
Unit meta ;
2010-01-23 03:52:57 +03:00
2010-05-24 03:45:54 +04:00
LIST_HEAD ( TimerValue , values ) ;
2012-11-24 00:37:58 +04:00
usec_t next_elapse_monotonic ;
usec_t next_elapse_realtime ;
2010-01-23 03:52:57 +03:00
2010-05-24 07:25:33 +04:00
TimerState state , deserialized_state ;
2010-05-24 03:45:54 +04:00
2012-11-24 00:37:58 +04:00
Watch monotonic_watch ;
Watch realtime_watch ;
2010-05-24 03:45:54 +04:00
2012-02-03 07:03:21 +04:00
TimerResult result ;
2010-01-23 03:52:57 +03:00
} ;
2013-01-17 05:27:06 +04:00
void timer_free_values ( Timer * t ) ;
2010-02-03 16:21:48 +03:00
extern const UnitVTable timer_vtable ;
2010-01-23 03:52:57 +03:00
2010-05-24 03:45:54 +04:00
const char * timer_state_to_string ( TimerState i ) ;
TimerState timer_state_from_string ( const char * s ) ;
const char * timer_base_to_string ( TimerBase i ) ;
TimerBase timer_base_from_string ( const char * s ) ;
2012-02-03 07:03:21 +04:00
const char * timer_result_to_string ( TimerResult i ) ;
TimerResult timer_result_from_string ( const char * s ) ;