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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
|
use std::{
net::SocketAddr,
process::Command,
sync::{Arc, Mutex},
time::{Duration, Instant},
};
use tauri::{App, AppHandle, Manager, RunEvent, WebviewUrl, WebviewWindow};
use tauri_plugin_dialog::{DialogExt, MessageDialogButtons, MessageDialogResult};
use tauri_plugin_shell::process::{CommandChild, CommandEvent};
use tauri_plugin_shell::ShellExt;
use tauri_plugin_updater::UpdaterExt;
use tokio::net::TcpSocket;
#[derive(Clone)]
struct ServerState(Arc<Mutex<Option<CommandChild>>>);
fn get_sidecar_port() -> u16 {
option_env!("OPENCODE_PORT")
.map(|s| s.to_string())
.or_else(|| std::env::var("OPENCODE_PORT").ok())
.and_then(|port_str| port_str.parse().ok())
.unwrap_or(4096)
}
fn find_and_kill_process_on_port(port: u16) -> Result<(), Box<dyn std::error::Error>> {
// Find all listeners on the specified port
let listeners = listeners::get_processes_by_port(port)?;
if listeners.is_empty() {
println!("No processes found listening on port {}", port);
return Ok(());
}
for listener in listeners {
let pid = listener.pid;
println!("Found process {} listening on port {}", pid, port);
// Kill the process using platform-appropriate command
#[cfg(target_os = "windows")]
{
Command::new("taskkill")
.args(["/F", "/PID", &pid.to_string()])
.output()?;
}
#[cfg(not(target_os = "windows"))]
{
Command::new("kill")
.args(["-9", &pid.to_string()])
.output()?;
}
println!("Killed process {}", pid);
}
Ok(())
}
fn spawn_sidecar(app: &AppHandle, port: u16) -> CommandChild {
let (mut rx, child) = app
.shell()
.sidecar("opencode")
.unwrap()
.args(["serve", &format!("--port={port}")])
.spawn()
.expect("Failed to spawn opencode");
tauri::async_runtime::spawn(async move {
while let Some(event) = rx.recv().await {
match event {
CommandEvent::Stdout(line_bytes) => {
let line = String::from_utf8_lossy(&line_bytes);
print!("{line}");
}
CommandEvent::Stderr(line_bytes) => {
let line = String::from_utf8_lossy(&line_bytes);
eprint!("{line}");
}
_ => {}
}
}
});
child
}
async fn is_server_running(port: u16) -> bool {
TcpSocket::new_v4()
.unwrap()
.connect(SocketAddr::new(
"127.0.0.1".parse().expect("Failed to parse IP"),
port,
))
.await
.is_ok()
}
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
let updater_enabled = option_env!("TAURI_SIGNING_PRIVATE_KEY").is_some();
let mut builder = tauri::Builder::default()
.plugin(tauri_plugin_dialog::init())
.plugin(tauri_plugin_shell::init())
.plugin(tauri_plugin_opener::init())
.setup(move |app| {
let app = app.handle().clone();
if updater_enabled {
tauri::async_runtime::spawn(run_updater(app.clone()));
}
tauri::async_runtime::spawn(async move {
let port = get_sidecar_port();
let socket_connected = is_server_running(port).await;
let should_spawn_sidecar = if socket_connected {
let res = app
.dialog()
.message(
"OpenCode Server is already running, would you like to restart it?",
)
.buttons(MessageDialogButtons::YesNo)
.blocking_show_with_result();
match res {
MessageDialogResult::Yes => {
if let Err(e) = find_and_kill_process_on_port(port) {
eprintln!("Failed to kill process on port {}: {}", port, e);
}
true
}
_ => false,
}
} else {
true
};
let child = if should_spawn_sidecar {
let child = spawn_sidecar(&app, port);
let timestamp = Instant::now();
loop {
if timestamp.elapsed() > Duration::from_secs(3) {
todo!("Handle server spawn timeout");
}
tokio::time::sleep(Duration::from_millis(10)).await;
if is_server_running(port).await {
// give the server a little bit more time to warm up
tokio::time::sleep(Duration::from_millis(10)).await;
break;
}
}
println!("Server ready after {:?}", timestamp.elapsed());
Some(child)
} else {
None
};
let mut window_builder =
WebviewWindow::builder(&app, "main", WebviewUrl::App("/".into()))
.title("OpenCode")
.inner_size(800.0, 600.0)
.decorations(true);
#[cfg(target_os = "macos")]
{
window_builder = window_builder.hidden_title(true);
}
window_builder.build().expect("Failed to create window");
app.manage(ServerState(Arc::new(Mutex::new(child))));
});
Ok(())
});
if updater_enabled {
builder = builder.plugin(tauri_plugin_updater::Builder::new().build());
}
builder
.build(tauri::generate_context!())
.expect("error while running tauri application")
.run(|app, event| {
if let RunEvent::Exit = event {
println!("Received Exit");
let _ = app
.state::<ServerState>()
.0
.lock()
.expect("Failed to acquire mutex lock")
.take()
.expect("State not found")
.kill();
println!("Killed server");
}
});
}
async fn run_updater(app: AppHandle) {
let update = match app
.updater_builder()
.version_comparator(|v, r| {
dbg!(&v, &r);
r.version > v
})
.build()
.unwrap()
.check()
.await
{
Ok(u) => u,
Err(e) => {
dbg!(e);
app.dialog()
.message("Failed to check for updates")
.show(|_| {});
return;
}
};
dbg!(update.is_some());
let Some(update) = update else {
return;
};
let Ok(update_bytes) = update.download(|_, _| {}, || {}).await else {
return;
};
let should_update = app
.dialog()
.message(format!(
"Version {} of OpenCode is available, would you like to install it?",
&update.version
))
.buttons(MessageDialogButtons::YesNo)
.blocking_show();
if !should_update {
return;
}
if update.install(update_bytes).is_err() {
app.dialog()
.message("Failed to install update")
.blocking_show();
}
let should_restart = app
.dialog()
.message("Update installed successfully, would you like to restart OpenCode?")
.buttons(MessageDialogButtons::YesNo)
.blocking_show();
if should_restart {
app.restart();
}
}
|