Go Async SDK (clients/go/async/): - Fixed case-sensitive language detection bug (.R for R language) - Created go.mod for module management - Added comprehensive test suite - Created 3 examples with expected output comments - Added README with full documentation Java Sync SDK (clients/java/sync/): - RENAMED: Unsandbox.java -> Un.java (matches naming convention) - Updated class name from Unsandbox to Un - Created pom.xml for Maven build - Added 6 examples (simple + SDK client versions) - Created test suite with JUnit 5 - Added README with API documentation JavaScript Async SDK (clients/javascript/async/): - Fixed unused import - Created package.json with ES module support - Added 5 examples covering all async patterns - Created 71 tests (all passing) - Added comprehensive README PHP Sync SDK (clients/php/sync/): - RENAMED: Unsandbox.php -> un.php (matches naming convention) - Created composer.json with PSR-4 autoloading - Created phpunit.xml for testing - Added 4 examples with expected output comments - Created 54 tests across 4 test files - Added README with full documentation Ruby Sync SDK (clients/ruby/sync/): - Created Gemfile and un.gemspec - Created Rakefile with test task - Updated examples to actually use the SDK - Added 4 examples (hello_world, async_job, language_detection, snapshots) - Created comprehensive test suite with 30+ tests - Added README with documentation Rust Sync SDK (clients/rust/sync/): - Updated Cargo.toml with example declarations - Created 4 examples (hello_world, fibonacci, multi_language, async_polling) - Added comprehensive README with API reference - All dependencies verified correct All SDKs verified: - HMAC-SHA256 authentication implemented - 4-tier credential system (args > env > ~/.unsandbox > ./accounts.csv) - Expected output comments for pipeline validation - Proper error handling - Language detection support
63 lines
1.6 KiB
Rust
63 lines
1.6 KiB
Rust
// PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
|
//
|
|
// Fibonacci example for unsandbox Rust SDK - Synchronous Version
|
|
//
|
|
// This example demonstrates executing a recursive algorithm remotely.
|
|
// Shows how to run complex computations using the sync SDK.
|
|
//
|
|
// To run:
|
|
// export UNSANDBOX_PUBLIC_KEY="your-public-key"
|
|
// export UNSANDBOX_SECRET_KEY="your-secret-key"
|
|
// cargo run --example fibonacci
|
|
//
|
|
// Expected output:
|
|
// Executing Fibonacci code...
|
|
// Result status: completed
|
|
// Output:
|
|
// fib(0) = 0
|
|
// fib(1) = 1
|
|
// fib(2) = 1
|
|
// fib(3) = 2
|
|
// fib(4) = 3
|
|
// fib(5) = 5
|
|
// fib(6) = 8
|
|
// fib(7) = 13
|
|
// fib(8) = 21
|
|
// fib(9) = 34
|
|
// fib(10) = 55
|
|
// Execution time: XXXms
|
|
|
|
use un::{execute_code, resolve_credentials, UnsandboxError};
|
|
|
|
fn main() -> Result<(), UnsandboxError> {
|
|
// Fibonacci code to execute remotely
|
|
let code = r#"
|
|
def fib(n):
|
|
if n <= 1:
|
|
return n
|
|
return fib(n - 1) + fib(n - 2)
|
|
|
|
for i in range(11):
|
|
print(f"fib({i}) = {fib(i)}")
|
|
"#;
|
|
|
|
// Resolve credentials from environment or config files
|
|
let creds = resolve_credentials(None, None)?;
|
|
|
|
// Execute the code synchronously
|
|
println!("Executing Fibonacci code...");
|
|
let result = execute_code("python", code, &creds)?;
|
|
|
|
// Check the result
|
|
println!("Result status: {}", result.status);
|
|
println!("Output:");
|
|
println!("{}", result.output);
|
|
println!("Execution time: {}ms", result.execution_time_ms);
|
|
|
|
if result.exit_code != 0 {
|
|
eprintln!("Execution failed with exit code: {}", result.exit_code);
|
|
std::process::exit(1);
|
|
}
|
|
|
|
Ok(())
|
|
}
|