1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
/* test-server.c
*
* Copyright 2021-2022 Günther Wagner <info@gunibert.de>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU Lesser General Public License,
* version 2.1, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
* more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "test-server.h"
static GMutex server_start_mutex;
static GCond server_start_cond;
SoupServer *
test_server_new ()
{
SoupServer *server = soup_server_new ("tls-certificate", NULL, NULL);
return server;
}
gchar *
test_server_get_uri (SoupServer *server,
const char *scheme,
const char *host)
{
GSList *uris, *u;
#ifdef WITH_SOUP_2
SoupURI *uri, *ret_uri = NULL;
#else
GUri *uri, *ret_uri = NULL;
#endif
uris = soup_server_get_uris (server);
for (u = uris; u; u = u->next) {
uri = u->data;
#ifdef WITH_SOUP_2
if (scheme && strcmp (soup_uri_get_scheme (uri), scheme) != 0)
continue;
if (host && strcmp (soup_uri_get_host (uri), host) != 0)
continue;
ret_uri = soup_uri_copy (uri);
#else
if (scheme && strcmp (g_uri_get_scheme (uri), scheme) != 0)
continue;
if (host && strcmp (g_uri_get_host (uri), host) != 0)
continue;
ret_uri = g_uri_ref (uri);
#endif
break;
}
#ifdef WITH_SOUP_2
g_slist_free_full (uris, (GDestroyNotify)soup_uri_free);
return soup_uri_to_string (ret_uri, FALSE);
#else
g_slist_free_full (uris, (GDestroyNotify)g_uri_unref);
return g_uri_to_string (ret_uri);
#endif
}
static gpointer
run_server_thread (gpointer user_data)
{
SoupServer *server = user_data;
GMainContext *context;
GMainLoop *loop;
GError *error = NULL;
context = g_main_context_new ();
g_main_context_push_thread_default (context);
loop = g_main_loop_new (context, FALSE);
g_object_set_data (G_OBJECT (server), "GMainLoop", loop);
// TODO: error handling
soup_server_listen_local (server, 0, SOUP_SERVER_LISTEN_IPV4_ONLY, &error);
if (error != NULL)
g_error ("%s", error->message);
g_mutex_lock (&server_start_mutex);
g_cond_signal (&server_start_cond);
g_mutex_unlock (&server_start_mutex);
g_main_loop_run (loop);
g_main_loop_unref (loop);
g_print("%s\n", "Shutting down server...");
soup_server_disconnect (server);
g_main_context_pop_thread_default (context);
g_main_context_unref (context);
return NULL;
}
void
test_server_run_in_thread (SoupServer *server)
{
GThread *thread;
g_mutex_lock (&server_start_mutex);
thread = g_thread_new ("server_thread", run_server_thread, server);
g_cond_wait (&server_start_cond, &server_start_mutex);
g_mutex_unlock (&server_start_mutex);
g_object_set_data (G_OBJECT (server), "thread", thread);
}
|