2022-02-17 22:00:46 +01:00
|
|
|
module docker
|
|
|
|
|
|
|
|
import net.unix
|
|
|
|
import net.urllib
|
|
|
|
import net.http
|
|
|
|
|
|
|
|
const socket = '/var/run/docker.sock'
|
2022-02-19 21:41:26 +01:00
|
|
|
|
2022-02-17 22:00:46 +01:00
|
|
|
const buf_len = 1024
|
|
|
|
|
|
|
|
fn request(method string, url urllib.URL) ?http.Response {
|
2022-02-19 21:41:26 +01:00
|
|
|
req := '$method $url.request_uri() HTTP/1.1\nHost: localhost\n\n'
|
2022-02-17 22:00:46 +01:00
|
|
|
|
2022-02-19 21:41:26 +01:00
|
|
|
// Open a connection to the socket
|
|
|
|
mut s := unix.connect_stream(docker.socket) ?
|
2022-02-17 22:00:46 +01:00
|
|
|
|
2022-02-19 21:41:26 +01:00
|
|
|
defer {
|
|
|
|
// This or is required because otherwise, the V compiler segfaults for
|
|
|
|
// some reason
|
|
|
|
s.close() or {}
|
|
|
|
}
|
2022-02-17 22:00:46 +01:00
|
|
|
|
2022-02-19 21:41:26 +01:00
|
|
|
// Write the request to the socket
|
|
|
|
s.write_string(req) ?
|
2022-02-17 22:00:46 +01:00
|
|
|
|
2022-02-19 21:41:26 +01:00
|
|
|
// Wait for the server to respond
|
|
|
|
s.wait_for_write() ?
|
2022-02-17 22:00:46 +01:00
|
|
|
|
2022-02-19 21:41:26 +01:00
|
|
|
mut buf := []byte{len: docker.buf_len}
|
|
|
|
mut res := []byte{}
|
2022-02-17 22:00:46 +01:00
|
|
|
|
2022-02-19 21:41:26 +01:00
|
|
|
mut c := 0
|
2022-02-17 22:00:46 +01:00
|
|
|
|
2022-02-19 21:41:26 +01:00
|
|
|
for {
|
|
|
|
c = s.read(mut buf) or { return error('Failed to read data from socket.') }
|
|
|
|
res << buf[..c]
|
2022-02-17 22:00:46 +01:00
|
|
|
|
2022-02-19 21:41:26 +01:00
|
|
|
if c < docker.buf_len {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2022-02-17 22:00:46 +01:00
|
|
|
|
2022-02-19 21:41:26 +01:00
|
|
|
// Decode chunked response
|
|
|
|
return http.parse_response(res.bytestr())
|
2022-02-17 22:00:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn get(url urllib.URL) ?http.Response {
|
2022-02-19 21:41:26 +01:00
|
|
|
return request('GET', url)
|
2022-02-17 22:00:46 +01:00
|
|
|
}
|