qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Bishara AbuHattoum <bishara@daynix.com>
To: qemu-devel@nongnu.org, Michael Roth <mdroth@linux.vnet.ibm.com>
Cc: Yan Vugenfirer <yan@daynix.com>, Sameeh Jubran <sameeh@daynix.com>
Subject: [Qemu-devel] [PATCH v2 3/7] qga: move w32 service handling out of run_agent()
Date: Sun,  7 Oct 2018 14:02:19 +0300	[thread overview]
Message-ID: <20181007110223.129692-4-bishara@daynix.com> (raw)
In-Reply-To: <20181007110223.129692-1-bishara@daynix.com>

From: Michael Roth <mdroth@linux.vnet.ibm.com>

Eventually we want a w32 service to be able to restart the qga main
loop from within service_main(). To allow for this we move service
handling out of run_agent() such that service_main() calls
run_agent() instead of the reverse.

Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Bishara AbuHattoum <bishara@daynix.com>
---
 qga/main.c | 26 +++++++++++++++-----------
 1 file changed, 15 insertions(+), 11 deletions(-)

diff --git a/qga/main.c b/qga/main.c
index 9f4dc0b2c5..23a0a46b84 100644
--- a/qga/main.c
+++ b/qga/main.c
@@ -136,6 +136,7 @@ DWORD WINAPI service_ctrl_handler(DWORD ctrl, DWORD type, LPVOID data,
                                   LPVOID ctx);
 VOID WINAPI service_main(DWORD argc, TCHAR *argv[]);
 #endif
+static int run_agent(GAState *s);
 
 static void
 init_dfl_pathnames(void)
@@ -729,7 +730,7 @@ VOID WINAPI service_main(DWORD argc, TCHAR *argv[])
     service->status.dwWaitHint = 0;
     SetServiceStatus(service->status_handle, &service->status);
 
-    g_main_loop_run(ga_state->main_loop);
+    run_agent(ga_state);
 
     service->status.dwCurrentState = SERVICE_STOPPED;
     SetServiceStatus(service->status_handle, &service->status);
@@ -1338,17 +1339,8 @@ static int run_agent(GAState *s)
         g_critical("failed to initialize guest agent channel");
         return EXIT_FAILURE;
     }
-#ifndef _WIN32
+
     g_main_loop_run(ga_state->main_loop);
-#else
-    if (config->daemonize) {
-        SERVICE_TABLE_ENTRY service_table[] = {
-            { (char *)QGA_SERVICE_NAME, service_main }, { NULL, NULL } };
-        StartServiceCtrlDispatcher(service_table);
-    } else {
-        g_main_loop_run(ga_state->main_loop);
-    }
-#endif
 
     return EXIT_SUCCESS;
 }
@@ -1434,7 +1426,19 @@ int main(int argc, char **argv)
         g_critical("error initializing guest agent");
         goto end;
     }
+
+#ifdef _WIN32
+    if (config->daemonize) {
+        SERVICE_TABLE_ENTRY service_table[] = {
+            { (char *)QGA_SERVICE_NAME, service_main }, { NULL, NULL } };
+        StartServiceCtrlDispatcher(service_table);
+    } else {
+        ret = run_agent(s);
+    }
+#else
     ret = run_agent(s);
+#endif
+
     cleanup_agent(s);
 
 end:
-- 
2.17.0

  parent reply	other threads:[~2018-10-07 11:02 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-07 11:02 [Qemu-devel] [PATCH v2 0/7] qga: add support for re-opening channel on error Bishara AbuHattoum
2018-10-07 11:02 ` [Qemu-devel] [PATCH v2 1/7] qga: group agent init/cleanup init separate routines Bishara AbuHattoum
2018-10-07 11:02 ` [Qemu-devel] [PATCH v2 2/7] qga: hang GAConfig/socket_activation off of GAState global Bishara AbuHattoum
2018-10-07 11:02 ` Bishara AbuHattoum [this message]
2018-10-07 11:02 ` [Qemu-devel] [PATCH v2 4/7] qga: add --retry-path option for re-initializing channel on failure Bishara AbuHattoum
2018-10-07 11:02 ` [Qemu-devel] [PATCH v2 5/7] qga-win: install service with --retry-path set by default Bishara AbuHattoum
2018-10-07 11:02 ` [Qemu-devel] [PATCH v2 6/7] qga-win: report specific error when failing to open channel Bishara AbuHattoum
2018-10-07 11:02 ` [Qemu-devel] [PATCH v2 7/7] qga-win: changing --retry-path option behavior Bishara AbuHattoum
2018-10-30 14:32 ` [Qemu-devel] [PATCH v2 0/7] qga: add support for re-opening channel on error Michael Roth

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=20181007110223.129692-4-bishara@daynix.com \
    --to=bishara@daynix.com \
    --cc=mdroth@linux.vnet.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=sameeh@daynix.com \
    --cc=yan@daynix.com \
    /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).