2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * This file defines the question attempt step class, and a few related classes.
21 * @subpackage questionengine
22 * @copyright 2009 The Open University
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 defined('MOODLE_INTERNAL') ||
die();
31 * Stores one step in a {@link question_attempt}.
33 * The most important attributes of a step are the state, which is one of the
34 * {@link question_state} constants, the fraction, which may be null, or a
35 * number bewteen the attempt's minfraction and 1.0, and the array of submitted
36 * data, about which more later.
38 * A step also tracks the time it was created, and the user responsible for
41 * The submitted data is basically just an array of name => value pairs, with
42 * certain conventions about the to divide the variables into four = two times two
45 * Variables may either belong to the behaviour, in which case the
46 * name starts with a '-', or they may belong to the question type in which case
47 * they name does not start with a '-'.
49 * Second, variables may either be ones that came form the original request, in
50 * which case the name does not start with an _, or they are cached values that
51 * were created during processing, in which case the name does start with an _.
53 * That is, each name will start with one of '', '_'. '-' or '-_'. The remainder
54 * of the name should match the regex [a-z][a-z0-9]*.
56 * These variables can be accessed with {@link get_behaviour_var()} and {@link get_qt_var()},
57 * - to be clear, ->get_behaviour_var('x') gets the variable with name '-x' -
58 * and values whose names start with '_' can be set using {@link set_behaviour_var()}
59 * and {@link set_qt_var()}. There are some other methods like {@link has_behaviour_var()}
60 * to check wether a varaible with a particular name is set, and {@link get_behaviour_data()}
61 * to get all the behaviour data as an associative array.
63 * @copyright 2009 The Open University
64 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
66 class question_attempt_step
{
68 * @var integer if this attempts is stored in the question_attempts table,
74 * @var question_state one of the {@link question_state} constants.
75 * The state after this step.
79 /** @var null|number the fraction (grade on a scale of minfraction .. 1.0) or null. */
80 private $fraction = null;
82 /** @var integer the timestamp when this step was created. */
85 /** @var integer the id of the user resonsible for creating this step. */
88 /** @var array name => value pairs. The submitted data. */
91 /** @var array name => array of {@link stored_file}s. Caches the contents of file areas. */
92 private $files = array();
95 * You should not need to call this constructor in your own code. Steps are
96 * normally created by {@link question_attempt} methods like
97 * {@link question_attempt::process_action()}.
98 * @param array $data the submitted data that defines this step.
99 * @param int $timestamp the time to record for the action. (If not given, use now.)
100 * @param int $userid the user to attribute the aciton to. (If not given, use the current user.)
101 * @param int $existingstepid if this step is going to replace an existing step
102 * (for example, during a regrade) this is the id of the previous step we are replacing.
104 public function __construct($data = array(), $timecreated = null, $userid = null,
105 $existingstepid = null) {
108 if (!is_array($data)) {
109 echo format_backtrace(debug_backtrace());
111 $this->state
= question_state
::$unprocessed;
113 if (is_null($timecreated)) {
114 $this->timecreated
= time();
116 $this->timecreated
= $timecreated;
118 if (is_null($userid)) {
119 $this->userid
= $USER->id
;
121 $this->userid
= $userid;
124 if (!is_null($existingstepid)) {
125 $this->id
= $existingstepid;
130 * @return int|null The id of this step in the database. null if this step
131 * is not stored in the database.
133 public function get_id() {
137 /** @return question_state The state after this step. */
138 public function get_state() {
143 * Set the state. Normally only called by behaviours.
144 * @param question_state $state one of the {@link question_state} constants.
146 public function set_state($state) {
147 $this->state
= $state;
151 * @return null|number the fraction (grade on a scale of minfraction .. 1.0)
152 * or null if this step has not been marked.
154 public function get_fraction() {
155 return $this->fraction
;
159 * Set the fraction. Normally only called by behaviours.
160 * @param null|number $fraction the fraction to set.
162 public function set_fraction($fraction) {
163 $this->fraction
= $fraction;
166 /** @return int the id of the user resonsible for creating this step. */
167 public function get_user_id() {
168 return $this->userid
;
171 /** @return int the timestamp when this step was created. */
172 public function get_timecreated() {
173 return $this->timecreated
;
177 * @param string $name the name of a question type variable to look for in the submitted data.
178 * @return bool whether a variable with this name exists in the question type data.
180 public function has_qt_var($name) {
181 return array_key_exists($name, $this->data
);
185 * @param string $name the name of a question type variable to look for in the submitted data.
186 * @return string the requested variable, or null if the variable is not set.
188 public function get_qt_var($name) {
189 if (!$this->has_qt_var($name)) {
192 return $this->data
[$name];
196 * Set a cached question type variable.
197 * @param string $name the name of the variable to set. Must match _[a-z][a-z0-9]*.
198 * @param string $value the value to set.
200 public function set_qt_var($name, $value) {
201 if ($name[0] != '_') {
202 throw new coding_exception('Cannot set question type data ' . $name .
203 ' on an attempt step. You can only set variables with names begining with _.');
205 $this->data
[$name] = $value;
209 * Get the latest set of files for a particular question type variable of
210 * type question_attempt::PARAM_FILES.
212 * @param string $name the name of the associated variable.
213 * @return array of {@link stored_files}.
215 public function get_qt_files($name, $contextid) {
216 if (array_key_exists($name, $this->files
)) {
217 return $this->files
[$name];
220 if (!$this->has_qt_var($name)) {
221 $this->files
[$name] = array();
225 $fs = get_file_storage();
226 $this->files
[$name] = $fs->get_area_files($contextid, 'question',
227 'response_' . $name, $this->id
, 'sortorder', false);
229 return $this->files
[$name];
233 * Prepare a draft file are for the files belonging the a response variable
236 * @param string $name the variable name the files belong to.
237 * @param int $contextid the id of the context the quba belongs to.
238 * @return int the draft itemid.
240 public function prepare_response_files_draft_itemid($name, $contextid) {
241 list($draftid, $notused) = $this->prepare_response_files_draft_itemid_with_text(
242 $name, $contextid, null);
247 * Prepare a draft file are for the files belonging the a response variable
248 * of this step, while rewriting the URLs in some text.
250 * @param string $name the variable name the files belong to.
251 * @param int $contextid the id of the context the quba belongs to.
252 * @param string $text the text to update the URLs in.
253 * @return array(int, string) the draft itemid and the text with URLs rewritten.
255 public function prepare_response_files_draft_itemid_with_text($name, $contextid, $text) {
256 $draftid = 0; // Will be filled in by file_prepare_draft_area.
257 $newtext = file_prepare_draft_area($draftid, $contextid, 'question',
258 'response_' . $name, $this->id
, null, $text);
259 return array($draftid, $newtext);
263 * Rewrite the @@PLUGINFILE@@ tokens in a response variable from this step
264 * that contains links to file. Normally you should probably call
265 * {@link question_attempt::rewrite_response_pluginfile_urls()} instead of
266 * calling this method directly.
268 * @param string $text the text to update the URLs in.
269 * @param int $contextid the id of the context the quba belongs to.
270 * @param string $name the variable name the files belong to.
271 * @param array $extra extra file path components.
272 * @return string the rewritten text.
274 public function rewrite_response_pluginfile_urls($text, $contextid, $name, $extras) {
275 return question_rewrite_question_urls($text, 'pluginfile.php', $contextid,
276 'question', 'response_' . $name, $extras, $this->id
);
280 * Get all the question type variables.
281 * @param array name => value pairs.
283 public function get_qt_data() {
285 foreach ($this->data
as $name => $value) {
286 if ($name[0] != '-' && $name[0] != ':') {
287 $result[$name] = $value;
294 * @param string $name the name of an behaviour variable to look for in the submitted data.
295 * @return bool whether a variable with this name exists in the question type data.
297 public function has_behaviour_var($name) {
298 return array_key_exists('-' . $name, $this->data
);
302 * @param string $name the name of an behaviour variable to look for in the submitted data.
303 * @return string the requested variable, or null if the variable is not set.
305 public function get_behaviour_var($name) {
306 if (!$this->has_behaviour_var($name)) {
309 return $this->data
['-' . $name];
313 * Set a cached behaviour variable.
314 * @param string $name the name of the variable to set. Must match _[a-z][a-z0-9]*.
315 * @param string $value the value to set.
317 public function set_behaviour_var($name, $value) {
318 if ($name[0] != '_') {
319 throw new coding_exception('Cannot set question type data ' . $name .
320 ' on an attempt step. You can only set variables with names begining with _.');
322 return $this->data
['-' . $name] = $value;
326 * Get all the behaviour variables.
327 * @param array name => value pairs.
329 public function get_behaviour_data() {
331 foreach ($this->data
as $name => $value) {
332 if ($name[0] == '-') {
333 $result[substr($name, 1)] = $value;
340 * Get all the submitted data, but not the cached data. behaviour
341 * variables have the - at the start of their name. This is only really
342 * intended for use by {@link question_attempt::regrade()}, it should not
343 * be considered part of the public API.
344 * @param array name => value pairs.
346 public function get_submitted_data() {
348 foreach ($this->data
as $name => $value) {
349 if ($name[0] == '_' ||
($name[0] == '-' && $name[1] == '_')) {
352 $result[$name] = $value;
358 * Get all the data. behaviour variables have the - at the start of
359 * their name. This is only intended for internal use, for example by
360 * {@link question_engine_data_mapper::insert_question_attempt_step()},
361 * however, it can ocasionally be useful in test code. It should not be
362 * considered part of the public API of this class.
363 * @param array name => value pairs.
365 public function get_all_data() {
370 * Create a question_attempt_step from records loaded from the database.
371 * @param Iterator $records Raw records loaded from the database.
372 * @param int $stepid The id of the records to extract.
373 * @return question_attempt_step The newly constructed question_attempt_step.
375 public static function load_from_records($records, $attemptstepid) {
376 $currentrec = $records->current();
377 while ($currentrec->attemptstepid
!= $attemptstepid) {
379 if (!$records->valid()) {
380 throw new coding_exception('Question attempt step ' . $attemptstepid .
381 ' not found in the database.');
383 $currentrec = $records->current();
386 $record = $currentrec;
388 while ($currentrec && $currentrec->attemptstepid
== $attemptstepid) {
389 if ($currentrec->name
) {
390 $data[$currentrec->name
] = $currentrec->value
;
393 if ($records->valid()) {
394 $currentrec = $records->current();
400 $step = new question_attempt_step_read_only($data, $record->timecreated
, $record->userid
);
401 $step->state
= question_state
::get($record->state
);
402 $step->id
= $record->attemptstepid
;
403 if (!is_null($record->fraction
)) {
404 $step->fraction
= $record->fraction +
0;
412 * A subclass with a bit of additional funcitonality, for pending steps.
414 * @copyright 2010 The Open University
415 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
417 class question_attempt_pending_step
extends question_attempt_step
{
419 protected $newresponsesummary = null;
422 * If as a result of processing this step, the response summary for the
423 * question attempt should changed, you should call this method to set the
425 * @param string $responsesummary the new response summary.
427 public function set_new_response_summary($responsesummary) {
428 $this->newresponsesummary
= $responsesummary;
431 /** @return string the new response summary, if any. */
432 public function get_new_response_summary() {
433 return $this->newresponsesummary
;
436 /** @return string whether this step changes the response summary. */
437 public function response_summary_changed() {
438 return !is_null($this->newresponsesummary
);
444 * A subclass of {@link question_attempt_step} that cannot be modified.
446 * @copyright 2009 The Open University
447 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
449 class question_attempt_step_read_only
extends question_attempt_step
{
450 public function set_state($state) {
451 throw new coding_exception('Cannot modify a question_attempt_step_read_only.');
453 public function set_fraction($fraction) {
454 throw new coding_exception('Cannot modify a question_attempt_step_read_only.');
456 public function set_qt_var($name, $value) {
457 throw new coding_exception('Cannot modify a question_attempt_step_read_only.');
459 public function set_behaviour_var($name, $value) {
460 throw new coding_exception('Cannot modify a question_attempt_step_read_only.');
466 * A null {@link question_attempt_step} returned from
467 * {@link question_attempt::get_last_step()} etc. when a an attempt has just been
468 * created and there is no acutal step.
470 * @copyright 2009 The Open University
471 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
473 class question_null_step
{
474 public function get_state() {
475 return question_state
::$notstarted;
478 public function set_state($state) {
479 throw new coding_exception('This question has not been started.');
482 public function get_fraction() {
489 * This is an adapter class that wraps a {@link question_attempt_step} and
490 * modifies the get/set_*_data methods so that they operate only on the parts
491 * that belong to a particular subquestion, as indicated by an extra prefix.
493 * @copyright 2010 The Open University
494 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
496 class question_attempt_step_subquestion_adapter
extends question_attempt_step
{
497 /** @var question_attempt_step the step we are wrapping. */
499 /** @var string the exta prefix on fields we work with. */
500 protected $extraprefix;
504 * @param question_attempt_step $realqas the step to wrap. (Can be null if you
505 * just want to call add/remove.prefix.)
506 * @param unknown_type $extraprefix the extra prefix that is used for date fields.
508 public function __construct($realqas, $extraprefix) {
509 $this->realqas
= $realqas;
510 $this->extraprefix
= $extraprefix;
514 * Add the extra prefix to a field name.
515 * @param string $field the plain field name.
516 * @return string the field name with the extra bit of prefix added.
518 public function add_prefix($field) {
519 if (substr($field, 0, 2) === '!_') {
520 return '-_' . $this->extraprefix
. substr($field, 2);
521 } else if (substr($field, 0, 1) === '-') {
522 return '-' . $this->extraprefix
. substr($field, 1);
523 } else if (substr($field, 0, 1) === '_') {
524 return '_' . $this->extraprefix
. substr($field, 1);
526 return $this->extraprefix
. $field;
531 * Remove the extra prefix from a field name if it is present.
532 * @param string $field the extended field name.
533 * @return string the field name with the extra bit of prefix removed, or
534 * null if the extre prefix was not present.
536 public function remove_prefix($field) {
537 if (preg_match('~^(-?_?)' . preg_quote($this->extraprefix
) . '(.*)$~', $field, $matches)) {
538 return $matches[1] . $matches[2];
545 * Filter some data to keep only those entries where the key contains
546 * extraprefix, and remove the extra prefix from the reutrned arrary.
547 * @param array $data some of the data stored in this step.
548 * @return array the data with the keys ajusted using {@link remove_prefix()}.
550 public function filter_array($data) {
552 foreach ($data as $fullname => $value) {
553 if ($name = $this->remove_prefix($fullname)) {
554 $result[$name] = $value;
560 public function get_state() {
561 return $this->realqas
->get_state();
564 public function set_state($state) {
565 throw new coding_exception('Cannot modify a question_attempt_step_subquestion_adapter.');
568 public function get_fraction() {
569 return $this->realqas
->get_fraction();
572 public function set_fraction($fraction) {
573 throw new coding_exception('Cannot modify a question_attempt_step_subquestion_adapter.');
576 public function get_user_id() {
577 return $this->realqas
->get_user_id
;
580 public function get_timecreated() {
581 return $this->realqas
->get_timecreated();
584 public function has_qt_var($name) {
585 return $this->realqas
->has_qt_var($this->add_prefix($name));
588 public function get_qt_var($name) {
589 return $this->realqas
->get_qt_var($this->add_prefix($name));
592 public function set_qt_var($name, $value) {
593 return $this->realqas
->set_qt_var($this->add_prefix($name), $value);
596 public function get_qt_data() {
597 return $this->filter_array($this->realqas
->get_qt_data());
600 public function has_behaviour_var($name) {
601 return $this->realqas
->has_im_var($this->add_prefix($name));
604 public function get_behaviour_var($name) {
605 return $this->realqas
->get_im_var($this->add_prefix($name));
608 public function set_behaviour_var($name, $value) {
609 return $this->realqas
->set_im_var($this->add_prefix($name), $value);
612 public function get_behaviour_data() {
613 return $this->filter_array($this->realqas
->get_behaviour_data());
616 public function get_submitted_data() {
617 return $this->filter_array($this->realqas
->get_submitted_data());
620 public function get_all_data() {
621 return $this->filter_array($this->realqas
->get_all_data());
624 public function get_qt_files($name, $contextid) {
625 throw new coding_exception('No attempt has yet been made to implement files support in ' .
626 'question_attempt_step_subquestion_adapter.');
629 public function prepare_response_files_draft_itemid($name, $contextid) {
630 throw new coding_exception('No attempt has yet been made to implement files support in ' .
631 'question_attempt_step_subquestion_adapter.');
634 public function prepare_response_files_draft_itemid_with_text($name, $contextid, $text) {
635 throw new coding_exception('No attempt has yet been made to implement files support in ' .
636 'question_attempt_step_subquestion_adapter.');
639 public function rewrite_response_pluginfile_urls($text, $contextid, $name, $extras) {
640 throw new coding_exception('No attempt has yet been made to implement files support in ' .
641 'question_attempt_step_subquestion_adapter.');