version: 0.1.0

+ ws server at "/" and port 11000
+ simple ws handler casting to wsbus
This commit is contained in:
Umgeher Torgersen 2024-11-27 15:59:10 +00:00
parent 454d1fb055
commit 052b0b25c7
6 changed files with 4777 additions and 0 deletions

14
.gitignore vendored Normal file
View file

@ -0,0 +1,14 @@
deps
ebin
_rel
.erlang.mk/
config
*.d
*.plt
*.beam
*.pem
*.dump
include/flow_service.erl
flow_service_server.erl
*.DS_Store
*#

19
Makefile Normal file
View file

@ -0,0 +1,19 @@
PROJECT = wsio
PROJECT_DESCRIPTION = WebSocket IO
PROJECT_VERSION = 0.1.0
# By default templates indent with a single tab per indentation
# level. Set this variable to the number of spaces you prefer:
SP = 2
DEPS += cowboy jsx st
DEP_PLUGINS = cowboy
dep_cowboy_commit = 2.12.0
dep_st = git https://git.sr.ht/~umgeher/st 1.2.4
dep_jsx = git https://code.kontrl.tech/umgeher/jsx master
include erlang.mk
run:
gmake && SHELL_OPTS="-config config/sys.config -eval 'application:ensure_all_started(wsio).'" gmake shell

4668
erlang.mk vendored Normal file

File diff suppressed because it is too large Load diff

16
src/wsio_app.erl Normal file
View file

@ -0,0 +1,16 @@
-module(wsio_app).
-behaviour(application).
-export([start/2]).
-export([stop/1]).
start(_Type, _Args) ->
Routes = [{"/", wsio_handler, none}],
Dispatch = cowboy_router:compile([{'_', Routes}]),
{ok, _} = cowboy:start_clear(httpd, [inet, {port, 11000}],
#{env => #{dispatch => Dispatch}}
),
wsio_sup:start_link().
stop(_State) ->
ok.

48
src/wsio_handler.erl Normal file
View file

@ -0,0 +1,48 @@
-module(wsio_handler).
-export([init/2]).
-export([websocket_handle/2]).
-export([websocket_init/1]).
-export([websocket_info/2]).
-define(TTL_PING, 10000).
init(R, _) ->
{cowboy_websocket, R, #{}}.
websocket_init(S) ->
Ref = st:lookup(wsbus),
{ok, S#{wsbus => nil, ref_wsbus => Ref}}.
websocket_handle({text, <<Data/binary>>}, S) ->
case jsx:is_json(Data) of
true ->
websocket_handle({json, jsx:decode(Data)}, S);
false ->
{ok, S}
end;
websocket_handle({json, #{<<"ref">> := Ref}}, #{wsbus := nil} = S) ->
{[{text, jsx:encode(#{<<"ref">> => Ref, <<"wsio-code">> => 0})}], S};
websocket_handle({json, Data}, #{wsbus := BUS} = S) ->
gen_server:cast(BUS, {call, Data, self()}),
{ok, S};
websocket_handle(_, State) ->
{ok, State}.
websocket_info(close, S) ->
{[close], S};
websocket_info(ping, S) ->
erlang:send_after(?TTL_PING, self(), ping),
{[ping], S};
websocket_info({send, #{} = Map}, S) ->
{[{text, jsx:encode(Map)}], S};
websocket_info({send, <<Bin/binary>>}, S) ->
{[{text, Bin}], S};
websocket_info({send, List}, S) when is_list(List) ->
{List, S};
websocket_info({_, {Ref, {error, notfound}}}, #{ref_wsbus := Ref} = S) ->
{ok, S#{ref_wsbus => st:lookup(wsbus)}};
websocket_info({_, {Ref, {ok, PID}}}, #{ref_wsbus := Ref} = S) ->
{ok, maps:remove(ref_wsbus, S#{wsbus => PID})};
websocket_info(_, S) ->
{ok, S}.

12
src/wsio_sup.erl Normal file
View file

@ -0,0 +1,12 @@
-module(wsio_sup).
-behaviour(supervisor).
-export([start_link/0]).
-export([init/1]).
start_link() ->
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
init([]) ->
Procs = [],
{ok, {{one_for_one, 1, 5}, Procs}}.