/- Copyright (c) 2022 Mac Malone. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Mac Malone -/ import Lake.Util.Cycle import Lake.Util.Store import Lake.Util.EquipT /-! # Topological / Suspending Recursive Builder This module defines a recursive build function that topologically (ι.e., via a depth-first search with memoization) builds the elements of a build store. This is called a suspending scheduler in *Build systems à la carte*. -/ open Std namespace Lake /-! ## Recursive Fetching In this section, we define the primitives that make up a builder. -/ /-- A dependently typed monadic *fetch* function. That is, a function within the monad `m` and takes an input `a : α` describing what to fetch and and produces some output `b : β a` (dependently typed) or `b : B` (not) describing what was fetched. All build functions are fetch functions, but not all fetch functions need build something. -/ abbrev DFetchFn (α : Type u) (β : α → Type v) (m : Type v → Type w) := (a : α) → m (β a) /-! In order to nest builds / fetches within one another, we equip the monad `m` with a fetch function of its own. -/ /-- A transformer that equips a monad with a `DFetchFn`. -/ abbrev DFetchT (α : Type u) (β : α → Type v) (m : Type v → Type w) := EquipT (DFetchFn α β m) m /-- A `DFetchT` that is not dependently typed. -/ abbrev FetchT (α : Type u) (β : Type v) (m : Type v → Type w) := DFetchT α (fun _ => β) m /-! We can then use the such a monad as the basis for a fetch function itself. -/ /- A `DFetchFn` that utilizes another `DFetchFn` equipped to the monad to fetch values. It is thus usually implemented recursively via some variation of the `recFetch` function below, hence the "rec" in both names. -/ abbrev DRecFetchFn (α : Type u) (β : α → Type v) (m : Type v → Type w) := DFetchFn α β (DFetchT α β m) /-- A `DRecFetchFn` that is not dependently typed. -/ abbrev RecFetchFn (α : Type u) (β : Type v) (m : Type v → Type w) := α → FetchT α β m β /-- A `DFetchFn` that provides its base `DRecFetchFn` with itself. -/ @[specialize] partial def recFetch [(α : Type u) → Nonempty (m α)] (fetch : DRecFetchFn α β m) : DFetchFn α β m := fun a => fetch a (recFetch fetch) /-! The basic `recFetch` can fail to terminate in a variety of ways, it can even cycle (i.e., `a` fetches `b` which fetches `a`). Thus, we define the `acyclicRecFetch` below to guard against such cases. -/ /-- A `recFetch` augmented by a `CycleT` to guard against recursive cycles. If the set of visited keys is finite, this function should provably terminate. We use `keyOf` to the derive the unique key of a fetch from its descriptor `a : α`. We do this because descriptors may not be comparable and/or contain more information than necessary to determine uniqueness. -/ @[inline] partial def recFetchAcyclic [BEq κ] [Monad m] (keyOf : α → κ) (fetch : DRecFetchFn α β (CycleT κ m)) : DFetchFn α β (CycleT κ m) := recFetch fun a recurse => /- NOTE: We provide the stack directly to `recurse` rather than get it through `ReaderT` to prevent it being overridden by the `fetch` function (and thereby potentially produce a cycle). -/ guardCycle (keyOf a) fun stack => fetch a (recurse · stack) stack /-! When building, we usually do not want to build the same thing twice during a single build pass. At the same time, separate builds may both wish to fetch the same thing. Thus, we need to store past build results to return them upon future fetches. This is what `recFetchMemoize` below does. -/ /-- `recFetchAcyclic` augmented with a `MonadDStore` to memoize fetch results and thus avoid computing the same result twice. -/ @[inline] def recFetchMemoize [BEq κ] [Monad m] [MonadDStore κ β m] (keyOf : α → κ) (fetch : DRecFetchFn α (fun a => β (keyOf a)) (CycleT κ m)) : DFetchFn α (fun a => β (keyOf a)) (CycleT κ m) := recFetchAcyclic keyOf fun a recurse => fetchOrCreate (keyOf a) do fetch a recurse /-! ## Building In this section, we use the abstractions we have just created to define the desired topological recursive build function (a.k.a. a suspending scheduler). -/ /-- Recursively builds objects for the keys `κ`, avoiding cycles. -/ @[inline] def buildAcyclic [BEq κ] [Monad m] (keyOf : α → κ) (a : α) (build : RecFetchFn α β (CycleT κ m)) : ExceptT (Cycle κ) m β := recFetchAcyclic (β := fun _ => β) keyOf build a [] /-- Dependently typed version of `buildTop`. -/ @[inline] def buildDTop (β) [BEq κ] [Monad m] [MonadDStore κ β m] (keyOf : α → κ) (a : α) (build : DRecFetchFn α (fun a => β (keyOf a)) (CycleT κ m)) : ExceptT (Cycle κ) m (β (keyOf a)) := recFetchMemoize keyOf build a [] /-- Recursively fills a `MonadStore` of key-object pairs by building objects topologically (ι.e., depth-first with memoization). If a cycle is detected, the list of keys traversed is thrown. -/ @[inline] def buildTop [BEq κ] [Monad m] [MonadStore κ β m] (keyOf : α → κ) (a : α) (build : RecFetchFn α β (CycleT κ m)) : ExceptT (Cycle κ) m β := recFetchMemoize (β := fun _ => β) keyOf build a []