本文整理汇总了Python中jsonrpclib.Server.execute方法的典型用法代码示例。如果您正苦于以下问题:Python Server.execute方法的具体用法?Python Server.execute怎么用?Python Server.execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jsonrpclib.Server
的用法示例。
在下文中一共展示了Server.execute方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Client
# 需要导入模块: from jsonrpclib import Server [as 别名]
# 或者: from jsonrpclib.Server import execute [as 别名]
class Client(object):
def __init__(self, host, port):
super(Client, self).__init__()
self.log = logging.getLogger(self.__class__.__name__)
self.log.addHandler(logging.StreamHandler())
self.log.setLevel(logging.INFO)
self.url = "http://%s:%s" % (host, port)
self.log.info("Connecting to %s" % self.url)
self._server = Server(self.url)
try:
self._server.ping()
except:
raise EnvironmentError("Server unavailable")
self._pdict = {}
self.message = ""
self.monitor = Monitoring(host)
self.monitor.start()
def commit(self, path, message):
"""
Commit before running
:param path: path to svn repository
:param message: a commit message
:return:
"""
curdir = os.getcwd()
self.message = message
os.chdir(path)
subprocess.check_call(["svn", "up"])
subprocess.check_call(["svn", "commit", "-m", message])
os.chdir(curdir)
def set_parameters(self, pdict):
"""
Run parameters
:param pdict:
:return:
"""
self._pdict = pdict
def execute(self, cleanup=True):
"""
Execute the bugger
:return:
"""
res = None
try:
res = self._server.execute(self._pdict, cleanup)
except KeyboardInterrupt:
self.monitor.stop()
server2 = Server(self.url)
server2.kill()
except socket.error:
self.log.error("Server was interrupted")
exit(1)
finally:
self.monitor.stop()
if res is None:
raise ValueError("Run failed")
resstr = "%s\t%s\t %s\t %s\t %s\t %s\t %s" % (str(datetime.datetime.utcnow()), self.message,
self._pdict["cpuRangeVal"], self._pdict["outputDir"],
res["Wallclock"], res["peak"]/1024.**3, res["avg"]/1024**3)
self.log.info("date \t\t\t message \t\t cpu \t outputdir \t time \t peak_mem \t avg_mem")
self.log.info(resstr)
with open(os.path.expanduser("~/result.dat"), "a") as out:
out.write(resstr+"\n")