From: Eric Blake <eblake@redhat.com>
To: qemu-devel@nongnu.org
Cc: armbru@redhat.com, pbonzini@redhat.com
Subject: [Qemu-devel] [PATCH v6 10/29] libqtest: Topologically sort functions
Date: Fri, 1 Sep 2017 13:03:21 -0500 [thread overview]
Message-ID: <20170901180340.30009-11-eblake@redhat.com> (raw)
In-Reply-To: <20170901180340.30009-1-eblake@redhat.com>
Put static functions prior to public ones, in part so that
improvements to qtest_start() can benefit from the static
helpers without needing forward references. Code motion, with
no semantic change.
Signed-off-by: Eric Blake <eblake@redhat.com>
---
tests/libqtest.c | 263 +++++++++++++++++++++++++++----------------------------
1 file changed, 131 insertions(+), 132 deletions(-)
diff --git a/tests/libqtest.c b/tests/libqtest.c
index 438a22678d..5d16351e24 100644
--- a/tests/libqtest.c
+++ b/tests/libqtest.c
@@ -49,7 +49,6 @@ static struct sigaction sigact_old;
g_assert_cmpint(ret, !=, -1); \
} while (0)
-static int qtest_query_target_endianness(QTestState *s);
static int init_socket(const char *socket_path)
{
@@ -128,6 +127,137 @@ static void setup_sigabrt_handler(void)
sigaction(SIGABRT, &sigact, &sigact_old);
}
+static void socket_send(int fd, const char *buf, ssize_t size)
+{
+ size_t offset;
+
+ if (size < 0) {
+ size = strlen(buf);
+ }
+ offset = 0;
+ while (offset < size) {
+ ssize_t len;
+
+ len = write(fd, buf + offset, size - offset);
+ if (len == -1 && errno == EINTR) {
+ continue;
+ }
+
+ g_assert_no_errno(len);
+ g_assert_cmpint(len, >, 0);
+
+ offset += len;
+ }
+}
+
+static void socket_sendf(int fd, const char *fmt, va_list ap)
+{
+ gchar *str = g_strdup_vprintf(fmt, ap);
+
+ socket_send(fd, str, -1);
+ g_free(str);
+}
+
+static void GCC_FMT_ATTR(2, 3) qtest_sendf(QTestState *s, const char *fmt, ...)
+{
+ va_list ap;
+
+ va_start(ap, fmt);
+ socket_sendf(s->fd, fmt, ap);
+ va_end(ap);
+}
+
+static GString *qtest_recv_line(QTestState *s)
+{
+ GString *line;
+ size_t offset;
+ char *eol;
+
+ while ((eol = strchr(s->rx->str, '\n')) == NULL) {
+ ssize_t len;
+ char buffer[1024];
+
+ len = read(s->fd, buffer, sizeof(buffer));
+ if (len == -1 && errno == EINTR) {
+ continue;
+ }
+
+ if (len == -1 || len == 0) {
+ fprintf(stderr, "Broken pipe\n");
+ exit(1);
+ }
+
+ g_string_append_len(s->rx, buffer, len);
+ }
+
+ offset = eol - s->rx->str;
+ line = g_string_new_len(s->rx->str, offset);
+ g_string_erase(s->rx, 0, offset + 1);
+
+ return line;
+}
+
+static gchar **qtest_rsp(QTestState *s, int expected_args)
+{
+ GString *line;
+ gchar **words;
+ int i;
+
+redo:
+ line = qtest_recv_line(s);
+ words = g_strsplit(line->str, " ", 0);
+ g_string_free(line, TRUE);
+
+ if (strcmp(words[0], "IRQ") == 0) {
+ long irq;
+ int ret;
+
+ g_assert(words[1] != NULL);
+ g_assert(words[2] != NULL);
+
+ ret = qemu_strtol(words[2], NULL, 0, &irq);
+ g_assert(!ret);
+ g_assert_cmpint(irq, >=, 0);
+ g_assert_cmpint(irq, <, MAX_IRQ);
+
+ if (strcmp(words[1], "raise") == 0) {
+ s->irq_level[irq] = true;
+ } else {
+ s->irq_level[irq] = false;
+ }
+
+ g_strfreev(words);
+ goto redo;
+ }
+
+ g_assert(words[0] != NULL);
+ g_assert_cmpstr(words[0], ==, "OK");
+
+ if (expected_args) {
+ for (i = 0; i < expected_args; i++) {
+ g_assert(words[i] != NULL);
+ }
+ } else {
+ g_strfreev(words);
+ }
+
+ return words;
+}
+
+static int qtest_query_target_endianness(QTestState *s)
+{
+ gchar **args;
+ int big_endian;
+
+ qtest_sendf(s, "endianness\n");
+ args = qtest_rsp(s, 1);
+ g_assert(strcmp(args[1], "big") == 0 || strcmp(args[1], "little") == 0);
+ big_endian = strcmp(args[1], "big") == 0;
+ g_strfreev(args);
+
+ return big_endian;
+}
+
static void cleanup_sigabrt_handler(void)
{
sigaction(SIGABRT, &sigact_old, NULL);
@@ -252,137 +382,6 @@ void qtest_quit(QTestState *s)
g_free(s);
}
-static void socket_send(int fd, const char *buf, ssize_t size)
-{
- size_t offset;
-
- if (size < 0) {
- size = strlen(buf);
- }
- offset = 0;
- while (offset < size) {
- ssize_t len;
-
- len = write(fd, buf + offset, size - offset);
- if (len == -1 && errno == EINTR) {
- continue;
- }
-
- g_assert_no_errno(len);
- g_assert_cmpint(len, >, 0);
-
- offset += len;
- }
-}
-
-static void socket_sendf(int fd, const char *fmt, va_list ap)
-{
- gchar *str = g_strdup_vprintf(fmt, ap);
-
- socket_send(fd, str, -1);
- g_free(str);
-}
-
-static void GCC_FMT_ATTR(2, 3) qtest_sendf(QTestState *s, const char *fmt, ...)
-{
- va_list ap;
-
- va_start(ap, fmt);
- socket_sendf(s->fd, fmt, ap);
- va_end(ap);
-}
-
-static GString *qtest_recv_line(QTestState *s)
-{
- GString *line;
- size_t offset;
- char *eol;
-
- while ((eol = strchr(s->rx->str, '\n')) == NULL) {
- ssize_t len;
- char buffer[1024];
-
- len = read(s->fd, buffer, sizeof(buffer));
- if (len == -1 && errno == EINTR) {
- continue;
- }
-
- if (len == -1 || len == 0) {
- fprintf(stderr, "Broken pipe\n");
- exit(1);
- }
-
- g_string_append_len(s->rx, buffer, len);
- }
-
- offset = eol - s->rx->str;
- line = g_string_new_len(s->rx->str, offset);
- g_string_erase(s->rx, 0, offset + 1);
-
- return line;
-}
-
-static gchar **qtest_rsp(QTestState *s, int expected_args)
-{
- GString *line;
- gchar **words;
- int i;
-
-redo:
- line = qtest_recv_line(s);
- words = g_strsplit(line->str, " ", 0);
- g_string_free(line, TRUE);
-
- if (strcmp(words[0], "IRQ") == 0) {
- long irq;
- int ret;
-
- g_assert(words[1] != NULL);
- g_assert(words[2] != NULL);
-
- ret = qemu_strtol(words[2], NULL, 0, &irq);
- g_assert(!ret);
- g_assert_cmpint(irq, >=, 0);
- g_assert_cmpint(irq, <, MAX_IRQ);
-
- if (strcmp(words[1], "raise") == 0) {
- s->irq_level[irq] = true;
- } else {
- s->irq_level[irq] = false;
- }
-
- g_strfreev(words);
- goto redo;
- }
-
- g_assert(words[0] != NULL);
- g_assert_cmpstr(words[0], ==, "OK");
-
- if (expected_args) {
- for (i = 0; i < expected_args; i++) {
- g_assert(words[i] != NULL);
- }
- } else {
- g_strfreev(words);
- }
-
- return words;
-}
-
-static int qtest_query_target_endianness(QTestState *s)
-{
- gchar **args;
- int big_endian;
-
- qtest_sendf(s, "endianness\n");
- args = qtest_rsp(s, 1);
- g_assert(strcmp(args[1], "big") == 0 || strcmp(args[1], "little") == 0);
- big_endian = strcmp(args[1], "big") == 0;
- g_strfreev(args);
-
- return big_endian;
-}
-
typedef struct {
JSONMessageParser parser;
QDict *response;
--
2.13.5
next prev parent reply other threads:[~2017-09-01 18:04 UTC|newest]
Thread overview: 99+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-01 18:03 [Qemu-devel] [PATCH v6 00/29] Preliminary libqtest cleanups Eric Blake
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 01/29] tests: Improve .gitignore for tests/multiboot Eric Blake
2017-09-04 14:03 ` Thomas Huth
2017-09-06 19:33 ` Eric Blake
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 02/29] tests: Sort .gitignore Eric Blake
2017-09-05 7:20 ` Thomas Huth
2017-09-05 9:53 ` Markus Armbruster
2017-09-05 9:58 ` Thomas Huth
2017-09-05 10:10 ` Daniel P. Berrange
2017-09-05 10:44 ` Thomas Huth
2017-09-05 14:22 ` Eric Blake
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 03/29] test-qga: Kill broken and dead QGA_TEST_SIDE_EFFECTING code Eric Blake
2017-09-05 7:43 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 04/29] qtest: Don't perform side effects inside assertion Eric Blake
2017-09-04 14:06 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 05/29] numa-test: Use hmp() Eric Blake
2017-09-05 7:44 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 06/29] tests: Clean up wait for event Eric Blake
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 07/29] libqtest: Remove dead qtest_instances variable Eric Blake
2017-09-04 17:02 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 08/29] libqtest: Let socket_send() compute length Eric Blake
2017-09-05 8:12 ` Thomas Huth
2017-09-05 9:54 ` Markus Armbruster
2017-09-05 22:20 ` Eric Blake
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 09/29] libqtest: Use qemu_strtoul() Eric Blake
2017-09-05 9:11 ` Thomas Huth
2017-09-01 18:03 ` Eric Blake [this message]
2017-09-05 9:22 ` [Qemu-devel] [PATCH v6 10/29] libqtest: Topologically sort functions Thomas Huth
2017-09-05 10:01 ` Markus Armbruster
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 11/29] libqtest: Inline qtest_query_target_endianness() Eric Blake
2017-09-02 0:10 ` Philippe Mathieu-Daudé
2017-09-05 9:25 ` Thomas Huth
2017-09-06 20:12 ` Eric Blake
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 12/29] libqos: Track QTestState with QPCIBus Eric Blake
2017-09-01 19:20 ` Philippe Mathieu-Daudé
2017-09-06 20:48 ` Eric Blake
2017-09-01 23:06 ` John Snow
2017-09-05 9:36 ` Thomas Huth
2017-09-06 21:00 ` Eric Blake
2017-09-07 5:35 ` Thomas Huth
2017-09-07 13:32 ` Eric Blake
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 13/29] libqos: Use explicit QTestState for pci operations Eric Blake
2017-09-01 19:22 ` Philippe Mathieu-Daudé
2017-09-05 10:03 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 14/29] libqos: Use explicit QTestState for fw_cfg operations Eric Blake
2017-09-01 19:21 ` [Qemu-devel] [PATCH v6 14.5/29] fixup! " Eric Blake
2017-09-01 19:24 ` [Qemu-devel] [PATCH v6 14/29] " Philippe Mathieu-Daudé
2017-09-01 23:06 ` John Snow
2017-09-05 10:12 ` Thomas Huth
2017-09-05 11:03 ` Thomas Huth
2017-09-06 21:10 ` Eric Blake
2017-09-06 21:25 ` Eric Blake
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 15/29] libqos: Use explicit QTestState for rtas operations Eric Blake
2017-09-05 10:16 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 16/29] libqos: Use explicit QTestState for virtio operations Eric Blake
2017-09-05 10:26 ` Thomas Huth
2017-09-05 12:43 ` [Qemu-devel] [Qemu-block] " Paolo Bonzini
2017-09-06 21:42 ` Eric Blake
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 17/29] ahci-test: Drop dependence on global_qtest Eric Blake
2017-09-01 23:11 ` John Snow
2017-09-05 10:32 ` Thomas Huth
2017-09-07 20:19 ` Eric Blake
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 18/29] ivshmem-test: " Eric Blake
2017-09-05 10:36 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 19/29] postcopy-test: " Eric Blake
2017-09-05 10:41 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 20/29] vhost-user-test: " Eric Blake
2017-09-05 10:49 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 21/29] qmp-test: " Eric Blake
2017-09-05 7:11 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 22/29] tests/boot-sector: " Eric Blake
2017-09-05 7:04 ` Thomas Huth
2017-09-08 12:48 ` Michael S. Tsirkin
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 23/29] tests/acpi-utils: " Eric Blake
2017-09-05 10:57 ` Thomas Huth
2017-09-08 12:48 ` Michael S. Tsirkin
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 24/29] bios-tables-test: " Eric Blake
2017-09-05 10:59 ` Thomas Huth
2017-09-07 21:30 ` Eric Blake
2017-09-08 12:49 ` Michael S. Tsirkin
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 25/29] wdt_ib700-test: " Eric Blake
2017-09-05 11:01 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 26/29] fw_cfg-test: " Eric Blake
2017-09-02 0:07 ` Philippe Mathieu-Daudé
2017-09-05 11:05 ` Thomas Huth
2017-09-06 21:45 ` Eric Blake
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 27/29] libqtest: Make qtest_init() accept format string Eric Blake
2017-09-05 12:46 ` Thomas Huth
2017-09-07 18:00 ` Eric Blake
2017-09-07 19:07 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 28/29] libqtest: Remove qtest_start() and qtest_end() shortcuts Eric Blake
2017-09-01 23:16 ` John Snow
2017-09-05 13:06 ` Thomas Huth
2017-09-01 18:03 ` [Qemu-devel] [PATCH v6 29/29] libqtest: Rename qtest_init() to qtest_start() Eric Blake
2017-09-01 23:17 ` John Snow
2017-09-05 13:10 ` Thomas Huth
2017-09-07 2:57 ` Eric Blake
2017-09-01 18:31 ` [Qemu-devel] [PATCH v6 00/29] Preliminary libqtest cleanups no-reply
2017-09-01 18:44 ` Eric Blake
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170901180340.30009-11-eblake@redhat.com \
--to=eblake@redhat.com \
--cc=armbru@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).