2014-02-06 19:57:23 +01:00
|
|
|
%% Copyright (c) 2011-2014, Loïc Hoguin <essen@ninenines.eu>
|
2011-04-03 00:21:47 +02:00
|
|
|
%%
|
|
|
|
%% Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
%% purpose with or without fee is hereby granted, provided that the above
|
|
|
|
%% copyright notice and this permission notice appear in all copies.
|
|
|
|
%%
|
|
|
|
%% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
%% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
%% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
%% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
%% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
%% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
%% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
-module(cowboy).
|
|
|
|
|
2012-08-27 11:50:35 +02:00
|
|
|
-export([start_http/4]).
|
|
|
|
-export([start_https/4]).
|
2013-05-30 20:21:01 +02:00
|
|
|
-export([start_spdy/4]).
|
2012-08-27 11:50:35 +02:00
|
|
|
-export([stop_listener/1]).
|
2013-02-20 12:14:21 +01:00
|
|
|
-export([set_env/3]).
|
2012-08-27 11:50:35 +02:00
|
|
|
|
2013-05-16 16:16:32 +02:00
|
|
|
-type http_headers() :: [{binary(), iodata()}].
|
|
|
|
-export_type([http_headers/0]).
|
|
|
|
|
2013-05-16 16:29:24 +02:00
|
|
|
-type http_status() :: non_neg_integer() | binary().
|
|
|
|
-export_type([http_status/0]).
|
|
|
|
|
2013-05-16 16:06:52 +02:00
|
|
|
-type http_version() :: 'HTTP/1.1' | 'HTTP/1.0'.
|
|
|
|
-export_type([http_version/0]).
|
|
|
|
|
2013-05-16 16:52:20 +02:00
|
|
|
-type onrequest_fun() :: fun((Req) -> Req).
|
|
|
|
-export_type([onrequest_fun/0]).
|
|
|
|
|
2013-05-16 17:01:38 +02:00
|
|
|
-type onresponse_fun() ::
|
|
|
|
fun((http_status(), http_headers(), iodata(), Req) -> Req).
|
|
|
|
-export_type([onresponse_fun/0]).
|
|
|
|
|
2013-05-16 19:16:13 +02:00
|
|
|
-spec start_http(ranch:ref(), non_neg_integer(), ranch_tcp:opts(),
|
2013-03-29 16:38:30 +01:00
|
|
|
cowboy_protocol:opts()) -> {ok, pid()} | {error, any()}.
|
2012-08-27 11:50:35 +02:00
|
|
|
start_http(Ref, NbAcceptors, TransOpts, ProtoOpts)
|
|
|
|
when is_integer(NbAcceptors), NbAcceptors > 0 ->
|
|
|
|
ranch:start_listener(Ref, NbAcceptors,
|
2012-08-27 12:58:04 +02:00
|
|
|
ranch_tcp, TransOpts, cowboy_protocol, ProtoOpts).
|
2012-08-27 11:50:35 +02:00
|
|
|
|
2013-05-16 19:16:40 +02:00
|
|
|
-spec start_https(ranch:ref(), non_neg_integer(), ranch_ssl:opts(),
|
2013-03-29 16:38:30 +01:00
|
|
|
cowboy_protocol:opts()) -> {ok, pid()} | {error, any()}.
|
2012-08-27 11:50:35 +02:00
|
|
|
start_https(Ref, NbAcceptors, TransOpts, ProtoOpts)
|
|
|
|
when is_integer(NbAcceptors), NbAcceptors > 0 ->
|
|
|
|
ranch:start_listener(Ref, NbAcceptors,
|
2012-08-27 12:58:04 +02:00
|
|
|
ranch_ssl, TransOpts, cowboy_protocol, ProtoOpts).
|
2012-08-27 11:50:35 +02:00
|
|
|
|
2013-03-29 16:38:30 +01:00
|
|
|
-spec start_spdy(ranch:ref(), non_neg_integer(), ranch_ssl:opts(),
|
|
|
|
cowboy_spdy:opts()) -> {ok, pid()} | {error, any()}.
|
2013-05-30 20:21:01 +02:00
|
|
|
start_spdy(Ref, NbAcceptors, TransOpts, ProtoOpts)
|
|
|
|
when is_integer(NbAcceptors), NbAcceptors > 0 ->
|
|
|
|
TransOpts2 = [
|
|
|
|
{connection_type, supervisor},
|
|
|
|
{next_protocols_advertised,
|
|
|
|
[<<"spdy/3">>, <<"http/1.1">>, <<"http/1.0">>]}
|
|
|
|
|TransOpts],
|
|
|
|
ranch:start_listener(Ref, NbAcceptors,
|
|
|
|
ranch_ssl, TransOpts2, cowboy_spdy, ProtoOpts).
|
|
|
|
|
2014-02-16 00:16:58 +03:30
|
|
|
-spec stop_listener(ranch:ref()) -> ok | {error, not_found}.
|
2011-04-03 00:21:47 +02:00
|
|
|
stop_listener(Ref) ->
|
2012-08-27 11:50:35 +02:00
|
|
|
ranch:stop_listener(Ref).
|
2013-02-20 12:14:21 +01:00
|
|
|
|
2013-05-16 19:13:36 +02:00
|
|
|
-spec set_env(ranch:ref(), atom(), any()) -> ok.
|
2013-02-20 12:14:21 +01:00
|
|
|
set_env(Ref, Name, Value) ->
|
|
|
|
Opts = ranch:get_protocol_options(Ref),
|
|
|
|
{_, Env} = lists:keyfind(env, 1, Opts),
|
2014-03-26 19:05:59 +01:00
|
|
|
Opts2 = lists:keyreplace(env, 1, Opts,
|
|
|
|
{env, lists:keystore(Name, 1, Env, {Name, Value})}),
|
2013-02-20 12:14:21 +01:00
|
|
|
ok = ranch:set_protocol_options(Ref, Opts2).
|