Skip to content

Commit 1599035

Browse files
committed
add output_size() method for job handles
1 parent 5f6b5a3 commit 1599035

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

boaapi/boa_client.py

+14
Original file line numberDiff line numberDiff line change
@@ -394,3 +394,17 @@ def output(self, job):
394394
return self.server.job.output(job.id)
395395
except xmlrpc.client.Fault as e:
396396
raise BoaException(e).with_traceback(e.__traceback__)
397+
398+
def output_size(self, job):
399+
"""Return the output size for this job, if it finished successfully and has an output.
400+
401+
Raises:
402+
BoaException: if theres an issue reading from the server
403+
"""
404+
self.ensure_logged_in()
405+
try:
406+
if job.exec_status != "Finished":
407+
return "Job is currently running"
408+
return self.server.job.outputsize(job.id)
409+
except xmlrpc.client.Fault as e:
410+
raise BoaException(e).with_traceback(e.__traceback__)

boaapi/job_handle.py

+4
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ def output(self):
8585
"""Return the output for this job, if it finished successfully and has output."""
8686
return self.client.output(self)
8787

88+
def output_size(self):
89+
"""Return the output size for this job, if it finished successfully and has output."""
90+
return self.client.output_size(self)
91+
8892
def refresh(self):
8993
"""Refreshes the cached data for this job."""
9094
job = self.client.get_job(self.id)

0 commit comments

Comments
 (0)