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
89 lines
2.1 KiB
Go
89 lines
2.1 KiB
Go
/*
|
|
Concurrent Execution example for unsandbox Go SDK - Asynchronous Version
|
|
|
|
This example demonstrates running multiple code executions concurrently.
|
|
Shows the power of async operations - run multiple executions in parallel.
|
|
|
|
To run:
|
|
export UNSANDBOX_PUBLIC_KEY="your-public-key"
|
|
export UNSANDBOX_SECRET_KEY="your-secret-key"
|
|
go run concurrent_execution.go
|
|
|
|
Expected output:
|
|
Starting 3 concurrent executions...
|
|
[Python] Status: completed, Output: Python says hello!
|
|
[JavaScript] Status: completed, Output: JavaScript says hello!
|
|
[Ruby] Status: completed, Output: Ruby says hello!
|
|
All 3 executions completed successfully!
|
|
*/
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"sync"
|
|
|
|
un_async "github.com/unsandbox/un-go-async/src"
|
|
)
|
|
|
|
type execution struct {
|
|
name string
|
|
language string
|
|
code string
|
|
}
|
|
|
|
func main() {
|
|
// Define multiple executions
|
|
executions := []execution{
|
|
{"Python", "python", `print("Python says hello!")`},
|
|
{"JavaScript", "javascript", `console.log("JavaScript says hello!");`},
|
|
{"Ruby", "ruby", `puts "Ruby says hello!"`},
|
|
}
|
|
|
|
// Resolve credentials
|
|
creds, err := un_async.ResolveCredentials("", "")
|
|
if err != nil {
|
|
log.Printf("Error: UNSANDBOX_PUBLIC_KEY and UNSANDBOX_SECRET_KEY environment variables required")
|
|
os.Exit(1)
|
|
}
|
|
|
|
fmt.Printf("Starting %d concurrent executions...\n", len(executions))
|
|
|
|
// Use WaitGroup to wait for all executions
|
|
var wg sync.WaitGroup
|
|
var mu sync.Mutex
|
|
successCount := 0
|
|
|
|
for _, exec := range executions {
|
|
wg.Add(1)
|
|
go func(e execution) {
|
|
defer wg.Done()
|
|
|
|
// Execute asynchronously
|
|
resultChan := un_async.ExecuteCode(creds, e.language, e.code)
|
|
result := <-resultChan
|
|
|
|
mu.Lock()
|
|
defer mu.Unlock()
|
|
|
|
if result.Err != nil {
|
|
fmt.Printf("[%s] Error: %v\n", e.name, result.Err)
|
|
return
|
|
}
|
|
|
|
status := result.Data["status"]
|
|
stdout := result.Data["stdout"]
|
|
fmt.Printf("[%s] Status: %v, Output: %v", e.name, status, stdout)
|
|
|
|
if status == "completed" {
|
|
successCount++
|
|
}
|
|
}(exec)
|
|
}
|
|
|
|
// Wait for all executions to complete
|
|
wg.Wait()
|
|
|
|
fmt.Printf("All %d executions completed successfully!\n", successCount)
|
|
}
|