Compare commits
3 Commits
9aebb3bedc
...
2db4afc226
| Author | SHA1 | Date |
|---|---|---|
|
|
2db4afc226 | |
|
|
7149c93b6f | |
|
|
c8191a19e1 |
6
Makefile
6
Makefile
|
|
@ -1,6 +1,6 @@
|
||||||
# =====CONFIG=====
|
# =====CONFIG=====
|
||||||
V_PATH ?= v
|
V_PATH ?= v
|
||||||
V := $(V_PATH) -showcc
|
V := $(V_PATH) -showcc -d use_openssl
|
||||||
|
|
||||||
all: vdocker
|
all: vdocker
|
||||||
|
|
||||||
|
|
@ -10,6 +10,10 @@ all: vdocker
|
||||||
vdocker:
|
vdocker:
|
||||||
$(V) -g -shared .
|
$(V) -g -shared .
|
||||||
|
|
||||||
|
.PHONY: c
|
||||||
|
c:
|
||||||
|
$(V) -o docker.c .
|
||||||
|
|
||||||
|
|
||||||
# =====DOCS=====
|
# =====DOCS=====
|
||||||
.PHONY: api-docs
|
.PHONY: api-docs
|
||||||
|
|
|
||||||
71
containers.v
71
containers.v
|
|
@ -1,8 +1,7 @@
|
||||||
module docker
|
module docker
|
||||||
|
|
||||||
import json
|
|
||||||
import time
|
import time
|
||||||
import net.http { Method }
|
import net.http
|
||||||
import types { ContainerListItem }
|
import types { ContainerListItem }
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
@ -14,7 +13,7 @@ pub struct ContainerListConfig {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (mut d DockerConn) container_list(c ContainerListConfig) ![]ContainerListItem {
|
pub fn (mut d DockerConn) container_list(c ContainerListConfig) ![]ContainerListItem {
|
||||||
d.get('/containers/json')
|
d.request(.get, '/containers/json', {})
|
||||||
d.params(c)
|
d.params(c)
|
||||||
d.send()!
|
d.send()!
|
||||||
|
|
||||||
|
|
@ -37,30 +36,18 @@ pub:
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (mut d DockerConn) container_create(c NewContainer) !CreatedContainer {
|
pub fn (mut d DockerConn) container_create(c NewContainer) !CreatedContainer {
|
||||||
d.send_request_with_json(Method.post, '/containers/create', c)!
|
d.request(.post, '/containers/create', {})
|
||||||
head, res := d.read_response()!
|
d.body_json(c)
|
||||||
|
d.send()!
|
||||||
|
|
||||||
if head.status_code != 201 {
|
return d.read_json_response<CreatedContainer>()
|
||||||
data := json.decode(DockerError, res)!
|
|
||||||
|
|
||||||
return error(data.message)
|
|
||||||
}
|
|
||||||
|
|
||||||
data := json.decode(CreatedContainer, res)!
|
|
||||||
|
|
||||||
return data
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// start_container starts the container with the given id.
|
// start_container starts the container with the given id.
|
||||||
pub fn (mut d DockerConn) container_start(id string) ! {
|
pub fn (mut d DockerConn) container_start(id string) ! {
|
||||||
d.send_request(Method.post, '/containers/$id/start')!
|
d.request(.post, '/containers/$id/start', {})
|
||||||
head, body := d.read_response()!
|
d.send()!
|
||||||
|
d.read_response()!
|
||||||
if head.status_code != 204 {
|
|
||||||
data := json.decode(DockerError, body)!
|
|
||||||
|
|
||||||
return error(data.message)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ContainerInspect {
|
struct ContainerInspect {
|
||||||
|
|
@ -82,16 +69,10 @@ pub mut:
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (mut d DockerConn) container_inspect(id string) !ContainerInspect {
|
pub fn (mut d DockerConn) container_inspect(id string) !ContainerInspect {
|
||||||
d.send_request(Method.get, '/containers/$id/json')!
|
d.request(.get, '/containers/$id/json', {})
|
||||||
head, body := d.read_response()!
|
d.send()!
|
||||||
|
|
||||||
if head.status_code != 200 {
|
mut data := d.read_json_response<ContainerInspect>()!
|
||||||
data := json.decode(DockerError, body)!
|
|
||||||
|
|
||||||
return error(data.message)
|
|
||||||
}
|
|
||||||
|
|
||||||
mut data := json.decode(ContainerInspect, body)!
|
|
||||||
|
|
||||||
// The Docker engine API *should* always return UTC time.
|
// The Docker engine API *should* always return UTC time.
|
||||||
data.state.start_time = time.parse_rfc3339(data.state.start_time_str)!
|
data.state.start_time = time.parse_rfc3339(data.state.start_time_str)!
|
||||||
|
|
@ -104,27 +85,19 @@ pub fn (mut d DockerConn) container_inspect(id string) !ContainerInspect {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (mut d DockerConn) container_remove(id string) ! {
|
pub fn (mut d DockerConn) container_remove(id string) ! {
|
||||||
d.send_request(Method.delete, '/containers/$id')!
|
d.request(.delete, '/containers/$id', {})
|
||||||
head, body := d.read_response()!
|
d.send()!
|
||||||
|
d.read_response()!
|
||||||
if head.status_code != 204 {
|
|
||||||
data := json.decode(DockerError, body)!
|
|
||||||
|
|
||||||
return error(data.message)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (mut d DockerConn) container_get_logs(id string) !&StreamFormatReader {
|
pub fn (mut d DockerConn) container_get_logs(id string) !&StreamFormatReader {
|
||||||
d.send_request(Method.get, '/containers/$id/logs?stdout=true&stderr=true')!
|
d.request(.get, '/containers/$id/logs', {
|
||||||
head := d.read_response_head()!
|
'stdout': 'true'
|
||||||
|
'stderr': 'true'
|
||||||
if head.status_code != 200 {
|
})
|
||||||
content_length := head.header.get(http.CommonHeader.content_length)!.int()
|
d.send()!
|
||||||
body := d.read_response_body(content_length)!
|
d.read_response_head()!
|
||||||
data := json.decode(DockerError, body)!
|
d.check_error()!
|
||||||
|
|
||||||
return error(data.message)
|
|
||||||
}
|
|
||||||
|
|
||||||
return d.get_stream_format_reader()
|
return d.get_stream_format_reader()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
143
docker.v
143
docker.v
|
|
@ -4,7 +4,6 @@ import net.unix
|
||||||
import io
|
import io
|
||||||
import net.http
|
import net.http
|
||||||
import strings
|
import strings
|
||||||
import net.urllib
|
|
||||||
import json
|
import json
|
||||||
import util
|
import util
|
||||||
|
|
||||||
|
|
@ -27,7 +26,11 @@ mut:
|
||||||
url string
|
url string
|
||||||
params map[string]string
|
params map[string]string
|
||||||
content_type string
|
content_type string
|
||||||
body string
|
// Before send: body of the request
|
||||||
|
// After send: body of response
|
||||||
|
body string
|
||||||
|
// HTTP head of the response
|
||||||
|
head http.Response
|
||||||
}
|
}
|
||||||
|
|
||||||
// new_conn creates a new connection to the Docker daemon.
|
// new_conn creates a new connection to the Docker daemon.
|
||||||
|
|
@ -47,113 +50,65 @@ pub fn (mut d DockerConn) close() ! {
|
||||||
d.socket.close()!
|
d.socket.close()!
|
||||||
}
|
}
|
||||||
|
|
||||||
// send_request sends an HTTP request without body.
|
|
||||||
fn (mut d DockerConn) send_request(method http.Method, url_str string) ! {
|
|
||||||
url := urllib.parse('/$docker.api_version$url_str')!
|
|
||||||
req := '$method $url.request_uri() HTTP/1.1\nHost: localhost\n\n'
|
|
||||||
|
|
||||||
d.socket.write_string(req)!
|
|
||||||
|
|
||||||
// When starting a new request, the reader needs to be reset.
|
|
||||||
d.reader = io.new_buffered_reader(reader: d.socket)
|
|
||||||
}
|
|
||||||
|
|
||||||
// send_request_with_body sends an HTTP request with the given body.
|
|
||||||
fn (mut d DockerConn) send_request_with_body(method http.Method, url_str string, content_type string, body string) ! {
|
|
||||||
url := urllib.parse('/$docker.api_version$url_str')!
|
|
||||||
req := '$method $url.request_uri() HTTP/1.1\nHost: localhost\nContent-Type: $content_type\nContent-Length: $body.len\n\n$body\n\n'
|
|
||||||
|
|
||||||
d.socket.write_string(req)!
|
|
||||||
|
|
||||||
// When starting a new request, the reader needs to be reset.
|
|
||||||
d.reader = io.new_buffered_reader(reader: d.socket)
|
|
||||||
}
|
|
||||||
|
|
||||||
// send_request_with_json<T> is a convenience wrapper around
|
|
||||||
// send_request_with_body that encodes the input as JSON.
|
|
||||||
fn (mut d DockerConn) send_request_with_json<T>(method http.Method, url_str string, data &T) ! {
|
|
||||||
body := json.encode(data)
|
|
||||||
|
|
||||||
return d.send_request_with_body(method, url_str, 'application/json', body)
|
|
||||||
}
|
|
||||||
|
|
||||||
// read_response_head consumes the socket's contents until it encounters
|
// read_response_head consumes the socket's contents until it encounters
|
||||||
// '\r\n\r\n', after which it parses the response as an HTTP response.
|
// '\r\n\r\n', after which it parses the response as an HTTP response.
|
||||||
// Importantly, this function never consumes the reader past the HTTP
|
// Importantly, this function never consumes the reader past the HTTP
|
||||||
// separator, so the body can be read fully later on.
|
// separator, so the body can be read fully later on.
|
||||||
fn (mut d DockerConn) read_response_head() !http.Response {
|
fn (mut d DockerConn) read_response_head() ! {
|
||||||
mut res := []u8{}
|
mut res := []u8{}
|
||||||
|
|
||||||
util.read_until_separator(mut d.reader, mut res, docker.http_separator)!
|
util.read_until_separator(mut d.reader, mut res, docker.http_separator)!
|
||||||
|
|
||||||
return http.parse_response(res.bytestr())
|
d.head = http.parse_response(res.bytestr())!
|
||||||
}
|
}
|
||||||
|
|
||||||
// read_response_body reads `length` bytes from the stream. It can be used when
|
fn (mut d DockerConn) read_response_body() ! {
|
||||||
// the response encoding isn't chunked to fully read it.
|
if d.head.status() == .no_content {
|
||||||
fn (mut d DockerConn) read_response_body(length int) !string {
|
return
|
||||||
if length == 0 {
|
|
||||||
return ''
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mut buf := []u8{len: docker.buf_len}
|
|
||||||
mut c := 0
|
|
||||||
mut builder := strings.new_builder(docker.buf_len)
|
mut builder := strings.new_builder(docker.buf_len)
|
||||||
|
|
||||||
for builder.len < length {
|
if d.head.header.get(.transfer_encoding) or { '' } == 'chunked' {
|
||||||
c = d.reader.read(mut buf) or { break }
|
mut body_stream := d.get_chunked_response_reader()
|
||||||
|
|
||||||
builder.write(buf[..c])!
|
util.reader_to_writer(mut body_stream, mut builder)!
|
||||||
|
} else {
|
||||||
|
content_length := d.head.header.get(.content_length)!.int()
|
||||||
|
|
||||||
|
if content_length == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
mut buf := []u8{len: docker.buf_len}
|
||||||
|
mut c := 0
|
||||||
|
|
||||||
|
for builder.len < content_length {
|
||||||
|
c = d.reader.read(mut buf)!
|
||||||
|
|
||||||
|
builder.write(buf[..c])!
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return builder.str()
|
d.body = builder.str()
|
||||||
}
|
}
|
||||||
|
|
||||||
// read_response is a convenience function which always consumes the entire
|
// read_response is a convenience function which always consumes the entire
|
||||||
// response & returns it. It should only be used when we're certain that the
|
// response and loads it into memory. It should only be used when we're certain
|
||||||
// result isn't too large.
|
// that the result isn't too large, as even chunked responses will get fully
|
||||||
fn (mut d DockerConn) read_response() !(http.Response, string) {
|
// loaded into memory.
|
||||||
head := d.read_response_head()!
|
fn (mut d DockerConn) read_response() ! {
|
||||||
|
d.read_response_head()!
|
||||||
if head.status().is_error() {
|
d.check_error()!
|
||||||
content_length := head.header.get(.content_length)!.int()
|
d.read_response_body()!
|
||||||
body := d.read_response_body(content_length)!
|
|
||||||
mut err := json.decode(DockerError, body)!
|
|
||||||
err.status = head.status_code
|
|
||||||
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// 204 means "No Content", so we can assume nothing follows after this
|
|
||||||
if head.status() == .no_content {
|
|
||||||
return head, ''
|
|
||||||
}
|
|
||||||
|
|
||||||
if head.header.get(http.CommonHeader.transfer_encoding) or { '' } == 'chunked' {
|
|
||||||
mut builder := strings.new_builder(1024)
|
|
||||||
mut body := d.get_chunked_response_reader()
|
|
||||||
|
|
||||||
util.reader_to_writer(mut body, mut builder)!
|
|
||||||
|
|
||||||
return head, builder.str()
|
|
||||||
}
|
|
||||||
|
|
||||||
content_length := head.header.get(http.CommonHeader.content_length)!.int()
|
|
||||||
body := d.read_response_body(content_length)!
|
|
||||||
|
|
||||||
return head, body
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// read_json_response<T> is a convenience function that runs read_response
|
||||||
|
// before parsing its contents, which is assumed to be JSON, into a struct.
|
||||||
fn (mut d DockerConn) read_json_response<T>() !T {
|
fn (mut d DockerConn) read_json_response<T>() !T {
|
||||||
head, body := d.read_response()!
|
d.read_response()!
|
||||||
|
|
||||||
if head.status_code < 200 || head.status_code > 300 {
|
data := json.decode(T, d.body)!
|
||||||
data := json.decode(DockerError, body)!
|
|
||||||
|
|
||||||
return docker_error(head.status_code, data.message)
|
|
||||||
}
|
|
||||||
|
|
||||||
mut data := json.decode(T, body)!
|
|
||||||
|
|
||||||
//$for field in T.fields {
|
//$for field in T.fields {
|
||||||
//$if field.typ is time.Time {
|
//$if field.typ is time.Time {
|
||||||
|
|
@ -180,3 +135,21 @@ fn (mut d DockerConn) get_stream_format_reader() &StreamFormatReader {
|
||||||
|
|
||||||
return r2
|
return r2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct DockerError {
|
||||||
|
pub:
|
||||||
|
message string
|
||||||
|
}
|
||||||
|
|
||||||
|
// check_error should be called after read_response_head. If the status code of
|
||||||
|
// the response is an error, the body is consumed and the Docker HTTP error is
|
||||||
|
// returned as a V error. If the status isn't the error, this function is a
|
||||||
|
// no-op.
|
||||||
|
fn (mut d DockerConn) check_error() ! {
|
||||||
|
if d.head.status().is_error() {
|
||||||
|
d.read_response_body()!
|
||||||
|
d_err := json.decode(DockerError, d.body)!
|
||||||
|
|
||||||
|
return error_with_code('$d.head.status(): $d_err.message', d.head.status_code)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
22
errors.v
22
errors.v
|
|
@ -1,22 +0,0 @@
|
||||||
module docker
|
|
||||||
|
|
||||||
struct DockerError {
|
|
||||||
pub mut:
|
|
||||||
status int [skip]
|
|
||||||
message string
|
|
||||||
}
|
|
||||||
|
|
||||||
fn (err DockerError) code() int {
|
|
||||||
return err.status
|
|
||||||
}
|
|
||||||
|
|
||||||
fn (err DockerError) msg() string {
|
|
||||||
return err.message
|
|
||||||
}
|
|
||||||
|
|
||||||
fn docker_error(status int, message string) DockerError {
|
|
||||||
return DockerError{
|
|
||||||
status: status
|
|
||||||
message: message
|
|
||||||
}
|
|
||||||
}
|
|
||||||
42
images.v
42
images.v
|
|
@ -1,31 +1,26 @@
|
||||||
module docker
|
module docker
|
||||||
|
|
||||||
import net.http { Method }
|
import net.http
|
||||||
import types { Image }
|
import types { Image }
|
||||||
import json
|
|
||||||
|
|
||||||
pub fn (mut d DockerConn) image_inspect(image string) !Image {
|
pub fn (mut d DockerConn) image_inspect(image string) !Image {
|
||||||
d.send_request(.get, '/images/$image/json')!
|
d.request(.get, '/images/$image/json', {})
|
||||||
_, body := d.read_response()!
|
d.send()!
|
||||||
|
|
||||||
data := json.decode(Image, body)!
|
data := d.read_json_response<Image>()!
|
||||||
|
|
||||||
return data
|
return data
|
||||||
}
|
}
|
||||||
|
|
||||||
// pull_image pulls the given image:tag.
|
// pull_image pulls the given image:tag.
|
||||||
pub fn (mut d DockerConn) pull_image(image string, tag string) ! {
|
pub fn (mut d DockerConn) pull_image(image string, tag string) ! {
|
||||||
d.send_request(Method.post, '/images/create?fromImage=$image&tag=$tag')!
|
d.request(.post, '/images/create', {
|
||||||
head := d.read_response_head()!
|
'fromImage': image
|
||||||
|
'tag': tag
|
||||||
if head.status().is_error() {
|
})
|
||||||
content_length := head.header.get(.content_length)!.int()
|
d.send()!
|
||||||
body := d.read_response_body(content_length)!
|
d.read_response_head()!
|
||||||
mut err := json.decode(DockerError, body)!
|
d.check_error()!
|
||||||
err.status = head.status_code
|
|
||||||
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Keep reading the body until the pull has completed
|
// Keep reading the body until the pull has completed
|
||||||
mut body := d.get_chunked_response_reader()
|
mut body := d.get_chunked_response_reader()
|
||||||
|
|
@ -39,16 +34,19 @@ pub fn (mut d DockerConn) pull_image(image string, tag string) ! {
|
||||||
|
|
||||||
// create_image_from_container creates a new image from a container.
|
// create_image_from_container creates a new image from a container.
|
||||||
pub fn (mut d DockerConn) create_image_from_container(id string, repo string, tag string) !Image {
|
pub fn (mut d DockerConn) create_image_from_container(id string, repo string, tag string) !Image {
|
||||||
d.send_request(.post, '/commit?container=$id&repo=$repo&tag=$tag')!
|
d.request(.post, '/commit', {
|
||||||
_, body := d.read_response()!
|
'container': id
|
||||||
|
'repo': repo
|
||||||
|
'tag': tag
|
||||||
|
})
|
||||||
|
d.send()!
|
||||||
|
|
||||||
data := json.decode(Image, body)!
|
return d.read_json_response<Image>()!
|
||||||
|
|
||||||
return data
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// remove_image removes the image with the given id.
|
// remove_image removes the image with the given id.
|
||||||
pub fn (mut d DockerConn) remove_image(id string) ! {
|
pub fn (mut d DockerConn) remove_image(id string) ! {
|
||||||
d.send_request(.delete, '/images/$id')!
|
d.request(.delete, '/images/$id', {})
|
||||||
|
d.send()!
|
||||||
d.read_response()!
|
d.read_response()!
|
||||||
}
|
}
|
||||||
|
|
|
||||||
22
request.v
22
request.v
|
|
@ -3,17 +3,29 @@ module docker
|
||||||
import net.http
|
import net.http
|
||||||
import net.urllib
|
import net.urllib
|
||||||
import io
|
import io
|
||||||
|
import json
|
||||||
|
|
||||||
fn (mut d DockerConn) request(method http.Method, url_str string) {
|
fn (mut d DockerConn) request(method http.Method, url string, params map[string]string) {
|
||||||
d.method = method
|
d.method = method
|
||||||
d.url = url_str
|
d.url = url
|
||||||
d.params.clear()
|
|
||||||
d.content_type = ''
|
d.content_type = ''
|
||||||
d.body = ''
|
d.body = ''
|
||||||
|
|
||||||
|
d.params.clear()
|
||||||
|
|
||||||
|
for key, value in params {
|
||||||
|
d.params[key] = urllib.query_escape(value.replace("'", '"'))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn (mut d DockerConn) get(url_str string) {
|
fn (mut d DockerConn) body(content_type string, body string) {
|
||||||
d.request(http.Method.get, url_str)
|
d.content_type = content_type
|
||||||
|
d.body = body
|
||||||
|
}
|
||||||
|
|
||||||
|
fn (mut d DockerConn) body_json<T>(data T) {
|
||||||
|
d.content_type = 'application/json'
|
||||||
|
d.body = json.encode(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn (mut d DockerConn) params<T>(o T) {
|
fn (mut d DockerConn) params<T>(o T) {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
module docker
|
module docker
|
||||||
|
|
||||||
import net.http { Method }
|
import net.http
|
||||||
import time
|
import time
|
||||||
|
|
||||||
struct UsageData {
|
struct UsageData {
|
||||||
|
|
@ -36,7 +36,8 @@ struct VolumeListResponse {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (mut d DockerConn) volume_list() !VolumeListResponse {
|
pub fn (mut d DockerConn) volume_list() !VolumeListResponse {
|
||||||
d.send_request(Method.get, '/volumes')!
|
d.request(.get, '/volumes', {})
|
||||||
|
d.send()!
|
||||||
|
|
||||||
mut data := d.read_json_response<VolumeListResponse>()!
|
mut data := d.read_json_response<VolumeListResponse>()!
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue