2020-12-29 16:51:10 +01:00
|
|
|
module net
|
|
|
|
|
2022-02-13 21:42:30 +01:00
|
|
|
import strings
|
|
|
|
|
2020-12-29 16:51:10 +01:00
|
|
|
const (
|
2022-02-13 21:42:30 +01:00
|
|
|
crlf = '\r\n'
|
|
|
|
msg_peek = 0x02
|
|
|
|
max_read = 400
|
|
|
|
max_read_line_len = 1048576
|
2020-12-29 16:51:10 +01:00
|
|
|
)
|
|
|
|
|
2021-08-07 22:20:58 +02:00
|
|
|
// get_blocking returns whether the connection is in a blocking state,
|
|
|
|
// that is calls to .read_line, C.recv etc will block till there is new
|
|
|
|
// data arrived, instead of returning immediately.
|
|
|
|
pub fn (mut con TcpConn) get_blocking() bool {
|
|
|
|
// flags := C.fcntl(con.sock.handle, C.F_GETFL, 0)
|
|
|
|
// return 0 == flags & C.O_NONBLOCK
|
|
|
|
return con.is_blocking
|
|
|
|
}
|
|
|
|
|
|
|
|
// set_blocking will change the state of the connection to either blocking,
|
|
|
|
// when state is true, or non blocking (false).
|
|
|
|
// The default for `net` tcp connections is the non blocking mode.
|
|
|
|
// Calling .read_line will set the connection to blocking mode.
|
|
|
|
pub fn (mut con TcpConn) set_blocking(state bool) ? {
|
|
|
|
con.is_blocking = state
|
|
|
|
$if windows {
|
|
|
|
mut t := u32(0)
|
|
|
|
if !con.is_blocking {
|
|
|
|
t = 1
|
|
|
|
}
|
2021-08-07 22:27:25 +02:00
|
|
|
socket_error(C.ioctlsocket(con.sock.handle, fionbio, &t)) ?
|
2021-08-07 22:20:58 +02:00
|
|
|
} $else {
|
|
|
|
mut flags := C.fcntl(con.sock.handle, C.F_GETFL, 0)
|
|
|
|
if state {
|
|
|
|
flags &= ~C.O_NONBLOCK
|
|
|
|
} else {
|
|
|
|
flags |= C.O_NONBLOCK
|
|
|
|
}
|
|
|
|
socket_error(C.fcntl(con.sock.handle, C.F_SETFL, flags)) ?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-29 16:51:10 +01:00
|
|
|
// read_line is a *simple*, *non customizable*, blocking line reader.
|
2022-02-13 21:42:30 +01:00
|
|
|
// It will return a line, ending with LF, or just '', on EOF.
|
2020-12-29 16:51:10 +01:00
|
|
|
// NB: if you want more control over the buffer, please use a buffered IO
|
2021-06-13 22:53:38 +02:00
|
|
|
// reader instead: `io.new_buffered_reader({reader: io.make_reader(con)})`
|
2021-01-20 11:11:01 +01:00
|
|
|
pub fn (mut con TcpConn) read_line() string {
|
2022-02-13 21:42:30 +01:00
|
|
|
return con.read_line_max(net.max_read_line_len)
|
|
|
|
}
|
|
|
|
|
|
|
|
// read_line_max is a *simple*, *non customizable*, blocking line reader.
|
|
|
|
// It will return a line, ending with LF, '' on EOF.
|
|
|
|
// It stops reading, when the result line length exceeds max_line_len.
|
|
|
|
[manualfree]
|
|
|
|
pub fn (mut con TcpConn) read_line_max(max_line_len int) string {
|
2021-08-07 22:20:58 +02:00
|
|
|
if !con.is_blocking {
|
|
|
|
con.set_blocking(true) or {}
|
|
|
|
}
|
2022-02-13 21:42:30 +01:00
|
|
|
mut buf := [net.max_read]byte{} // where C.recv will store the network data
|
|
|
|
mut res := strings.new_builder(net.max_read) // The final result, including the ending \n.
|
|
|
|
defer {
|
|
|
|
unsafe { res.free() }
|
|
|
|
}
|
|
|
|
bstart := unsafe { &buf[0] }
|
2020-12-29 16:51:10 +01:00
|
|
|
for {
|
2022-02-13 21:42:30 +01:00
|
|
|
n := C.recv(con.sock.handle, bstart, net.max_read - 1, net.msg_peek | msg_nosignal)
|
|
|
|
if n <= 0 {
|
|
|
|
return res.str()
|
2020-12-29 16:51:10 +01:00
|
|
|
}
|
|
|
|
buf[n] = `\0`
|
|
|
|
mut eol_idx := -1
|
2022-02-13 21:42:30 +01:00
|
|
|
mut lend := n
|
2020-12-29 16:51:10 +01:00
|
|
|
for i in 0 .. n {
|
2022-02-13 21:42:30 +01:00
|
|
|
if buf[i] == `\n` {
|
2020-12-29 16:51:10 +01:00
|
|
|
eol_idx = i
|
2022-02-13 21:42:30 +01:00
|
|
|
lend = i + 1
|
|
|
|
buf[lend] = `\0`
|
2020-12-29 16:51:10 +01:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if eol_idx > 0 {
|
|
|
|
// At this point, we are sure that recv returned valid data,
|
|
|
|
// that contains *at least* one line.
|
|
|
|
// Ensure that the block till the first \n (including it)
|
|
|
|
// is removed from the socket's receive queue, so that it does
|
|
|
|
// not get read again.
|
2022-02-13 21:42:30 +01:00
|
|
|
C.recv(con.sock.handle, bstart, lend, msg_nosignal)
|
|
|
|
unsafe { res.write_ptr(bstart, lend) }
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// recv returned a buffer without \n in it, just store it for now:
|
|
|
|
C.recv(con.sock.handle, bstart, n, msg_nosignal)
|
|
|
|
unsafe { res.write_ptr(bstart, lend) }
|
|
|
|
if res.len > max_line_len {
|
2020-12-29 16:51:10 +01:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2022-02-13 21:42:30 +01:00
|
|
|
return res.str()
|
2020-12-29 16:51:10 +01:00
|
|
|
}
|