D-Bus  1.6.12
dbus-server-protected.h
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-server-protected.h Used by subclasses of DBusServer object (internal to D-Bus implementation)
3  *
4  * Copyright (C) 2002 Red Hat Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  *
22  */
23 #ifndef DBUS_SERVER_PROTECTED_H
24 #define DBUS_SERVER_PROTECTED_H
25 
26 #include <dbus/dbus-internals.h>
27 #include <dbus/dbus-threads-internal.h>
28 #include <dbus/dbus-server.h>
29 #include <dbus/dbus-address.h>
30 #include <dbus/dbus-timeout.h>
31 #include <dbus/dbus-watch.h>
32 #include <dbus/dbus-resources.h>
33 #include <dbus/dbus-dataslot.h>
34 #include <dbus/dbus-string.h>
35 
37 
38 typedef struct DBusServerVTable DBusServerVTable;
39 
44 {
45  void (* finalize) (DBusServer *server);
48  void (* disconnect) (DBusServer *server);
50 };
51 
56 struct DBusServer
57 {
69  char *address;
85  char **auth_mechanisms;
87  unsigned int disconnected : 1;
89 #ifndef DBUS_DISABLE_CHECKS
90  unsigned int have_server_lock : 1;
91 #endif
92 };
93 
95  const DBusServerVTable *vtable,
96  const DBusString *address);
99  DBusWatch *watch);
101  DBusWatch *watch);
103  DBusWatch *watch,
104  dbus_bool_t enabled);
106  DBusTimeout *timeout);
108  DBusTimeout *timeout);
110  DBusTimeout *timeout,
111  dbus_bool_t enabled);
112 
115 
116 typedef enum
117 {
118  DBUS_SERVER_LISTEN_NOT_HANDLED,
119  DBUS_SERVER_LISTEN_OK,
120  DBUS_SERVER_LISTEN_BAD_ADDRESS,
121  DBUS_SERVER_LISTEN_DID_NOT_CONNECT,
122  DBUS_SERVER_LISTEN_ADDRESS_ALREADY_USED
123 } DBusServerListenResult;
124 
125 DBusServerListenResult _dbus_server_listen_platform_specific (DBusAddressEntry *entry,
126  DBusServer **server_p,
127  DBusError *error);
128 
129 #ifdef DBUS_ENABLE_VERBOSE_MODE
130 void _dbus_server_trace_ref (DBusServer *server,
131  int old_refcount,
132  int new_refcount,
133  const char *why);
134 #else
135 #define _dbus_server_trace_ref(s,o,n,w) \
136  do \
137  {\
138  (void) (o); \
139  (void) (n); \
140  } while (0)
141 #endif
142 
143 #ifdef DBUS_DISABLE_CHECKS
144 #define TOOK_LOCK_CHECK(server)
145 #define RELEASING_LOCK_CHECK(server)
146 #define HAVE_LOCK_CHECK(server)
147 #else
148 #define TOOK_LOCK_CHECK(server) do { \
149  _dbus_assert (!(server)->have_server_lock); \
150  (server)->have_server_lock = TRUE; \
151  } while (0)
152 #define RELEASING_LOCK_CHECK(server) do { \
153  _dbus_assert ((server)->have_server_lock); \
154  (server)->have_server_lock = FALSE; \
155  } while (0)
156 #define HAVE_LOCK_CHECK(server) _dbus_assert ((server)->have_server_lock)
157 /* A "DO_NOT_HAVE_LOCK_CHECK" is impossible since we need the lock to check the flag */
158 #endif
159 
160 #define TRACE_LOCKS 0
161 
162 #define SERVER_LOCK(server) do { \
163  if (TRACE_LOCKS) { _dbus_verbose ("LOCK\n"); } \
164  _dbus_rmutex_lock ((server)->mutex); \
165  TOOK_LOCK_CHECK (server); \
166  } while (0)
167 
168 #define SERVER_UNLOCK(server) do { \
169  if (TRACE_LOCKS) { _dbus_verbose ("UNLOCK\n"); } \
170  RELEASING_LOCK_CHECK (server); \
171  _dbus_rmutex_unlock ((server)->mutex); \
172  } while (0)
173 
175 
176 #endif /* DBUS_SERVER_PROTECTED_H */
An atomic integer safe to increment or decrement from multiple threads.
Definition: dbus-sysdeps.h:229
Internals of DBusTimeout.
Definition: dbus-timeout.c:40
dbus_bool_t _dbus_server_add_watch(DBusServer *server, DBusWatch *watch)
Adds a watch for this server, chaining out to application-provided watch handlers.
Definition: dbus-server.c:288
Implementation of DBusWatch.
Definition: dbus-watch.c:40
void(* DBusFreeFunction)(void *memory)
The type of a function which frees a block of memory.
Definition: dbus-memory.h:64
#define DBUS_BEGIN_DECLS
Macro used prior to declaring functions in the D-Bus header files.
unsigned int disconnected
TRUE if we are disconnected.
Internals of DBusServer object.
A globally unique ID ; we have one for each DBusServer, and also one for each machine with libdbus in...
void _dbus_server_ref_unlocked(DBusServer *server)
Like dbus_server_ref() but does not acquire the lock (must already be held)
Definition: dbus-server.c:457
DBusServerListenResult _dbus_server_listen_platform_specific(DBusAddressEntry *entry, DBusServer **server_p, DBusError *error)
Tries to interpret the address entry in a platform-specific way, creating a platform-specific server ...
DBusNewConnectionFunction new_connection_function
Callback to invoke when a new connection is created.
char ** auth_mechanisms
Array of allowed authentication mechanisms.
const DBusServerVTable * vtable
Virtual methods for this instance.
void(* disconnect)(DBusServer *server)
Disconnect this server.
DBusRMutex * mutex
Lock on the server object.
void _dbus_server_toggle_timeout(DBusServer *server, DBusTimeout *timeout, dbus_bool_t enabled)
Toggles a timeout and notifies app via server&#39;s DBusTimeoutToggledFunction if available.
Definition: dbus-server.c:440
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
Definition: dbus-types.h:35
void _dbus_server_unref_unlocked(DBusServer *server)
Like dbus_server_unref() but does not acquire the lock (must already be held)
Definition: dbus-server.c:476
DBusAtomic refcount
Reference count.
DBusTimeoutList * timeouts
Our timeouts.
Internals of DBusAddressEntry.
Definition: dbus-address.c:43
void _dbus_server_remove_watch(DBusServer *server, DBusWatch *watch)
Removes a watch previously added with _dbus_server_remove_watch().
Definition: dbus-server.c:304
Object representing an exception.
Definition: dbus-errors.h:48
void _dbus_server_toggle_watch(DBusServer *server, DBusWatch *watch, dbus_bool_t enabled)
Toggles a watch and notifies app via server&#39;s DBusWatchToggledFunction if available.
Definition: dbus-server.c:324
void(* finalize)(DBusServer *server)
The finalize method must free the server.
dbus_bool_t _dbus_server_init_base(DBusServer *server, const DBusServerVTable *vtable, const DBusString *address)
Initializes the members of the DBusServer base class.
Definition: dbus-server.c:111
void _dbus_server_remove_timeout(DBusServer *server, DBusTimeout *timeout)
Removes a timeout previously added with _dbus_server_add_timeout().
Definition: dbus-server.c:421
void _dbus_server_finalize_base(DBusServer *server)
Finalizes the members of the DBusServer base class.
Definition: dbus-server.c:193
Virtual table to be implemented by all server &quot;subclasses&quot;.
DBusWatchList * watches
Our watches.
DBusDataSlotList slot_list
Data stored by allocated integer ID.
Data structure that stores the actual user data set at a given slot.
Definition: dbus-dataslot.h:67
char * address
Address this server is listening on.
dbus_bool_t published_address
flag which indicates that server has published its bus address.
DBusFreeFunction new_connection_free_data_function
Callback to invoke to free new_connection_data when server is finalized or data is replaced...
DBusWatchList implementation details.
Definition: dbus-watch.c:214
void * new_connection_data
Data for new connection callback.
unsigned int have_server_lock
Does someone have the server mutex locked.
DBusString guid_hex
Hex-encoded version of GUID.
dbus_bool_t _dbus_server_add_timeout(DBusServer *server, DBusTimeout *timeout)
Adds a timeout for this server, chaining out to application-provided timeout handlers.
Definition: dbus-server.c:406
DBusGUID guid
Globally unique ID of server.
void(* DBusNewConnectionFunction)(DBusServer *server, DBusConnection *new_connection, void *data)
Called when a new connection to the server is available.
Definition: dbus-server.h:47
int max_connections
Max number of connections allowed at once.
DBusTimeoutList implementation details.
Definition: dbus-timeout.c:176
#define DBUS_END_DECLS
Macro used after declaring functions in the D-Bus header files.