-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathmain.rs
More file actions
50 lines (42 loc) · 2 KB
/
main.rs
File metadata and controls
50 lines (42 loc) · 2 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
/*
Copyright 2025 The Hyperlight Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#![allow(clippy::disallowed_macros)]
use hyperlight_host::sandbox::uninitialized::UninitializedSandbox;
use hyperlight_host::{GuestBinary, Result};
use hyperlight_testing::simple_guest_as_string;
use tracing_subscriber::EnvFilter;
use tracing_subscriber::layer::SubscriberExt;
// An example of how to get tracy tracing working with hyperlight.
// Run with:
// TRACY_NO_EXIT=1 RUST_LOG=trace cargo run --package hyperlight-host --example tracing-tracy --profile release-with-debug,
// and then open the `tracy-profiler` GUI, and there should be an option to load the client created by this example.
fn main() -> Result<()> {
tracing::subscriber::set_global_default(
tracing_subscriber::registry()
.with(EnvFilter::from_default_env())
.with(tracing_tracy::TracyLayer::default()),
)
.expect("setup tracy layer");
let simple_guest_path =
simple_guest_as_string().expect("Cannot find the guest binary at the expected location.");
// Create a new sandbox.
let usandbox = UninitializedSandbox::new(GuestBinary::FilePath(simple_guest_path), None)?;
let mut sbox = usandbox.init().unwrap();
// do the function call
let current_time = std::time::Instant::now();
let res: String = sbox.call_guest_function_by_name("Echo", "Hello, World!".to_string())?;
let elapsed = current_time.elapsed();
println!("Function call finished in {:?}.", elapsed);
assert_eq!(res, "Hello, World!");
Ok(())
}