Commit graph

97 commits

Author SHA1 Message Date
Simon Cruanes
1debf0f688
expose all modules again 2024-02-27 13:38:35 -05:00
Simon Cruanes
ec3dec6b72
wip: bugfixes 2024-02-26 16:28:31 -05:00
Simon Cruanes
0d750cd86c
fix prometheus 2024-02-26 14:05:56 -05:00
Simon Cruanes
04be73ee00
refactor the rest 2024-02-26 13:55:20 -05:00
Simon Cruanes
86f1b9025d
add optional dependency on logs 2024-01-23 23:32:20 -05:00
Simon Cruanes
b9faebffe4 use a resource pool to recycle buffers 2023-06-23 17:58:11 -04:00
Simon Cruanes
5ba1ff0de4 add Tiny_httpd_pool 2023-06-23 17:58:11 -04:00
Simon Cruanes
a32297ac6c
add Tiny_httpd_io module, abstraction over IOs
abstract channels, and abstract TCP server.
2023-06-20 23:03:30 -04:00
Simon Cruanes
04fb648576
update docs 2023-05-24 15:21:49 -04:00
Simon Cruanes
0908d71e19
ocamlformat 2023-05-23 17:40:18 -04:00
Simon Cruanes
b387aa731d
add a HTML module, with codegen to produce the combinators. 2022-03-16 22:26:54 -04:00
Simon Cruanes
d5f9eacc81 split code into more modules 2022-03-16 20:40:38 -04:00
Simon Cruanes
fb1b1f9975
fix bug in SSE 2022-03-03 15:20:14 -05:00
Simon Cruanes
4aaa61f622
add ?get_time_s param to create 2021-12-31 20:43:20 -05:00
craff
6dceabdd6c Revert "use bigstring and map_file"
This reverts commit 3067120539.
2021-12-19 00:54:17 -10:00
craff
3067120539 use bigstring and map_file 2021-12-19 00:29:56 -10:00
craff
8fc22ff07e ignore empty string in exact_path 2021-12-17 22:08:01 -10:00
craff
613c9ae7c3 Add a module to server static files 2021-12-17 18:55:06 -10:00
Christophe Raffalli
a5e2e47b17
Also close connection if response's headers contains connection: close (#33) 2021-12-16 23:20:44 -05:00
Simon Cruanes
0c94a8aab0
tiny refactor 2021-12-16 23:19:49 -05:00
Simon Cruanes
b684835901
store http version in request, and close connections when needed
cases include:
- http 1.0 and no "connection: keep-alive"
- http 1.1 and "connection: close"
2021-12-16 23:19:48 -05:00
Simon Cruanes
b5e50fac59
Merge pull request #27 from c-cube/wip-middleware
add middlewares
2021-12-16 10:52:47 -05:00
Simon Cruanes
7b14cbd6a7
rename time into start_time 2021-12-16 00:26:07 -05:00
craff
4770e3e729 Timing start of request 2021-12-15 18:14:17 -10:00
Simon Cruanes
1a9b837888
remove dead code 2021-12-15 16:11:07 -05:00
Simon Cruanes
5827328993
feat: add ?middlewares param to create 2021-12-12 17:06:46 -05:00
Simon Cruanes
9e26576740
breaking: more getter/setters for request/response, change signature
some setters now take request last, to favor composition with |>
2021-12-12 17:06:46 -05:00
Simon Cruanes
ba31534551
feat: pass buf_size in many places, set default buf_size to 16kb 2021-12-12 17:06:46 -05:00
Simon Cruanes
6b0000eb6e
feat: add a notion of Middleware
this subsumes and deprecates the encoding/decoding callbacks.
2021-12-12 17:06:43 -05:00
Simon Cruanes
2d2ffc722a
remove deprecated path handlers based on scanf 2021-12-12 17:01:51 -05:00
craff
10b64c2a16 put back active_connections 2021-12-11 23:50:06 -10:00
craff
b539b4f9ba timout using socket options 2021-12-11 23:48:27 -10:00
craff
a130c4ea35 release semaphore in case of exception in accept 2021-12-11 23:21:47 -10:00
Simon Cruanes
89344f46f0
feat(server-sent): add a close() function 2021-12-11 10:01:55 -05:00
Simon Cruanes
dc72dad5db
revert: remove timeout handling for now
This reverts commit 6536bfeeb3.
2021-12-11 09:32:55 -05:00
Simon Cruanes
6536bfeeb3
fix: when reading from unix FD, use a loop to handle signals 2021-12-11 09:13:16 -05:00
Simon Cruanes
f316e66c15
switch from "available" to "active" connections 2021-12-11 09:10:29 -05:00
craff
c3265af08f moved back acquire before accept but inside the try ... with ... one never knowns 2021-12-10 12:49:51 -10:00
craff
97eeaf96dc make accessible to the end user the number of available connections 2021-12-08 17:54:08 -10:00
craff
9b4a1b1197 remove mutex to get available_connections 2021-12-08 17:47:53 -10:00
craff
e87428ae51 release semaphore does not return anything anymore 2021-12-08 16:38:59 -10:00
craff
9e9fe32347 only set non blocking for reading request, not to write answer 2021-12-08 12:07:35 -10:00
craff
4c7d27dadd Added a max_keep_alive and moved to a non blocking reading of request not to loose connection slot.
Default is max_keep_alive = -1.0 which keeps the original behaviour.
2021-12-08 11:46:01 -10:00
craff
19a4bad231 use _debug and better message 2021-11-29 23:38:28 -10:00
craff
6ccd8314a3 Unix.accept may raise an exception (typicall Unix.EINTR, even with sigpipe blocked ?)
This avoids the server to stop
2021-11-29 15:35:41 -10:00
Simon Cruanes
0e05b8cac6
Update src/Tiny_httpd.ml 2021-09-25 14:41:42 -04:00
Yawar Amin
8414efc3e0 Adjust implementation
Only do things that are relevant for binding a socket if we actually
should.
2021-09-25 02:03:28 -04:00
Yawar Amin
ce61ac2afd feat: allow socket activation
This enables passing in an existing socket e.g. from systemd,[1] instead
of creating a new socket when running the server.

[1] https://github.com/juergenhoetzel/ocaml-systemd
2021-09-25 01:41:32 -04:00
Simon Cruanes
95d9bd10ef fix: do not set content-length for server-sent events 2021-07-17 22:09:45 -04:00
Simon Cruanes
62d583553e allow extra headers in server-sent events 2021-07-17 22:09:45 -04:00