dora-ssr 0.5.8

The lib for building Dora SSR game as wasm32-wasi that runs on multi-platform Dora SSR engine.
Documentation
/* Copyright (c) 2016-2026 Li Jin <dragon-fly@qq.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */

extern "C" {
	fn httpclient_post_async(url: i64, json: i64, timeout: f32, func0: i32, stack0: i64) -> i64;
	fn httpclient_post_with_headers_async(url: i64, headers: i64, json: i64, timeout: f32, func0: i32, stack0: i64) -> i64;
	fn httpclient_post_with_headers_part_async(url: i64, headers: i64, json: i64, timeout: f32, func0: i32, stack0: i64, func1: i32, stack1: i64) -> i64;
	fn httpclient_get_async(url: i64, timeout: f32, func0: i32, stack0: i64) -> i64;
	fn httpclient_download_async(url: i64, full_path: i64, timeout: f32, func0: i32, stack0: i64) -> i64;
	fn httpclient_cancel(request_id: i64) -> i32;
	fn httpclient_is_request_active(request_id: i64) -> i32;
}
/// An HTTP client interface for asynchronous HTTP requests.
/// All requests run on background threads and return a request id that can be used with `cancel()` or `isRequestActive()`.
/// Completion and progress callbacks are dispatched back to the logic thread.
pub struct HttpClient { }
impl HttpClient {
	/// Sends a POST request with a JSON body.
	///
	/// # Arguments
	///
	/// * `url` - The URL to send the request to.
	/// * `json` - The JSON data to send in the request body.
	/// * `timeout` - The timeout in seconds for the request.
	/// * `callback` - A callback function invoked when the request finishes. It receives the response body, or `nil` if the request fails or is cancelled.
	///
	/// # Returns
	///
	/// * `uint64_t` - The request id. Returns `0` when the request cannot be scheduled.
	pub fn post_async(url: &str, json: &str, timeout: f32, mut callback: Box<dyn FnMut(Option<String>)>) -> i64 {
		let mut stack0 = crate::dora::CallStack::new();
		let stack_raw0 = stack0.raw();
		let func_id0 = crate::dora::push_function(Box::new(move || {
			callback(stack0.pop_str())
		}));
		unsafe { return httpclient_post_async(crate::dora::from_string(url), crate::dora::from_string(json), timeout, func_id0, stack_raw0); }
	}
	/// Sends a POST request with custom headers and a JSON body.
	///
	/// # Arguments
	///
	/// * `url` - The URL to send the request to.
	/// * `headers` - A vector of headers to include in the request. Each header should be in the format `key: value`.
	/// * `json` - The JSON data to send in the request body.
	/// * `timeout` - The timeout in seconds for the request.
	/// * `callback` - A callback function invoked when the request finishes. It receives the response body, or `nil` if the request fails or is cancelled.
	///
	/// # Returns
	///
	/// * `uint64_t` - The request id. Returns `0` when the request cannot be scheduled.
	pub fn post_with_headers_async(url: &str, headers: &Vec<&str>, json: &str, timeout: f32, mut callback: Box<dyn FnMut(Option<String>)>) -> i64 {
		let mut stack0 = crate::dora::CallStack::new();
		let stack_raw0 = stack0.raw();
		let func_id0 = crate::dora::push_function(Box::new(move || {
			callback(stack0.pop_str())
		}));
		unsafe { return httpclient_post_with_headers_async(crate::dora::from_string(url), crate::dora::Vector::from_str(headers), crate::dora::from_string(json), timeout, func_id0, stack_raw0); }
	}
	/// Sends a POST request with custom headers and a JSON body, while optionally consuming the response stream in chunks.
	///
	/// # Arguments
	///
	/// * `url` - The URL to send the request to.
	/// * `headers` - A vector of headers to include in the request. Each header should be in the format `key: value`.
	/// * `json` - The JSON data to send in the request body.
	/// * `timeout` - The timeout in seconds for the request.
	/// * `part_callback` - A callback function that receives response chunks as they arrive. Return `true` to stop and cancel the request early.
	/// * `callback` - A callback function invoked when the request finishes. It receives the full response body, or `nil` if the request fails or is cancelled.
	///
	/// # Returns
	///
	/// * `uint64_t` - The request id. Returns `0` when the request cannot be scheduled.
	pub fn post_with_headers_part_async(url: &str, headers: &Vec<&str>, json: &str, timeout: f32, mut part_callback: Box<dyn FnMut(&str) -> bool>, mut callback: Box<dyn FnMut(Option<String>)>) -> i64 {
		let mut stack0 = crate::dora::CallStack::new();
		let stack_raw0 = stack0.raw();
		let func_id0 = crate::dora::push_function(Box::new(move || {
			let result = part_callback(stack0.pop_str().unwrap().as_str());
			stack0.push_bool(result);
		}));
		let mut stack1 = crate::dora::CallStack::new();
		let stack_raw1 = stack1.raw();
		let func_id1 = crate::dora::push_function(Box::new(move || {
			callback(stack1.pop_str())
		}));
		unsafe { return httpclient_post_with_headers_part_async(crate::dora::from_string(url), crate::dora::Vector::from_str(headers), crate::dora::from_string(json), timeout, func_id0, stack_raw0, func_id1, stack_raw1); }
	}
	/// Sends a GET request.
	///
	/// # Arguments
	///
	/// * `url` - The URL to send the request to.
	/// * `timeout` - The timeout in seconds for the request.
	/// * `callback` - A callback function invoked when the request finishes. It receives the response body, or `nil` if the request fails or is cancelled.
	///
	/// # Returns
	///
	/// * `uint64_t` - The request id. Returns `0` when the request cannot be scheduled.
	pub fn get_async(url: &str, timeout: f32, mut callback: Box<dyn FnMut(Option<String>)>) -> i64 {
		let mut stack0 = crate::dora::CallStack::new();
		let stack_raw0 = stack0.raw();
		let func_id0 = crate::dora::push_function(Box::new(move || {
			callback(stack0.pop_str())
		}));
		unsafe { return httpclient_get_async(crate::dora::from_string(url), timeout, func_id0, stack_raw0); }
	}
	/// Downloads a file asynchronously and saves it to the specified local path.
	///
	/// # Arguments
	///
	/// * `url` - The URL of the file to download.
	/// * `full_path` - The full path where the downloaded file should be saved.
	/// * `timeout` - The timeout in seconds for the request.
	/// * `progress` - A callback function that reports download progress.
	///   The function receives `interrupted` (whether the download failed or was cancelled), `current` (downloaded bytes), and `total` (total bytes when available).
	///   Return `true` to cancel the download. If the download fails or is cancelled, the partially written file is removed.
	///
	/// # Returns
	///
	/// * `uint64_t` - The request id. Returns `0` when the request cannot be scheduled.
	pub fn download_async(url: &str, full_path: &str, timeout: f32, mut progress: Box<dyn FnMut(bool, i64, i64) -> bool>) -> i64 {
		let mut stack0 = crate::dora::CallStack::new();
		let stack_raw0 = stack0.raw();
		let func_id0 = crate::dora::push_function(Box::new(move || {
			let result = progress(stack0.pop_bool().unwrap(), stack0.pop_i64().unwrap(), stack0.pop_i64().unwrap());
			stack0.push_bool(result);
		}));
		unsafe { return httpclient_download_async(crate::dora::from_string(url), crate::dora::from_string(full_path), timeout, func_id0, stack_raw0); }
	}
	/// Requests cancellation for an in-flight HTTP request.
	///
	/// # Arguments
	///
	/// * `request_id` - The request id returned by an async HTTP method.
	///
	/// # Returns
	///
	/// * `bool` - `true` if the request was found and cancellation was requested.
	pub fn cancel(request_id: i64) -> bool {
		unsafe { return httpclient_cancel(request_id) != 0; }
	}
	/// Checks whether a request is still active.
	///
	/// # Arguments
	///
	/// * `request_id` - The request id returned by an async HTTP method.
	///
	/// # Returns
	///
	/// * `bool` - `true` if the request is still running.
	pub fn is_request_active(request_id: i64) -> bool {
		unsafe { return httpclient_is_request_active(request_id) != 0; }
	}
}