feat(services): add prep_scheduler — sequences batch cooking tasks by equipment priority

This commit is contained in:
pyr0ball 2026-04-12 13:14:54 -07:00
parent 4459b1ab7e
commit 25027762cf
2 changed files with 141 additions and 0 deletions

View file

@ -0,0 +1,86 @@
# app/services/meal_plan/prep_scheduler.py
"""Sequence prep tasks for a batch cooking session.
Pure function no DB or network calls. Sorts tasks by equipment priority
(oven first to maximise oven utilisation) then assigns sequence_order.
"""
from __future__ import annotations
from dataclasses import dataclass, field
_EQUIPMENT_PRIORITY = {"oven": 0, "stovetop": 1, "cold": 2, "no-heat": 3}
_DEFAULT_PRIORITY = 4
@dataclass
class PrepTask:
recipe_id: int | None
slot_id: int | None
task_label: str
duration_minutes: int | None
sequence_order: int
equipment: str | None
is_parallel: bool = False
notes: str | None = None
user_edited: bool = False
def _total_minutes(recipe: dict) -> int | None:
prep = recipe.get("prep_time")
cook = recipe.get("cook_time")
if prep is None and cook is None:
return None
return (prep or 0) + (cook or 0)
def _equipment(recipe: dict) -> str | None:
# Corpus recipes don't have an explicit equipment field; use test helper
# field if present, otherwise infer from cook_time (long = oven heuristic).
if "_equipment" in recipe:
return recipe["_equipment"]
minutes = _total_minutes(recipe)
if minutes and minutes >= 45:
return "oven"
return "stovetop"
def build_prep_tasks(slots: list[dict], recipes: list[dict]) -> list[PrepTask]:
"""Return a sequenced list of PrepTask objects from plan slots + recipe rows.
Algorithm:
1. Build a recipe_id recipe dict lookup.
2. Create one task per slot that has a recipe assigned.
3. Sort by equipment priority (oven first).
4. Assign contiguous sequence_order starting at 1.
"""
if not slots or not recipes:
return []
recipe_map: dict[int, dict] = {r["id"]: r for r in recipes}
raw_tasks: list[tuple[int, PrepTask]] = [] # (priority, task)
for slot in slots:
recipe_id = slot.get("recipe_id")
if not recipe_id:
continue
recipe = recipe_map.get(recipe_id)
if not recipe:
continue
eq = _equipment(recipe)
priority = _EQUIPMENT_PRIORITY.get(eq or "", _DEFAULT_PRIORITY)
task = PrepTask(
recipe_id=recipe_id,
slot_id=slot.get("id"),
task_label=recipe.get("name", f"Recipe {recipe_id}"),
duration_minutes=_total_minutes(recipe),
sequence_order=0, # filled below
equipment=eq,
)
raw_tasks.append((priority, task))
raw_tasks.sort(key=lambda t: t[0])
for i, (_, task) in enumerate(raw_tasks, 1):
task.sequence_order = i
return [t for _, t in raw_tasks]

View file

@ -0,0 +1,55 @@
# tests/services/test_meal_plan_prep_scheduler.py
"""Unit tests for prep_scheduler.py — no DB or network."""
from __future__ import annotations
import pytest
from app.services.meal_plan.prep_scheduler import PrepTask, build_prep_tasks
def _recipe(id_: int, name: str, prep_time: int | None, cook_time: int | None, equipment: str) -> dict:
return {
"id": id_, "name": name,
"prep_time": prep_time, "cook_time": cook_time,
"_equipment": equipment, # test helper field
}
def _slot(slot_id: int, recipe: dict, day: int = 0) -> dict:
return {"id": slot_id, "recipe_id": recipe["id"], "day_of_week": day,
"meal_type": "dinner", "servings": 2.0}
def test_builds_task_per_slot():
recipe = _recipe(1, "Pasta", 10, 20, "stovetop")
tasks = build_prep_tasks(
slots=[_slot(1, recipe)],
recipes=[recipe],
)
assert len(tasks) == 1
assert tasks[0].task_label == "Pasta"
assert tasks[0].duration_minutes == 30 # prep + cook
def test_oven_tasks_scheduled_first():
oven_recipe = _recipe(1, "Roast Chicken", 10, 60, "oven")
stove_recipe = _recipe(2, "Rice", 2, 20, "stovetop")
tasks = build_prep_tasks(
slots=[_slot(1, stove_recipe), _slot(2, oven_recipe)],
recipes=[stove_recipe, oven_recipe],
)
orders = {t.task_label: t.sequence_order for t in tasks}
assert orders["Roast Chicken"] < orders["Rice"]
def test_missing_corpus_time_leaves_duration_none():
recipe = _recipe(1, "Mystery Dish", None, None, "stovetop")
tasks = build_prep_tasks(slots=[_slot(1, recipe)], recipes=[recipe])
assert tasks[0].duration_minutes is None
def test_sequence_order_is_contiguous_from_one():
recipes = [_recipe(i, f"Recipe {i}", 10, 10, "stovetop") for i in range(1, 4)]
slots = [_slot(i, r) for i, r in enumerate(recipes, 1)]
tasks = build_prep_tasks(slots=slots, recipes=recipes)
orders = sorted(t.sequence_order for t in tasks)
assert orders == [1, 2, 3]