Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
92238d7f
Commit
92238d7f
authored
Nov 20, 2013
by
Adam
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1729 from edx/adam/more-granular-grading-transactions-2
more granular transactions in grading [LMS-1480]
parents
538be891
7b72a185
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
121 additions
and
74 deletions
+121
-74
lms/djangoapps/courseware/grades.py
+81
-45
lms/djangoapps/courseware/tests/test_submitting_problems.py
+10
-16
lms/djangoapps/courseware/views.py
+30
-13
No files found.
lms/djangoapps/courseware/grades.py
View file @
92238d7f
...
@@ -4,9 +4,11 @@ from __future__ import division
...
@@ -4,9 +4,11 @@ from __future__ import division
import
random
import
random
import
logging
import
logging
from
contextlib
import
contextmanager
from
collections
import
defaultdict
from
collections
import
defaultdict
from
django.conf
import
settings
from
django.conf
import
settings
from
django.contrib.auth.models
import
User
from
django.contrib.auth.models
import
User
from
django.db
import
transaction
from
courseware.model_data
import
FieldDataCache
,
DjangoKeyValueStore
from
courseware.model_data
import
FieldDataCache
,
DjangoKeyValueStore
from
xblock.fields
import
Scope
from
xblock.fields
import
Scope
...
@@ -121,8 +123,20 @@ def answer_distributions(request, course):
...
@@ -121,8 +123,20 @@ def answer_distributions(request, course):
return
counts
return
counts
def
grade
(
student
,
request
,
course
,
field_data_cache
=
None
,
keep_raw_scores
=
False
):
@transaction.commit_manually
def
grade
(
student
,
request
,
course
,
keep_raw_scores
=
False
):
"""
"""
Wraps "_grade" with the manual_transaction context manager just in case
there are unanticipated errors.
"""
with
manual_transaction
():
return
_grade
(
student
,
request
,
course
,
keep_raw_scores
)
def
_grade
(
student
,
request
,
course
,
keep_raw_scores
):
"""
Unwrapped version of "grade"
This grades a student as quickly as possible. It returns the
This grades a student as quickly as possible. It returns the
output from the course grader, augmented with the final letter
output from the course grader, augmented with the final letter
grade. The keys in the output are:
grade. The keys in the output are:
...
@@ -135,17 +149,14 @@ def grade(student, request, course, field_data_cache=None, keep_raw_scores=False
...
@@ -135,17 +149,14 @@ def grade(student, request, course, field_data_cache=None, keep_raw_scores=False
up the grade. (For display)
up the grade. (For display)
- grade_breakdown : A breakdown of the major components that
- grade_breakdown : A breakdown of the major components that
make up the final grade. (For display)
make up the final grade. (For display)
- keep_raw_scores : if True, then value for key 'raw_scores' contains scores for every graded module
- keep_raw_scores : if True, then value for key 'raw_scores' contains scores
for every graded module
More information on the format is in the docstring for CourseGrader.
More information on the format is in the docstring for CourseGrader.
"""
"""
grading_context
=
course
.
grading_context
grading_context
=
course
.
grading_context
raw_scores
=
[]
raw_scores
=
[]
if
field_data_cache
is
None
:
field_data_cache
=
FieldDataCache
(
grading_context
[
'all_descriptors'
],
course
.
id
,
student
)
totaled_scores
=
{}
totaled_scores
=
{}
# This next complicated loop is just to collect the totaled_scores, which is
# This next complicated loop is just to collect the totaled_scores, which is
# passed to the grader
# passed to the grader
...
@@ -155,26 +166,22 @@ def grade(student, request, course, field_data_cache=None, keep_raw_scores=False
...
@@ -155,26 +166,22 @@ def grade(student, request, course, field_data_cache=None, keep_raw_scores=False
section_descriptor
=
section
[
'section_descriptor'
]
section_descriptor
=
section
[
'section_descriptor'
]
section_name
=
section_descriptor
.
display_name_with_default
section_name
=
section_descriptor
.
display_name_with_default
should_grade_section
=
False
# If we haven't seen a single problem in the section, we don't have to grade it at all! We can assume 0%
for
moduledescriptor
in
section
[
'xmoduledescriptors'
]:
# some problems have state that is updated independently of interaction
# some problems have state that is updated independently of interaction
# with the LMS, so they need to always be scored. (E.g. foldit.)
# with the LMS, so they need to always be scored. (E.g. foldit.,
if
moduledescriptor
.
always_recalculate_grades
:
# combinedopenended)
should_grade_section
=
True
should_grade_section
=
any
(
break
descriptor
.
always_recalculate_grades
for
descriptor
in
section
[
'xmoduledescriptors'
]
# Create a fake key to pull out a StudentModule object from the FieldDataCache
key
=
DjangoKeyValueStore
.
Key
(
Scope
.
user_state
,
student
.
id
,
moduledescriptor
.
location
,
None
)
)
if
field_data_cache
.
find
(
key
):
should_grade_section
=
True
# If we haven't seen a single problem in the section, we don't have to grade it at all! We can assume 0%
break
if
not
should_grade_section
:
with
manual_transaction
():
should_grade_section
=
StudentModule
.
objects
.
filter
(
student
=
student
,
module_state_key__in
=
[
descriptor
.
location
for
descriptor
in
section
[
'xmoduledescriptors'
]
]
)
.
exists
()
if
should_grade_section
:
if
should_grade_section
:
scores
=
[]
scores
=
[]
...
@@ -183,11 +190,13 @@ def grade(student, request, course, field_data_cache=None, keep_raw_scores=False
...
@@ -183,11 +190,13 @@ def grade(student, request, course, field_data_cache=None, keep_raw_scores=False
'''creates an XModule instance given a descriptor'''
'''creates an XModule instance given a descriptor'''
# TODO: We need the request to pass into here. If we could forego that, our arguments
# TODO: We need the request to pass into here. If we could forego that, our arguments
# would be simpler
# would be simpler
with
manual_transaction
():
field_data_cache
=
FieldDataCache
([
descriptor
],
course
.
id
,
student
)
return
get_module_for_descriptor
(
student
,
request
,
descriptor
,
field_data_cache
,
course
.
id
)
return
get_module_for_descriptor
(
student
,
request
,
descriptor
,
field_data_cache
,
course
.
id
)
for
module_descriptor
in
yield_dynamic_descriptor_descendents
(
section_descriptor
,
create_module
):
for
module_descriptor
in
yield_dynamic_descriptor_descendents
(
section_descriptor
,
create_module
):
(
correct
,
total
)
=
get_score
(
course
.
id
,
student
,
module_descriptor
,
create_module
,
field_data_cache
)
(
correct
,
total
)
=
get_score
(
course
.
id
,
student
,
module_descriptor
,
create_module
)
if
correct
is
None
and
total
is
None
:
if
correct
is
None
and
total
is
None
:
continue
continue
...
@@ -256,11 +265,23 @@ def grade_for_percentage(grade_cutoffs, percentage):
...
@@ -256,11 +265,23 @@ def grade_for_percentage(grade_cutoffs, percentage):
return
letter_grade
return
letter_grade
@transaction.commit_manually
def
progress_summary
(
student
,
request
,
course
):
"""
Wraps "_progress_summary" with the manual_transaction context manager just
in case there are unanticipated errors.
"""
with
manual_transaction
():
return
_progress_summary
(
student
,
request
,
course
)
# TODO: This method is not very good. It was written in the old course style and
# TODO: This method is not very good. It was written in the old course style and
# then converted over and performance is not good. Once the progress page is redesigned
# then converted over and performance is not good. Once the progress page is redesigned
# to not have the progress summary this method should be deleted (so it won't be copied).
# to not have the progress summary this method should be deleted (so it won't be copied).
def
progress_summary
(
student
,
request
,
course
,
field_data_cach
e
):
def
_progress_summary
(
student
,
request
,
cours
e
):
"""
"""
Unwrapped version of "progress_summary".
This pulls a summary of all problems in the course.
This pulls a summary of all problems in the course.
Returns
Returns
...
@@ -273,16 +294,17 @@ def progress_summary(student, request, course, field_data_cache):
...
@@ -273,16 +294,17 @@ def progress_summary(student, request, course, field_data_cache):
Arguments:
Arguments:
student: A User object for the student to grade
student: A User object for the student to grade
course: A Descriptor containing the course to grade
course: A Descriptor containing the course to grade
field_data_cache: A FieldDataCache initialized with all
instance_modules for the student
If the student does not have access to load the course module, this function
If the student does not have access to load the course module, this function
will return None.
will return None.
"""
"""
with
manual_transaction
():
# TODO: We need the request to pass into here. If we could forego that, our arguments
field_data_cache
=
FieldDataCache
.
cache_for_descriptor_descendents
(
# would be simpler
course
.
id
,
student
,
course
,
depth
=
None
)
# TODO: We need the request to pass into here. If we could
# forego that, our arguments would be simpler
course_module
=
get_module_for_descriptor
(
student
,
request
,
course
,
field_data_cache
,
course
.
id
)
course_module
=
get_module_for_descriptor
(
student
,
request
,
course
,
field_data_cache
,
course
.
id
)
if
not
course_module
:
if
not
course_module
:
# This student must not have access to the course.
# This student must not have access to the course.
...
@@ -296,12 +318,13 @@ def progress_summary(student, request, course, field_data_cache):
...
@@ -296,12 +318,13 @@ def progress_summary(student, request, course, field_data_cache):
continue
continue
sections
=
[]
sections
=
[]
for
section_module
in
chapter_module
.
get_display_items
():
for
section_module
in
chapter_module
.
get_display_items
():
# Skip if the section is hidden
# Skip if the section is hidden
with
manual_transaction
():
if
section_module
.
hide_from_toc
:
if
section_module
.
hide_from_toc
:
continue
continue
# Same for sections
graded
=
section_module
.
graded
graded
=
section_module
.
graded
scores
=
[]
scores
=
[]
...
@@ -310,7 +333,7 @@ def progress_summary(student, request, course, field_data_cache):
...
@@ -310,7 +333,7 @@ def progress_summary(student, request, course, field_data_cache):
for
module_descriptor
in
yield_dynamic_descriptor_descendents
(
section_module
,
module_creator
):
for
module_descriptor
in
yield_dynamic_descriptor_descendents
(
section_module
,
module_creator
):
course_id
=
course
.
id
course_id
=
course
.
id
(
correct
,
total
)
=
get_score
(
course_id
,
student
,
module_descriptor
,
module_creator
,
field_data_cache
)
(
correct
,
total
)
=
get_score
(
course_id
,
student
,
module_descriptor
,
module_creator
)
if
correct
is
None
and
total
is
None
:
if
correct
is
None
and
total
is
None
:
continue
continue
...
@@ -331,15 +354,16 @@ def progress_summary(student, request, course, field_data_cache):
...
@@ -331,15 +354,16 @@ def progress_summary(student, request, course, field_data_cache):
'graded'
:
graded
,
'graded'
:
graded
,
})
})
chapters
.
append
({
'course'
:
course
.
display_name_with_default
,
chapters
.
append
({
'course'
:
course
.
display_name_with_default
,
'display_name'
:
chapter_module
.
display_name_with_default
,
'display_name'
:
chapter_module
.
display_name_with_default
,
'url_name'
:
chapter_module
.
url_name
,
'url_name'
:
chapter_module
.
url_name
,
'sections'
:
sections
})
'sections'
:
sections
})
return
chapters
return
chapters
def
get_score
(
course_id
,
user
,
problem_descriptor
,
module_creator
):
def
get_score
(
course_id
,
user
,
problem_descriptor
,
module_creator
,
field_data_cache
):
"""
"""
Return the score for a user on a problem, as a tuple (correct, total).
Return the score for a user on a problem, as a tuple (correct, total).
e.g. (5,7) if you got 5 out of 7 points.
e.g. (5,7) if you got 5 out of 7 points.
...
@@ -372,15 +396,14 @@ def get_score(course_id, user, problem_descriptor, module_creator, field_data_ca
...
@@ -372,15 +396,14 @@ def get_score(course_id, user, problem_descriptor, module_creator, field_data_ca
# These are not problems, and do not have a score
# These are not problems, and do not have a score
return
(
None
,
None
)
return
(
None
,
None
)
# Create a fake KeyValueStore key to pull out the StudentModule
try
:
key
=
DjangoKeyValueStore
.
Key
(
student_module
=
StudentModule
.
objects
.
get
(
Scope
.
user_state
,
student
=
user
,
user
.
id
,
course_id
=
course_id
,
problem_descriptor
.
location
,
module_state_key
=
problem_descriptor
.
location
None
)
)
except
StudentModule
.
DoesNotExist
:
student_module
=
field_data_cache
.
find
(
key
)
student_module
=
None
if
student_module
is
not
None
and
student_module
.
max_grade
is
not
None
:
if
student_module
is
not
None
and
student_module
.
max_grade
is
not
None
:
correct
=
student_module
.
grade
if
student_module
.
grade
is
not
None
else
0
correct
=
student_module
.
grade
if
student_module
.
grade
is
not
None
else
0
...
@@ -411,3 +434,16 @@ def get_score(course_id, user, problem_descriptor, module_creator, field_data_ca
...
@@ -411,3 +434,16 @@ def get_score(course_id, user, problem_descriptor, module_creator, field_data_ca
total
=
weight
total
=
weight
return
(
correct
,
total
)
return
(
correct
,
total
)
@contextmanager
def
manual_transaction
():
"""A context manager for managing manual transactions"""
try
:
yield
except
Exception
:
transaction
.
rollback
()
log
.
exception
(
'Due to an error, this transaction has been rolled back'
)
raise
else
:
transaction
.
commit
()
lms/djangoapps/courseware/tests/test_submitting_problems.py
View file @
92238d7f
...
@@ -236,14 +236,11 @@ class TestCourseGrader(TestSubmittingProblems):
...
@@ -236,14 +236,11 @@ class TestCourseGrader(TestSubmittingProblems):
make up the final grade. (For display)
make up the final grade. (For display)
"""
"""
field_data_cache
=
FieldDataCache
.
cache_for_descriptor_descendents
(
fake_request
=
self
.
factory
.
get
(
self
.
course
.
id
,
self
.
student_user
,
self
.
course
)
reverse
(
'progress'
,
kwargs
=
{
'course_id'
:
self
.
course
.
id
})
)
fake_request
=
self
.
factory
.
get
(
reverse
(
'progress'
,
kwargs
=
{
'course_id'
:
self
.
course
.
id
}))
return
grades
.
grade
(
self
.
student_user
,
fake_request
,
return
grades
.
grade
(
self
.
student_user
,
fake_request
,
self
.
course
)
self
.
course
,
field_data_cache
)
def
get_progress_summary
(
self
):
def
get_progress_summary
(
self
):
"""
"""
...
@@ -257,16 +254,13 @@ class TestCourseGrader(TestSubmittingProblems):
...
@@ -257,16 +254,13 @@ class TestCourseGrader(TestSubmittingProblems):
etc.
etc.
"""
"""
field_data_cache
=
FieldDataCache
.
cache_for_descriptor_descendents
(
fake_request
=
self
.
factory
.
get
(
self
.
course
.
id
,
self
.
student_user
,
self
.
course
)
reverse
(
'progress'
,
kwargs
=
{
'course_id'
:
self
.
course
.
id
})
)
fake_request
=
self
.
factory
.
get
(
reverse
(
'progress'
,
kwargs
=
{
'course_id'
:
self
.
course
.
id
}))
progress_summary
=
grades
.
progress_summary
(
self
.
student_user
,
progress_summary
=
grades
.
progress_summary
(
fake_request
,
self
.
student_user
,
fake_request
,
self
.
course
self
.
course
,
)
field_data_cache
)
return
progress_summary
return
progress_summary
def
check_grade_percent
(
self
,
percent
):
def
check_grade_percent
(
self
,
percent
):
...
...
lms/djangoapps/courseware/views.py
View file @
92238d7f
...
@@ -14,6 +14,7 @@ from django.shortcuts import redirect
...
@@ -14,6 +14,7 @@ from django.shortcuts import redirect
from
mitxmako.shortcuts
import
render_to_response
,
render_to_string
from
mitxmako.shortcuts
import
render_to_response
,
render_to_string
from
django_future.csrf
import
ensure_csrf_cookie
from
django_future.csrf
import
ensure_csrf_cookie
from
django.views.decorators.cache
import
cache_control
from
django.views.decorators.cache
import
cache_control
from
django.db
import
transaction
from
markupsafe
import
escape
from
markupsafe
import
escape
from
courseware
import
grades
from
courseware
import
grades
...
@@ -643,8 +644,9 @@ def mktg_course_about(request, course_id):
...
@@ -643,8 +644,9 @@ def mktg_course_about(request, course_id):
except
(
ValueError
,
Http404
)
as
e
:
except
(
ValueError
,
Http404
)
as
e
:
# if a course does not exist yet, display a coming
# if a course does not exist yet, display a coming
# soon button
# soon button
return
render_to_response
(
'courseware/mktg_coming_soon.html'
,
return
render_to_response
(
{
'course_id'
:
course_id
})
'courseware/mktg_coming_soon.html'
,
{
'course_id'
:
course_id
}
)
registered
=
registered_for_course
(
course
,
request
.
user
)
registered
=
registered_for_course
(
course
,
request
.
user
)
...
@@ -659,7 +661,8 @@ def mktg_course_about(request, course_id):
...
@@ -659,7 +661,8 @@ def mktg_course_about(request, course_id):
settings
.
MITX_FEATURES
.
get
(
'ENABLE_LMS_MIGRATION'
))
settings
.
MITX_FEATURES
.
get
(
'ENABLE_LMS_MIGRATION'
))
course_modes
=
CourseMode
.
modes_for_course
(
course
.
id
)
course_modes
=
CourseMode
.
modes_for_course
(
course
.
id
)
return
render_to_response
(
'courseware/mktg_course_about.html'
,
return
render_to_response
(
'courseware/mktg_course_about.html'
,
{
{
'course'
:
course
,
'course'
:
course
,
'registered'
:
registered
,
'registered'
:
registered
,
...
@@ -667,13 +670,27 @@ def mktg_course_about(request, course_id):
...
@@ -667,13 +670,27 @@ def mktg_course_about(request, course_id):
'course_target'
:
course_target
,
'course_target'
:
course_target
,
'show_courseware_link'
:
show_courseware_link
,
'show_courseware_link'
:
show_courseware_link
,
'course_modes'
:
course_modes
,
'course_modes'
:
course_modes
,
})
}
)
@login_required
@login_required
@cache_control
(
no_cache
=
True
,
no_store
=
True
,
must_revalidate
=
True
)
@cache_control
(
no_cache
=
True
,
no_store
=
True
,
must_revalidate
=
True
)
@transaction.commit_manually
def
progress
(
request
,
course_id
,
student_id
=
None
):
def
progress
(
request
,
course_id
,
student_id
=
None
):
""" User progress. We show the grade bar and every problem score.
"""
Wraps "_progress" with the manual_transaction context manager just in case
there are unanticipated errors.
"""
with
grades
.
manual_transaction
():
return
_progress
(
request
,
course_id
,
student_id
)
def
_progress
(
request
,
course_id
,
student_id
):
"""
Unwrapped version of "progress".
User progress. We show the grade bar and every problem score.
Course staff are allowed to see the progress of students in their class.
Course staff are allowed to see the progress of students in their class.
"""
"""
...
@@ -696,26 +713,26 @@ def progress(request, course_id, student_id=None):
...
@@ -696,26 +713,26 @@ def progress(request, course_id, student_id=None):
# additional DB lookup (this kills the Progress page in particular).
# additional DB lookup (this kills the Progress page in particular).
student
=
User
.
objects
.
prefetch_related
(
"groups"
)
.
get
(
id
=
student
.
id
)
student
=
User
.
objects
.
prefetch_related
(
"groups"
)
.
get
(
id
=
student
.
id
)
field_data_cache
=
FieldDataCache
.
cache_for_descriptor_descendents
(
courseware_summary
=
grades
.
progress_summary
(
student
,
request
,
course
)
course_id
,
student
,
course
,
depth
=
None
)
courseware_summary
=
grades
.
progress_summary
(
student
,
request
,
course
,
grade_summary
=
grades
.
grade
(
student
,
request
,
course
)
field_data_cache
)
grade_summary
=
grades
.
grade
(
student
,
request
,
course
,
field_data_cache
)
if
courseware_summary
is
None
:
if
courseware_summary
is
None
:
#This means the student didn't have access to the course (which the instructor requested)
#This means the student didn't have access to the course (which the instructor requested)
raise
Http404
raise
Http404
context
=
{
'course'
:
course
,
context
=
{
'course'
:
course
,
'courseware_summary'
:
courseware_summary
,
'courseware_summary'
:
courseware_summary
,
'grade_summary'
:
grade_summary
,
'grade_summary'
:
grade_summary
,
'staff_access'
:
staff_access
,
'staff_access'
:
staff_access
,
'student'
:
student
,
'student'
:
student
,
}
}
context
.
update
()
return
render_to_response
(
'courseware/progress.html'
,
context
)
with
grades
.
manual_transaction
():
response
=
render_to_response
(
'courseware/progress.html'
,
context
)
return
response
@login_required
@login_required
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment