mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
Let's not leak details from src/shared and src/libsystemd into src/basic, even though you can't actually do anything useful with just forward declarations from src/shared. The sd-forward.h header is put in src/libsystemd/sd-common as we don't have a directory for shared internal headers for libsystemd yet. Let's also rename forward.h to basic-forward.h to keep things self-explanatory.
76 lines
3.0 KiB
C
76 lines
3.0 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "sd-bus.h" /* IWYU pragma: export */
|
|
|
|
#include "log.h"
|
|
#include "shared-forward.h"
|
|
|
|
typedef enum BusTransport {
|
|
BUS_TRANSPORT_LOCAL,
|
|
BUS_TRANSPORT_REMOTE,
|
|
BUS_TRANSPORT_MACHINE,
|
|
BUS_TRANSPORT_CAPSULE,
|
|
_BUS_TRANSPORT_MAX,
|
|
_BUS_TRANSPORT_INVALID = -EINVAL,
|
|
} BusTransport;
|
|
|
|
int bus_async_unregister_and_exit(sd_event *e, sd_bus *bus, const char *name);
|
|
|
|
typedef bool (*check_idle_t)(void *userdata);
|
|
|
|
int bus_event_loop_with_idle(sd_event *e, sd_bus *bus, const char *name, usec_t timeout, check_idle_t check_idle, void *userdata);
|
|
|
|
int bus_name_has_owner(sd_bus *bus, const char *name, sd_bus_error *reterr_error);
|
|
|
|
bool bus_error_is_unknown_service(const sd_bus_error *error);
|
|
bool bus_error_is_connection(const sd_bus_error *error);
|
|
|
|
int bus_check_peercred(sd_bus *bus);
|
|
|
|
int bus_set_address_capsule_bus(sd_bus *bus, const char *capsule, int *ret_pin_fd);
|
|
|
|
int bus_connect_system_systemd(sd_bus **ret);
|
|
int bus_connect_user_systemd(sd_bus **ret);
|
|
int bus_connect_capsule_systemd(const char *capsule, sd_bus **ret);
|
|
int bus_connect_capsule_bus(const char *capsule, sd_bus **ret);
|
|
|
|
int bus_connect_transport(BusTransport transport, const char *host, RuntimeScope runtime_scope, sd_bus **bus);
|
|
int bus_connect_transport_systemd(BusTransport transport, const char *host, RuntimeScope runtime_scope, sd_bus **bus);
|
|
|
|
int bus_log_address_error(int r, BusTransport transport);
|
|
int bus_log_connect_full(int log_level, int r, BusTransport transport, RuntimeScope scope);
|
|
int bus_log_connect_error(int r, BusTransport transport, RuntimeScope scope);
|
|
|
|
#define bus_log_parse_error(r) \
|
|
log_error_errno(r, "Failed to parse bus message: %m")
|
|
|
|
#define bus_log_parse_error_debug(r) \
|
|
log_debug_errno(r, "Failed to parse bus message: %m")
|
|
|
|
#define bus_log_create_error(r) \
|
|
log_error_errno(r, "Failed to create bus message: %m")
|
|
|
|
int bus_path_encode_unique(sd_bus *b, const char *prefix, const char *sender_id, const char *external_id, char **ret_path);
|
|
int bus_path_decode_unique(const char *path, const char *prefix, char **ret_sender, char **ret_external);
|
|
|
|
int bus_track_add_name_many(sd_bus_track *t, char * const *l);
|
|
int bus_track_to_strv(sd_bus_track *t, char ***ret);
|
|
|
|
int bus_open_system_watch_bind_with_description(sd_bus **ret, const char *description);
|
|
static inline int bus_open_system_watch_bind(sd_bus **ret) {
|
|
return bus_open_system_watch_bind_with_description(ret, NULL);
|
|
}
|
|
|
|
int bus_reply_pair_array(sd_bus_message *m, char * const *l);
|
|
|
|
/* Listen to GetMallocInfo() calls to 'destination' and return malloc_info() via FD */
|
|
int bus_register_malloc_status(sd_bus *bus, const char *destination);
|
|
|
|
int bus_creds_get_pidref(sd_bus_creds *c, PidRef *ret);
|
|
int bus_query_sender_pidref(sd_bus_message *m, PidRef *ret);
|
|
|
|
int bus_get_instance_id(sd_bus *bus, sd_id128_t *ret);
|
|
|
|
const char* bus_transport_to_string(BusTransport transport) _const_;
|