v/vlib/net/http/download_nix.c.v

53 lines
1.1 KiB
V
Raw Normal View History

// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
2019-06-23 04:21:30 +02:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2019-06-22 20:20:28 +02:00
module http
2020-05-16 16:12:23 +02:00
type DownloadFn = fn (written int)
/*
2019-06-22 20:20:28 +02:00
struct DownloadStruct {
mut:
2019-06-22 20:20:28 +02:00
stream voidptr
written int
2020-05-16 16:12:23 +02:00
cb DownloadFn
2019-06-22 20:20:28 +02:00
}
*/
fn download_cb(ptr voidptr, size size_t, nmemb size_t, userp voidptr) {
2019-12-21 23:41:42 +01:00
/*
mut data := &DownloadStruct(userp)
written := C.fwrite(ptr, size, nmemb, data.stream)
data.written += written
data.cb(data.written)
//#data->cb(data->written); // TODO
return written
*/
2019-06-22 20:20:28 +02:00
}
pub fn download_file_with_progress(url string, out string, cb DownloadFn, cb_finished fn()) {
2019-12-21 23:41:42 +01:00
/*
2019-06-22 20:20:28 +02:00
curl := C.curl_easy_init()
if isnil(curl) {
return
}
cout := out.str
fp := C.fopen(cout, 'wb')
C.curl_easy_setopt(curl, CURLOPT_URL, url.str)
2019-06-22 20:20:28 +02:00
C.curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, download_cb)
data := &DownloadStruct {
stream:fp
2019-06-22 20:20:28 +02:00
cb: cb
}
C.curl_easy_setopt(curl, CURLOPT_WRITEDATA, data)
mut d := 0.0
C.curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d)
C.curl_easy_perform(curl)
C.curl_easy_cleanup(curl)
C.fclose(fp)
cb_finished()
*/
2019-06-22 20:20:28 +02:00
}
fn empty() {
}