|
-module(my_stream_h). |
|
|
|
-behaviour(cowboy_stream). |
|
|
|
% Callbacks |
|
-export([init/3]). |
|
-export([data/4]). |
|
-export([info/3]). |
|
-export([terminate/3]). |
|
-export([early_error/5]). |
|
|
|
%--- Callbacks ----------------------------------------------------------------- |
|
|
|
init(StreamID, Req, Opts) -> |
|
logger:info("[~p] begin~n", [StreamID]), |
|
{Commands0, Next} = cowboy_stream:init(StreamID, Req, Opts), |
|
{Commands0, #{next => Next}}. |
|
|
|
data(StreamID, IsFin, Data, #{next := Next0} = State0) -> |
|
logger:info("[~p] data [~p] ~p~n", [StreamID, IsFin, Data]), |
|
{Commands0, Next1} = cowboy_stream:data(StreamID, IsFin, Data, Next0), |
|
{Commands0, State0#{next => Next1}}. |
|
|
|
info(StreamID, Info, #{next := Next0} = State0) -> |
|
logger:info("[~p] info ~p~n", [StreamID, Info]), |
|
{Commands0, Next1} = cowboy_stream:info(StreamID, Info, Next0), |
|
{Commands0, State0#{next => Next1}}. |
|
|
|
terminate(StreamID, Reason, #{next := Next0}) -> |
|
logger:info("[~p] terminate ~p~n", [StreamID, Reason]), |
|
cowboy_stream:terminate(StreamID, Reason, Next0). |
|
|
|
early_error(StreamID, Reason, PartialReq, Resp, Opts) -> |
|
logger:error("[~p] early error ~p ~p ~p ~p~n", [StreamID, Reason, PartialReq, Resp, Opts]), |
|
cowboy_stream:early_error(StreamID, Reason, PartialReq, Resp, Opts). |
@eproxus Can you elaborate on what your
Dispatch
would be? I have cobbled together a stream handler for my needs, which works at least for POSTing a file, but invariably returns 400 -- I suspect because myDispatch
is empty. If I add a rule like{"/[...]", my_stream_h, #{}}
, I get anerror:undef
(because my stream handler, obviously, has aninit
different frominit
cowboy wants to call). And if I replace my_stream_h with some non-existing module, streaming does happen but I get a 404.In other words, how do I mention
my_handler_h
in the routing dispatch table?