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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
/* test-stress.c
*
* Copyright (C) 2017 Christian Hergert <chergert@redhat.com>
*
* This file is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This file is distributed in the hope that 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 General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <gio/gio.h>
#include <gio/gunixinputstream.h>
#include <gio/gunixoutputstream.h>
#include <jsonrpc-glib.h>
#include <signal.h>
static GMainLoop *main_loop;
static gint n_ops;
static gboolean begin_next_op_source (gpointer data);
#if 0
# define LOG(s,...) g_print(s "\n", ## __VA_ARGS__)
#else
# define LOG(s,...) do { } while (0)
#endif
static GIOStream *
create_stream (gint read_fd, gint write_fd)
{
g_autoptr(GInputStream) input = g_unix_input_stream_new (read_fd, TRUE);
g_autoptr(GOutputStream) output = g_unix_output_stream_new (write_fd, TRUE);
return g_simple_io_stream_new (input, output);
}
static gboolean
close_in_idle (gpointer user_data)
{
JsonrpcClient *client = user_data;
g_assert (JSONRPC_IS_CLIENT (client));
jsonrpc_client_close (client, NULL, NULL);
return G_SOURCE_REMOVE;
}
static void
server_handle_reply_cb (JsonrpcClient *client,
GAsyncResult *result,
gpointer user_data)
{
g_autoptr(JsonrpcServer) server = user_data;
g_autoptr(GError) error = NULL;
gboolean r;
g_assert (JSONRPC_IS_CLIENT (client));
g_assert (JSONRPC_IS_SERVER (server));
r = jsonrpc_client_reply_finish (client, result, &error);
g_assert_no_error (error);
g_assert_cmpint (r, ==, 1);
/*
* If there are no operations left to perform, close the
* connection to test the server disconnected state on the
* client.
*/
if (n_ops == 0)
{
LOG ("server: closing client stream");
/* Close might error, but the tasks are always
* flushed and cancelled.
*/
g_idle_add_full (G_PRIORITY_DEFAULT,
close_in_idle,
g_object_ref (client),
g_object_unref);
}
}
static gboolean
server_handle_call_cb (JsonrpcServer *server,
JsonrpcClient *client,
const gchar *method,
GVariant *id,
GVariant *params)
{
GVariantDict dict;
/* Just reply with the info we got */
LOG ("server: handling incoming call");
g_variant_dict_init (&dict, NULL);
g_variant_dict_insert (&dict, "method", "s", method);
g_variant_dict_insert_value (&dict, "id", id);
g_variant_dict_insert_value (&dict, "params", params);
jsonrpc_client_reply_async (client,
id,
g_variant_dict_end (&dict),
NULL,
(GAsyncReadyCallback) server_handle_reply_cb,
g_object_ref (server));
LOG ("server: replied to client");
return TRUE;
}
static void
server_notification_cb (JsonrpcServer *server,
JsonrpcClient *client,
const gchar *method,
GVariant *params)
{
}
static void
client_call_cb (GObject *object,
GAsyncResult *result,
gpointer user_data)
{
JsonrpcClient *client = JSONRPC_CLIENT (object);
g_autoptr(GError) error = NULL;
g_autoptr(GVariant) reply = NULL;
gboolean r;
LOG ("client: got reply from server");
r = jsonrpc_client_call_finish (client, result, &reply, &error);
if (n_ops < 0)
{
/* We expect an error here, for the stream being closed */
g_assert_nonnull (error);
g_assert_false (r);
g_assert_null (reply);
g_main_loop_quit (main_loop);
return;
}
g_assert (error || result);
g_timeout_add_full (0, 0, begin_next_op_source, g_object_ref (client), g_object_unref);
}
static gboolean
begin_next_op_source (gpointer data)
{
JsonrpcClient *client = data;
g_autoptr(GVariant) params = NULL;
params = JSONRPC_MESSAGE_NEW (
"ops-left", JSONRPC_MESSAGE_PUT_INT32 (n_ops)
);
LOG ("client: dispatching next async call: %d\n", n_ops);
n_ops--;
jsonrpc_client_call_async (client,
"some/operation",
params,
NULL,
client_call_cb,
NULL);
return G_SOURCE_REMOVE;
}
gint
main (gint argc,
gchar *argv[])
{
g_autoptr(JsonrpcClient) client = NULL;
g_autoptr(JsonrpcServer) server = NULL;
g_autoptr(GIOStream) client_stream = NULL;
g_autoptr(GIOStream) server_stream = NULL;
gint pair1[2];
gint pair2[2];
signal (SIGPIPE, SIG_IGN);
main_loop = g_main_loop_new (NULL, FALSE);
n_ops = 1000;
/*
* The goal here is to create a server and a client and submit a large number
* of replies between them. At some point the server will "fail" by closing
* the stream to ensure that the client handles things properly.
*/
g_assert_cmpint (0, ==, pipe (pair1));
g_assert_cmpint (0, ==, pipe (pair2));
client_stream = create_stream (pair1[0], pair2[1]);
server_stream = create_stream (pair2[0], pair1[1]);
client = jsonrpc_client_new (client_stream);
server = jsonrpc_server_new ();
g_signal_connect (server,
"handle-call",
G_CALLBACK (server_handle_call_cb),
NULL);
g_signal_connect (server,
"notification",
G_CALLBACK (server_notification_cb),
NULL);
jsonrpc_server_accept_io_stream (server, server_stream);
g_timeout_add_full (0, 0, begin_next_op_source, g_object_ref (client), g_object_unref);
g_main_loop_run (main_loop);
g_main_loop_unref (main_loop);
return 0;
}
|