D-Bus 1.15.8
Data Fields

Implementation details of DBusConnection. More...

Data Fields

DBusAtomic refcount
 Reference count. More...
 
DBusRMutexmutex
 Lock on the entire DBusConnection. More...
 
DBusCMutexdispatch_mutex
 Protects dispatch_acquired. More...
 
DBusCondVardispatch_cond
 Notify when dispatch_acquired is available. More...
 
DBusCMutexio_path_mutex
 Protects io_path_acquired. More...
 
DBusCondVario_path_cond
 Notify when io_path_acquired is available. More...
 
DBusListoutgoing_messages
 Queue of messages we need to send, send the end of the list first. More...
 
DBusListincoming_messages
 Queue of messages we have received, end of the list received most recently. More...
 
DBusListexpired_messages
 Messages that will be released when we next unlock. More...
 
DBusMessagemessage_borrowed
 Filled in if the first incoming message has been borrowed; dispatch_acquired will be set by the borrower. More...
 
int n_outgoing
 Length of outgoing queue. More...
 
int n_incoming
 Length of incoming queue. More...
 
DBusCounteroutgoing_counter
 Counts size of outgoing messages. More...
 
DBusTransporttransport
 Object that sends/receives messages over network. More...
 
DBusWatchListwatches
 Stores active watches. More...
 
DBusTimeoutListtimeouts
 Stores active timeouts. More...
 
DBusListfilter_list
 List of filters. More...
 
DBusRMutexslot_mutex
 Lock on slot_list so overall connection lock need not be taken. More...
 
DBusDataSlotList slot_list
 Data stored by allocated integer ID. More...
 
DBusHashTablepending_replies
 Hash of message serials to DBusPendingCall. More...
 
dbus_uint32_t client_serial
 Client serial. More...
 
DBusListdisconnect_message_link
 Preallocated list node for queueing the disconnection message. More...
 
DBusWakeupMainFunction wakeup_main_function
 Function to wake up the mainloop
More...
 
void * wakeup_main_data
 Application data for wakeup_main_function. More...
 
DBusFreeFunction free_wakeup_main_data
 free wakeup_main_data More...
 
DBusDispatchStatusFunction dispatch_status_function
 Function on dispatch status changes
More...
 
void * dispatch_status_data
 Application data for dispatch_status_function. More...
 
DBusFreeFunction free_dispatch_status_data
 free dispatch_status_data More...
 
DBusDispatchStatus last_dispatch_status
 The last dispatch status we reported to the application. More...
 
DBusObjectTreeobjects
 Object path handlers registered with this connection. More...
 
char * server_guid
 GUID of server if we are in shared_connections, NULL if server GUID is unknown or connection is private. More...
 
dbus_bool_t dispatch_acquired
 Someone has dispatch path (can drain incoming queue) More...
 
dbus_bool_t io_path_acquired
 Someone has transport io path (can use the transport to read/write messages) More...
 
unsigned int shareable: 1
 TRUE if libdbus owns a reference to the connection and can return it from dbus_connection_open() more than once More...
 
unsigned int exit_on_disconnect: 1
 If TRUE, exit after handling disconnect signal. More...
 
unsigned int builtin_filters_enabled: 1
 If TRUE, handle org.freedesktop.DBus.Peer messages automatically, whether they have a bus name or not. More...
 
unsigned int route_peer_messages: 1
 If TRUE, if org.freedesktop.DBus.Peer messages have a bus name, don't handle them automatically. More...
 
unsigned int disconnected_message_arrived: 1
 We popped or are dispatching the disconnected message. More...
 
unsigned int disconnected_message_processed: 1
 We did our default handling of the disconnected message, such as closing the connection. More...
 
unsigned int have_connection_lock: 1
 Used to check locking. More...
 

Detailed Description

Implementation details of DBusConnection.

All fields are private.

Definition at line 258 of file dbus-connection.c.

Field Documentation

◆ builtin_filters_enabled

unsigned int DBusConnection::builtin_filters_enabled

If TRUE, handle org.freedesktop.DBus.Peer messages automatically, whether they have a bus name or not.

Definition at line 321 of file dbus-connection.c.

Referenced by dbus_connection_set_builtin_filters_enabled().

◆ client_serial

dbus_uint32_t DBusConnection::client_serial

Client serial.

Increments each time a message is sent

Definition at line 293 of file dbus-connection.c.

Referenced by _dbus_connection_get_next_client_serial().

◆ disconnect_message_link

DBusList* DBusConnection::disconnect_message_link

Preallocated list node for queueing the disconnection message.

Definition at line 294 of file dbus-connection.c.

◆ disconnected_message_arrived

unsigned int DBusConnection::disconnected_message_arrived

We popped or are dispatching the disconnected message.

if the disconnect_message_link is NULL then we queued it, but this flag is whether it got to the head of the queue.

Definition at line 325 of file dbus-connection.c.

◆ disconnected_message_processed

unsigned int DBusConnection::disconnected_message_processed

We did our default handling of the disconnected message, such as closing the connection.

Definition at line 329 of file dbus-connection.c.

◆ dispatch_acquired

dbus_bool_t DBusConnection::dispatch_acquired

Someone has dispatch path (can drain incoming queue)

Definition at line 314 of file dbus-connection.c.

Referenced by dbus_connection_return_message(), and dbus_connection_steal_borrowed_message().

◆ dispatch_cond

DBusCondVar* DBusConnection::dispatch_cond

Notify when dispatch_acquired is available.

Definition at line 265 of file dbus-connection.c.

◆ dispatch_mutex

DBusCMutex* DBusConnection::dispatch_mutex

Protects dispatch_acquired.

Definition at line 264 of file dbus-connection.c.

◆ dispatch_status_data

void* DBusConnection::dispatch_status_data

Application data for dispatch_status_function.

Definition at line 301 of file dbus-connection.c.

Referenced by dbus_connection_set_dispatch_status_function().

◆ dispatch_status_function

DBusDispatchStatusFunction DBusConnection::dispatch_status_function

Function on dispatch status changes

Definition at line 300 of file dbus-connection.c.

Referenced by dbus_connection_set_dispatch_status_function().

◆ exit_on_disconnect

unsigned int DBusConnection::exit_on_disconnect

If TRUE, exit after handling disconnect signal.

Definition at line 319 of file dbus-connection.c.

Referenced by dbus_connection_set_exit_on_disconnect().

◆ expired_messages

DBusList* DBusConnection::expired_messages

Messages that will be released when we next unlock.

Definition at line 271 of file dbus-connection.c.

Referenced by _dbus_connection_message_sent_unlocked(), and _dbus_connection_unlock().

◆ filter_list

DBusList* DBusConnection::filter_list

List of filters.

Definition at line 286 of file dbus-connection.c.

Referenced by dbus_connection_add_filter(), and dbus_connection_remove_filter().

◆ free_dispatch_status_data

DBusFreeFunction DBusConnection::free_dispatch_status_data

free dispatch_status_data

Definition at line 302 of file dbus-connection.c.

Referenced by dbus_connection_set_dispatch_status_function().

◆ free_wakeup_main_data

DBusFreeFunction DBusConnection::free_wakeup_main_data

free wakeup_main_data

Definition at line 298 of file dbus-connection.c.

Referenced by dbus_connection_set_wakeup_main_function().

◆ have_connection_lock

unsigned int DBusConnection::have_connection_lock

Used to check locking.

Definition at line 334 of file dbus-connection.c.

◆ incoming_messages

DBusList* DBusConnection::incoming_messages

Queue of messages we have received, end of the list received most recently.

Definition at line 270 of file dbus-connection.c.

Referenced by _dbus_connection_queue_received_message_link(), _dbus_connection_queue_synthesized_message_link(), and dbus_connection_steal_borrowed_message().

◆ io_path_acquired

dbus_bool_t DBusConnection::io_path_acquired

Someone has transport io path (can use the transport to read/write messages)

Definition at line 315 of file dbus-connection.c.

◆ io_path_cond

DBusCondVar* DBusConnection::io_path_cond

Notify when io_path_acquired is available.

Definition at line 267 of file dbus-connection.c.

◆ io_path_mutex

DBusCMutex* DBusConnection::io_path_mutex

Protects io_path_acquired.

Definition at line 266 of file dbus-connection.c.

◆ last_dispatch_status

DBusDispatchStatus DBusConnection::last_dispatch_status

The last dispatch status we reported to the application.

Definition at line 304 of file dbus-connection.c.

◆ message_borrowed

DBusMessage* DBusConnection::message_borrowed

Filled in if the first incoming message has been borrowed; dispatch_acquired will be set by the borrower.

Definition at line 273 of file dbus-connection.c.

Referenced by dbus_connection_return_message(), and dbus_connection_steal_borrowed_message().

◆ mutex

DBusRMutex* DBusConnection::mutex

Lock on the entire DBusConnection.

Definition at line 262 of file dbus-connection.c.

Referenced by _dbus_connection_unlock().

◆ n_incoming

int DBusConnection::n_incoming

◆ n_outgoing

int DBusConnection::n_outgoing

Length of outgoing queue.

Definition at line 277 of file dbus-connection.c.

Referenced by _dbus_connection_do_iteration_unlocked(), and _dbus_connection_message_sent_unlocked().

◆ objects

DBusObjectTree* DBusConnection::objects

Object path handlers registered with this connection.

Definition at line 306 of file dbus-connection.c.

Referenced by dbus_connection_get_object_path_data(), dbus_connection_list_registered(), and dbus_connection_unregister_object_path().

◆ outgoing_counter

DBusCounter* DBusConnection::outgoing_counter

◆ outgoing_messages

DBusList* DBusConnection::outgoing_messages

Queue of messages we need to send, send the end of the list first.

Definition at line 269 of file dbus-connection.c.

Referenced by _dbus_connection_get_message_to_send(), _dbus_connection_has_messages_to_send_unlocked(), and _dbus_connection_message_sent_unlocked().

◆ pending_replies

DBusHashTable* DBusConnection::pending_replies

Hash of message serials to DBusPendingCall.

Definition at line 291 of file dbus-connection.c.

Referenced by _dbus_connection_queue_received_message_link().

◆ refcount

DBusAtomic DBusConnection::refcount

◆ route_peer_messages

unsigned int DBusConnection::route_peer_messages

If TRUE, if org.freedesktop.DBus.Peer messages have a bus name, don't handle them automatically.

Definition at line 323 of file dbus-connection.c.

Referenced by dbus_connection_set_route_peer_messages().

◆ server_guid

char* DBusConnection::server_guid

GUID of server if we are in shared_connections, NULL if server GUID is unknown or connection is private.

Definition at line 308 of file dbus-connection.c.

◆ shareable

unsigned int DBusConnection::shareable

TRUE if libdbus owns a reference to the connection and can return it from dbus_connection_open() more than once

Definition at line 317 of file dbus-connection.c.

Referenced by dbus_connection_close().

◆ slot_list

DBusDataSlotList DBusConnection::slot_list

Data stored by allocated integer ID.

Definition at line 289 of file dbus-connection.c.

◆ slot_mutex

DBusRMutex* DBusConnection::slot_mutex

Lock on slot_list so overall connection lock need not be taken.

Definition at line 288 of file dbus-connection.c.

◆ timeouts

DBusTimeoutList* DBusConnection::timeouts

Stores active timeouts.

Definition at line 284 of file dbus-connection.c.

Referenced by dbus_connection_set_timeout_functions().

◆ transport

DBusTransport* DBusConnection::transport

◆ wakeup_main_data

void* DBusConnection::wakeup_main_data

Application data for wakeup_main_function.

Definition at line 297 of file dbus-connection.c.

Referenced by dbus_connection_set_wakeup_main_function().

◆ wakeup_main_function

DBusWakeupMainFunction DBusConnection::wakeup_main_function

Function to wake up the mainloop

Definition at line 296 of file dbus-connection.c.

Referenced by dbus_connection_set_wakeup_main_function().

◆ watches

DBusWatchList* DBusConnection::watches

Stores active watches.

Definition at line 283 of file dbus-connection.c.

Referenced by dbus_connection_set_watch_functions().


The documentation for this struct was generated from the following file: