/***
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 "alloc-util.h"
#include "bus-util.h"
#include "dbus-timer.h"
#include "strv.h"
#include "timer.h"
#include "unit.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);
}
static int property_get_next_elapse_monotonic(
const char *path,
const char *interface,
const char *property,
void *userdata,
sd_bus_error *error) {
usec_t x;
assert(t);
if (t->next_elapse_monotonic_or_boottime <= 0)
x = 0;
else if (t->wake_system) {
usec_t a, b;
a = now(CLOCK_MONOTONIC);
b = now(CLOCK_BOOTTIME);
if (t->next_elapse_monotonic_or_boottime + a > b)
x = t->next_elapse_monotonic_or_boottime + a - b;
else
x = 0;
} else
}
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_realtime), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
SD_BUS_PROPERTY("NextElapseUSecMonotonic", "t", property_get_next_elapse_monotonic, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
BUS_PROPERTY_DUAL_TIMESTAMP("LastTriggerUSec", offsetof(Timer, last_trigger), 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),
SD_BUS_PROPERTY("RandomizedDelayUSec", "t", bus_property_get_usec, offsetof(Timer, random_usec), SD_BUS_VTABLE_PROPERTY_CONST),
SD_BUS_PROPERTY("Persistent", "b", bus_property_get_bool, offsetof(Timer, persistent), SD_BUS_VTABLE_PROPERTY_CONST),
SD_BUS_PROPERTY("WakeSystem", "b", bus_property_get_bool, offsetof(Timer, wake_system), SD_BUS_VTABLE_PROPERTY_CONST),
SD_BUS_PROPERTY("RemainAfterElapse", "b", bus_property_get_bool, offsetof(Timer, remain_after_elapse), SD_BUS_VTABLE_PROPERTY_CONST),
};
static int bus_timer_set_transient_property(
Timer *t,
const char *name,
sd_bus_error *error) {
int r;
assert(t);
if (STR_IN_SET(name,
"OnActiveSec",
"OnBootSec",
"OnStartupSec",
"OnUnitActiveSec",
"OnUnitInactiveSec")) {
TimerValue *v;
usec_t u = 0;
b = timer_base_from_string(name);
if (b < 0)
return -EINVAL;
if (r < 0)
return r;
if (mode != UNIT_CHECK) {
unit_write_drop_in_private_format(UNIT(t), mode, name, "%s=%s\n", name, format_timespan(time, sizeof(time), u, USEC_PER_MSEC));
if (!v)
return -ENOMEM;
v->base = b;
v->value = u;
}
return 1;
TimerValue *v;
CalendarSpec *c = NULL;
const char *str;
if (r < 0)
return r;
if (mode != UNIT_CHECK) {
r = calendar_spec_from_string(str, &c);
if (r < 0)
return r;
if (!v) {
return -ENOMEM;
}
v->base = TIMER_CALENDAR;
v->calendar_spec = c;
}
return 1;
usec_t u = 0;
log_notice("Client is using obsolete AccuracySec= transient property, please use AccuracyUSec= instead.");
if (r < 0)
return r;
if (mode != UNIT_CHECK) {
t->accuracy_usec = u;
}
return 1;
usec_t u = 0;
if (r < 0)
return r;
if (mode != UNIT_CHECK) {
t->random_usec = u;
}
return 1;
int b;
if (r < 0)
return r;
if (mode != UNIT_CHECK) {
t->wake_system = b;
}
return 1;
int b;
if (r < 0)
return r;
if (mode != UNIT_CHECK) {
t->remain_after_elapse = b;
}
return 1;
}
return 0;
}
Unit *u,
const char *name,
sd_bus_error *error) {
int r;
assert(t);
if (r != 0)
return r;
}
return 0;
}