diff options
author | Alex Auvolat <alex@adnab.me> | 2018-09-01 16:06:23 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2018-09-01 16:06:23 +0200 |
commit | c6ec33d6e612168e14d77007915a4ea423c55a2e (patch) | |
tree | 8b5645651a0cc991b8ac9c68c388d84c8dbe73d2 /lib/cli | |
parent | 1a0ef154a421af60f6d57dfe861dacb844a7d142 (diff) | |
download | shard-c6ec33d6e612168e14d77007915a4ea423c55a2e.tar.gz shard-c6ec33d6e612168e14d77007915a4ea423c55a2e.zip |
Move everything to subdirectory
Diffstat (limited to 'lib/cli')
-rw-r--r-- | lib/cli/cli.ex | 98 |
1 files changed, 0 insertions, 98 deletions
diff --git a/lib/cli/cli.ex b/lib/cli/cli.ex deleted file mode 100644 index 2fbf8c2..0000000 --- a/lib/cli/cli.ex +++ /dev/null @@ -1,98 +0,0 @@ -defmodule SCLI do - @moduledoc """ - Small command line interface for the chat application - """ - - def run() do - run(nil) - end - - defp run(pid) do - handle_messages() - - nick = Shard.Identity.get_nickname - prompt = case pid do - nil -> "(no channel) #{nick}: " - _ -> - {:chat, chan} = GenServer.call(pid, :manifest) - "##{chan} #{nick}: " - end - - str = prompt |> IO.gets |> String.trim - cond do - str == "/quit" -> - nil - String.slice(str, 0..0) == "/" -> - command = str |> String.slice(1..-1) |> String.split(" ") - pid2 = handle_command(pid, command) - run(pid2) - true -> - if str != "" do - GenServer.cast(pid, {:chat_send, str}) - end - run(pid) - end - end - - defp handle_messages() do - receive do - {:chat_recv, chan, {ts, nick, msg}} -> - IO.puts "#{ts |> DateTime.from_unix! |> DateTime.to_iso8601} ##{chan} <#{nick}> #{msg}" - handle_messages() - {:chat_send, _, _} -> - # do nothing - handle_messages() - after 10 -> nil - end - end - - defp handle_command(pid, ["connect", ipstr, portstr]) do - {:ok, ip} = :inet.parse_address (to_charlist ipstr) - {port, _} = Integer.parse portstr - Shard.Manager.add_peer(ip, port) - pid - end - - defp handle_command(pid, ["list"]) do - IO.puts "List of known channels:" - - for {_chid, manifest, _chpid} <- :ets.tab2list(:shard_db) do - {:chat, chan} = manifest - IO.puts "##{chan}" - end - pid - end - - defp handle_command(pid, ["hist"]) do - GenServer.call(pid, {:read_history, nil, 25}) - |> Enum.each(fn {{ts, nick, msg}, true} -> - IO.puts "#{ts |> DateTime.from_unix! |> DateTime.to_iso8601} <#{nick}> #{msg}" - end) - pid - end - - defp handle_command(_pid, ["join", qchan]) do - list = for {_chid, manifest, chpid} <- :ets.tab2list(:shard_db), - {:chat, chan} = manifest, - do: {chan, chpid} - case List.keyfind(list, qchan, 0) do - nil -> - {:ok, pid} = DynamicSupervisor.start_child(Shard.DynamicSupervisor, {SApp.Chat, qchan}) - GenServer.cast(pid, {:subscribe, self()}) - pid - {_, pid} -> - IO.puts "Switching to ##{qchan}" - pid - end - end - - defp handle_command(pid, ["nick", nick]) do - Shard.Identity.set_nickname nick - pid - end - - defp handle_command(pid, _cmd) do - IO.puts "Invalid command" - pid - end -end |