-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfcgicodecex.ms
122 lines (66 loc) · 2.69 KB
/
fcgicodecex.ms
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import "fcgiCodec"
// Initialize network.
srv = uds.createServer("/tmp/fcgiCodec-example.sock")
print "Listening at /tmp/fcgiCodec-example.sock ..."
// Create a RecordDecoder to convert raw socket data into `Record` objects.
decoder = fcgiCodec.RecordDecoder.make
// Create a Bucket to collect the data for each individual request (it will also convert `Record` objects into appropriate `*Msg` objects).
bucket = fcgiCodec.Bucket.make
// Our state:
n = 0 // we'll increment it on each request
conn = null
while true
yield
print "Waiting for connection... ", ""
if conn == null then conn = srv.accept(-1) // wait for Nginx to make a connection to us
print "OK"
print "Waiting for data... ", ""
data = conn.receive(-1, -1) // wait for Nginx to send us request data
if data == null then continue
print "OK. Got " + data.len + " bytes."
// Convert data into records via the decoder, and put those records into the bucket.
decoder.pushData data
records = decoder.getAllRecords
print "Decoded " + records.len + " records."
bucket.pushManyRecords records
// Writing a callback for `Bucket.handleAll()`.
closeP = false
handler = function(request, arg)
print "Handling request #" + request.requestId + "..."
// Here we might expect to meet some special cases:
// - Management message
// - Unfinished request
// - Aborted request
// - Unknown role
// ...
// For the sake of simplicity we'll only cover regular requests of a "responder" role.
// Did we read the params yet?
if request.params == null then return false // false: we're not done with the request, keep it in the bucket
// Touch state
outer.n += 1
// Compose a response
rsp = "Content-Type: text/html" + char(13) + char(10) +
"" + char(13) + char(10) +
"<h1>hello fcgiCodec ({n})</h1> params: {params}"
rsp = rsp.replace("{n}", outer.n)
rsp = rsp.replace("{params}", str(request.params))
// Return response to Nginx
msg = fcgiCodec.StdoutMsg.make(request.requestId, rsp)
for record in msg.toRecords
conn.send record.toRawData // return "CGI stdout"
end for
msg = fcgiCodec.EndRequestMsg.make(request.requestId, 0, fcgiCodec.protoStatus.FCGI_REQUEST_COMPLETE)
for record in msg.toRecords
conn.send record.toRawData // tell Nginx that we're done
end for
if not request.keepConnectionP then outer.closeP = true // did Nginx ask us to close the connection?
return true // true: we're done with this request, delete it from the bucket
end function
// Handle requests (if any).
bucket.handleAll null, @handler
if closeP then
conn.close
conn = null
closeP = false
end if
end while