mirror of
https://github.com/systemd/systemd.git
synced 2024-11-07 01:27:11 +03:00
d200735e13
The way the various properties[] arrays are initialized is inefficient: - only the .data members change at runtime, yet the whole arrays of properties with all the fields are constructed on the stack one by one by the code. - there's duplication, eg. the properties of "org.freedesktop.systemd1.Unit" are repeated in several unit types. Fix it by moving the information about properties into static const sections. Instead of storing the .data directly in the property, store a constant offset from a run-time base. The small arrays of struct BusBoundProperties bind together the constant information with the right runtime information (the base pointer). On my system the code shrinks by 60 KB, data increases by 10 KB.
159 lines
9.9 KiB
C
159 lines
9.9 KiB
C
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
|
|
|
|
#ifndef foodbusunithfoo
|
|
#define foodbusunithfoo
|
|
|
|
/***
|
|
This file is part of systemd.
|
|
|
|
Copyright 2010 Lennart Poettering
|
|
|
|
systemd is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 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
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with systemd; If not, see <http://www.gnu.org/licenses/>.
|
|
***/
|
|
|
|
#include <dbus/dbus.h>
|
|
|
|
#include "manager.h"
|
|
#include "dbus-common.h"
|
|
|
|
#define BUS_UNIT_INTERFACE \
|
|
" <interface name=\"org.freedesktop.systemd1.Unit\">\n" \
|
|
" <method name=\"Start\">\n" \
|
|
" <arg name=\"mode\" type=\"s\" direction=\"in\"/>\n" \
|
|
" <arg name=\"job\" type=\"o\" direction=\"out\"/>\n" \
|
|
" </method>\n" \
|
|
" <method name=\"Stop\">\n" \
|
|
" <arg name=\"mode\" type=\"s\" direction=\"in\"/>\n" \
|
|
" <arg name=\"job\" type=\"o\" direction=\"out\"/>\n" \
|
|
" </method>\n" \
|
|
" <method name=\"Reload\">\n" \
|
|
" <arg name=\"mode\" type=\"s\" direction=\"in\"/>\n" \
|
|
" <arg name=\"job\" type=\"o\" direction=\"out\"/>\n" \
|
|
" </method>\n" \
|
|
" <method name=\"Restart\">\n" \
|
|
" <arg name=\"mode\" type=\"s\" direction=\"in\"/>\n" \
|
|
" <arg name=\"job\" type=\"o\" direction=\"out\"/>\n" \
|
|
" </method>\n" \
|
|
" <method name=\"TryRestart\">\n" \
|
|
" <arg name=\"mode\" type=\"s\" direction=\"in\"/>\n" \
|
|
" <arg name=\"job\" type=\"o\" direction=\"out\"/>\n" \
|
|
" </method>\n" \
|
|
" <method name=\"ReloadOrRestart\">\n" \
|
|
" <arg name=\"mode\" type=\"s\" direction=\"in\"/>\n" \
|
|
" <arg name=\"job\" type=\"o\" direction=\"out\"/>\n" \
|
|
" </method>\n" \
|
|
" <method name=\"ReloadOrTryRestart\">\n" \
|
|
" <arg name=\"mode\" type=\"s\" direction=\"in\"/>\n" \
|
|
" <arg name=\"job\" type=\"o\" direction=\"out\"/>\n" \
|
|
" </method>\n" \
|
|
" <method name=\"Kill\">\n" \
|
|
" <arg name=\"who\" type=\"s\" direction=\"in\"/>\n" \
|
|
" <arg name=\"mode\" type=\"s\" direction=\"in\"/>\n" \
|
|
" <arg name=\"signal\" type=\"i\" direction=\"in\"/>\n" \
|
|
" </method>\n" \
|
|
" <method name=\"ResetFailed\"/>\n" \
|
|
" <property name=\"Id\" type=\"s\" access=\"read\"/>\n" \
|
|
" <property name=\"Names\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"Following\" type=\"s\" access=\"read\"/>\n" \
|
|
" <property name=\"Requires\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"RequiresOverridable\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"Requisite\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"RequisiteOverridable\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"Wants\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"BindTo\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"RequiredBy\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"RequiredByOverridable\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"WantedBy\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"BoundBy\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"Conflicts\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"ConflictedBy\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"Before\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"After\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"OnFailure\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"Triggers\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"TriggeredBy\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"PropagateReloadTo\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"PropagateReloadFrom\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"Description\" type=\"s\" access=\"read\"/>\n" \
|
|
" <property name=\"LoadState\" type=\"s\" access=\"read\"/>\n" \
|
|
" <property name=\"ActiveState\" type=\"s\" access=\"read\"/>\n" \
|
|
" <property name=\"SubState\" type=\"s\" access=\"read\"/>\n" \
|
|
" <property name=\"FragmentPath\" type=\"s\" access=\"read\"/>\n" \
|
|
" <property name=\"UnitFileState\" type=\"s\" access=\"read\"/>\n" \
|
|
" <property name=\"InactiveExitTimestamp\" type=\"t\" access=\"read\"/>\n" \
|
|
" <property name=\"InactiveExitTimestampMonotonic\" type=\"t\" access=\"read\"/>\n" \
|
|
" <property name=\"ActiveEnterTimestamp\" type=\"t\" access=\"read\"/>\n" \
|
|
" <property name=\"ActiveEnterTimestampMonotonic\" type=\"t\" access=\"read\"/>\n" \
|
|
" <property name=\"ActiveExitTimestamp\" type=\"t\" access=\"read\"/>\n" \
|
|
" <property name=\"ActiveExitTimestampMonotonic\" type=\"t\" access=\"read\"/>\n" \
|
|
" <property name=\"InactiveEnterTimestamp\" type=\"t\" access=\"read\"/>\n" \
|
|
" <property name=\"InactiveEnterTimestampMonotonic\" type=\"t\" access=\"read\"/>\n" \
|
|
" <property name=\"CanStart\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"CanStop\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"CanReload\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"CanIsolate\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"Job\" type=\"(uo)\" access=\"read\"/>\n" \
|
|
" <property name=\"StopWhenUnneeded\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"RefuseManualStart\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"RefuseManualStop\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"AllowIsolate\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"DefaultDependencies\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"OnFailureIsolate\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"IgnoreOnIsolate\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"IgnoreOnSnapshot\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"DefaultControlGroup\" type=\"s\" access=\"read\"/>\n" \
|
|
" <property name=\"ControlGroup\" type=\"as\" access=\"read\"/>\n" \
|
|
" <property name=\"ControlGroupAttributes\" type=\"a(sss)\" access=\"read\"/>\n" \
|
|
" <property name=\"NeedDaemonReload\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"JobTimeoutUSec\" type=\"t\" access=\"read\"/>\n" \
|
|
" <property name=\"ConditionTimestamp\" type=\"t\" access=\"read\"/>\n" \
|
|
" <property name=\"ConditionTimestampMonotonic\" type=\"t\" access=\"read\"/>\n" \
|
|
" <property name=\"ConditionResult\" type=\"b\" access=\"read\"/>\n" \
|
|
" <property name=\"LoadError\" type=\"(ss)\" access=\"read\"/>\n" \
|
|
" </interface>\n"
|
|
|
|
#define BUS_UNIT_INTERFACES_LIST \
|
|
BUS_GENERIC_INTERFACES_LIST \
|
|
"org.freedesktop.systemd1.Unit\0"
|
|
|
|
extern const BusProperty bus_unit_properties[];
|
|
|
|
int bus_unit_append_names(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_following(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_dependencies(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_description(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_load_state(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_active_state(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_sub_state(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_file_state(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_can_start(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_can_stop(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_can_reload(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_can_isolate(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_job(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_default_cgroup(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_cgroups(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_cgroup_attrs(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_need_daemon_reload(DBusMessageIter *i, const char *property, void *data);
|
|
int bus_unit_append_load_error(DBusMessageIter *i, const char *property, void *data);
|
|
|
|
void bus_unit_send_change_signal(Unit *u);
|
|
void bus_unit_send_removed_signal(Unit *u);
|
|
|
|
extern const DBusObjectPathVTable bus_unit_vtable;
|
|
|
|
extern const char bus_unit_interface[];
|
|
|
|
#endif
|