removed the containing subdir
This commit is contained in:
511
kernel/Http.moo
Normal file
511
kernel/Http.moo
Normal file
@ -0,0 +1,511 @@
|
||||
//#include 'Moo.moo'.
|
||||
#include 'Socket.moo'.
|
||||
|
||||
class HttpConnReg(Object)
|
||||
{
|
||||
var connections.
|
||||
var first_free_slot.
|
||||
var last_free_slot.
|
||||
|
||||
method initialize
|
||||
{
|
||||
| i size |
|
||||
self.connections := Array new: 32. // TODO: make it dynamic
|
||||
|
||||
i := self.connections size.
|
||||
if (i <= 0)
|
||||
{
|
||||
self.first_free_slot := -1.
|
||||
self.last_free_slot := -1.
|
||||
}
|
||||
else
|
||||
{
|
||||
i := (self.first_free_slot := i - 1).
|
||||
while (i >= 0)
|
||||
{
|
||||
self.connections at: i put: (i - 1).
|
||||
i := i - 1.
|
||||
}.
|
||||
self.last_free_slot := 0.
|
||||
}.
|
||||
}
|
||||
|
||||
method add: elem
|
||||
{
|
||||
| index |
|
||||
if (self.first_free_slot < 0) { Exception signal: 'no free slot' }.
|
||||
index := self.first_free_slot.
|
||||
self.first_free_slot := (self.connections at: index).
|
||||
self.connections at: index put: elem.
|
||||
if (self.first_free_slot < 0) { self.last_free_slot = -1 }.
|
||||
^index.
|
||||
}
|
||||
|
||||
method remove: index
|
||||
{
|
||||
if (self.last_free_slot >= 0)
|
||||
{
|
||||
self.connections at: self.last_free_slot put: index.
|
||||
}
|
||||
else
|
||||
{
|
||||
self.first_free_slot := self.last_free_slot.
|
||||
}.
|
||||
self.connections at: index put: -1.
|
||||
self.last_free_slot := index.
|
||||
}
|
||||
|
||||
method do: block
|
||||
{
|
||||
| index size conn |
|
||||
// the following loop won't evaluate the given block for an element added after
|
||||
// resizing of self.connections at present, there is no self.connections resizing
|
||||
// impelemented. so no worry on this.
|
||||
size := self.connections size.
|
||||
index := 0.
|
||||
while (index < size)
|
||||
{
|
||||
conn := self.connections at: index.
|
||||
if ((conn isKindOf: Integer) not)
|
||||
{
|
||||
block value: (self.connections at: index).
|
||||
}.
|
||||
index := index + 1.
|
||||
}.
|
||||
}
|
||||
}
|
||||
|
||||
class HttpBuffer(Object)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
class HttpSocket(SyncSocket)
|
||||
{
|
||||
var(#get) server := nil.
|
||||
var(#get) rid := -1.
|
||||
var bs.
|
||||
|
||||
method close
|
||||
{
|
||||
('Http Connection closing.......... handle ' & self.handle asString) dump.
|
||||
if (self.server notNil)
|
||||
{
|
||||
('Http Connection ' & self.rid asString & ' removing from server ..........') dump.
|
||||
self.server removeConnection: self.
|
||||
}.
|
||||
^super close.
|
||||
}
|
||||
|
||||
method server: server rid: rid
|
||||
{
|
||||
self.server := server.
|
||||
self.rid := rid.
|
||||
}
|
||||
|
||||
method getLine
|
||||
{
|
||||
}
|
||||
|
||||
method readRequest
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
method _run_service
|
||||
{
|
||||
| buf k i |
|
||||
|
||||
self timeout: 10.
|
||||
/*while (true)
|
||||
{
|
||||
req := self readRequest.
|
||||
|
||||
}. */
|
||||
|
||||
|
||||
buf := ByteArray new: 128.
|
||||
'IM RUNNING SERVICE...............' dump.
|
||||
|
||||
/*
|
||||
self readBytesInto: buf.
|
||||
buf dump.
|
||||
self readBytesInto: buf.
|
||||
buf dump.
|
||||
*/
|
||||
|
||||
i := 0.
|
||||
while (i < 3)
|
||||
{
|
||||
k := self.bs next: 3 into: buf startingAt: 4.
|
||||
(buf copyFrom: 4 count: k) dump.
|
||||
i := i + 1.
|
||||
}.
|
||||
|
||||
self close.
|
||||
}
|
||||
|
||||
method runService
|
||||
{
|
||||
self.bs := ByteStream on: self.
|
||||
|
||||
[ self _run_service ] on: Exception do: [:ex |
|
||||
self close.
|
||||
('EXCEPTION IN HttpSocket ' & ex messageText) dump
|
||||
].
|
||||
}
|
||||
}
|
||||
|
||||
class HttpListener(AsyncServerSocket)
|
||||
{
|
||||
var(#get) server := nil.
|
||||
var(#get) rid := nil.
|
||||
|
||||
method initialize
|
||||
{
|
||||
super initialize.
|
||||
}
|
||||
|
||||
method close
|
||||
{
|
||||
if (self.server notNil) { self.server removeListener: self }.
|
||||
^super close.
|
||||
}
|
||||
|
||||
method onSocketAccepted: clisck from: cliaddr
|
||||
{
|
||||
| rid |
|
||||
|
||||
'CLIENT accepted ..............' dump.
|
||||
clisck dump.
|
||||
cliaddr dump.
|
||||
|
||||
if (self.server notNil)
|
||||
{
|
||||
[
|
||||
server addConnection: clisck.
|
||||
if (clisck isKindOf: SyncSocket)
|
||||
{
|
||||
'SERVICE READLLY STARTING' dump.
|
||||
[clisck runService] fork.
|
||||
}
|
||||
]
|
||||
on: Exception do: [:ex |
|
||||
clisck close.
|
||||
Exception signal: ('unable to handle a new connection - ' & ex messageText).
|
||||
].
|
||||
}.
|
||||
}
|
||||
|
||||
method acceptedSocketClass
|
||||
{
|
||||
//^if (self currentAddress port == 80) { HttpSocket } else { HttpSocket }.
|
||||
^HttpSocket.
|
||||
}
|
||||
|
||||
method server: server rid: rid
|
||||
{
|
||||
self.server := server.
|
||||
self.rid := rid.
|
||||
}
|
||||
}
|
||||
|
||||
class HttpServer(Object)
|
||||
{
|
||||
var listeners.
|
||||
var connreg.
|
||||
|
||||
method initialize
|
||||
{
|
||||
super initialize.
|
||||
self.listeners := HttpConnReg new.
|
||||
self.connreg := HttpConnReg new.
|
||||
}
|
||||
|
||||
method __add_listener: listener
|
||||
{
|
||||
| rid |
|
||||
rid := self.listeners add: listener.
|
||||
('ADD NEW LISTENER ' & rid asString) dump.
|
||||
listener server: self rid: rid.
|
||||
}
|
||||
|
||||
method removeListener: listener
|
||||
{
|
||||
| rid |
|
||||
rid := listener rid.
|
||||
if (rid notNil)
|
||||
{
|
||||
('REALLY REMOVE LISTENER ' & rid asString) dump.
|
||||
self.listeners remove: (listener rid).
|
||||
listener server: nil rid: nil.
|
||||
}.
|
||||
}
|
||||
|
||||
method __add_new_listener: addr
|
||||
{
|
||||
| listener |
|
||||
listener := HttpListener family: (addr family) type: Socket.Type.STREAM.
|
||||
[
|
||||
self __add_listener: listener.
|
||||
listener bind: addr.
|
||||
listener listen: 128.
|
||||
] on: Exception do: [:ex |
|
||||
listener close.
|
||||
// ex pass.
|
||||
Exception signal: ('unable to add new listener - ' & ex messageText).
|
||||
].
|
||||
}
|
||||
|
||||
method addConnection: conn
|
||||
{
|
||||
| rid |
|
||||
rid := self.connreg add: conn.
|
||||
('ADD NEW CONNECTION ' & rid asString) dump.
|
||||
conn server: self rid: rid.
|
||||
}
|
||||
|
||||
method removeConnection: conn
|
||||
{
|
||||
| rid |
|
||||
rid := conn rid.
|
||||
if (rid notNil)
|
||||
{
|
||||
('REMOVE CONNECTION ' & rid asString) dump.
|
||||
self.connreg remove: (conn rid).
|
||||
conn server: nil rid: nil.
|
||||
}.
|
||||
}
|
||||
|
||||
method start: laddr
|
||||
{
|
||||
| listener |
|
||||
if (laddr class == Array)
|
||||
//if (laddr respondsTo: #do:) // can i check if the message receives a block and the block accepts 1 argument?
|
||||
{
|
||||
laddr do: [:addr | self __add_new_listener: addr ].
|
||||
}
|
||||
else
|
||||
{
|
||||
self __add_new_listener: laddr.
|
||||
}.
|
||||
}
|
||||
|
||||
method close
|
||||
{
|
||||
self.listeners do: [:listener |
|
||||
listener close.
|
||||
].
|
||||
|
||||
self.connreg do: [:conn |
|
||||
conn close.
|
||||
].
|
||||
}
|
||||
}
|
||||
|
||||
class MyObject(Object)
|
||||
{
|
||||
method(#class) start_server_socket
|
||||
{
|
||||
| s2 buf |
|
||||
s2 := AsyncServerSocket family: Socket.Family.INET type: Socket.Type.STREAM.
|
||||
buf := ByteArray new: 128.
|
||||
|
||||
s2 onEvent: #accepted do: [ :sck :clisck :cliaddr |
|
||||
'SERVER ACCEPTED new client' dump.
|
||||
clisck onEvent: #data_in do: [ :csck |
|
||||
| nbytes |
|
||||
while (true)
|
||||
{
|
||||
nbytes := csck readBytesInto: buf.
|
||||
if (nbytes <= 0)
|
||||
{
|
||||
if (nbytes == 0) { csck close }.
|
||||
('Got ' & (nbytes asString)) dump.
|
||||
break.
|
||||
}.
|
||||
|
||||
buf dump.
|
||||
csck writeBytesFrom: buf offset: 0 length: nbytes.
|
||||
}.
|
||||
].
|
||||
clisck onEvent: #data_out do: [ :csck |
|
||||
//csck writeBytesFrom: #[ $a, $b, C'\n' ].
|
||||
].
|
||||
clisck onEvent: #closed do: [ :csck |
|
||||
'Socket CLOSED....' dump.
|
||||
].
|
||||
].
|
||||
|
||||
s2 bind: (SocketAddress fromString: '0.0.0.0:7777').
|
||||
s2 listen: 10.
|
||||
^s2.
|
||||
}
|
||||
|
||||
method(#class) start_client_socket
|
||||
{
|
||||
| s buf count |
|
||||
s := AsyncClientSocket family: Socket.Family.INET type: Socket.Type.STREAM.
|
||||
buf := ByteArray new: 128.
|
||||
|
||||
count := 0.
|
||||
|
||||
s onEvent: #connected do: [ :sck :state |
|
||||
if (state)
|
||||
{
|
||||
s writeBytesFrom: #[ $a, $b, $c ].
|
||||
s writeBytesFrom: #[ $d, $e, $f ].
|
||||
}
|
||||
else
|
||||
{
|
||||
'FAILED TO CONNECT' dump.
|
||||
}.
|
||||
].
|
||||
|
||||
s onEvent: #data_in do: [ :sck |
|
||||
| nbytes |
|
||||
while (true)
|
||||
{
|
||||
nbytes := sck readBytesInto: buf.
|
||||
if (nbytes <= 0)
|
||||
{
|
||||
if (nbytes == 0) { sck close }.
|
||||
break.
|
||||
}.
|
||||
('Got ' & (nbytes asString)) dump.
|
||||
buf dump.
|
||||
}.
|
||||
].
|
||||
s onEvent: #data_out do: [ :sck |
|
||||
if (count < 10) { sck writeBytesFrom: #[ $a, $b, C'\n' ]. count := count + 1. }.
|
||||
].
|
||||
|
||||
s connect: (SocketAddress fromString: '127.0.0.1:9999').
|
||||
}
|
||||
|
||||
method(#class) mainxx
|
||||
{
|
||||
[
|
||||
| s s2 ss |
|
||||
|
||||
[
|
||||
s := self start_client_socket.
|
||||
s2 := self start_server_socket.
|
||||
|
||||
while (true)
|
||||
{
|
||||
ss := thisProcess handleAsyncEvent.
|
||||
if (ss isError) { break }.
|
||||
//#if (ss == st) { thisProcess removeAsyncSemaphore: st }.
|
||||
}.
|
||||
]
|
||||
ensure:
|
||||
[
|
||||
if (s notNil) { s close }.
|
||||
if (s2 notNil) { s2 close }.
|
||||
]
|
||||
|
||||
] on: Exception do: [:ex | ('Exception - ' & ex messageText) dump ].
|
||||
|
||||
'----- END OF MAIN ------' dump.
|
||||
}
|
||||
|
||||
|
||||
method(#class) another_proc: base_port
|
||||
{
|
||||
| httpd |
|
||||
|
||||
[
|
||||
thisProcess initAsync.
|
||||
httpd := HttpServer new.
|
||||
[
|
||||
| ss |
|
||||
httpd start: ##(
|
||||
SocketAddress fromString: ('[::]:' & base_port asString),
|
||||
SocketAddress fromString: ('0.0.0.0:' & (base_port + 1) asString)
|
||||
).
|
||||
|
||||
while (true)
|
||||
{
|
||||
ss := thisProcess handleAsyncEvent.
|
||||
if (ss isError) { break }.
|
||||
}.
|
||||
] ensure: [
|
||||
if (httpd notNil) { httpd close }
|
||||
]
|
||||
|
||||
] on: Exception do: [:ex | ('Exception - ' & ex messageText) dump].
|
||||
|
||||
'----- END OF ANOTHER PROC ------' dump.
|
||||
}
|
||||
|
||||
method(#class) main
|
||||
{
|
||||
| httpd addr |
|
||||
|
||||
/*
|
||||
[
|
||||
addr := SocketAddress fromString: '1.2.3.4:5555'.
|
||||
//addr := SocketAddress fromString: '127.0.0.1:22'.
|
||||
httpd := SyncSocket family: (addr family) type: Socket.Type.STREAM.
|
||||
httpd timeout: 5.
|
||||
httpd connect: addr.
|
||||
] on: Exception do: [:ex | ].
|
||||
*/
|
||||
|
||||
[ self another_proc: 5000 ] fork.
|
||||
[ self another_proc: 5100 ] fork.
|
||||
[ self another_proc: 5200 ] fork.
|
||||
|
||||
[
|
||||
thisProcess initAsync.
|
||||
httpd := HttpServer new.
|
||||
[
|
||||
| ss |
|
||||
httpd start: ##(
|
||||
SocketAddress fromString: '[::]:7777',
|
||||
SocketAddress fromString: '0.0.0.0:7776'
|
||||
).
|
||||
|
||||
while (true)
|
||||
{
|
||||
ss := thisProcess handleAsyncEvent.
|
||||
if (ss isError) { break }.
|
||||
}.
|
||||
] ensure: [
|
||||
if (httpd notNil) { httpd close }
|
||||
]
|
||||
|
||||
] on: Exception do: [:ex | ('Exception - ' & ex messageText) dump].
|
||||
|
||||
'----- END OF MAIN ------' dump.
|
||||
}
|
||||
|
||||
method(#class) mainqq
|
||||
{
|
||||
| httpd addr sg ss |
|
||||
|
||||
sg := SemaphoreGroup new.
|
||||
|
||||
[
|
||||
httpd := HttpServer new.
|
||||
[
|
||||
httpd start: ##(
|
||||
SocketAddress fromString: '[::]:7777',
|
||||
SocketAddress fromString: '0.0.0.0:7776'
|
||||
).
|
||||
|
||||
while (true)
|
||||
{
|
||||
ss := sg wait.
|
||||
if (ss isError) { break }.
|
||||
}
|
||||
] ensure: [
|
||||
if (httpd notNil) { httpd close }
|
||||
]
|
||||
|
||||
] on: Exception do: [:ex | ('Exception - ' & ex messageText) dump].
|
||||
|
||||
'----- END OF MAIN ------' dump.
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user