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
//! Defines the data used by the scheduler and several convenience functions.
use anyhow::{anyhow, Result};
use chrono::{DateTime, Utc};
use parking_lot::RwLock;
use std::sync::Arc;
use ustr::{Ustr, UstrMap, UstrSet};
use crate::{
blacklist::Blacklist,
course_library::CourseLibrary,
data::{
filter::{KeyValueFilter, SavedFilter, SessionPart, StudySessionData, UnitFilter},
CourseManifest, ExerciseManifest, LessonManifest, SchedulerOptions, UnitType,
},
filter_manager::FilterManager,
graph::UnitGraph,
practice_stats::PracticeStats,
review_list::ReviewList,
};
/// A struct encapsulating all the state needed by the scheduler.
#[derive(Clone)]
pub struct SchedulerData {
/// The options used to run this scheduler.
pub options: SchedulerOptions,
/// The course library storing manifests and info about units.
pub course_library: Arc<RwLock<dyn CourseLibrary>>,
/// The dependency graph of courses and lessons.
pub unit_graph: Arc<RwLock<dyn UnitGraph>>,
/// The list of previous exercise results.
pub practice_stats: Arc<RwLock<dyn PracticeStats>>,
/// The list of units to skip during scheduling.
pub blacklist: Arc<RwLock<dyn Blacklist>>,
/// The list of units which should be reviewed by the student.
pub review_list: Arc<RwLock<dyn ReviewList>>,
/// The manager used to access unit filters saved by the user.
pub filter_manager: Arc<RwLock<dyn FilterManager>>,
/// A map storing the number of times an exercise has been scheduled during the lifetime of this
/// scheduler. The value is used to give more weight during filtering to exercises that have
/// been scheduled less often.
pub frequency_map: Arc<RwLock<UstrMap<usize>>>,
}
impl SchedulerData {
/// Returns the ID of the course to which the lesson with the given ID belongs.
#[inline]
pub fn get_course_id(&self, lesson_id: Ustr) -> Result<Ustr> {
self.unit_graph
.read()
.get_lesson_course(lesson_id)
.ok_or_else(|| anyhow!("missing course ID for lesson with ID {}", lesson_id))
}
/// Returns the type of the given unit.
#[inline]
#[must_use]
pub fn get_unit_type(&self, unit_id: Ustr) -> Option<UnitType> {
self.unit_graph.read().get_unit_type(unit_id)
}
/// Returns the type of the given unit. Returns an error if the type is not known.
#[inline]
pub fn get_unit_type_strict(&self, unit_id: Ustr) -> Result<UnitType> {
self.unit_graph
.read()
.get_unit_type(unit_id)
.ok_or_else(|| anyhow!("missing unit type for unit with ID {}", unit_id))
}
/// Returns the manifest for the course with the given ID.
#[inline]
pub fn get_course_manifest(&self, course_id: Ustr) -> Result<CourseManifest> {
self.course_library
.read()
.get_course_manifest(course_id)
.ok_or_else(|| anyhow!("missing manifest for course with ID {}", course_id))
}
/// Returns the manifest for the course with the given ID.
#[inline]
pub fn get_lesson_manifest(&self, lesson_id: Ustr) -> Result<LessonManifest> {
self.course_library
.read()
.get_lesson_manifest(lesson_id)
.ok_or_else(|| anyhow!("missing manifest for lesson with ID {}", lesson_id))
}
/// Returns the manifest for the exercise with the given ID.
#[inline]
pub fn get_exercise_manifest(&self, exercise_id: Ustr) -> Result<ExerciseManifest> {
self.course_library
.read()
.get_exercise_manifest(exercise_id)
.ok_or_else(|| anyhow!("missing manifest for exercise with ID {}", exercise_id))
}
/// Returns whether the unit with the given ID is blacklisted.
#[inline]
pub fn blacklisted(&self, unit_id: Ustr) -> Result<bool> {
let blacklisted = self.blacklist.read().blacklisted(unit_id)?;
Ok(blacklisted)
}
/// Returns all the units that are dependencies of the unit with the given ID.
#[inline]
#[must_use]
pub fn get_all_dependents(&self, unit_id: Ustr) -> Vec<Ustr> {
return self
.unit_graph
.read()
.get_dependents(unit_id)
.unwrap_or_default()
.into_iter()
.collect();
}
/// Returns all the units that supersede the unit with the given ID.
#[inline]
#[must_use]
pub fn get_superseding(&self, unit_id: Ustr) -> Option<UstrSet> {
return self.unit_graph.read().get_superseding(unit_id);
}
/// Returns all the dependencies of the unit with the given ID at the given depth.
#[must_use]
pub fn get_dependencies_at_depth(&self, unit_id: Ustr, depth: usize) -> Vec<Ustr> {
// Search for the dependencies at the given depth.
let mut dependencies = vec![];
let mut stack = vec![(unit_id, 0)];
while let Some((candidate_id, candidate_depth)) = stack.pop() {
if candidate_depth == depth {
// Reached the end of the search.
dependencies.push(candidate_id);
continue;
}
// Otherwise, look up the dependencies of the candidate and continue the search.
let candidate_dependencies = self.unit_graph.read().get_dependencies(candidate_id);
match candidate_dependencies {
Some(candidate_dependencies) => {
if candidate_dependencies.is_empty() {
// No more dependencies to search. Add the candidate to the final list.
dependencies.push(candidate_id);
} else {
// Continue the search with the dependencies of the candidate.
stack.extend(
candidate_dependencies
.into_iter()
.map(|dependency| (dependency, candidate_depth + 1)),
);
}
}
None => dependencies.push(candidate_id),
}
}
// Remove any units not found in the graph. This can happen if a unit claims a dependency on
// a unit not found in the graph.
dependencies
.retain(|dependency| self.unit_graph.read().get_unit_type(*dependency).is_some());
dependencies
}
/// Returns the value of the `course_id` field in the manifest of the given lesson.
#[inline]
#[must_use]
pub fn get_lesson_course(&self, lesson_id: Ustr) -> Option<Ustr> {
self.unit_graph.read().get_lesson_course(lesson_id)
}
/// Returns whether the unit exists in the library. Some units will exist in the unit graph
/// because they are a dependency of another, but their data might not exist in the library.
#[inline]
pub fn unit_exists(&self, unit_id: Ustr) -> Result<bool> {
// Retrieve the unit type. A missing unit type indicates the unit does not exist.
let unit_type = self.unit_graph.read().get_unit_type(unit_id);
if unit_type.is_none() {
return Ok(false);
}
// Decide whether the unit exists by looking for its manifest.
let library = self.course_library.read();
match unit_type.unwrap() {
UnitType::Course => Ok(library.get_course_manifest(unit_id).is_some()),
UnitType::Lesson => Ok(library.get_lesson_manifest(unit_id).is_some()),
UnitType::Exercise => Ok(library.get_exercise_manifest(unit_id).is_some()),
}
}
/// Returns the exercises contained within the given unit.
#[inline]
#[must_use]
pub fn get_lesson_exercises(&self, unit_id: Ustr) -> Vec<Ustr> {
self.unit_graph
.read()
.get_lesson_exercises(unit_id)
.unwrap_or_default()
.into_iter()
.collect()
}
/// Returns the number of lessons in the given course.
#[inline]
#[must_use]
pub fn get_num_lessons_in_course(&self, course_id: Ustr) -> usize {
let lessons: UstrSet = self
.unit_graph
.read()
.get_course_lessons(course_id)
.unwrap_or_default();
lessons.len()
}
/// Returns whether the unit passes the metadata filter, handling all interactions between
/// lessons and course metadata filters.
#[inline]
pub fn unit_passes_filter(
&self,
unit_id: Ustr,
metadata_filter: Option<&KeyValueFilter>,
) -> Result<bool> {
// All units pass if there is no filter.
if metadata_filter.is_none() {
return Ok(true);
}
// Decide how to handle the filter based on the unit type.
let unit_type = self.get_unit_type_strict(unit_id)?;
match unit_type {
// Exercises do not have metadata, so this operation is not supported.
UnitType::Exercise => Err(anyhow!(
"cannot apply metadata filter to exercise with ID {}",
unit_id
)),
UnitType::Course => {
// Retrieve the course manifest and check if the course passes the filter.
let course_manifest = self.get_course_manifest(unit_id)?;
Ok(metadata_filter
.as_ref()
.unwrap()
.apply_to_course(&course_manifest))
}
UnitType::Lesson => {
// Retrieve the lesson and course manifests and check if the lesson passes the
// filter.
let course_manifest =
self.get_course_manifest(self.get_lesson_course(unit_id).unwrap_or_default())?;
let lesson_manifest = self.get_lesson_manifest(unit_id)?;
Ok(metadata_filter
.as_ref()
.unwrap()
.apply_to_lesson(&course_manifest, &lesson_manifest))
}
}
}
/// Increments the value in the frequency map for the given exercise ID.
#[inline]
pub fn increment_exercise_frequency(&self, exercise_id: Ustr) {
let mut frequency_map = self.frequency_map.write();
let frequency = frequency_map.entry(exercise_id).or_insert(0);
*frequency += 1;
}
/// Returns the frequency of the given exercise ID.
#[inline]
#[must_use]
pub fn get_exercise_frequency(&self, exercise_id: Ustr) -> usize {
self.frequency_map
.read()
.get(&exercise_id)
.copied()
.unwrap_or(0)
}
/// Returns the unit filter for the saved filter with the given ID. Returns an error if no
/// filter exists with that ID exists.
pub fn get_saved_filter(&self, filter_id: &str) -> Result<SavedFilter> {
match self.filter_manager.read().get_filter(filter_id) {
Some(filter) => Ok(filter),
None => Err(anyhow!("no saved filter with ID {} exists", filter_id)),
}
}
/// Returns the unit filter that should be used for the given study session.
pub fn get_session_filter(
&self,
session_data: &StudySessionData,
time: DateTime<Utc>,
) -> Result<Option<UnitFilter>> {
match session_data.get_part(time) {
SessionPart::NoFilter { .. } => Ok(None),
SessionPart::UnitFilter { filter, .. } => Ok(Some(filter)),
SessionPart::SavedFilter { filter_id, .. } => {
let saved_filter = self.get_saved_filter(&filter_id)?;
Ok(Some(saved_filter.filter))
}
}
}
/// Returns all the valid exercises in the given lesson.
#[must_use]
pub fn all_valid_exercises_in_lesson(&self, lesson_id: Ustr) -> Vec<Ustr> {
// If the lesson is blacklisted, return no exercises.
if self.blacklisted(lesson_id).unwrap_or(false) {
return vec![];
}
// If the course to which the lesson belongs is blacklisted, return no exercises.
let course_id = self.get_lesson_course(lesson_id).unwrap_or_default();
if self.blacklisted(course_id).unwrap_or(false) {
return vec![];
}
// Get all exercises in the lesson and filter out the blacklisted ones.
let exercises = self.get_lesson_exercises(lesson_id);
exercises
.into_iter()
.filter(|exercise_id| !self.blacklisted(*exercise_id).unwrap_or(false))
.collect()
}
/// Returns all the valid exercises in the given unit.
#[must_use]
pub fn all_valid_exercises(&self, unit_id: Ustr) -> Vec<Ustr> {
// First, get the type of the unit. Then get the exercises based on the unit type.
let unit_type = self.get_unit_type(unit_id);
match unit_type {
None => vec![],
Some(UnitType::Exercise) => {
// Return the exercise if it's not blacklisted.
if self.blacklisted(unit_id).unwrap_or(false) {
vec![]
} else {
vec![unit_id]
}
}
Some(UnitType::Lesson) => self.all_valid_exercises_in_lesson(unit_id),
Some(UnitType::Course) => {
// If the course is blacklisted, return no exercises.
if self.blacklisted(unit_id).unwrap_or(false) {
return vec![];
}
// Otherwise, get all the lessons and the valid exercises in each.
let lessons = self
.unit_graph
.read()
.get_course_lessons(unit_id)
.unwrap_or_default();
lessons
.into_iter()
.flat_map(|lesson_id| self.all_valid_exercises_in_lesson(lesson_id))
.collect()
}
}
}
}
#[cfg(test)]
mod test {
use anyhow::Result;
use chrono::Duration;
use lazy_static::lazy_static;
use parking_lot::RwLock;
use std::{
collections::{BTreeMap, HashMap},
sync::Arc,
};
use ustr::Ustr;
use crate::{
data::{
filter::{
FilterType, KeyValueFilter, SavedFilter, SessionPart, StudySession,
StudySessionData, UnitFilter,
},
UnitType,
},
filter_manager::LocalFilterManager,
testutil::*,
};
static NUM_EXERCISES: usize = 2;
lazy_static! {
/// A simple set of courses to test the basic functionality of Trane.
static ref TEST_LIBRARY: Vec<TestCourse> = vec![
TestCourse {
id: TestId(0, None, None),
dependencies: vec![],
superseded: vec![],
metadata: BTreeMap::from([
(
"course_key_1".to_string(),
vec!["course_key_1:value_1".to_string()]
),
(
"course_key_2".to_string(),
vec!["course_key_2:value_1".to_string()]
),
]),
lessons: vec![
TestLesson {
id: TestId(0, Some(0), None),
dependencies: vec![],
superseded: vec![],
metadata: BTreeMap::from([
(
"lesson_key_1".to_string(),
vec!["lesson_key_1:value_1".to_string()]
),
(
"lesson_key_2".to_string(),
vec!["lesson_key_2:value_1".to_string()]
),
]),
num_exercises: NUM_EXERCISES,
},
TestLesson {
id: TestId(0, Some(1), None),
dependencies: vec![TestId(0, Some(0), None)],
superseded: vec![],
metadata: BTreeMap::from([
(
"lesson_key_1".to_string(),
vec!["lesson_key_1:value_2".to_string()]
),
(
"lesson_key_2".to_string(),
vec!["lesson_key_2:value_2".to_string()]
),
]),
num_exercises: NUM_EXERCISES,
},
],
},
];
}
/// Verifies that the scheduler data correctly knows which units exist and their types.
#[test]
fn unit_exists() -> Result<()> {
let temp_dir = tempfile::tempdir()?;
let library = init_test_simulation(&temp_dir.path(), &TEST_LIBRARY)?;
let scheduler_data = library.get_scheduler_data();
assert_eq!(
scheduler_data.get_unit_type_strict(Ustr::from("0"))?,
UnitType::Course
);
assert!(scheduler_data.unit_exists(Ustr::from("0"))?);
assert_eq!(
scheduler_data.get_unit_type_strict(Ustr::from("0::0"))?,
UnitType::Lesson
);
assert!(scheduler_data.unit_exists(Ustr::from("0::0"))?);
assert_eq!(
scheduler_data.get_unit_type_strict(Ustr::from("0::0::0"))?,
UnitType::Exercise
);
assert!(scheduler_data.unit_exists(Ustr::from("0::0::0"))?);
Ok(())
}
/// Verifies that a metadata filter cannot be applied to an exercise.
#[test]
fn exercise_metadata_filter() -> Result<()> {
let temp_dir = tempfile::tempdir()?;
let library = init_test_simulation(&temp_dir.path(), &TEST_LIBRARY)?;
let scheduler_data = library.get_scheduler_data();
let metadata_filter = KeyValueFilter::CourseFilter {
key: "key".into(),
value: "value".into(),
filter_type: FilterType::Include,
};
assert!(scheduler_data
.unit_passes_filter(Ustr::from("0::0::0"), Some(&metadata_filter))
.is_err());
Ok(())
}
/// Verifies that the frequency of an exercise is correctly incremented when the exercise is
/// scheduled.
#[test]
fn exercise_frequency() -> Result<()> {
let temp_dir = tempfile::tempdir()?;
let library = init_test_simulation(&temp_dir.path(), &TEST_LIBRARY)?;
let scheduler_data = library.get_scheduler_data();
assert_eq!(
scheduler_data.get_exercise_frequency(Ustr::from("0::0::0")),
0
);
scheduler_data.increment_exercise_frequency(Ustr::from("0::0::0"));
assert_eq!(
scheduler_data.get_exercise_frequency(Ustr::from("0::0::0")),
1
);
Ok(())
}
/// Verifies retrieving the filter for a session part.
#[test]
fn get_session_filter() -> Result<()> {
let temp_dir = tempfile::tempdir()?;
let library = init_test_simulation(&temp_dir.path(), &TEST_LIBRARY)?;
// Add a saved filter to the filter manager.
let mut scheduler_data = library.get_scheduler_data();
scheduler_data.filter_manager = Arc::new(RwLock::new(LocalFilterManager {
filters: HashMap::from([(
"saved_filter".to_string(),
SavedFilter {
id: "saved_filter".to_string(),
description: "Saved filter".to_string(),
filter: UnitFilter::ReviewListFilter,
},
)]),
}));
// Define the data for the study session.
let start_time = chrono::Utc::now();
let session_data = StudySessionData {
start_time,
definition: StudySession {
id: "session".to_string(),
description: "Session".to_string(),
parts: vec![
SessionPart::UnitFilter {
filter: UnitFilter::ReviewListFilter,
duration: 1,
},
SessionPart::NoFilter { duration: 1 },
SessionPart::SavedFilter {
filter_id: "saved_filter".into(),
duration: 1,
},
],
},
};
// Verify that the filter for each session part is correct.
assert_eq!(
scheduler_data.get_session_filter(&session_data, start_time)?,
Some(UnitFilter::ReviewListFilter)
);
assert_eq!(
scheduler_data.get_session_filter(&session_data, start_time + Duration::minutes(1))?,
None
);
assert_eq!(
scheduler_data.get_session_filter(&session_data, start_time + Duration::minutes(2))?,
Some(UnitFilter::ReviewListFilter)
);
// Verify that trying to retrieve an unknown saved filter returns an error.
assert!(scheduler_data
.get_session_filter(
&StudySessionData {
start_time,
definition: StudySession {
id: "session".to_string(),
description: "Session".to_string(),
parts: vec![SessionPart::SavedFilter {
filter_id: "unknown_filter".into(),
duration: 1,
}],
},
},
start_time
)
.is_err());
Ok(())
}
/// Verifies retrieving the valid exercises from a unit.
#[test]
fn all_valid_exercises() -> Result<()> {
// Generate a test library.
let temp_dir = tempfile::tempdir()?;
let library = init_test_simulation(&temp_dir.path(), &TEST_LIBRARY)?;
let scheduler_data = library.get_scheduler_data();
// Verify an empty list is returned when an unknown unit is passed.
assert!(scheduler_data
.all_valid_exercises(Ustr::from("unknown"))
.is_empty());
// Get the valid exercises when the ID is an exercise.
assert_eq!(
scheduler_data.all_valid_exercises(Ustr::from("0::0::0")),
vec![Ustr::from("0::0::0")]
);
// Blacklist that exercise and verify it's no longer valid.
scheduler_data
.blacklist
.write()
.add_to_blacklist(Ustr::from("0::0::0"))?;
assert!(scheduler_data
.all_valid_exercises(Ustr::from("0::0::0"))
.is_empty());
// Get the valid exercises when the ID is a lesson.
assert_eq!(
scheduler_data.all_valid_exercises(Ustr::from("0::1")),
vec![Ustr::from("0::1::0"), Ustr::from("0::1::1")]
);
// Blacklist the lesson and verify the exercises are no longer valid.
scheduler_data
.blacklist
.write()
.add_to_blacklist(Ustr::from("0::1"))?;
assert!(scheduler_data
.all_valid_exercises(Ustr::from("0::1"))
.is_empty());
// Get the valid exercises when the ID is a course.
assert_eq!(
scheduler_data.all_valid_exercises(Ustr::from("0")),
vec![Ustr::from("0::0::1"),]
);
// Blacklist the course and verify the exercises are no longer valid.
scheduler_data
.blacklist
.write()
.add_to_blacklist(Ustr::from("0"))?;
assert!(scheduler_data
.all_valid_exercises(Ustr::from("0"))
.is_empty());
Ok(())
}
}