aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE_data/http_multipart_stream.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-02-06 19:36:25 +0100
committerLoïc Hoguin <[email protected]>2014-02-06 19:36:25 +0100
commit917cf99e10c41676183d501b86af6e47c95afb89 (patch)
tree4f8877626baaea0a749b8007aab1838aa372aecb /test/http_SUITE_data/http_multipart_stream.erl
parent1f5342f3b8ce40b7bee0b9e8ff76981be6aea2df (diff)
downloadcowboy-917cf99e10c41676183d501b86af6e47c95afb89.tar.gz
cowboy-917cf99e10c41676183d501b86af6e47c95afb89.tar.bz2
cowboy-917cf99e10c41676183d501b86af6e47c95afb89.zip
Add and document the new multipart code
The old undocumented API is removed entirely. While a documentation exists for the new API, it will not be considered set in stone until further testing has been performed, and a file upload example has been added. The new API should be a little more efficient than the old API, especially with smaller messages.
Diffstat (limited to 'test/http_SUITE_data/http_multipart_stream.erl')
-rw-r--r--test/http_SUITE_data/http_multipart_stream.erl34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/http_SUITE_data/http_multipart_stream.erl b/test/http_SUITE_data/http_multipart_stream.erl
new file mode 100644
index 0000000..926d150
--- /dev/null
+++ b/test/http_SUITE_data/http_multipart_stream.erl
@@ -0,0 +1,34 @@
+%% Feel free to use, reuse and abuse the code in this file.
+
+-module(http_multipart_stream).
+-behaviour(cowboy_http_handler).
+-export([init/3, handle/2, terminate/3]).
+
+init(_, Req, []) ->
+ {ok, Req, undefined}.
+
+handle(Req, State) ->
+ Req2 = multipart(Req),
+ {ok, Req3} = cowboy_req:reply(200, Req2),
+ {ok, Req3, State}.
+
+terminate(_, _, _) ->
+ ok.
+
+multipart(Req) ->
+ case cowboy_req:part(Req) of
+ {ok, [{<<"content-length">>, BinLength}], Req2} ->
+ Length = list_to_integer(binary_to_list(BinLength)),
+ {Length, Req3} = stream_body(Req2, 0),
+ multipart(Req3);
+ {done, Req2} ->
+ Req2
+ end.
+
+stream_body(Req, N) ->
+ case cowboy_req:part_body(Req) of
+ {ok, Data, Req2} ->
+ {N + byte_size(Data), Req2};
+ {more, Data, Req2} ->
+ stream_body(Req2, N + byte_size(Data))
+ end.