summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-07-18 16:44:09 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-07-19 08:29:26 -0400
commitae393879a7a03643075d559bd2773997c84c7ed0 (patch)
tree450906060b509e83c03d9c14ba92bedeaca209db /src/main.rs
parentd93bd4b127c39e2f0e8d2ec3bbec3f7c118890f4 (diff)
cleanup: Move C extern code to src/binding.rs
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs37
1 files changed, 3 insertions, 34 deletions
diff --git a/src/main.rs b/src/main.rs
index 3af299428..e1284d303 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -2,45 +2,14 @@ extern crate libc;
#[macro_use]
extern crate log;
-use libc::c_char;
use libc::c_int;
-use libc::c_void;
use std::ffi::CStr;
use std::ffi::CString;
use std::ptr;
-#[repr(C)]
-struct deno_buf {
- alloc_ptr: *mut u8,
- alloc_len: usize,
- data_ptr: *mut u8,
- data_len: usize,
-}
-
-#[repr(C)]
-struct DenoC {
- _unused: [u8; 0],
-}
-
-type DenoRecvCb = unsafe extern "C" fn(d: *const DenoC, buf: deno_buf);
-
-#[link(name = "deno", kind = "static")]
-extern "C" {
- fn deno_init();
- #[allow(dead_code)]
- fn deno_v8_version() -> *const c_char;
- fn deno_set_flags(argc: *mut c_int, argv: *mut *mut c_char);
-
- fn deno_new(data: *const c_void, cb: DenoRecvCb) -> *const DenoC;
- fn deno_delete(d: *const DenoC);
- fn deno_last_exception(d: *const DenoC) -> *const c_char;
- #[allow(dead_code)]
- fn deno_set_response(d: *const DenoC, buf: deno_buf);
- fn deno_execute(d: *const DenoC, js_filename: *const c_char, js_source: *const c_char)
- -> c_int;
-
- fn deno_handle_msg_from_js(d: *const DenoC, buf: deno_buf);
-}
+mod binding;
+use binding::{deno_delete, deno_execute, deno_handle_msg_from_js, deno_init, deno_last_exception,
+ deno_new, deno_set_flags, DenoC};
// Pass the command line arguments to v8.
// Returns a vector of command line arguments that v8 did not understand.