mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-03 17:08:12 +02:00
Merge branch 'dbus-1.4'
Conflicts: bus/main.c
This commit is contained in:
commit
a1c90cacfa
5 changed files with 714 additions and 18 deletions
84
bus/main.c
84
bus/main.c
|
|
@ -49,10 +49,15 @@ static int reload_pipe[2];
|
|||
static void close_reload_pipe (DBusWatch **);
|
||||
|
||||
#ifdef DBUS_UNIX
|
||||
typedef enum
|
||||
{
|
||||
ACTION_RELOAD = 'r',
|
||||
ACTION_QUIT = 'q'
|
||||
} SignalAction;
|
||||
|
||||
static void
|
||||
signal_handler (int sig)
|
||||
{
|
||||
|
||||
switch (sig)
|
||||
{
|
||||
#ifdef DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX
|
||||
|
|
@ -63,7 +68,9 @@ signal_handler (int sig)
|
|||
case SIGHUP:
|
||||
{
|
||||
DBusString str;
|
||||
_dbus_string_init_const (&str, "foo");
|
||||
char action[2] = { ACTION_RELOAD, '\0' };
|
||||
|
||||
_dbus_string_init_const (&str, action);
|
||||
if ((reload_pipe[RELOAD_WRITE_END] > 0) &&
|
||||
!_dbus_write_socket (reload_pipe[RELOAD_WRITE_END], &str, 0, 1))
|
||||
{
|
||||
|
|
@ -88,6 +95,28 @@ signal_handler (int sig)
|
|||
}
|
||||
break;
|
||||
#endif
|
||||
|
||||
case SIGTERM:
|
||||
{
|
||||
DBusString str;
|
||||
char action[2] = { ACTION_QUIT, '\0' };
|
||||
_dbus_string_init_const (&str, action);
|
||||
if ((reload_pipe[RELOAD_WRITE_END] < 0) ||
|
||||
!_dbus_write_socket (reload_pipe[RELOAD_WRITE_END], &str, 0, 1))
|
||||
{
|
||||
/* If we can't write to the socket, dying seems a more
|
||||
* important response to SIGTERM than cleaning up sockets,
|
||||
* so we exit. We'd use exit(), but that's not async-signal-safe,
|
||||
* so we'll have to resort to _exit(). */
|
||||
static const char message[] =
|
||||
"Unable to write termination signal to pipe - buffer full?\n"
|
||||
"Will exit instead.\n";
|
||||
|
||||
write (STDERR_FILENO, message, strlen (message));
|
||||
_exit (1);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
#endif /* DBUS_UNIX */
|
||||
|
|
@ -190,6 +219,8 @@ handle_reload_watch (DBusWatch *watch,
|
|||
{
|
||||
DBusError error;
|
||||
DBusString str;
|
||||
char *action_str;
|
||||
char action = '\0';
|
||||
|
||||
while (!_dbus_string_init (&str))
|
||||
_dbus_wait_for_memory ();
|
||||
|
|
@ -201,6 +232,12 @@ handle_reload_watch (DBusWatch *watch,
|
|||
close_reload_pipe (&watch);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
action_str = _dbus_string_get_data (&str);
|
||||
if (action_str != NULL)
|
||||
{
|
||||
action = action_str[0];
|
||||
}
|
||||
_dbus_string_free (&str);
|
||||
|
||||
/* this can only fail if we don't understand the config file
|
||||
|
|
@ -208,15 +245,42 @@ handle_reload_watch (DBusWatch *watch,
|
|||
* loaded config.
|
||||
*/
|
||||
dbus_error_init (&error);
|
||||
if (! bus_context_reload_config (context, &error))
|
||||
|
||||
switch (action)
|
||||
{
|
||||
_DBUS_ASSERT_ERROR_IS_SET (&error);
|
||||
_dbus_assert (dbus_error_has_name (&error, DBUS_ERROR_FAILED) ||
|
||||
dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY));
|
||||
_dbus_warn ("Unable to reload configuration: %s\n",
|
||||
error.message);
|
||||
dbus_error_free (&error);
|
||||
case ACTION_RELOAD:
|
||||
if (! bus_context_reload_config (context, &error))
|
||||
{
|
||||
_DBUS_ASSERT_ERROR_IS_SET (&error);
|
||||
_dbus_assert (dbus_error_has_name (&error, DBUS_ERROR_FAILED) ||
|
||||
dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY));
|
||||
_dbus_warn ("Unable to reload configuration: %s\n",
|
||||
error.message);
|
||||
dbus_error_free (&error);
|
||||
}
|
||||
break;
|
||||
|
||||
case ACTION_QUIT:
|
||||
{
|
||||
DBusLoop *loop;
|
||||
/*
|
||||
* On OSs without abstract sockets, we want to quit
|
||||
* gracefully rather than being killed by SIGTERM,
|
||||
* so that DBusServer gets a chance to clean up the
|
||||
* sockets from the filesystem. fd.o #38656
|
||||
*/
|
||||
loop = bus_context_get_loop (context);
|
||||
if (loop != NULL)
|
||||
{
|
||||
_dbus_loop_quit (loop);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -527,6 +591,8 @@ main (int argc, char **argv)
|
|||
/* POSIX signals are Unix-specific, and _dbus_set_signal_handler is
|
||||
* unimplemented (and probably unimplementable) on Windows, so there's
|
||||
* no point in trying to make the handler portable to non-Unix. */
|
||||
|
||||
_dbus_set_signal_handler (SIGTERM, signal_handler);
|
||||
#ifdef SIGHUP
|
||||
_dbus_set_signal_handler (SIGHUP, signal_handler);
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -251,11 +251,18 @@ _dbus_server_new_for_domain_socket (const char *path,
|
|||
goto failed_0;
|
||||
}
|
||||
|
||||
path_copy = _dbus_strdup (path);
|
||||
if (path_copy == NULL)
|
||||
if (abstract)
|
||||
{
|
||||
dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
|
||||
goto failed_0;
|
||||
path_copy = NULL;
|
||||
}
|
||||
else
|
||||
{
|
||||
path_copy = _dbus_strdup (path);
|
||||
if (path_copy == NULL)
|
||||
{
|
||||
dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
|
||||
goto failed_0;
|
||||
}
|
||||
}
|
||||
|
||||
listen_fd = _dbus_listen_unix_socket (path, abstract, error);
|
||||
|
|
@ -273,7 +280,8 @@ _dbus_server_new_for_domain_socket (const char *path,
|
|||
goto failed_2;
|
||||
}
|
||||
|
||||
_dbus_server_socket_own_filename(server, path_copy);
|
||||
if (path_copy != NULL)
|
||||
_dbus_server_socket_own_filename(server, path_copy);
|
||||
|
||||
_dbus_string_free (&address);
|
||||
|
||||
|
|
|
|||
|
|
@ -83,6 +83,10 @@ shell_test_LDADD = libdbus-testutils.la
|
|||
spawn_test_CPPFLAGS = $(static_cppflags)
|
||||
spawn_test_LDADD = $(top_builddir)/dbus/libdbus-internal.la
|
||||
|
||||
test_refs_SOURCES = internals/refs.c
|
||||
test_refs_CPPFLAGS = $(static_cppflags)
|
||||
test_refs_LDADD = libdbus-testutils.la $(GLIB_LIBS)
|
||||
|
||||
EXTRA_DIST = dbus-test-runner
|
||||
|
||||
testexecdir = $(libdir)/dbus-1.0/test
|
||||
|
|
@ -95,6 +99,7 @@ installable_tests = \
|
|||
test-dbus-daemon-eavesdrop \
|
||||
test-loopback \
|
||||
test-marshal \
|
||||
test-refs \
|
||||
test-relay \
|
||||
$(NULL)
|
||||
|
||||
|
|
|
|||
613
test/internals/refs.c
Normal file
613
test/internals/refs.c
Normal file
|
|
@ -0,0 +1,613 @@
|
|||
/* Regression test for thread-safe reference-counting
|
||||
*
|
||||
* Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
|
||||
* Copyright © 2011 Nokia Corporation
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person
|
||||
* obtaining a copy of this software and associated documentation files
|
||||
* (the "Software"), to deal in the Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, sublicense, and/or sell copies of the Software,
|
||||
* and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be
|
||||
* included in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
||||
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
||||
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#define DBUS_COMPILATION /* this test uses libdbus-internal */
|
||||
#include <dbus/dbus.h>
|
||||
#include <dbus/dbus-connection-internal.h>
|
||||
#include <dbus/dbus-mainloop.h>
|
||||
#include <dbus/dbus-message-internal.h>
|
||||
#include <dbus/dbus-pending-call-internal.h>
|
||||
#include <dbus/dbus-server-protected.h>
|
||||
#include "test-utils.h"
|
||||
|
||||
static void
|
||||
assert_no_error (const DBusError *e)
|
||||
{
|
||||
if (G_UNLIKELY (dbus_error_is_set (e)))
|
||||
g_error ("expected success but got error: %s: %s", e->name, e->message);
|
||||
}
|
||||
|
||||
#define N_THREADS 200
|
||||
#define N_REFS 10000
|
||||
G_STATIC_ASSERT (((unsigned) N_THREADS * (unsigned) N_REFS) < G_MAXINT32);
|
||||
|
||||
static dbus_int32_t connection_slot = -1;
|
||||
static dbus_int32_t server_slot = -1;
|
||||
static dbus_int32_t message_slot = -1;
|
||||
static dbus_int32_t pending_call_slot = -1;
|
||||
|
||||
typedef struct {
|
||||
DBusError e;
|
||||
DBusLoop *loop;
|
||||
DBusServer *server;
|
||||
DBusConnection *connection;
|
||||
DBusConnection *server_connection;
|
||||
DBusMessage *message;
|
||||
GThread *threads[N_THREADS];
|
||||
gboolean last_unref;
|
||||
} Fixture;
|
||||
|
||||
typedef void *(*RefFunc) (void *);
|
||||
typedef void (*VoidFunc) (void *);
|
||||
|
||||
typedef struct {
|
||||
void *thing;
|
||||
RefFunc ref;
|
||||
VoidFunc ref_void;
|
||||
VoidFunc unref;
|
||||
void *mutex;
|
||||
VoidFunc lock;
|
||||
VoidFunc unlock;
|
||||
} Thread;
|
||||
|
||||
static gpointer
|
||||
ref_thread (gpointer data)
|
||||
{
|
||||
Thread *thread = data;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < N_REFS; i++)
|
||||
{
|
||||
if (thread->lock != NULL)
|
||||
(thread->lock) (thread->mutex);
|
||||
|
||||
if (thread->ref != NULL)
|
||||
{
|
||||
gpointer ret = (thread->ref) (thread->thing);
|
||||
|
||||
g_assert (ret == thread->thing);
|
||||
}
|
||||
else
|
||||
{
|
||||
(thread->ref_void) (thread->thing);
|
||||
}
|
||||
|
||||
if (thread->unlock != NULL)
|
||||
(thread->unlock) (thread->mutex);
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static gpointer
|
||||
cycle_thread (gpointer data)
|
||||
{
|
||||
Thread *thread = data;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < N_REFS; i++)
|
||||
{
|
||||
if (thread->lock != NULL)
|
||||
(thread->lock) (thread->mutex);
|
||||
|
||||
if (thread->ref != NULL)
|
||||
{
|
||||
gpointer ret = (thread->ref) (thread->thing);
|
||||
|
||||
g_assert (ret == thread->thing);
|
||||
}
|
||||
else
|
||||
{
|
||||
(thread->ref_void) (thread->thing);
|
||||
}
|
||||
|
||||
(thread->unref) (thread->thing);
|
||||
|
||||
if (thread->unlock != NULL)
|
||||
(thread->unlock) (thread->mutex);
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static gpointer
|
||||
unref_thread (gpointer data)
|
||||
{
|
||||
Thread *thread = data;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < N_REFS; i++)
|
||||
{
|
||||
if (thread->lock != NULL)
|
||||
(thread->lock) (thread->mutex);
|
||||
|
||||
(thread->unref) (thread->thing);
|
||||
|
||||
if (thread->unlock != NULL)
|
||||
(thread->unlock) (thread->mutex);
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
last_unref (void *data)
|
||||
{
|
||||
Fixture *f = data;
|
||||
|
||||
g_assert (!f->last_unref);
|
||||
f->last_unref = TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
wait_for_all_threads (Fixture *f)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
g_thread_join (f->threads[i]);
|
||||
}
|
||||
|
||||
static void
|
||||
new_conn_cb (DBusServer *server,
|
||||
DBusConnection *server_connection,
|
||||
void *data)
|
||||
{
|
||||
Fixture *f = data;
|
||||
dbus_bool_t have_mem;
|
||||
|
||||
g_assert (f->server_connection == NULL);
|
||||
f->server_connection = dbus_connection_ref (server_connection);
|
||||
|
||||
test_connection_setup (f->loop, f->server_connection);
|
||||
}
|
||||
|
||||
static void
|
||||
setup (Fixture *f,
|
||||
gconstpointer data)
|
||||
{
|
||||
if (!dbus_threads_init_default ())
|
||||
g_error ("OOM");
|
||||
|
||||
f->loop = _dbus_loop_new ();
|
||||
g_assert (f->loop != NULL);
|
||||
|
||||
dbus_error_init (&f->e);
|
||||
|
||||
f->server = dbus_server_listen ("tcp:host=127.0.0.1", &f->e);
|
||||
assert_no_error (&f->e);
|
||||
g_assert (f->server != NULL);
|
||||
|
||||
if (!dbus_connection_allocate_data_slot (&connection_slot))
|
||||
g_error ("OOM");
|
||||
|
||||
if (!dbus_server_allocate_data_slot (&server_slot))
|
||||
g_error ("OOM");
|
||||
|
||||
if (!dbus_message_allocate_data_slot (&message_slot))
|
||||
g_error ("OOM");
|
||||
|
||||
if (!dbus_pending_call_allocate_data_slot (&pending_call_slot))
|
||||
g_error ("OOM");
|
||||
}
|
||||
|
||||
static void
|
||||
setup_connection (Fixture *f,
|
||||
gconstpointer data)
|
||||
{
|
||||
char *address;
|
||||
|
||||
setup (f, data);
|
||||
|
||||
dbus_server_set_new_connection_function (f->server,
|
||||
new_conn_cb, f, NULL);
|
||||
|
||||
if (!test_server_setup (f->loop, f->server))
|
||||
g_error ("failed to set up server");
|
||||
|
||||
address = dbus_server_get_address (f->server);
|
||||
g_assert (address != NULL);
|
||||
f->connection = dbus_connection_open_private (address, &f->e);
|
||||
assert_no_error (&f->e);
|
||||
g_assert (f->connection != NULL);
|
||||
dbus_free (address);
|
||||
|
||||
if (!test_connection_setup (f->loop, f->connection))
|
||||
g_error ("failed to set up connection");
|
||||
|
||||
while (f->server_connection == NULL)
|
||||
_dbus_loop_iterate (f->loop, TRUE);
|
||||
|
||||
test_connection_shutdown (f->loop, f->connection);
|
||||
test_server_shutdown (f->loop, f->server);
|
||||
}
|
||||
|
||||
static void
|
||||
test_connection (Fixture *f,
|
||||
gconstpointer data)
|
||||
{
|
||||
Thread public_api = { f->connection,
|
||||
(RefFunc) dbus_connection_ref,
|
||||
NULL,
|
||||
(VoidFunc) dbus_connection_unref,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL };
|
||||
Thread internal_api = { f->connection,
|
||||
(RefFunc) _dbus_connection_ref_unlocked,
|
||||
NULL,
|
||||
(VoidFunc) _dbus_connection_unref_unlocked,
|
||||
f->connection,
|
||||
(VoidFunc) _dbus_connection_lock,
|
||||
(VoidFunc) _dbus_connection_unlock };
|
||||
int i;
|
||||
|
||||
/* Use a slot as a pseudo-weakref */
|
||||
if (!dbus_connection_set_data (f->connection, connection_slot, f,
|
||||
last_unref))
|
||||
g_error ("OOM");
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
if ((i % 2) == 0)
|
||||
f->threads[i] = g_thread_create (ref_thread, &public_api, TRUE, NULL);
|
||||
else
|
||||
f->threads[i] = g_thread_create (ref_thread, &internal_api, TRUE,
|
||||
NULL);
|
||||
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
if ((i % 2) == 0)
|
||||
f->threads[i] = g_thread_create (cycle_thread, &public_api, TRUE,
|
||||
NULL);
|
||||
else
|
||||
f->threads[i] = g_thread_create (cycle_thread, &internal_api, TRUE,
|
||||
NULL);
|
||||
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
if ((i % 2) == 0)
|
||||
f->threads[i] = g_thread_create (unref_thread, &public_api, TRUE,
|
||||
NULL);
|
||||
else
|
||||
f->threads[i] = g_thread_create (unref_thread, &internal_api, TRUE,
|
||||
NULL);
|
||||
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
/* Destroy the connection. This should be the last-unref. */
|
||||
g_assert (!f->last_unref);
|
||||
dbus_connection_close (f->connection);
|
||||
dbus_connection_unref (f->connection);
|
||||
f->connection = NULL;
|
||||
g_assert (f->last_unref);
|
||||
}
|
||||
|
||||
static void
|
||||
server_lock (void *server)
|
||||
{
|
||||
SERVER_LOCK (((DBusServer *) server));
|
||||
}
|
||||
|
||||
static void
|
||||
server_unlock (void *server)
|
||||
{
|
||||
SERVER_UNLOCK (((DBusServer *) server));
|
||||
}
|
||||
|
||||
static void
|
||||
test_server (Fixture *f,
|
||||
gconstpointer data)
|
||||
{
|
||||
Thread public_api = { f->server,
|
||||
(RefFunc) dbus_server_ref,
|
||||
NULL,
|
||||
(VoidFunc) dbus_server_unref,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL };
|
||||
Thread internal_api = { f->server,
|
||||
NULL,
|
||||
(VoidFunc) _dbus_server_ref_unlocked,
|
||||
(VoidFunc) _dbus_server_unref_unlocked,
|
||||
f->server,
|
||||
server_lock,
|
||||
server_unlock };
|
||||
int i;
|
||||
|
||||
if (!dbus_server_set_data (f->server, server_slot, f, last_unref))
|
||||
g_error ("OOM");
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
if ((i % 2) == 0)
|
||||
f->threads[i] = g_thread_create (ref_thread, &public_api, TRUE, NULL);
|
||||
else
|
||||
f->threads[i] = g_thread_create (ref_thread, &internal_api, TRUE,
|
||||
NULL);
|
||||
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
if ((i % 2) == 0)
|
||||
f->threads[i] = g_thread_create (cycle_thread, &public_api, TRUE,
|
||||
NULL);
|
||||
else
|
||||
f->threads[i] = g_thread_create (cycle_thread, &internal_api, TRUE,
|
||||
NULL);
|
||||
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
if ((i % 2) == 0)
|
||||
f->threads[i] = g_thread_create (unref_thread, &public_api, TRUE,
|
||||
NULL);
|
||||
else
|
||||
f->threads[i] = g_thread_create (unref_thread, &internal_api, TRUE,
|
||||
NULL);
|
||||
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
/* Destroy the server. This should be the last-unref. */
|
||||
g_assert (!f->last_unref);
|
||||
dbus_server_disconnect (f->server);
|
||||
dbus_server_unref (f->server);
|
||||
f->server = NULL;
|
||||
g_assert (f->last_unref);
|
||||
}
|
||||
|
||||
static void
|
||||
test_message (Fixture *f,
|
||||
gconstpointer data)
|
||||
{
|
||||
DBusMessage *message = dbus_message_new_signal ("/foo", "foo.bar.baz",
|
||||
"Foo");
|
||||
Thread public_api = { message,
|
||||
(RefFunc) dbus_message_ref,
|
||||
NULL,
|
||||
(VoidFunc) dbus_message_unref,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL };
|
||||
int i;
|
||||
|
||||
if (!dbus_message_set_data (message, message_slot, f, last_unref))
|
||||
g_error ("OOM");
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
f->threads[i] = g_thread_create (ref_thread, &public_api, TRUE, NULL);
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
f->threads[i] = g_thread_create (cycle_thread, &public_api, TRUE, NULL);
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
f->threads[i] = g_thread_create (unref_thread, &public_api, TRUE, NULL);
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
/* Destroy the server. This should be the last-unref. */
|
||||
g_assert (!f->last_unref);
|
||||
dbus_message_unref (message);
|
||||
g_assert (f->last_unref);
|
||||
}
|
||||
|
||||
static void
|
||||
test_pending_call (Fixture *f,
|
||||
gconstpointer data)
|
||||
{
|
||||
Thread public_api = { NULL,
|
||||
(RefFunc) dbus_pending_call_ref,
|
||||
NULL,
|
||||
(VoidFunc) dbus_pending_call_unref,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL };
|
||||
Thread internal_api = { NULL,
|
||||
(RefFunc) _dbus_pending_call_ref_unlocked,
|
||||
NULL,
|
||||
(VoidFunc) dbus_pending_call_unref,
|
||||
f->connection,
|
||||
(VoidFunc) _dbus_connection_lock,
|
||||
(VoidFunc) _dbus_connection_unlock };
|
||||
/* This one can't be used to ref, only to cycle or unref. */
|
||||
Thread unref_and_unlock_api = { NULL,
|
||||
(RefFunc) _dbus_pending_call_ref_unlocked,
|
||||
NULL,
|
||||
(VoidFunc) _dbus_pending_call_unref_and_unlock,
|
||||
f->connection,
|
||||
(VoidFunc) _dbus_connection_lock,
|
||||
NULL };
|
||||
int i;
|
||||
DBusPendingCall *pending_call;
|
||||
|
||||
_dbus_connection_lock (f->connection);
|
||||
pending_call = _dbus_pending_call_new_unlocked (f->connection,
|
||||
DBUS_TIMEOUT_INFINITE, NULL);
|
||||
g_assert (pending_call != NULL);
|
||||
_dbus_connection_unlock (f->connection);
|
||||
|
||||
public_api.thing = pending_call;
|
||||
internal_api.thing = pending_call;
|
||||
unref_and_unlock_api.thing = pending_call;
|
||||
|
||||
if (!dbus_pending_call_set_data (pending_call, pending_call_slot, f,
|
||||
last_unref))
|
||||
g_error ("OOM");
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
if ((i % 2) == 0)
|
||||
f->threads[i] = g_thread_create (ref_thread, &public_api, TRUE, NULL);
|
||||
else
|
||||
f->threads[i] = g_thread_create (ref_thread, &internal_api, TRUE,
|
||||
NULL);
|
||||
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
switch (i % 3)
|
||||
{
|
||||
case 0:
|
||||
f->threads[i] = g_thread_create (cycle_thread, &public_api, TRUE,
|
||||
NULL);
|
||||
break;
|
||||
case 1:
|
||||
f->threads[i] = g_thread_create (cycle_thread, &internal_api, TRUE,
|
||||
NULL);
|
||||
break;
|
||||
default:
|
||||
f->threads[i] = g_thread_create (cycle_thread,
|
||||
&unref_and_unlock_api, TRUE, NULL);
|
||||
}
|
||||
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
for (i = 0; i < N_THREADS; i++)
|
||||
{
|
||||
switch (i % 3)
|
||||
{
|
||||
case 0:
|
||||
f->threads[i] = g_thread_create (unref_thread, &public_api, TRUE,
|
||||
NULL);
|
||||
break;
|
||||
case 1:
|
||||
f->threads[i] = g_thread_create (unref_thread, &internal_api, TRUE,
|
||||
NULL);
|
||||
break;
|
||||
default:
|
||||
f->threads[i] = g_thread_create (unref_thread,
|
||||
&unref_and_unlock_api, TRUE, NULL);
|
||||
}
|
||||
|
||||
g_assert (f->threads[i] != NULL);
|
||||
}
|
||||
|
||||
wait_for_all_threads (f);
|
||||
|
||||
/* Destroy the pending call. This should be the last-unref. */
|
||||
g_assert (!f->last_unref);
|
||||
dbus_pending_call_unref (pending_call);
|
||||
g_assert (f->last_unref);
|
||||
}
|
||||
|
||||
static void
|
||||
teardown (Fixture *f,
|
||||
gconstpointer data)
|
||||
{
|
||||
if (f->server_connection != NULL)
|
||||
{
|
||||
dbus_connection_close (f->server_connection);
|
||||
dbus_connection_unref (f->server_connection);
|
||||
}
|
||||
|
||||
if (f->connection != NULL)
|
||||
{
|
||||
dbus_connection_close (f->connection);
|
||||
dbus_connection_unref (f->connection);
|
||||
}
|
||||
|
||||
if (f->server != NULL)
|
||||
{
|
||||
dbus_server_disconnect (f->server);
|
||||
dbus_server_unref (f->server);
|
||||
}
|
||||
|
||||
dbus_connection_free_data_slot (&connection_slot);
|
||||
dbus_server_free_data_slot (&server_slot);
|
||||
dbus_message_free_data_slot (&message_slot);
|
||||
dbus_pending_call_free_data_slot (&pending_call_slot);
|
||||
|
||||
_dbus_loop_unref (f->loop);
|
||||
dbus_error_free (&f->e);
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc,
|
||||
char **argv)
|
||||
{
|
||||
g_thread_init (NULL);
|
||||
g_test_init (&argc, &argv, NULL);
|
||||
g_test_bug_base ("https://bugs.freedesktop.org/show_bug.cgi?id=");
|
||||
|
||||
g_test_add ("/refs/connection", Fixture, NULL, setup_connection,
|
||||
test_connection, teardown);
|
||||
g_test_add ("/refs/message", Fixture, NULL, setup,
|
||||
test_message, teardown);
|
||||
g_test_add ("/refs/pending-call", Fixture, NULL, setup_connection,
|
||||
test_pending_call, teardown);
|
||||
g_test_add ("/refs/server", Fixture, NULL, setup,
|
||||
test_server, teardown);
|
||||
|
||||
return g_test_run ();
|
||||
}
|
||||
12
test/relay.c
12
test/relay.c
|
|
@ -137,12 +137,15 @@ test_connect (Fixture *f,
|
|||
gconstpointer data G_GNUC_UNUSED)
|
||||
{
|
||||
dbus_bool_t have_mem;
|
||||
char *address;
|
||||
|
||||
g_assert (f->left_server_conn == NULL);
|
||||
g_assert (f->right_server_conn == NULL);
|
||||
|
||||
f->left_client_conn = dbus_connection_open_private (
|
||||
dbus_server_get_address (f->server), &f->e);
|
||||
address = dbus_server_get_address (f->server);
|
||||
g_assert (address != NULL);
|
||||
|
||||
f->left_client_conn = dbus_connection_open_private (address, &f->e);
|
||||
assert_no_error (&f->e);
|
||||
g_assert (f->left_client_conn != NULL);
|
||||
dbus_connection_setup_with_g_main (f->left_client_conn, NULL);
|
||||
|
|
@ -153,12 +156,13 @@ test_connect (Fixture *f,
|
|||
g_main_context_iteration (NULL, TRUE);
|
||||
}
|
||||
|
||||
f->right_client_conn = dbus_connection_open_private (
|
||||
dbus_server_get_address (f->server), &f->e);
|
||||
f->right_client_conn = dbus_connection_open_private (address, &f->e);
|
||||
assert_no_error (&f->e);
|
||||
g_assert (f->right_client_conn != NULL);
|
||||
dbus_connection_setup_with_g_main (f->right_client_conn, NULL);
|
||||
|
||||
dbus_free (address);
|
||||
|
||||
while (f->right_server_conn == NULL)
|
||||
{
|
||||
g_print (".");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue