Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Unified Diff: testing/legion/client_rpc_methods.py

Issue 890773003: Adding the initial code for Omnibot multi-machine support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed the OTP format to be more descriptive Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: testing/legion/client_rpc_methods.py
diff --git a/testing/legion/client_rpc_methods.py b/testing/legion/client_rpc_methods.py
new file mode 100644
index 0000000000000000000000000000000000000000..39f7437219573ae8a598b846662dfb19a46dcdb7
--- /dev/null
+++ b/testing/legion/client_rpc_methods.py
@@ -0,0 +1,42 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Defines the client RPC methods."""
+
+import logging
+import subprocess
+import threading
+
+
+class RPCMethods(object):
+ """Class exposing RPC methods."""
+
+ def __init__(self, server):
+ self.server = server
+
+ def Echo(self, message):
+ """Simple RPC method to print and return a message."""
+ logging.info('Echoing %s', message)
+ return 'echo ' + message
M-A Ruel 2015/02/03 18:50:24 I'd recommend return 'echo %s' % message in case s
Mike Meade 2015/02/03 19:06:28 Done.
+
+ def Subprocess(self, cmd):
+ """Run the commands in a subprocess.
+
+ Returns:
+ (returncode, stdout, stderr).
+ """
+ p = subprocess.Popen(cmd, stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE)
+ stdout, stderr = p.communicate()
+ return (p.returncode, stdout, stderr)
+
+ def Quit(self):
+ """Call server.shutdown in another thread.
+
+ This is needed because server.shutdown waits for the server to actually
+ quit. However the server cannot shutdown until it completes handling this
+ call. Calling this in the same thread results in a deadlock.
+ """
+ t = threading.Thread(target=self.server.shutdown)
+ t.start()

Powered by Google App Engine
This is Rietveld 408576698