31
31
import ivle.database
32
32
from ivle.database import ExerciseAttempt, ExerciseSave, Worksheet, \
33
WorksheetExercise, Exercise
33
WorksheetExercise, Exercise, User
34
34
import ivle.webapp.tutorial.test
36
36
__all__ = ['ExerciseNotFound', 'get_exercise_status',
37
'get_exercise_statistics',
37
38
'get_exercise_stored_text', 'get_exercise_attempts',
38
39
'get_exercise_attempt', 'test_exercise_submission',
83
84
return first_success is not None, num_attempts
86
def get_exercise_statistics(store, worksheet_exercise):
87
"""Return statistics about an exercise (with respect to a given
89
(number of students completed, number of students attempted)."""
90
# Count the set of Users whose ID matches an attempt in this worksheet
91
num_completed = store.find(User, User.id == ExerciseAttempt.user_id,
92
ExerciseAttempt.ws_ex_id == worksheet_exercise.id,
93
ExerciseAttempt.complete == True).config(distinct=True).count()
94
num_attempted = store.find(User, User.id == ExerciseAttempt.user_id,
95
ExerciseAttempt.ws_ex_id == worksheet_exercise.id,
96
).config(distinct=True).count()
97
return num_completed, num_attempted
85
99
def get_exercise_stored_text(store, user, worksheet_exercise):
86
100
"""Given a storm.store, User and WorksheetExercise, returns an
87
101
ivle.database.ExerciseSave object for the last saved/submitted attempt for
245
259
# Turns the worksheet into an xml stream, and then finds all the
246
260
# exercise nodes in the stream.
247
worksheetdata = genshi.XML(worksheet.get_xml())
261
worksheetdata = genshi.XML(worksheet.data_xhtml)
248
262
for kind, data, pos in worksheetdata:
249
263
if kind is genshi.core.START:
250
264
# Data is a tuple of tag name and a list of name->value tuples
294
308
jail_path = os.path.join(config['paths']['jails']['mounts'],
296
310
working_dir = os.path.join("/home", user.login)
297
cons = ivle.console.Console(config, user.unixid, jail_path,
311
cons = ivle.console.Console(config, user, jail_path,
300
314
# Parse the file into a exercise object using the test suite
311
325
return test_results
328
class FakeWorksheetForMarks:
329
"""This class represents a worksheet and a particular students progress
332
Do not confuse this with a worksheet in the database. This worksheet
333
has extra information for use in the output, such as marks."""
334
def __init__(self, id, name, assessable, published):
337
self.assessable = assessable
338
self.published = published
339
self.complete_class = ''
340
self.optional_message = ''
344
return ("Worksheet(id=%s, name=%s, assessable=%s)"
345
% (repr(self.id), repr(self.name), repr(self.assessable)))
348
# XXX: This really shouldn't be needed.
349
def create_list_of_fake_worksheets_and_stats(config, store, user, offering,
351
"""Take an offering's real worksheets, converting them into stats.
353
The worksheet listing views expect special fake worksheet objects
354
that contain counts of exercises, whether they've been completed,
355
that sort of thing. A fake worksheet object is used to contain
356
these values, because nobody has managed to refactor the need out
363
# Offering.worksheets is ordered by the worksheets seq_no
364
worksheets = offering.worksheets
366
# Unless we can edit worksheets, hide unpublished ones.
367
if 'edit_worksheets' not in offering.get_permissions(user, config):
368
worksheets = worksheets.find(published=True)
370
for worksheet in worksheets:
371
new_worksheet = FakeWorksheetForMarks(
372
worksheet.identifier, worksheet.name, worksheet.assessable,
374
if new_worksheet.assessable:
375
# Calculate the user's score for this worksheet
376
mand_done, mand_total, opt_done, opt_total = (
377
ivle.worksheet.utils.calculate_score(store, user, worksheet,
380
optional_message = " (excluding optional exercises)"
382
optional_message = ""
383
if mand_done >= mand_total:
384
new_worksheet.complete_class = "complete"
386
new_worksheet.complete_class = "semicomplete"
388
new_worksheet.complete_class = "incomplete"
389
problems_done += mand_done
390
problems_total += mand_total
391
new_worksheet.mand_done = mand_done
392
new_worksheet.total = mand_total
393
new_worksheet.optional_message = optional_message
394
new_worksheets.append(new_worksheet)
396
return new_worksheets, problems_total, problems_done