Changes between Version 11 and Version 12 of BossaReference
- Timestamp:
- Jul 30, 2008, 10:14:08 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BossaReference
v11 v12 4 4 * A Bossa project has one or more '''applications'''. 5 5 * A application has a dynamic set of '''jobs'''. 6 * An application has a dynamic set of '''batches''' , which are used to group jobs.7 * Each job has a set of '''job instances''' , in progress or completed.6 * An application has a dynamic set of '''batches''' (groups of jobs). 7 * Each job has a set of '''job instances'''. 8 8 * A '''user''' is a person who volunteers to perform jobs. 9 9 10 Each of these is represented by atable in a MySQL database.10 Each has a corresponding table in a MySQL database. 11 11 12 Each application has an associated "time estimate" - shown to user - and13 "time limit";if an instance is not completed within the time limit,12 Each application has an associated "time estimate" and "time limit"; 13 if an instance is not completed within the time limit, 14 14 is is considered "timed out". 15 15 … … 17 17 These are jobs for which the answer is known in advance; 18 18 their purpose is to estimate the accuracy of each user. 19 Each application has a '''calibration job fraction''' ;20 th is is the probability with which calibration jobs are assigned.19 Each application has a '''calibration job fraction''': 20 the probability with which calibration jobs are assigned. 21 21 22 22 Each job has a '''state''', one of: … … 34 34 Jobs are assigned to users in order of decreasing priority. 35 35 36 Each job, job instance, and user has a n associated '''appdata''' - a PHP structure36 Each job, job instance, and user has associated '''opaque data''' - a PHP structure 37 37 whose contents are determined by the project, not by Bossa. 38 38 These structures are stored in the database. 39 39 40 For jobs, the appdata typically contains the information needed to display40 For jobs, the opaque data typically contains the information needed to display 41 41 the job to a user - e.g., the name of an image file. 42 42 For calibration jobs, it would also contain the correct answer. 43 43 44 For instances, the appdata typically contains the user's response to the job.44 For instances, the opaque data typically contains the user's response to the job. 45 45 46 For users, the appdata typically contains a representation of the46 For users, the opaque data typically contains a representation of the 47 47 user's "skill", possibly including: 48 48 … … 51 51 * their performance based on validation 52 52 53 If a project has multiple applications, it should keepseparate54 data for each application s.53 If a project has multiple applications, it could contain separate 54 data for each application. 55 55 56 For some applications it is desirable to group users into discrete '''levels''', 57 with each level performing a variant of the job. 58 The level of a user is represented as an integer in a fixed range. 56 For some applications it is desirable to group users into '''levels''' (0, 1, ...). 57 For example, level 0 might be average users, and level 1, expert users. 59 58 60 When levels are used, each job has not a single priority, 61 but rather a vector of priorities, one per level. 59 When levels are used, each job has a vector of priorities, one per level. 62 60 Jobs are assigned to a particular user in order of decreasing 63 61 priority for that user's level. 64 62 65 == API for job creation==63 == Job creation API == 66 64 67 65 {{{ … … 82 80 Returns true on success. 83 81 84 == Applicationfunctions ==82 == Callback functions == 85 83 86 84 Each application must define a set of functions, listed below. … … 129 127 }}} 130 128 131 Return a string summarizing the appdata for an instance.129 Return a string summarizing the opaque data for an instance. 132 130 133 131 {{{ … … 135 133 }}} 136 134 137 Return a string summarizing the appdata for a user.135 Return a string summarizing the opaque data for a user. 138 136 139 == API for application functions==137 == Bossa API == 140 138 141 139 The interface of "job" objects is 142 140 143 141 {{{ 144 mixed get_ info()142 mixed get_opaque_data() 145 143 array get_instances() 144 // return array of all instances 146 145 array get_finished_instances() 146 // return array of finished instances 147 147 bool set_priority(float $priority [int $level]} 148 bool update_state(int $state) 148 // set priority for the given level (default level is zero) 149 bool set_state(int $state) 149 150 }}} 150 151 … … 152 153 153 154 {{{ 154 bool set_priority(float $priority) 155 bool update_info(mixed $app_data) 155 bool set_opaque_data(mixed $data) 156 mixed get_opaque_data() 157 object get_user() 158 // return user to whom this instance was issued 156 159 }}} 157 160 … … 160 163 161 164 {{{ 162 mixed get_ info()163 bool update_info(mixed $app_data)165 mixed get_opaque_data() 166 bool set_opaque_data(mixed $data) 164 167 bool set_level(int $level) 165 168 }}}