2024-02-16 17:27:46 -05:00
|
|
|
defmodule SloaneSH.Watch do
|
|
|
|
use GenServer
|
2024-02-16 22:28:13 -05:00
|
|
|
use TypedStruct
|
2024-02-16 17:27:46 -05:00
|
|
|
require Logger
|
|
|
|
|
2024-02-16 22:28:13 -05:00
|
|
|
alias SloaneSH.Build
|
|
|
|
alias SloaneSH.Context
|
|
|
|
|
|
|
|
typedstruct do
|
|
|
|
field :ctx, Context.t(), enforce: true
|
|
|
|
field :watcher_pid, pid(), enforce: true
|
|
|
|
end
|
|
|
|
|
|
|
|
def start_link(%Context{} = ctx, opts \\ []) do
|
|
|
|
GenServer.start_link(__MODULE__, ctx, opts)
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl GenServer
|
|
|
|
def init(%Context{} = ctx) do
|
|
|
|
{:ok, watcher_pid} =
|
|
|
|
FileSystem.start_link(
|
|
|
|
dirs:
|
|
|
|
dbg([
|
|
|
|
ctx.config.pages_dir,
|
|
|
|
ctx.config.posts_dir
|
|
|
|
])
|
|
|
|
)
|
|
|
|
|
|
|
|
FileSystem.subscribe(watcher_pid)
|
|
|
|
|
|
|
|
state = %__MODULE__{ctx: ctx, watcher_pid: watcher_pid}
|
|
|
|
|
|
|
|
{:ok, state, {:continue, :build}}
|
2024-02-16 17:27:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
@impl GenServer
|
2024-02-16 22:28:13 -05:00
|
|
|
def handle_continue(:build, %{ctx: ctx} = state) do
|
|
|
|
Build.run(ctx)
|
2024-02-16 17:27:46 -05:00
|
|
|
|
2024-02-16 22:28:13 -05:00
|
|
|
{:noreply, state}
|
2024-02-16 17:27:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
@impl GenServer
|
2024-02-16 22:28:13 -05:00
|
|
|
def handle_info({:file_event, pid, {path, events}}, %{ctx: ctx, watcher_pid: pid} = state) do
|
|
|
|
ctx = Context.maybe_add(ctx, path)
|
|
|
|
|
|
|
|
if Context.in_context?(ctx, path) do
|
|
|
|
path = Path.relative_to(path, ctx.config.pages_dir)
|
|
|
|
Logger.info("File changed: #{path}")
|
|
|
|
Build.build_page(ctx, path)
|
|
|
|
end
|
|
|
|
|
|
|
|
%{state | ctx: ctx}
|
|
|
|
|
|
|
|
{:noreply, state}
|
2024-02-16 17:27:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
@impl GenServer
|
2024-02-16 22:28:13 -05:00
|
|
|
def handle_info({:file_event, pid, :stop}, %{watcher_pid: pid}) do
|
2024-02-16 17:27:46 -05:00
|
|
|
Logger.warning("File watcher stopped")
|
|
|
|
{:stop, :watcher_stopped, pid}
|
|
|
|
end
|
|
|
|
end
|