forked from trampgeek/moodle-qtype_coderunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
questiontype.php
960 lines (867 loc) · 37.7 KB
/
questiontype.php
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
<?php
// This file is part of CodeRunner - http://coderunner.org.nz/
//
// CodeRunner is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// CodeRunner 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with CodeRunner. If not, see <http://www.gnu.org/licenses/>.
//
// ***************
// coderunner
// ***************
//
// CODERUNNER QUESTION TYPE CLASS
// The class for programming code questions.
// A coderunner question consists of a specification for a piece of program
// code, which might be a function or a complete program or
// just a fragment of code.
// The student's response must be source code that defines
// the specified function. The student's code is executed by
// a set of test cases, all of which must pass for the question
// to be marked correct. The code execution takes place in an external
// sandbox.
// In a typical use case each coderunner question will have its
// own submit button and students will keep submitting until
// they pass all tests, so that their mark will be based on
// the number of submissions and the penalty per wrong
// submissions. However, there is the capability to allow per-test-case
// part marks by turning off the "all-or-nothing" checkbox when authoring the
// question.
/**
* @package qtype_coderunner
* @copyright © 2012, 2013, 2014 Richard Lobb
* @author Richard Lobb [email protected]
*/
defined('MOODLE_INTERNAL') || die();
require_once($CFG->dirroot . '/question/engine/bank.php');
require_once($CFG->dirroot . '/lib/questionlib.php');
/**
* qtype_coderunner extends the base question_type to coderunner-specific functionality.
* A coderunner question requires an additional DB table
* that contains the definitions for the testcases associated with a programming code
* question. There are an arbitrary number of these, so they can't be handled
* by adding columns to the standard question table.
*/
class qtype_coderunner extends question_type {
/**
* Whether this question type can perform a frequency analysis of student
* responses.
*
* If this method returns true, you must implement the get_possible_responses
* method, and the question_definition class must implement the
* classify_response method.
*
* @return bool whether this report can analyse all the student reponses
* for things like the quiz statistics report.
*/
public function can_analyse_responses() {
return false;
}
/**
* If your question type has a table that extends the question table, and
* you want the base class to automatically save, backup and restore the extra fields,
* override this method to return an array where the first element is the table name,
* and the subsequent entries are the column names (apart from id and questionid).
*
* @return mixed array as above, or null to tell the base class to do nothing.
*/
public function extra_question_fields() {
return ['question_coderunner_options',
'coderunnertype',
'prototypetype',
'allornothing',
'penaltyregime',
'precheck',
'hidecheck',
'showsource',
'answerboxlines',
'answerboxcolumns', // Defunct.
'answerpreload',
'globalextra',
'useace',
'resultcolumns',
'template',
'iscombinatortemplate',
'allowmultiplestdins',
'answer',
'validateonsave',
'testsplitterre',
'language',
'acelang',
'sandbox',
'grader',
'cputimelimitsecs',
'memlimitmb',
'sandboxparams',
'templateparams',
'hoisttemplateparams',
'extractcodefromjson',
'templateparamslang',
'templateparamsevalpertry',
'templateparamsevald',
'twigall',
'uiplugin',
'uiparameters',
'attachments',
'attachmentsrequired',
'maxfilesize',
'filenamesregex',
'filenamesexplain',
'displayfeedback',
'giveupallowed',
'prototypeextra',
];
}
/** A list of the extra question fields that are NOT inheritable from
* the prototype and so are not hidden in the usual authoring interface
* as 'customise' fields.
* @return array of strings
*/
public static function noninherited_fields() {
return [
'coderunnertype',
'prototypetype',
'allornothing',
'penaltyregime',
'precheck',
'hidecheck',
'showsource',
'answerboxlines',
'answerboxcolumns',
'answerpreload',
'globalextra',
'answer',
'validateonsave',
'templateparams',
'hoisttemplateparams',
'extractcodefromjson',
'templateparamslang',
'templateparamsevalpertry',
'templateparamsevald',
'twigall',
'uiparameters',
'attachments',
'attachmentsrequired',
'maxfilesize',
'filenamesregex',
'filenamesexplain',
'displayfeedback',
'giveupallowed',
];
}
public function response_file_areas() {
return ['attachments'];
}
/**
* If you use extra_question_fields, overload this function to return question id field name
* in case you table use another name for this column.
* [Don't really need this as we're returning the default value, but I
* prefer to be explicit.]
*/
public function questionid_column_name() {
return 'questionid';
}
// Function to copy testcases from form fields into question->testcases.
// If $validation true, we're just validating and need to add an extra
// rownum attribute to the testcase to allow failed test case results
// to be copied back to the form with a mouse click.
private function copy_testcases_from_form(&$question, $validation) {
$testcases = [];
if (empty($question->testcode)) {
$numtests = 0; // Must be a combinator template grader with no tests.
} else {
$numtests = count($question->testcode);
assert(count($question->expected) == $numtests);
}
for ($i = 0; $i < $numtests; $i++) {
$testcode = $this->filter_crs($question->testcode[$i]);
$stdin = $this->filter_crs($question->stdin[$i]);
$expected = $this->filter_crs($question->expected[$i]);
$extra = $this->filter_crs($question->extra[$i]);
if (
trim($testcode ?? '') === '' && trim($stdin ?? '') === '' &&
trim($expected ?? '') === '' && trim($extra ?? '') === ''
) {
continue; // Ignore testcases with only whitespace in them.
}
$testcase = new stdClass();
if ($validation) {
$testcase->rownum = $i; // The row number in the edit form - relevant only when validating.
}
$testcase->questionid = isset($question->id) ? $question->id : 0;
$testcase->testtype = isset($question->testtype[$i]) ? $question->testtype[$i] : 0;
$testcase->testcode = $testcode;
$testcase->stdin = $stdin;
$testcase->expected = $expected;
$testcase->extra = $extra;
$testcase->useasexample = isset($question->useasexample[$i]);
$testcase->display = $question->display[$i];
$testcase->hiderestiffail = isset($question->hiderestiffail[$i]);
$testcase->mark = trim($question->mark[$i]) == '' ? 1.0 : floatval($question->mark[$i]);
$testcase->ordering = intval($question->ordering[$i]);
$testcases[] = $testcase;
}
usort($testcases, function ($tc1, $tc2) {
if ($tc1->ordering === $tc2->ordering) {
return 0;
} else {
return $tc1->ordering < $tc2->ordering ? -1 : 1;
}
}); // Sort by ordering field.
$question->testcases = $testcases;
}
// Override save_question to record in $form if this is a new question or
// not. Needed by save_question_options when saving prototypes.
// Note that the $form parameter to save_question is passed through
// to save_question_options as the $question parameter.
public function save_question($question, $form) {
$form->isnew = empty($question->id);
return parent::save_question($question, $form);
}
// This override saves all the extra question data, including
// the set of testcases and any datafiles to the database.
public function save_question_options($question) {
global $DB, $USER;
// Tidy the form, handle inheritance from prototype.
$this->clean_question_form($question);
parent::save_question_options($question);
// Write test cases to DB, reusing old ones where possible.
$testcasetable = "question_coderunner_tests";
if (
!$oldtestcases = $DB->get_records(
$testcasetable,
['questionid' => $question->id],
'id ASC'
)
) {
$oldtestcases = [];
}
foreach ($question->testcases as $tc) {
if (($oldtestcase = array_shift($oldtestcases))) { // Existing testcase, so reuse it.
$tc->id = $oldtestcase->id;
$DB->update_record($testcasetable, $tc);
} else {
// A new testcase.
$tc->questionid = $question->id;
$DB->insert_record($testcasetable, $tc);
}
}
// Delete old testcase records.
foreach ($oldtestcases as $otc) {
$DB->delete_records($testcasetable, ['id' => $otc->id]);
}
$this->notify_prototype_children_if_any($question);
// Lastly, save any datafiles (support files + sample answer files).
if ($USER->id) {
// The id check is a hack to deal with phpunit initialisation, when no user exists.
foreach (
['datafiles' => 'datafile',
'sampleanswerattachments' => 'samplefile'] as $fileset => $filearea
) {
if (isset($question->$fileset)) {
file_save_draft_area_files(
$question->$fileset,
$question->context->id,
'qtype_coderunner',
$filearea,
(int) $question->id,
$this->fileoptions
);
}
}
}
return true;
}
/**
* Clean up the "question" (which is actually the question editing form)
* ready for saving or for testing before saving ($isvalidation == true).
* @param $question the question editing form
* @param $isvalidation true if we're cleaning for validation rather than saving.
*/
public function clean_question_form($question, $isvalidation = false) {
$fields = $this->extra_question_fields();
array_shift($fields); // Discard table name.
$customised = isset($question->customise) && $question->customise;
$isprototype = $question->prototypetype != 0;
if (
$customised && $question->prototypetype > 0 && !$isvalidation &&
$question->coderunnertype != $question->typename
) {
// Saving a new user-defined prototype.
// Copy new type name into coderunnertype.
$question->coderunnertype = $question->typename;
}
// If we're saving a new prototype, make sure its coderunnertype is
// unique by appending a suitable suffix. This shouldn't happen via
// question edit form, but could be a spurious import or a question
// duplication mouse click.
if ($question->isnew && $isprototype && !$isvalidation) {
$suffix = '';
$type = $question->coderunnertype;
while (true) {
// Check for the existence of a prototype with this type name and suffix.
$row = $this->get_prototype($type . $suffix, $question->context, true);
if ($row === null) {
break;
}
$suffix = $suffix == '' ? '-1' : $suffix - 1;
if ($suffix == '-9') {
throw new qtype_coderunner_exception('Too many templates with almost identical names');
}
}
$question->coderunnertype = $type . $suffix;
}
// Set all inherited fields to null if the corresponding form
// field is blank or if it's being saved with customise explicitly
// turned off and it's not a prototype.
$questioninherits = isset($question->customise) && !$question->customise && !$isprototype;
foreach ($fields as $field) {
$isinherited = !in_array($field, $this->noninherited_fields());
$isblankstring = !isset($question->$field) ||
(is_string($question->$field) && trim($question->$field ?? '') === '');
if ($isinherited && ($isblankstring || $questioninherits)) {
$question->$field = null;
}
}
if (trim($question->sandbox ?? '') === 'DEFAULT') {
$question->sandbox = null;
}
// Convert penalty regime string to generic form without '%'s and with
// ', ' as a separator.
$penaltyregime = str_replace('%', '', $question->penaltyregime);
$penaltyregime = str_replace(',', ', ', $penaltyregime);
$question->penaltyregime = preg_replace('/ *,? +/', ', ', $penaltyregime);
// Copy and clean testcases.
if (!isset($question->testcases)) {
$this->copy_testcases_from_form($question, $isvalidation);
}
}
/**
* Move all the files belonging to this question from one context to another.
* Override superclass implementation to handle the extra data files and
* sample answer files we have in CodeRunner questions.
* @param int $questionid the question being moved.
* @param int $oldcontextid the context it is moving from.
* @param int $newcontextid the context it is moving to.
*/
public function move_files($questionid, $oldcontextid, $newcontextid) {
parent::move_files($questionid, $oldcontextid, $newcontextid);
$fs = get_file_storage();
foreach (['datafile', 'samplefile'] as $filetype) {
$fs->move_area_files_to_new_context(
$oldcontextid,
$newcontextid,
'qtype_coderunner',
$filetype,
$questionid
);
}
}
// Load the question options (all the question extension fields and
// testcases) from the database into the question.
// The various fields are initialised from the prototype, then overridden
// by any non-null values in the specific question.
// As a side effect, the question->prototype field is set to the prototype.
public function get_question_options($question) {
global $DB;
parent::get_question_options($question);
$options =& $question->options;
if ($options->prototypetype != 0) { // Question prototype?
// Yes. It's 100% customised with nothing to inherit.
$options->customise = true;
} else {
$qtype = $options->coderunnertype;
$context = $this->question_context($question);
$question->prototype = $this->get_prototype($qtype, $context);
$this->set_inherited_fields($options, $question->prototype);
}
// Add in any testcases.
if (
$testcases = $DB->get_records(
'question_coderunner_tests',
['questionid' => $question->id],
'id ASC'
)
) {
$options->testcases = array_values($testcases); // Reindex tests from zero.
} else {
$options->testcases = [];
}
return true;
}
/**
* Add to the given target object all the inherited fields from the question's prototype
* record that have not been overridden (i.e. that are null).
* If the given prototype is null (a broken question) nothing happens.
* If any of the inherited fields are modified (i.e. any of the extra fields not
* in the noninheritedFields list), the 'customise' field is set.
* This is used only to display the customisation panel during authoring.
* @param object $target the target object whose fields are being set. It should
* be either a qtype_coderunner_question object or its options field ($question->options).
* @param string $prototype the prototype question. Null if non-existent or more than one (a broken question).
*/
public function set_inherited_fields($target, $prototype) {
$target->customise = false; // Starting assumption.
if ($prototype === null || is_array($prototype)) {
return;
}
$extrafields = $this->extra_question_fields();
array_shift($extrafields); // Remove the extraneous qtype_coderunner_options entry.
$inheritedfields = array_diff($extrafields, $this->noninherited_fields());
foreach ($inheritedfields as $field) {
$prototypevalue = $prototype->$field;
if (
isset($target->$field) &&
$target->$field !== null &&
$target->$field !== '' &&
$target->$field != $prototypevalue
) {
$target->customise = true; // An inherited field has been changed.
} else {
$target->$field = $prototypevalue; // Inherit the field value.
}
}
if (!isset($target->sandbox)) {
$target->sandbox = null;
}
if (!isset($target->grader)) {
$target->grader = null;
}
if (!isset($target->sandboxparams) || trim($target->sandboxparams ?? '') === '') {
$target->sandboxparams = null;
}
}
/**
* Get all available prototypes for the given course.
* Only the most recent version of each prototype question is returned.
* @param int $courseid the ID of the course whose prototypes are required.
* @return stdClass[] prototype rows from question_coderunner_options,
* including count number of occurrences.
*/
public static function get_all_prototypes($courseid) {
global $DB;
$coursecontext = context_course::instance($courseid);
[$contextcondition, $params] = $DB->get_in_or_equal($coursecontext->get_parent_context_ids(true));
$rows = $DB->get_records_sql("
SELECT qco.coderunnertype, count(qco.coderunnertype) as count
FROM {question_coderunner_options} qco
JOIN {question} q ON q.id = qco.questionid
JOIN {question_versions} qv ON qv.questionid = q.id
JOIN {question_bank_entries} qbe ON qv.questionbankentryid = qbe.id
JOIN {question_categories} qc ON qc.id = qbe.questioncategoryid
WHERE (qv.version = (SELECT MAX(v.version)
FROM {question_versions} v
JOIN {question_bank_entries} be ON be.id = v.questionbankentryid
WHERE be.id = qbe.id)
)
AND prototypetype != 0
AND qc.contextid $contextcondition
GROUP BY qco.coderunnertype", $params);
return $rows;
}
/**
* Get a given named prototype available in a given context.
*
* To be valid, the named prototype (a question of the specified type
* and with prototypetype non zero) must be in a question category that's
* available in the given current context.
* Only the most recent version of the question prototype is returned.
*
* @param string $coderunnertype prototype name.
* @param context $context a context.
* @param boolean $checkexistenceonly if true the function returns true if
* the prototype exists, rather than the prototype itself.
* @return qtype_coderunner_question prototype the prototype for the given
* question type in the given context or null if no prototype can be found
* or if more than one prototype is found.
*/
public static function get_prototype($coderunnertype, $context, $checkexistenceonly = false) {
global $DB;
[$contextcondition, $params] = $DB->get_in_or_equal($context->get_parent_context_ids(true));
$params[] = $coderunnertype;
$sql = "SELECT q.id, q.name, qc.name as category
FROM {question_coderunner_options} qco
JOIN {question} q ON qco.questionid = q.id
JOIN {question_versions} qv ON qv.questionid = q.id
JOIN {question_bank_entries} qbe ON qv.questionbankentryid = qbe.id
JOIN {question_categories} qc ON qc.id = qbe.questioncategoryid
WHERE (qv.version = (SELECT MAX(v.version)
FROM {question_versions} v
JOIN {question_bank_entries} be ON be.id = v.questionbankentryid
WHERE be.id = qbe.id)
)
AND qco.prototypetype != 0
AND qc.contextid $contextcondition
AND qco.coderunnertype = ?";
$validprotoids = $DB->get_records_sql($sql, $params);
if (count($validprotoids) !== 1) {
return count($validprotoids) === 0 ? null : $validprotoids; // If either no or too many prototypes are found.
} else if ($checkexistenceonly) {
return true;
} else {
$proto = reset($validprotoids);
$prototype = question_bank::load_question($proto->id);
self::update_question_text_maybe($prototype);
return $prototype;
}
}
/**
* Get the context for a question.
*
* @param stdClass $question a row from either the question or question_coderunner_options tables.
* @return context the corresponding context id.
*/
public static function question_context($question) {
return context::instance_by_id(self::question_contextid($question));
}
/**
* Get the context id for a question.
*
* @param stdClass $question a row from either the question or question_coderunner_options tables.
* @return int the corresponding context id.
*/
public static function question_contextid($question) {
global $DB;
if (isset($question->contextid)) {
return $question->contextid;
} else {
$questionid = isset($question->questionid) ? $question->questionid : $question->id;
$sql = "SELECT contextid FROM {question_categories} qc
JOIN {question_bank_entries} qbe ON qbe.questioncategoryid = qc.id
JOIN {question_versions} qv ON qv.questionbankentryid = qbe.id
JOIN {question} q ON qv.questionid = q.id
WHERE q.id = ?";
return $DB->get_field_sql($sql, [$questionid], MUST_EXIST);
}
}
// For built-in prototypes, replace the question text (which is used for
// in-line help in the question authoring form) with the appropriate
// language string.
protected static function update_question_text_maybe($prototype) {
if ($prototype->prototypetype == 1) { // Built-in prototype.
$stringname = 'qtype_' . $prototype->coderunnertype;
$prototype->questiontext = get_string($stringname, 'qtype_coderunner');
}
}
// Initialise the question_definition object from the questiondata
// read from the database (probably a cached version of the question
// object from the database enhanced by a call to get_question_options).
// Only fields not explicitly listed in extra_question_fields (i.e. those
// fields not from the question_coderunner_options table) need handling here.
// All we do is flatten the question->options fields down into the
// question itself, which will be all those fields of question->options
// not already flattened down by the parent implementation.
protected function initialise_question_instance(question_definition $question, $questiondata) {
parent::initialise_question_instance($question, $questiondata);
foreach ($questiondata->options as $field => $value) {
if (!isset($question->$field)) {
$question->$field = $value;
}
}
}
// Override default question deletion code to delete all the question's
// testcases.
// Includes a check if the question being deleted is a prototype. Currently
// I don't have a good way to check if the prototype being deleted has
// "children" in the current context. It's over to question authors to make
// sure they don't delete in-use prototypes.
// All I do when a prototype is deleted is invalidate cached child questions
// so that at least their subsequent behaviour is consistent with the
// missing prototype. This can occasionally be helpful, e.g. if a duplicate
// prototype has somehow been created, and is then deleted again, the
// child question will now function correctly.
public function delete_question($questionid, $contextid) {
global $DB;
$question = $DB->get_record(
'question_coderunner_options',
['questionid' => $questionid]
);
$this->notify_prototype_children_if_any($question);
$success = $DB->delete_records(
"question_coderunner_tests",
['questionid' => $questionid]
);
return $success && parent::delete_question($questionid, $contextid);
}
// Function to notify any children of a given question (if it is a
// prototype) that the parent has been edited (or perhaps deleted).
private function notify_prototype_children_if_any($question) {
global $DB;
if (defined('CACHE_DISABLE_ALL') && CACHE_DISABLE_ALL !== false) {
return; // If caching is off, nothing to do.
}
if ($question->prototypetype != 0) {
$typename = $question->coderunnertype;
$children = $DB->get_records(
'question_coderunner_options',
['prototypetype' => 0,
'coderunnertype' => $typename]
);
foreach ($children as $child) {
question_bank::notify_question_edited($child->questionid);
}
}
}
/******************** EDIT FORM OPTIONS ************************/
/**
* @return array the choices that should be offered for the number of attachments.
*/
public function attachment_options() {
return [
0 => get_string('no'),
1 => '1',
2 => '2',
3 => '3',
-1 => get_string('unlimited'),
];
}
/**
* @return array the choices that should be offered for the number of required attachments.
*/
public function attachments_required_options() {
return [
0 => get_string('attachmentsoptional', 'qtype_coderunner'),
1 => '1',
2 => '2',
3 => '3',
];
}
/**
* @return array the options for maximum file size
*/
public function attachment_filesize_max() {
return [
1024 => '1 kB',
10240 => '10 kB',
102400 => '100 kB',
1048576 => '1 MB',
10485760 => '10 MB',
104857600 => '100 MB',
];
}
/******************** IMPORT/EXPORT FUNCTIONS ***************************/
/*
* Imports question from the Moodle XML format
*
* Overrides default since coderunner questions contain a list of testcases,
* not a list of answers.
*
*/
public function import_from_xml(
$data,
$question,
qformat_xml $format,
$extra = null
) {
if ($extra != null) {
throw new coding_exception("coderunner:import_from_xml: unexpected 'extra' parameter");
}
$questiontype = $data['@']['type'];
if ($questiontype != $this->name()) {
return false;
}
$extraquestionfields = $this->extra_question_fields();
if (!is_array($extraquestionfields)) {
return false;
}
// Omit table name.
array_shift($extraquestionfields);
$qo = $format->import_headers($data);
$qo->qtype = $questiontype;
$newdefaults = [
'allornothing' => 1,
'precheck' => 0,
'answerboxlines' => 15,
'answerboxcolumns' => 90,
'validateonsave' => 1,
'answerpreload' => '',
'globalextra' => '',
'useace' => 1,
'iscombinatortemplate' => null, // Probably unnecessary?
'template' => null, // Probably unnecessary?
'templateparamslang' => 'twig',
'templateparamsevalpertry' => 0,
'templateparamsevald' => null,
'uiparameters' => null,
'hidecheck' => 0,
'attachments' => 0,
'extractcodefromjson' => 1,
'giveupallowed' => 0,
];
foreach ($extraquestionfields as $field) {
if ($field === 'template' && isset($data['#']['pertesttemplate'])) {
// Import from pre-version 3.1.
if ($format->getpath($data, ['#', 'enablecombinator', 0, '#'], 0) != 0) {
$qo->template = $format->getpath($data, ['#', 'combinatortemplate', 0, '#'], '');
$qo->iscombinatortemplate = 1;
} else {
$qo->template = $format->getpath($data, ['#', 'pertesttemplate', 0, '#'], '');
$qo->iscombinatortemplate = 0;
}
} else {
if ($field === 'iscombinatortemplate' && isset($qo->iscombinatortemplate)) {
continue; // Already loaded in the case of a legacy question.
}
if (array_key_exists($field, $newdefaults)) {
$default = $newdefaults[$field];
} else {
$default = '';
}
$qo->$field = $format->getpath($data, ['#', $field, 0, '#'], $default);
}
}
$qo->isnew = true;
$qo->testcases = [];
if (
isset($data['#']['testcases'][0]['#']['testcase']) &&
is_array($data['#']['testcases'][0]['#']['testcase'])
) {
$testcases = $data['#']['testcases'][0]['#']['testcase'];
foreach ($testcases as $testcase) {
$tc = new stdClass();
$tc->testcode = $testcase['#']['testcode'][0]['#']['text'][0]['#'];
$tc->stdin = $testcase['#']['stdin'][0]['#']['text'][0]['#'];
if (isset($testcase['#']['output'])) { // Handle old exports.
$tc->expected = $testcase['#']['output'][0]['#']['text'][0]['#'];
} else {
$tc->expected = $testcase['#']['expected'][0]['#']['text'][0]['#'];
}
$tc->extra = $testcase['#']['extra'][0]['#']['text'][0]['#'];
$tc->display = 'SHOW';
$tc->mark = 1.0;
if (isset($testcase['@']['mark'])) {
$tc->mark = floatval($testcase['@']['mark']);
}
if (isset($testcase['@']['hidden']) && $testcase['@']['hidden'] == "1") {
$tc->display = 'HIDE'; // Handle old-style export too.
}
if (isset($testcase['#']['display'])) {
$tc->display = $testcase['#']['display'][0]['#']['text'][0]['#'];
}
if (isset($testcase['@']['hiderestiffail'])) {
$tc->hiderestiffail = $testcase['@']['hiderestiffail'] == "1" ? 1 : 0;
} else {
$tc->hiderestiffail = 0;
}
if (isset($testcase['@']['testtype'])) {
$tc->testtype = intval($testcase['@']['testtype']);
} else {
$tc->testtype = 0;
}
$tc->useasexample = $testcase['@']['useasexample'] == "1" ? 1 : 0;
$qo->testcases[] = $tc;
}
}
// Import any support files.
$datafiles = $format->getpath(
$data,
['#', 'testcases', 0, '#', 'file'],
[]
);
if (is_array($datafiles)) { // Seems like a non-array does occur in some versions of PHP!
$qo->datafiles = $format->import_files_as_draft($datafiles);
}
// Import any sample answer attachments.
if (isset($data['#']['answerfiles'])) {
$samplefiles = $format->getpath($data, ['#', 'answerfiles', 0, '#', 'file'], []);
if (is_array($samplefiles)) {
$qo->sampleanswerattachments = $format->import_files_as_draft($samplefiles);
}
}
return $qo;
}
/*
* Export question to the Moodle XML format
*
* We override the default method because we don't have 'answers' but
* testcases.
*
*/
// Exporting is complicated by inheritance from the prototype.
// To deal with this we re-read the prototype and include in the
// export only the coderunner extra fields that are not inherited or that
// are not equal in value to the field from the prototype.
public function export_to_xml($question, qformat_xml $format, $extra = null) {
global $COURSE;
if ($extra !== null) {
throw new coding_exception("coderunner:export_to_xml: Unexpected parameter");
}
// Copy the question so we can modify it for export
// (Just in case the original gets used elsewhere).
$questiontoexport = clone $question;
$qtype = $question->options->coderunnertype;
$coursecontext = context_course::instance($COURSE->id);
$row = self::get_prototype($qtype, $coursecontext);
// Clear all inherited fields equal in value to the corresponding Prototype field
// (but only if we found a prototype and this is not a prototype question itself).
if ($row && $questiontoexport->options->prototypetype == 0) {
$noninheritedfields = $this->noninherited_fields();
$extrafields = $this->extra_question_fields();
foreach ($row as $field => $value) {
if (
in_array($field, $extrafields) &&
!in_array($field, $noninheritedfields) &&
$question->options->$field === $value
) {
$questiontoexport->options->$field = null;
}
}
}
$expout = parent::export_to_xml($questiontoexport, $format, $extra);
$expout .= " <testcases>\n";
foreach ($question->options->testcases as $testcase) {
$useasexample = $testcase->useasexample ? 1 : 0;
$hiderestiffail = $testcase->hiderestiffail ? 1 : 0;
$testtype = isset($testcase->testtype) ? $testcase->testtype : 0;
$mark = sprintf("%.7f", $testcase->mark);
$expout .= " <testcase testtype=\"$testtype\" useasexample=\"$useasexample\"";
$expout .= " hiderestiffail=\"$hiderestiffail\" mark=\"$mark\" >\n";
foreach (['testcode', 'stdin', 'expected', 'extra', 'display'] as $field) {
$exportedvalue = $format->writetext($testcase->$field, 4);
$expout .= " <{$field}>\n {$exportedvalue} </{$field}>\n";
}
$expout .= " </testcase>\n";
}
// Add datafiles within the scope of the <testcases> element.
$fs = get_file_storage();
$contextid = $question->contextid;
$datafiles = $fs->get_area_files(
$contextid,
'qtype_coderunner',
'datafile',
$question->id
);
$expout .= $format->write_files($datafiles);
$expout .= " </testcases>\n";
// If there are any sample answer attachments, add them in a new
// <answerfiles> element.
$sampleanswerfiles = $fs->get_area_files(
$contextid,
'qtype_coderunner',
'samplefile',
$question->id
);
if (count($sampleanswerfiles) > 0) {
$expout .= " <answerfiles>\n";
$expout .= $format->write_files($sampleanswerfiles);
$expout .= " </answerfiles>\n";
}
return $expout;
}
/** Utility func: remove all '\r' chars from $s and also trim trailing newlines */
private function filter_crs($s) {
$s = str_replace("\r", "", $s);
while (substr($s, strlen($s) - 1, 1) == '\n') {
$s = substr($s, 0, strlen($s) - 1);
}
return $s;
}
}