D-Bus 1.15.4
dbus-connection-internal.h
1/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2/* dbus-connection-internal.h DBusConnection internal interfaces
3 *
4 * Copyright (C) 2002 Red Hat Inc.
5 *
6 * SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later
7 *
8 * Licensed under the Academic Free License version 2.1
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 *
24 */
25#ifndef DBUS_CONNECTION_INTERNAL_H
26#define DBUS_CONNECTION_INTERNAL_H
27
28#include <dbus/dbus-internals.h>
29#include <dbus/dbus-connection.h>
30#include <dbus/dbus-credentials.h>
31#include <dbus/dbus-message.h>
32#include <dbus/dbus-transport.h>
33#include <dbus/dbus-resources.h>
34#include <dbus/dbus-list.h>
35#include <dbus/dbus-timeout.h>
36#include <dbus/dbus-dataslot.h>
37
39
40typedef enum
41{
42 DBUS_ITERATION_DO_WRITING = 1 << 0,
43 DBUS_ITERATION_DO_READING = 1 << 1,
44 DBUS_ITERATION_BLOCK = 1 << 2
45} DBusIterationFlags;
46
48#define _DBUS_DEFAULT_TIMEOUT_VALUE (25 * 1000)
49
50typedef void (* DBusPendingFdsChangeFunction) (void *data);
51
52DBUS_PRIVATE_EXPORT
53void _dbus_connection_lock (DBusConnection *connection);
54DBUS_PRIVATE_EXPORT
56DBUS_PRIVATE_EXPORT
58DBUS_PRIVATE_EXPORT
61 DBusList *link);
65 DBusMessage *message);
67 DBusWatch *watch);
69 DBusWatch *watch);
71 DBusWatch *watch,
72 dbus_bool_t enabled);
74 unsigned int condition,
75 void *data);
77 DBusTimeout *timeout);
79 DBusTimeout *timeout);
81 DBusTimeout *timeout,
82 dbus_bool_t enabled);
85 DBusPendingCall *pending,
86 unsigned int flags,
87 int timeout_milliseconds);
90
91DBusPendingCall* _dbus_pending_call_new (DBusConnection *connection,
92 int timeout_milliseconds,
93 DBusTimeoutHandler timeout_handler);
94void _dbus_pending_call_notify (DBusPendingCall *pending);
96 DBusPendingCall *pending);
98void _dbus_pending_call_complete_and_unlock (DBusPendingCall *pending,
99 DBusMessage *message);
101 DBusMessage *message,
102 dbus_uint32_t *client_serial);
103
105 DBusList *link);
106DBUS_PRIVATE_EXPORT
107void _dbus_connection_test_get_locks (DBusConnection *conn,
108 DBusMutex **mutex_loc,
109 DBusMutex **dispatch_mutex_loc,
110 DBusMutex **io_path_mutex_loc,
111 DBusCondVar **dispatch_cond_loc,
112 DBusCondVar **io_path_cond_loc);
113DBUS_PRIVATE_EXPORT
115DBUS_PRIVATE_EXPORT
117 DBusPendingFdsChangeFunction callback,
118 void *data);
119
120DBUS_PRIVATE_EXPORT
121dbus_bool_t _dbus_connection_get_linux_security_label (DBusConnection *connection,
122 char **label_p);
123DBUS_PRIVATE_EXPORT
124DBusCredentials *_dbus_connection_get_credentials (DBusConnection *connection);
125
126/* if DBUS_ENABLE_STATS */
127DBUS_PRIVATE_EXPORT
128void _dbus_connection_get_stats (DBusConnection *connection,
129 dbus_uint32_t *in_messages,
130 dbus_uint32_t *in_bytes,
131 dbus_uint32_t *in_fds,
132 dbus_uint32_t *in_peak_bytes,
133 dbus_uint32_t *in_peak_fds,
134 dbus_uint32_t *out_messages,
135 dbus_uint32_t *out_bytes,
136 dbus_uint32_t *out_fds,
137 dbus_uint32_t *out_peak_bytes,
138 dbus_uint32_t *out_peak_fds);
139
140
141DBUS_EMBEDDED_TESTS_EXPORT
142const char* _dbus_connection_get_address (DBusConnection *connection);
143
144/* This _dbus_bus_* stuff doesn't really belong here, but dbus-bus-internal.h seems
145 * silly for one function
146 */
153
158
159#endif /* DBUS_CONNECTION_INTERNAL_H */
void _dbus_bus_notify_shared_connection_disconnected_unlocked(DBusConnection *connection)
Internal function that checks to see if this is a shared connection owned by the bus and if it is unr...
Definition: dbus-bus.c:390
dbus_bool_t _dbus_connection_handle_watch(DBusWatch *watch, unsigned int condition, void *data)
A callback for use with dbus_watch_new() to create a DBusWatch.
void _dbus_connection_toggle_timeout_unlocked(DBusConnection *connection, DBusTimeout *timeout, dbus_bool_t enabled)
Toggles a timeout and notifies app via connection's DBusTimeoutToggledFunction if available.
void _dbus_connection_do_iteration_unlocked(DBusConnection *connection, DBusPendingCall *pending, unsigned int flags, int timeout_milliseconds)
Queues incoming messages and sends outgoing messages for this connection, optionally blocking in the ...
dbus_bool_t _dbus_connection_send_and_unlock(DBusConnection *connection, DBusMessage *message, dbus_uint32_t *client_serial)
Like dbus_connection_send(), but assumes the connection is already locked on function entry,...
DBusConnection * _dbus_connection_new_for_transport(DBusTransport *transport)
Creates a new connection for the given transport.
dbus_bool_t _dbus_connection_has_messages_to_send_unlocked(DBusConnection *connection)
Checks whether there are messages in the outgoing message queue.
DBUS_PRIVATE_EXPORT void _dbus_connection_unlock(DBusConnection *connection)
Releases the connection lock.
DBUS_PRIVATE_EXPORT void _dbus_connection_lock(DBusConnection *connection)
Acquires the connection lock.
void _dbus_connection_remove_watch_unlocked(DBusConnection *connection, DBusWatch *watch)
Removes a watch using the connection's DBusRemoveWatchFunction if available.
dbus_bool_t _dbus_connection_add_timeout_unlocked(DBusConnection *connection, DBusTimeout *timeout)
Adds a timeout using the connection's DBusAddTimeoutFunction if available.
void _dbus_connection_toggle_watch_unlocked(DBusConnection *connection, DBusWatch *watch, dbus_bool_t enabled)
Toggles a watch and notifies app via connection's DBusWatchToggledFunction if available.
dbus_bool_t _dbus_connection_add_watch_unlocked(DBusConnection *connection, DBusWatch *watch)
Adds a watch using the connection's DBusAddWatchFunction if available.
void _dbus_connection_remove_pending_call(DBusConnection *connection, DBusPendingCall *pending)
Removes a pending call from the connection, such that the pending reply will be ignored.
void _dbus_connection_close_if_only_one_ref(DBusConnection *connection)
Used internally to handle the semantics of dbus_server_set_new_connection_function().
DBUS_PRIVATE_EXPORT void _dbus_connection_unref_unlocked(DBusConnection *connection)
Decrements the reference count of a DBusConnection.
DBusMessage * _dbus_connection_get_message_to_send(DBusConnection *connection)
Gets the next outgoing message.
void _dbus_connection_message_sent_unlocked(DBusConnection *connection, DBusMessage *message)
Notifies the connection that a message has been sent, so the message can be removed from the outgoing...
void _dbus_connection_remove_timeout_unlocked(DBusConnection *connection, DBusTimeout *timeout)
Removes a timeout using the connection's DBusRemoveTimeoutFunction if available.
void _dbus_connection_queue_received_message_link(DBusConnection *connection, DBusList *link)
Adds a message-containing list link to the incoming message queue, taking ownership of the link and t...
DBUS_PRIVATE_EXPORT int _dbus_connection_get_pending_fds_count(DBusConnection *connection)
Return how many file descriptors are pending in the loader.
DBUS_PRIVATE_EXPORT void _dbus_connection_set_pending_fds_function(DBusConnection *connection, DBusPendingFdsChangeFunction callback, void *data)
Register a function to be called whenever the number of pending file descriptors in the loader change...
void _dbus_connection_block_pending_call(DBusPendingCall *pending)
Blocks until a pending call times out or gets a reply.
void _dbus_connection_queue_synthesized_message_link(DBusConnection *connection, DBusList *link)
Adds a link + message to the incoming message queue.
void _dbus_connection_close_possibly_shared(DBusConnection *connection)
Closes a shared OR private connection, while dbus_connection_close() can only be used on private conn...
DBUS_PRIVATE_EXPORT DBusConnection * _dbus_connection_ref_unlocked(DBusConnection *connection)
Increments the reference count of a DBusConnection.
#define DBUS_BEGIN_DECLS
Macro used prior to declaring functions in the D-Bus header files.
#define DBUS_END_DECLS
Macro used after declaring functions in the D-Bus header files.
struct DBusMutex DBusMutex
An opaque mutex type provided by the DBusThreadFunctions implementation installed by dbus_threads_ini...
Definition: dbus-threads.h:43
dbus_bool_t(* DBusTimeoutHandler)(void *data)
function to run when the timeout is handled
Definition: dbus-timeout.h:43
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
Definition: dbus-types.h:37
unsigned int dbus_uint32_t
A 32-bit unsigned integer on all platforms.
Implementation details of DBusConnection.
A node in a linked list.
Definition: dbus-list.h:37
Internals of DBusMessage.
Implementation details of DBusPendingCall - all fields are private.
Internals of DBusTimeout.
Definition: dbus-timeout.c:43
Object representing a transport such as a socket.
Implementation of DBusWatch.
Definition: dbus-watch.c:43