blob: c826af7c0e74c501642a31e86402526f8d3633e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
// All rights reserved. MIT License.
extern crate libc;
extern crate url;
use libc::c_char;
use std::ffi::CStr;
use url::Url;
fn string_from_ptr(ptr: *const c_char) -> String {
let cstr = unsafe { CStr::from_ptr(ptr as *const i8) };
String::from(cstr.to_str().unwrap())
}
#[test]
fn test_url() {
let issue_list_url = Url::parse("https://github.com/rust-lang").unwrap();
assert!(issue_list_url.scheme() == "https");
}
#[no_mangle]
pub extern "C" fn handle_code_fetch(
cmd_id: u32,
module_specifier: *const c_char,
containing_file: *const c_char,
) {
let module_specifier = string_from_ptr(module_specifier);
let containing_file = string_from_ptr(containing_file);
println!(
"handle_code_fetch. cmd_id = {} module_specifier = {} containing_file = {}",
cmd_id,
module_specifier,
containing_file
);
unimplemented!();
}
|