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
|
#!/usr/bin/env python3
import os
import time
import shutil
import pstats
import cProfile
from mnemosyne.libmnemosyne import Mnemosyne
number_of_calls = 15 # Number of calls to display in profile
number_of_facts = 6000
mnemosyne = None
def startup():
global mnemosyne
# Note that this also includes building the queue and getting the first card.
mnemosyne = Mnemosyne(upload_science_logs=False,
interested_in_old_reps=True)
mnemosyne.components.insert(0,
("mnemosyne.libmnemosyne.gui_translators.no_gui_translator",
"NoGuiTranslator"))
mnemosyne.components.append(
("mnemosyne.libmnemosyne.ui_components.main_widget",
"MainWidget"))
mnemosyne.gui_for_component["ScheduledForgottenNew"] = \
[("mnemosyne_test", "TestReviewWidget")]
mnemosyne.initialise(data_dir=os.path.abspath("dot_benchmark"),
automatic_upgrades=False)
#mnemosyne.initialise(data_dir="\SDMMC\.mnemosyne",
#automatic_upgrades=False)
mnemosyne.start_review()
def create_database():
mnemosyne.database().new(mnemosyne.config()["last_database"])
for i in range(number_of_facts):
fact_data = {"f": "question" + str(i),
"b": "answer" + str(i)}
if i % 2:
card_type = mnemosyne.card_type_with_id("1")
else:
card_type = mnemosyne.card_type_with_id("2")
card = mnemosyne.controller().create_new_cards(\
fact_data, card_type, grade=4, tag_names=["default"],
check_for_duplicates=False, save=False)[0]
card.next_rep = time.time() - 24 * 60 * 60
card.last_rep = card.next_rep - i * 24 * 60 * 60
mnemosyne.database().update_card(card)
mnemosyne.database().save()
def queue():
mnemosyne.review_controller().reset()
def new_question():
# Note that this actually also happened in startup().
mnemosyne.review_controller().show_new_question()
def display():
mnemosyne.review_controller().card.question()
def grade():
# Note that this will also pull in a new question.
mnemosyne.review_controller().grade_answer(0)
def grade_2():
# Note that this will also pull in a new question.
mnemosyne.review_controller().grade_answer(0)
def grade_only():
mnemosyne.scheduler().grade_answer(\
mnemosyne.review_controller().card, 0)
def count_active():
mnemosyne.scheduler().active_count()
def count_scheduled():
mnemosyne.scheduler().scheduled_count()
def count_not_memorised():
mnemosyne.scheduler().non_memorised_count()
def activate():
from mnemosyne.libmnemosyne.criteria.default_criterion import \
DefaultCriterion
card_type_2 = mnemosyne.card_type_with_id("2")
c = DefaultCriterion(mnemosyne.component_manager)
c._tag_ids_active = set([mnemosyne.database().get_or_create_tag_with_name("default")._id])
c._tag_ids_forbidden = set()
c.deactivated_card_type_fact_view_ids = \
set([(card_type_2.id, card_type_2.fact_views[0].id)])
c._tag_ids_active = set([mnemosyne.database().get_or_create_tag_with_name("default")._id])
c._tag_ids_forbidden = set()
mnemosyne.database().set_current_criterion(c)
def finalise():
mnemosyne.finalise()
def do_import():
mnemosyne.component_manager.current("file_format").\
do_import("/home/pbienst/dot_mnemosyne/default.mem")
def test_setup():
shutil.rmtree("dot_test", ignore_errors=True)
global mnemosyne
mnemosyne = Mnemosyne(upload_science_logs=False, interested_in_old_reps=True)
mnemosyne.components.insert(0,
("mnemosyne.libmnemosyne.gui_translators.gettext_gui_translator",
"GetTextGuiTranslator"))
mnemosyne.components.append(\
("test_add_cards", "Widget"))
mnemosyne.gui_for_component["ScheduledForgottenNew"] = \
[("mnemosyne_test", "TestReviewWidget")]
mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "EditCardDialog"))
mnemosyne.initialise(os.path.abspath("dot_test"), automatic_upgrades=False)
mnemosyne.review_controller().reset()
def test_run():
fact_data = {"f": "question",
"b": "answer"}
card_type = mnemosyne.card_type_with_id("1")
card = mnemosyne.controller().create_new_cards(fact_data, card_type,
grade=-1, tag_names=["default"])[0]
mnemosyne.controller().save_file()
assert mnemosyne.database().fact_count() == 1
assert mnemosyne.database().card_count() == 1
tests = ["startup()", "create_database()", "queue()", "new_question()", "display()", "grade_only()",
"grade()", "grade_2()", "count_active()", "count_scheduled()", "count_not_memorised()"]
#tests = ["startup()", "new_question()", "display()", "grade()", "grade_2()", "activate()",
# "finalise()"]
#tests = ["startup()", "create_database()", "new_question()", "display()",
# "grade()", "activate()", "finalise()"]
#tests = ["startup()", "create_database()", "new_question()", "display()",
# "grade()", "finalise()"]
#tests = ["startup()", "create_database()", "activate()"]
#tests = ["startup()", "do_import()", "finalise()"]
#tests = ["startup()", "queue()", "finalise()"]
#tests = ["startup()", "activate()"]
#tests = ["startup()", "finalise()"]
#tests = ["test_setup()", "test_run()"]
for test in tests:
cProfile.run(test, "mnemosyne_profile." + test.replace("()", ""))
print()
print(("*** ", test, " ***"))
print()
p = pstats.Stats('mnemosyne_profile.' + test.replace("()", ""))
p.strip_dirs().sort_stats('cumulative').print_stats(number_of_calls)
# 5.2 0.92
|