initial import

This commit is contained in:
Helmut Merz 2026-04-19 08:25:51 +02:00
commit 51e3426202
8 changed files with 147 additions and 0 deletions

4
.formatter.exs Normal file
View file

@ -0,0 +1,4 @@
# Used by "mix format"
[
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
]

23
.gitignore vendored Normal file
View file

@ -0,0 +1,23 @@
# The directory Mix will write compiled artifacts to.
/_build/
# If you run "mix test --cover", coverage assets end up here.
/cover/
# The directory Mix downloads your dependencies sources to.
/deps/
# Where third-party dependencies like ExDoc output generated docs.
/doc/
# If the VM crashes, it generates a dump, let's ignore it too.
erl_crash.dump
# Also ignore archive artifacts (built via "mix archive.build").
*.ez
# Ignore package tarball (built via "mix hex.build").
xplore-*.tar
# Temporary files, for example, from tests.
/tmp/

21
README.md Normal file
View file

@ -0,0 +1,21 @@
# Xplore
**TODO: Add description**
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `xplore` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:xplore, "~> 0.1.0"}
]
end
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at <https://hexdocs.pm/xplore>.

28
lib/actor.ex Normal file
View file

@ -0,0 +1,28 @@
defmodule Xplore.Actor do
def loop(bhv) do
receive do
{:message, msg} ->
bhv.(msg)
loop(bhv)
{:system, :become, bhv_n} -> loop(bhv_n)
{:system, :quit} -> :quit
end
end
def create(bhv) do
spawn_link(fn -> loop(bhv) end)
end
def send_message(ac, msg) do
send(ac, {:message, msg})
end
def become(ac, bhv) do
send(ac, {:system, :become, bhv})
end
def stop(ac) do
send(ac, {:system, :quit})
end
end

18
lib/xplore.ex Normal file
View file

@ -0,0 +1,18 @@
defmodule Xplore do
@moduledoc """
Documentation for `Xplore`.
"""
@doc """
Hello world.
## Examples
iex> Xplore.hello()
:world
"""
def hello do
:world
end
end

28
mix.exs Normal file
View file

@ -0,0 +1,28 @@
defmodule Xplore.MixProject do
use Mix.Project
def project do
[
app: :xplore,
version: "0.1.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end

1
test/test_helper.exs Normal file
View file

@ -0,0 +1 @@
ExUnit.start()

24
test/xplore_test.exs Normal file
View file

@ -0,0 +1,24 @@
defmodule XploreTest do
use ExUnit.Case
doctest Xplore
alias Xplore.Actor
test "greets the world" do
assert Xplore.hello() == :world
end
describe "some simple actors" do
test "basic actor live cycle" do
this = self()
ac = Actor.create(fn msg -> send(this, msg) end)
Actor.send_message(ac, "Hello Actor!")
Actor.become(ac, fn _msg -> send(this, "Goodbye") end)
Actor.send_message(ac, "Hello Actor!")
Actor.stop(ac)
assert_receive "Hello Actor!"
assert_receive "Goodbye"
end
end
end