dbus-timer.c revision 556089dc57b10a12a03edd3d3e90ca17398ad206
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
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
(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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include "unit.h"
#include "timer.h"
#include "dbus-unit.h"
#include "dbus-timer.h"
#include "bus-util.h"
static int property_get_monotonic_timers(
const char *path,
const char *interface,
const char *property,
void *userdata,
sd_bus_error *error) {
TimerValue *v;
int r;
assert(t);
if (r < 0)
return r;
const char *s;
size_t l;
if (v->base == TIMER_CALENDAR)
continue;
s = timer_base_to_string(v->base);
l = strlen(s);
if (!buf)
return -ENOMEM;
if (r < 0)
return r;
}
return sd_bus_message_close_container(reply);
}
static int property_get_calendar_timers(
const char *path,
const char *interface,
const char *property,
void *userdata,
sd_bus_error *error) {
TimerValue *v;
int r;
assert(t);
if (r < 0)
return r;
if (v->base != TIMER_CALENDAR)
continue;
if (r < 0)
return r;
if (r < 0)
return r;
}
return sd_bus_message_close_container(reply);
}
static int property_get_unit(
const char *path,
const char *interface,
const char *property,
void *userdata,
sd_bus_error *error) {
assert(u);
trigger = UNIT_TRIGGER(u);
}
const sd_bus_vtable bus_timer_vtable[] = {
SD_BUS_PROPERTY("TimersMonotonic", "a(stt)", property_get_monotonic_timers, 0, SD_BUS_VTABLE_PROPERTY_EMITS_INVALIDATION),
SD_BUS_PROPERTY("TimersCalendar", "a(sst)", property_get_calendar_timers, 0, SD_BUS_VTABLE_PROPERTY_EMITS_INVALIDATION),
SD_BUS_PROPERTY("NextElapseUSecRealtime", "t", bus_property_get_usec, offsetof(Timer, next_elapse_monotonic), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
SD_BUS_PROPERTY("NextElapseUSecMonotonic", "t", bus_property_get_usec, offsetof(Timer, next_elapse_realtime), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
SD_BUS_PROPERTY("Result", "s", property_get_result, offsetof(Timer, result), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
SD_BUS_PROPERTY("AccuracyUSec", "t", bus_property_get_usec, offsetof(Timer, accuracy_usec), SD_BUS_VTABLE_PROPERTY_CONST),
};
const char* const bus_timer_changing_properties[] = {
"NextElapseUSecRealtime",
"NextElapseUSecMonotonic",
"Result",
};