1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
# This file is part of BOINC.
# http://boinc.berkeley.edu
# Copyright (C) 2016 University of California
#
# BOINC is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# BOINC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with BOINC. If not, see <http://www.gnu.org/licenses/>.
# Python bindings of the remote job submission and file management APIs
import urllib
import copy
import xml.etree.ElementTree as ET
import requests
# you'll need to "yip install requests"
import hashlib
# describes an input file
#
class FILE_DESC:
def __init__(self):
return
def to_xml(self):
xml = ('<input_file>\n'
'<mode>%s</mode>\n'
) %(self.mode)
if self.mode == 'remote':
xml += ('<url>%s</url>\n'
'<nbytes>%f</nbytes>\n'
'<md5>%s</md5>\n'
) %(self.url, self.nbytes, self.md5)
else:
xml += '<source>%s</source>\n' %(self.source)
xml += '</input_file>\n'
return xml
# describes a job
#
class JOB_DESC:
def __init__(self):
return
def to_xml(self):
xml = '<job>\n'
if hasattr(self, 'name'):
xml += '<name>%s</name>\n'%self.name
if hasattr(self, 'rsc_fpops_est'):
xml += '<rsc_fpops_est>%f</rsc_fpops_est>\n'%self.rsc_fpops_est
if hasattr(self, 'command_line'):
xml += '<command_line>%s</command_line>\n'%self.command_line
if hasattr(self, 'input_template'):
xml += '%s\n'%self.input_template
if hasattr(self, 'output_template'):
xml += '%s\n'%self.output_template
if hasattr(self, 'files'):
for file in self.files:
xml += file.to_xml()
xml += '</job>\n'
return xml
# describes a batch for submit() or estimate()
#
class BATCH_DESC:
def __init__(self):
return
def to_xml(self, op):
xml = ('<%s>\n'
'<authenticator>%s</authenticator>\n'
'<batch>\n'
'<app_name>%s</app_name>\n'
) %(op, self.authenticator, self.app_name)
if hasattr(self, 'batch_id'):
xml += '<batch_id>%s</batch_id>\n'%(self.batch_id)
elif hasattr(self, 'batch_name'):
xml += '<batch_name>%s</batch_name>\n'%(self.batch_name)
if hasattr(self, 'app_version_num'):
xml += '<app_version_num>%d</app_version_num>\n'%(self.app_version_num)
for job in self.jobs:
xml += job.to_xml()
xml += '</batch>\n</%s>\n' %(op)
return xml
class CREATE_BATCH_REQ:
def __init__(self):
return
def to_xml(self):
xml = ('<create_batch>\n'
'<authenticator>%s</authenticator>\n'
'<app_name>%s</app_name>\n'
'<batch_name>%s</batch_name>\n'
'<expire_time>%f</expire_time>\n'
'</create_batch>\n') %(self.authenticator, self.app_name, self.batch_name, self.expire_time)
return xml
# a generic request
#
class REQUEST:
def __init__(self):
return
def do_http_post(req, project_url, handler='submit_rpc_handler.php'):
#print req
url = project_url + handler
params = urllib.urlencode({'request': req})
f = urllib.urlopen(url, params)
reply = f.read()
#print "REPLY:", reply
return ET.fromstring(reply)
########### API FUNCTIONS START HERE ###############
def abort_batch(req):
req_xml = ('<abort_batch>\n'
'<authenticator>%s</authenticator>\n'
'<batch_id>%s</batch_id>\n'
'</abort_batch>\n'
) %(req.authenticator, req.batch_id)
return do_http_post(req_xml, req.project)
def abort_jobs(req):
req_xml = ('<abort_jobs>\n'
'<authenticator>%s</authenticator>\n'
) %(req.authenticator)
for job in req.jobs:
req_xml += '<job_name>%s</job_name>\n'%(job)
req_xml += '</abort_jobs>\n'
return do_http_post(req_xml, req.project)
# req is a CREATE_BATCH_REQ
#
def create_batch(req):
return do_http_post(req.to_xml(), req.project)
def estimate_batch(req):
return do_http_post(req.to_xml('estimate_batch'), req.project)
def query_batch(req):
req_xml = ('<query_batch>\n'
'<authenticator>%s</authenticator>\n'
'<batch_id>%s</batch_id>\n'
'<get_cpu_time>%d</get_cpu_time>\n'
'<get_job_details>%d</get_job_details>\n'
'</query_batch>\n'
) %(req.authenticator, req.batch_id, 1 if req.get_cpu_time else 0, 1 if req.get_job_details else 0)
return do_http_post(req_xml, req.project)
def query_batches(req):
req_xml = ('<query_batches>\n'
'<authenticator>%s</authenticator>\n'
'<get_cpu_time>%d</get_cpu_time>\n'
'</query_batches>\n'
) %(req.authenticator, 1 if req.get_cpu_time else 0)
return do_http_post(req_xml, req.project)
def query_completed_job(req):
req_xml = ('<query_completed_job>\n'
'<authenticator>%s</authenticator>\n'
'<job_name>%s</job_name>\n'
'</query_completed_job>\n'
) %(req.authenticator, req.job_name)
return do_http_post(req_xml, req.project)
def query_job(req):
req_xml = ('<query_job>\n'
'<authenticator>%s</authenticator>\n'
'<job_id>%s</job_id>\n'
'</query_job>\n'
) %(req.authenticator, req.job_id)
return do_http_post(req_xml, req.project)
def get_output_file(req):
auth_str = hashlib.md5(req.authenticator+req.instance_name).hexdigest()
name = req.instance_name
file_num = req.file_num
return req.project+"/get_output.php?cmd=result_file&result_name=%s&file_num=%s&auth_str=%s"%(name, file_num, auth_str)
def get_output_files(req):
auth_str = hashlib.md5(req.authenticator+str(req.batch_id)).hexdigest()
return req.project+"/get_output.php?cmd=batch_files&batch_id=%s&auth_str=%s"%(req.batch_id, auth_str)
def retire_batch(req):
req_xml = ('<retire_batch>\n'
'<authenticator>%s</authenticator>\n'
'<batch_id>%s</batch_id>\n'
'</retire_batch>\n'
) %(req.authenticator, req.batch_id)
return do_http_post(req_xml, req.project)
def submit_batch(req):
return do_http_post(req.to_xml('submit_batch'), req.project)
# see if reply is error.
# if so print the message and return True
#
def check_error(response):
if response.find('error') is not None:
print 'BOINC server error: ', response.find('error').find('error_msg').text
return True
############ FILE MANAGEMENT API ##############
class QUERY_FILES_REQ:
def __init__(self):
return
def to_xml(self):
xml = ('<query_files>\n'
'<authenticator>%s</authenticator>\n'
'<batch_id>%d</batch_id>\n') %(self.authenticator, self.batch_id)
for name in self.boinc_names:
xml += '<phys_name>%s</phys_name>\n' %(name)
xml += '</query_files>\n'
return xml
class UPLOAD_FILES_REQ:
def __init__(self):
return
def to_xml(self):
xml = ('<upload_files>\n'
'<authenticator>%s</authenticator>\n'
'<batch_id>%d</batch_id>\n') %(self.authenticator, self.batch_id)
for name in self.boinc_names:
xml += '<phys_name>%s</phys_name>\n' %(name)
xml += '</upload_files>\n'
return xml
def query_files(query_req):
reply = do_http_post(query_req.to_xml(), query_req.project, 'job_file.php')
return reply
# This actually does two RPCs:
# query_files() to find what files aren't already on server
# upload_files() to upload them
#
def upload_files(upload_files_req):
query_req = QUERY_FILES_REQ()
query_req.authenticator = upload_files_req.authenticator
query_req.batch_id = upload_files_req.batch_id
query_req.boinc_names = upload_files_req.boinc_names
query_req_xml = query_req.to_xml()
reply = do_http_post(query_req_xml, upload_files_req.project, 'job_file.php')
if reply[0].tag == 'error':
return reply
absent = reply.find('absent_files').findall('file')
#print 'query files succeeded; ',len(absent), ' files need upload'
boinc_names = []
local_names = []
for n in absent:
ind = int(n.text)
boinc_names.append(upload_files_req.boinc_names[ind])
local_names.append(upload_files_req.local_names[ind])
upload_files_req.boinc_names = boinc_names
upload_files_req.local_names = local_names
# make a description of upoad files for "requests"
#
files = []
for i in range(len(boinc_names)):
bn = boinc_names[i]
ln = local_names[i]
upload_name = 'file_%d'%(i)
files.append((upload_name, (bn, open(ln, 'rb'), 'application/octet-stream')))
url = upload_files_req.project + '/job_file.php'
req_xml = upload_files_req.to_xml()
#print req_xml
req = {'request': req_xml}
reply = requests.post(url, data=req, files=files)
#print "reply text: ", reply.text
return ET.fromstring(reply.text)
|