1
0
mirror of https://github.com/urlysses/1991.git synced 2024-11-16 01:28:06 -05:00
1991/1991.fs
urlysses f40f2d5630 Gotta start somewhere:
First, define a user-facing word that takes a port and subsequently
starts the server (using gforth's unix/socket.fs).
Second, start defining a user-facing word for specifing routes and their
handlers.
2017-02-11 22:16:52 -05:00

38 lines
919 B
Forth

\ 1991
include unix/socket.fs
: read-request ( socket -- addr u ) pad 4096 read-socket ;
: send-response ( addr u socket -- )
dup >R write-socket R> close-socket ;
: start-server { server client }
begin
server 255 listen
server accept-socket to client
client read-request type s\" HTTP/1.1 200 OK\n Content-Type: text/html\n\n fffff" client send-response
again ;
: 1991: ( port -- ) create-server 0 start-server ;
: 1991/ ( "<path> <word>" -- )
\ TODO store each path => xt and execute within
\ handle-server
bl word
cr ." Setting get for " count type
\ TODO handle non-words. Should give the user
\ some compile-/run-time error.
' \ fetch xt
dup >name
cr ." handler word is " name>string type
cr ." running handler: " execute ;
\ App demo:
: handle-hi ." hi!" ; \ not sure printing is the way to go?
1991/ hi handle-hi
\ 8080 1991: