mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-08 16:07:37 +08:00
9d7fe44253
* Introduce smart cells * Apply review comments
32 lines
901 B
Elixir
32 lines
901 B
Elixir
defmodule Livebook.Runtime.NoopRuntime do
|
|
@moduledoc false
|
|
|
|
# A runtime that doesn't do any actual evaluation,
|
|
# thus not requiring any underlying resources.
|
|
|
|
defstruct []
|
|
|
|
def new(), do: %__MODULE__{}
|
|
|
|
defimpl Livebook.Runtime do
|
|
def connect(_, _), do: make_ref()
|
|
def disconnect(_), do: :ok
|
|
def evaluate_code(_, _, _, _, _ \\ []), do: :ok
|
|
def forget_evaluation(_, _), do: :ok
|
|
def drop_container(_, _), do: :ok
|
|
def handle_intellisense(_, _, _, _, _), do: :ok
|
|
def duplicate(_), do: {:ok, Livebook.Runtime.NoopRuntime.new()}
|
|
def standalone?(_), do: false
|
|
|
|
def read_file(_, path) do
|
|
case File.read(path) do
|
|
{:ok, content} -> {:ok, content}
|
|
{:error, posix} -> {:error, posix |> :file.format_error() |> List.to_string()}
|
|
end
|
|
end
|
|
|
|
def start_smart_cell(_, _, _, _), do: :ok
|
|
|
|
def stop_smart_cell(_, _), do: :ok
|
|
end
|
|
end
|