Changes between Version 22 and Version 23 of BossaExampleOne
- Timestamp:
- Jul 30, 2008, 10:51:30 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BossaExampleOne
v22 v23 19 19 * '''ops/bossa_example_make_files.php''': a script that creates image files. 20 20 * '''ops/bossa_example_make_jobs.php''': a script that creates jobs. 21 * '''inc/bossa_example.inc''': the display and policyfunctions.21 * '''inc/bossa_example.inc''': the application's callback functions. 22 22 23 23 We'll go through these scripts and explain how they work. … … 50 50 and collects them into a "batch". 51 51 52 == Display and policyfunctions ==52 == Callback functions == 53 53 54 54 The file ([source:/trunk/boinc/html/inc/bossa_example.inc html/inc/bossa_example.inc]) 55 contains display and policy functions. 55 contains the application's callback functions. 56 56 57 The display function is: 57 58 {{{ 58 59 9 function job_show($job, $inst, $user) { 59 10 $info = $job->get_ info($job);60 10 $info = $job->get_opaque_data($job); 60 61 11 $path = $info->path; 61 62 12 page_head("Find the Ellipse"); … … 75 76 }}} 76 77 77 It calls a Bossa API function to get the job's opaque data (line 9).78 This calls a Bossa API function to get the job's opaque data (line 10). 78 79 Then it generates a web page containing the image 79 80 within a form, so that clicking on the image (or on the None button) 80 81 will invoke '''bossa_job_finished.php'''. 81 82 The policy functions are as follows.83 82 84 83 {{{ … … 89 88 90 89 This is called when a job is issued. 91 It sets the job's priority to zero so that no further instances will be issued92 (unless this one times) out.90 It sets the job's priority to zero so that no other instances will be issued 91 until further notice. 93 92 94 93 {{{ … … 106 105 }}} 107 106 108 This is called when a jobinstance is finished.107 This is called when an instance is finished. 109 108 It gets the user's response to the job, 110 and stores it in the instance's app data field.109 and stores it as the instance's opaque data. 111 110 112 111 {{{ … … 120 119 121 120 The remaining functions return short strings 122 that s how the appdata for jobs, instances, and users on the Admin page:121 that summarize the opaque data for jobs, instances, and users on the Admin page: 123 122 {{{ 124 123 function job_summary($job) { 125 $info = $job->get_ info();124 $info = $job->get_opaque_data(); 126 125 return "<a href=".URL_BASE."$info->path>View image</a>"; 127 126 } 128 127 129 128 function instance_summary($inst) { 130 $info = $inst->get_ info();129 $info = $inst->get_opaque_data(); 131 130 if ($info->have_ellipse) { 132 131 return "($info->cx, $info->cy)";