bus-convenience.c revision 40ca29a1370379d43e44c0ed425eecc7218dcbca
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2013 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 "bus-internal.h"
#include "bus-message.h"
#include "bus-signature.h"
#include "bus-util.h"
int sd_bus_emit_signal(
const char *path,
const char *interface,
const char *member,
const char *types, ...) {
int r;
if (r < 0)
return r;
if (r < 0)
return r;
}
}
int sd_bus_call_method(
const char *destination,
const char *path,
const char *interface,
const char *member,
const char *types, ...) {
int r;
if (r < 0)
return r;
if (r < 0)
return r;
}
}
const char *types, ...) {
int r;
return 0;
if (r < 0)
return r;
if (r < 0)
return r;
}
}
const sd_bus_error *e) {
int r;
return 0;
if (r < 0)
return r;
}
const char *name,
const char *format,
...) {
int r;
return 0;
if (r < 0)
return r;
}
int error,
const sd_bus_error *p) {
return 0;
if (sd_bus_error_is_set(p))
}
int error,
const char *format,
...) {
return 0;
}
int sd_bus_get_property(
const char *destination,
const char *path,
const char *interface,
const char *member,
const char *type) {
int r;
r = sd_bus_call_method(bus, destination, path, "org.freedesktop.DBus.Properties", "Get", error, &rep, "ss", strempty(interface), member);
if (r < 0)
return r;
if (r < 0) {
return r;
}
return 0;
}
int sd_bus_set_property(
const char *destination,
const char *path,
const char *interface,
const char *member,
const char *type, ...) {
int r;
r = sd_bus_message_new_method_call(bus, destination, path, "org.freedesktop.DBus.Properties", "Set", &m);
if (r < 0)
return r;
if (r < 0)
return r;
if (r < 0)
return r;
if (r < 0)
return r;
r = sd_bus_message_close_container(m);
if (r < 0)
return r;
}