(define recipe-name (lambda (recipe) (cadr (assoc 'name recipe)))) (define recipe-ingredients (lambda (recipe) (cadr (assoc 'ingredients recipe)))) (define recipe-steps (lambda (recipe) (cadr (assoc 'steps recipe)))) (define recipe-servings (lambda (recipe) (if (recipe-specifies-servings? recipe) (cadr (assoc 'servings recipe)) 1) )) (define ingredient-name (lambda (ingredient) (if (= (length ingredient) 2) (car (cdr ingredient)) (car (cddr ingredient))))) (define ingredient-amount (lambda (ingredient) (car ingredient))) (define ingredient-unit (lambda (ingredient) (if (= (length ingredient) 2) "" (car (cdr ingredient))))) ;; Predicates (define contains-ingredient? (lambda (recipe search-ingredient) (contains-ingredients? recipe (cons search-ingredient '())))) (define contains-ingredients? (lambda (recipe search-ingredients) (let ((ingredients (recipe-ingredients recipe))) (cond [(null? search-ingredients) #t] [(ingredient-by-name ingredients (car search-ingredients)) (contains-ingredients? recipe (cdr search-ingredients))] [else #f]) ))) (define recipe-specifies-servings? (lambda (recipe) (assoc 'servings recipe))) ;; Searching and indexing (define ingredient-ref (lambda (ingredients n) (if (= n 0) (car ingredients) (ingredient-ref (cdr ingredients) (- n 1))))) (define ingredient-by-name (lambda (ingredients search-name) (let ((ingredient (car ingredients))) (cond [(equal? (ingredient-name ingredient) search-name) ingredient] [(null? (cdr ingredients)) #f] [else (ingredient-by-name (cdr ingredients) search-name)])))) (define recipes-by-ingredients (lambda (recipes search-ingredients) (filter (lambda (x) (contains-ingredients? x search-ingredients)) recipes))) (define recipe-by-name (lambda (name recipes) (if (null? recipes) #f (let ((recipe (car recipes))) (if (equal? (recipe-name recipe) name) recipe (recipe-by-name name (cdr recipes))))))) ;; Manipulation (define scale-recipe (lambda (recipe wanted-servings) (let ([name (recipe-name recipe)] [ingredients (recipe-ingredients recipe)] [steps (recipe-steps recipe)] [servings (recipe-servings recipe)]) (let ([new-name name] [new-ingredients (map (lambda (ingr) (list (* (/ (car ingr) servings) wanted-servings) (cdr ingr))) ingredients)] [new-steps steps] [new-servings wanted-servings]) (make-recipe new-name new-servings new-ingredients new-steps) )))) ;; Constructors (define make-recipe (lambda (name servings ingredients steps) `((name ,name) (servings ,servings) (ingredients ,ingredients) (steps ,steps))))