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.
This commit is contained in:
urlysses 2017-02-11 22:16:49 -05:00
parent 1f528fa8f6
commit f40f2d5630
1 changed files with 36 additions and 0 deletions

36
1991.fs
View File

@ -1 +1,37 @@
\ 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: