mirror of
https://github.com/urlysses/1991.git
synced 2024-11-26 03:28:06 +11:00
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:
parent
1f528fa8f6
commit
f40f2d5630
36
1991.fs
36
1991.fs
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user