forked from 1jehuang/jcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.rs
More file actions
760 lines (681 loc) · 25 KB
/
build.rs
File metadata and controls
760 lines (681 loc) · 25 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
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
mod paths;
mod source_state;
mod storage_helpers;
pub use paths::{
SELFDEV_CARGO_PROFILE, binary_name, binary_stem, client_update_candidate,
current_binary_build_time_string, current_binary_built_at, find_dev_binary,
find_repo_in_ancestors, get_repo_dir, is_jcode_repo, launcher_binary_path, launcher_dir,
preferred_reload_candidate, release_binary_path, run_selfdev_build, selfdev_binary_path,
selfdev_build_command, selfdev_build_command_for_target, shared_server_update_candidate,
update_launcher_symlink_to_current, update_launcher_symlink_to_stable,
};
pub use source_state::{
current_build_info, current_git_diff, current_git_hash, current_git_hash_full,
current_source_state, ensure_source_state_matches, get_commit_message, is_working_tree_dirty,
repo_build_version, repo_scope_key, worktree_scope_key,
};
pub use storage_helpers::{
build_log_path, build_progress_path, builds_dir, canary_binary_path, clear_build_progress,
clear_migration_context, current_binary_path, current_version_file, load_migration_context,
manifest_path, migration_context_path, read_build_progress, read_current_version,
read_shared_server_version, read_stable_version, save_migration_context,
shared_server_binary_path, shared_server_version_file, stable_binary_path, stable_version_file,
version_binary_path, write_build_progress,
};
use crate::storage;
use anyhow::Result;
use chrono::Utc;
use serde::{Deserialize, Serialize};
use std::io::{BufRead, BufReader, Write};
use std::path::{Path, PathBuf};
use std::process::Command;
use std::time::{Duration, Instant};
pub use jcode_selfdev_types::{
BinaryChoice, BinaryVersionReport, BuildInfo, CanaryStatus, CrashInfo, DevBinarySourceMetadata,
MigrationContext, PendingActivation, PublishedBuild, SelfDevBuildCommand, SelfDevBuildTarget,
SourceState,
};
/// Manifest tracking build versions and their status
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct BuildManifest {
/// Current stable build hash (known good)
pub stable: Option<String>,
/// Current canary build hash (being tested)
pub canary: Option<String>,
/// Session ID testing the canary build
pub canary_session: Option<String>,
/// Status of canary testing
pub canary_status: Option<CanaryStatus>,
/// History of recent builds
#[serde(default)]
pub history: Vec<BuildInfo>,
/// Last crash information (if canary crashed)
#[serde(default, skip_serializing_if = "Option::is_none")]
pub last_crash: Option<CrashInfo>,
/// Pending activation being validated across reload/resume.
#[serde(default, skip_serializing_if = "Option::is_none")]
pub pending_activation: Option<PendingActivation>,
}
impl BuildManifest {
/// Load manifest from disk
pub fn load() -> Result<Self> {
let path = manifest_path()?;
if path.exists() {
storage::read_json(&path)
} else {
Ok(Self::default())
}
}
/// Save manifest to disk
pub fn save(&self) -> Result<()> {
let path = manifest_path()?;
storage::write_json(&path, self)
}
/// Check if we should use stable or canary for a given session
pub fn binary_for_session(&self, session_id: &str) -> BinaryChoice {
// If this session is the canary tester, use canary
if let Some(ref canary_session) = self.canary_session
&& canary_session == session_id
&& let Some(ref canary) = self.canary
{
return BinaryChoice::Canary(canary.clone());
}
// Otherwise use stable
if let Some(ref stable) = self.stable {
BinaryChoice::Stable(stable.clone())
} else {
BinaryChoice::Current
}
}
/// Start canary testing for a session
pub fn start_canary(&mut self, hash: &str, session_id: &str) -> Result<()> {
self.canary = Some(hash.to_string());
self.canary_session = Some(session_id.to_string());
self.canary_status = Some(CanaryStatus::Testing);
self.save()
}
/// Mark canary as passed
pub fn mark_canary_passed(&mut self) -> Result<()> {
self.canary_status = Some(CanaryStatus::Passed);
self.save()
}
/// Mark canary as failed
pub fn mark_canary_failed(&mut self) -> Result<()> {
self.canary_status = Some(CanaryStatus::Failed);
self.save()
}
/// Record a crash
pub fn record_crash(
&mut self,
hash: &str,
exit_code: i32,
stderr: &str,
diff: Option<String>,
) -> Result<()> {
self.last_crash = Some(CrashInfo {
build_hash: hash.to_string(),
exit_code,
stderr: stderr.chars().take(4096).collect(), // Truncate
crashed_at: Utc::now(),
diff,
});
self.canary_status = Some(CanaryStatus::Failed);
self.save()
}
/// Clear crash info after it's been handled
pub fn clear_crash(&mut self) -> Result<()> {
self.last_crash = None;
self.save()
}
pub fn set_pending_activation(&mut self, activation: PendingActivation) -> Result<()> {
self.pending_activation = Some(activation);
self.save()
}
pub fn clear_pending_activation(&mut self) -> Result<()> {
self.pending_activation = None;
self.save()
}
/// Add build to history
pub fn add_to_history(&mut self, info: BuildInfo) -> Result<()> {
// Keep last 20 builds
self.history.insert(0, info);
self.history.truncate(20);
self.save()
}
}
pub fn complete_pending_activation_for_session(session_id: &str) -> Result<Option<String>> {
let mut manifest = BuildManifest::load()?;
let Some(pending) = manifest.pending_activation.clone() else {
return Ok(None);
};
if pending.session_id != session_id {
return Ok(None);
}
manifest.canary = Some(pending.new_version.clone());
manifest.canary_session = Some(session_id.to_string());
manifest.canary_status = Some(CanaryStatus::Passed);
manifest.pending_activation = None;
manifest.last_crash = None;
manifest.save()?;
Ok(Some(pending.new_version))
}
pub fn rollback_pending_activation_for_session(session_id: &str) -> Result<Option<String>> {
let mut manifest = BuildManifest::load()?;
let Some(pending) = manifest.pending_activation.clone() else {
return Ok(None);
};
if pending.session_id != session_id {
return Ok(None);
}
if let Some(previous) = pending.previous_current_version.as_deref() {
update_current_symlink(previous)?;
update_launcher_symlink_to_current()?;
}
if let Some(previous) = pending.previous_shared_server_version.as_deref() {
update_shared_server_symlink(previous)?;
}
manifest.canary_status = Some(CanaryStatus::Failed);
manifest.pending_activation = None;
manifest.save()?;
Ok(Some(pending.new_version))
}
/// Install a binary at a specific immutable version path.
pub fn install_binary_at_version(source: &std::path::Path, version: &str) -> Result<PathBuf> {
if !source.exists() {
anyhow::bail!("Binary not found at {:?}", source);
}
let dest_dir = builds_dir()?.join("versions").join(version);
storage::ensure_dir(&dest_dir)?;
let dest = dest_dir.join(binary_name());
// Remove existing file first to avoid ETXTBSY when replacing a running binary.
if dest.exists() {
std::fs::remove_file(&dest)?;
}
// Prefer hard link (instant, zero I/O) over copy (71MB+ binary).
// Falls back to copy if hard link fails (e.g. cross-filesystem).
if std::fs::hard_link(source, &dest).is_err() {
std::fs::copy(source, &dest)?;
}
crate::platform::set_permissions_executable(&dest)?;
Ok(dest)
}
fn binary_source_metadata_path(binary: &Path) -> PathBuf {
let file_name = binary
.file_name()
.and_then(|name| name.to_str())
.map(str::to_string)
.unwrap_or_else(|| binary_stem().to_string());
binary.with_file_name(format!("{file_name}.source.json"))
}
pub fn write_dev_binary_source_metadata(binary: &Path, source: &SourceState) -> Result<PathBuf> {
let path = binary_source_metadata_path(binary);
storage::write_json(&path, &DevBinarySourceMetadata::from(source))?;
Ok(path)
}
pub fn write_current_dev_binary_source_metadata(
repo_dir: &Path,
source: &SourceState,
) -> Result<PathBuf> {
let binary = find_dev_binary(repo_dir)
.ok_or_else(|| anyhow::anyhow!("Binary not found in target/selfdev or target/release"))?;
write_dev_binary_source_metadata(&binary, source)
}
fn read_binary_version_report(binary: &Path) -> Result<BinaryVersionReport> {
let output = Command::new(binary)
.args(["version", "--json"])
.env("JCODE_NON_INTERACTIVE", "1")
.output()?;
if !output.status.success() {
anyhow::bail!(
"Binary smoke test failed for {} with exit code {:?}: {}",
binary.display(),
output.status.code(),
String::from_utf8_lossy(&output.stderr).trim()
);
}
serde_json::from_slice(&output.stdout).map_err(|err| {
anyhow::anyhow!(
"Binary smoke test for {} returned invalid JSON: {}",
binary.display(),
err
)
})
}
pub fn smoke_test_binary(binary: &Path) -> Result<()> {
let report = read_binary_version_report(binary)?;
if report.version.as_deref().unwrap_or_default().is_empty() {
anyhow::bail!(
"Binary smoke test for {} returned JSON without a version field",
binary.display()
);
}
Ok(())
}
fn validate_binary_version_matches_source_report(
report: &BinaryVersionReport,
binary: &Path,
source: &SourceState,
) -> Result<()> {
let git_hash = report.git_hash.as_deref().unwrap_or_default();
if git_hash.is_empty() {
anyhow::bail!(
"Binary {} version report did not include git_hash; rebuild before publishing {}",
binary.display(),
source.version_label
);
}
if git_hash != source.short_hash {
anyhow::bail!(
"Refusing to publish {} as {}: binary was built from git hash {}, but source state is {}",
binary.display(),
source.version_label,
git_hash,
source.short_hash
);
}
Ok(())
}
fn dirty_status_paths(repo_dir: &Path) -> Result<Vec<(PathBuf, bool)>> {
let output = Command::new("git")
.args(["status", "--porcelain=v1", "-z", "--untracked-files=all"])
.current_dir(repo_dir)
.output()?;
if !output.status.success() {
anyhow::bail!(
"git status failed while validating dirty build freshness with status {:?}",
output.status.code()
);
}
let mut entries = output.stdout.split(|byte| *byte == 0).peekable();
let mut paths = Vec::new();
while let Some(entry) = entries.next() {
if entry.is_empty() || entry.len() < 4 {
continue;
}
let x = entry[0];
let y = entry[1];
let path = String::from_utf8_lossy(&entry[3..]).to_string();
let deleted = x == b'D' || y == b'D';
paths.push((PathBuf::from(path), deleted));
if matches!(x, b'R' | b'C') || matches!(y, b'R' | b'C') {
let _ = entries.next();
}
}
Ok(paths)
}
fn validate_dirty_binary_freshness_without_metadata(
repo_dir: &Path,
binary: &Path,
source: &SourceState,
) -> Result<()> {
if !source.dirty {
return Ok(());
}
let binary_mtime = std::fs::metadata(binary)
.and_then(|metadata| metadata.modified())
.map_err(|err| {
anyhow::anyhow!(
"Could not read binary modification time for {}: {}",
binary.display(),
err
)
})?;
let dirty_paths = dirty_status_paths(repo_dir)?;
let mut unverifiable = Vec::new();
let mut newer_than_binary = Vec::new();
for (relative, deleted) in dirty_paths {
if deleted {
unverifiable.push(relative.display().to_string());
continue;
}
let path = repo_dir.join(&relative);
let modified = match std::fs::metadata(&path).and_then(|metadata| metadata.modified()) {
Ok(modified) => modified,
Err(_) => {
unverifiable.push(relative.display().to_string());
continue;
}
};
if modified > binary_mtime {
newer_than_binary.push(relative.display().to_string());
}
}
if !unverifiable.is_empty() {
anyhow::bail!(
"Refusing to publish dirty build {} without source metadata: these changed paths cannot be checked against the binary timestamp: {}",
source.version_label,
unverifiable.join(", ")
);
}
if !newer_than_binary.is_empty() {
anyhow::bail!(
"Refusing to publish stale dirty build {}: changed paths are newer than {}: {}",
source.version_label,
binary.display(),
newer_than_binary.join(", ")
);
}
Ok(())
}
fn validate_dev_binary_source_metadata(binary: &Path, source: &SourceState) -> Result<bool> {
let path = binary_source_metadata_path(binary);
if !path.exists() {
return Ok(false);
}
let metadata: DevBinarySourceMetadata = storage::read_json(&path)?;
if metadata.source_fingerprint != source.fingerprint
|| metadata.version_label != source.version_label
|| metadata.short_hash != source.short_hash
|| metadata.full_hash != source.full_hash
|| metadata.dirty != source.dirty
{
anyhow::bail!(
"Refusing to publish {} as {}: source metadata at {} was for {} ({})",
binary.display(),
source.version_label,
path.display(),
metadata.version_label,
metadata.source_fingerprint
);
}
Ok(true)
}
fn validate_dev_binary_matches_source(
repo_dir: &Path,
binary: &Path,
source: &SourceState,
) -> Result<()> {
let report = read_binary_version_report(binary)?;
if report.version.as_deref().unwrap_or_default().is_empty() {
anyhow::bail!(
"Binary smoke test for {} returned JSON without a version field",
binary.display()
);
}
validate_binary_version_matches_source_report(&report, binary, source)?;
if !validate_dev_binary_source_metadata(binary, source)? {
validate_dirty_binary_freshness_without_metadata(repo_dir, binary, source)?;
}
Ok(())
}
#[cfg(unix)]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
enum SmokeTestReplyKind {
Ack,
Pong,
}
#[cfg(unix)]
fn smoke_test_server_request(
stream: &mut BufReader<std::os::unix::net::UnixStream>,
request: &serde_json::Value,
expected_reply_kind: SmokeTestReplyKind,
expected_reply_id: u64,
) -> Result<()> {
let payload = serde_json::to_string(request)? + "\n";
stream.get_mut().write_all(payload.as_bytes())?;
stream.get_mut().flush()?;
let deadline = Instant::now() + Duration::from_secs(5);
loop {
let mut line = String::new();
let bytes = stream.read_line(&mut line)?;
if bytes == 0 {
anyhow::bail!(
"server closed the smoke-test socket before sending {:?} {}",
expected_reply_kind,
expected_reply_id
);
}
let value: serde_json::Value = serde_json::from_str(line.trim()).map_err(|err| {
anyhow::anyhow!("server smoke test returned invalid JSON line: {}", err)
})?;
let reply_type = value.get("type").and_then(|t| t.as_str());
let reply_id = value.get("id").and_then(|id| id.as_u64());
let kind_matches = match expected_reply_kind {
SmokeTestReplyKind::Ack => reply_type == Some("ack"),
SmokeTestReplyKind::Pong => reply_type == Some("pong"),
};
if kind_matches && reply_id == Some(expected_reply_id) {
return Ok(());
}
if Instant::now() >= deadline {
anyhow::bail!(
"timed out waiting for {:?} {} during server smoke test",
expected_reply_kind,
expected_reply_id
);
}
}
}
#[cfg(unix)]
fn smoke_test_server_connect(
path: &Path,
) -> std::io::Result<BufReader<std::os::unix::net::UnixStream>> {
let stream = std::os::unix::net::UnixStream::connect(path)?;
stream.set_read_timeout(Some(Duration::from_secs(5)))?;
stream.set_write_timeout(Some(Duration::from_secs(5)))?;
Ok(BufReader::new(stream))
}
#[cfg(unix)]
fn smoke_test_server_protocol(path: &Path, working_dir: &str) -> Result<()> {
// The server handles an initial Ping on a dedicated lightweight-control
// connection and closes it after replying, so the subscribed-client probe
// must use a fresh socket.
{
let mut stream = smoke_test_server_connect(path)?;
smoke_test_server_request(
&mut stream,
&serde_json::json!({
"type": "ping",
"id": 1
}),
SmokeTestReplyKind::Pong,
1,
)?;
}
let mut stream = smoke_test_server_connect(path)?;
smoke_test_server_request(
&mut stream,
&serde_json::json!({
"type": "subscribe",
"id": 2,
"working_dir": working_dir
}),
SmokeTestReplyKind::Ack,
2,
)?;
Ok(())
}
#[cfg(unix)]
pub fn smoke_test_server_binary(binary: &Path) -> Result<()> {
use std::fs::File;
use std::process::Stdio;
use std::thread;
smoke_test_binary(binary)?;
let temp = tempfile::tempdir()?;
let runtime_dir = temp.path().join("runtime");
storage::ensure_dir(&runtime_dir)?;
let socket_path = temp.path().join("jcode-smoke.sock");
let stderr_path = temp.path().join("jcode-smoke.stderr.log");
let stderr = File::create(&stderr_path)?;
let mut child = Command::new(binary)
.arg("serve")
.arg("--socket")
.arg(&socket_path)
.env("JCODE_NON_INTERACTIVE", "1")
.env("JCODE_RUNTIME_DIR", &runtime_dir)
.env("JCODE_GATEWAY_ENABLED", "0")
.env("JCODE_TEMP_SERVER", "1")
.env("JCODE_SERVER_OWNER_PID", std::process::id().to_string())
.env("JCODE_TEMP_SERVER_IDLE_SECS", "300")
.stdin(Stdio::null())
.stdout(Stdio::null())
.stderr(Stdio::from(stderr))
.spawn()?;
let result = (|| -> Result<()> {
let deadline = Instant::now() + Duration::from_secs(10);
loop {
if let Some(status) = child.try_wait()? {
let stderr = std::fs::read_to_string(&stderr_path).unwrap_or_default();
anyhow::bail!(
"server smoke test process exited early with status {:?}: {}",
status.code(),
stderr.trim()
);
}
match smoke_test_server_connect(&socket_path) {
Ok(_) => {
smoke_test_server_protocol(&socket_path, env!("CARGO_MANIFEST_DIR"))?;
return Ok(());
}
Err(err)
if matches!(
err.kind(),
std::io::ErrorKind::NotFound
| std::io::ErrorKind::ConnectionRefused
| std::io::ErrorKind::WouldBlock
) =>
{
if Instant::now() >= deadline {
let stderr = std::fs::read_to_string(&stderr_path).unwrap_or_default();
anyhow::bail!(
"timed out waiting for server smoke test socket {}: {}",
socket_path.display(),
stderr.trim()
);
}
thread::sleep(Duration::from_millis(50));
}
Err(err) => return Err(err.into()),
}
}
})();
let _ = child.kill();
let shutdown_deadline = Instant::now() + Duration::from_secs(2);
loop {
if child.try_wait()?.is_some() {
break;
}
if Instant::now() >= shutdown_deadline {
let _ = child.kill();
let _ = child.wait();
break;
}
thread::sleep(Duration::from_millis(25));
}
result
}
#[cfg(not(unix))]
pub fn smoke_test_server_binary(binary: &Path) -> Result<()> {
smoke_test_binary(binary)
}
fn update_channel_symlink(channel: &str, version: &str) -> Result<PathBuf> {
let channel_dir = builds_dir()?.join(channel);
storage::ensure_dir(&channel_dir)?;
let link_path = channel_dir.join(binary_name());
let target = version_binary_path(version)?;
if !target.exists() {
anyhow::bail!("Version binary not found at {:?}", target);
}
let temp = channel_dir.join(format!(
".{}-{}-{}",
binary_stem(),
channel,
std::process::id()
));
crate::platform::atomic_symlink_swap(&target, &link_path, &temp)?;
Ok(link_path)
}
/// Update stable symlink to point to a version and publish stable-version marker.
pub fn update_stable_symlink(version: &str) -> Result<PathBuf> {
let stable_link = update_channel_symlink("stable", version)?;
std::fs::write(stable_version_file()?, version)?;
Ok(stable_link)
}
/// Update current symlink to point to a version and publish current-version marker.
pub fn update_current_symlink(version: &str) -> Result<PathBuf> {
let current_link = update_channel_symlink("current", version)?;
std::fs::write(current_version_file()?, version)?;
Ok(current_link)
}
/// Update the shared server symlink to point to a version and publish the
/// shared-server-version marker.
pub fn update_shared_server_symlink(version: &str) -> Result<PathBuf> {
let shared_link = update_channel_symlink("shared-server", version)?;
std::fs::write(shared_server_version_file()?, version)?;
Ok(shared_link)
}
pub fn publish_local_current_build_for_source(
repo_dir: &Path,
source: &SourceState,
) -> Result<PublishedBuild> {
let binary = find_dev_binary(repo_dir)
.ok_or_else(|| anyhow::anyhow!("Binary not found in target/selfdev or target/release"))?;
if !binary.exists() {
anyhow::bail!("Binary not found at {:?}", binary);
}
validate_dev_binary_matches_source(repo_dir, &binary, source)?;
let previous_current_version = read_current_version()?;
let versioned_path = install_binary_at_version(&binary, &source.version_label)?;
let installed_report = read_binary_version_report(&versioned_path)?;
if installed_report
.version
.as_deref()
.unwrap_or_default()
.is_empty()
{
anyhow::bail!(
"Binary smoke test for {} returned JSON without a version field",
versioned_path.display()
);
}
validate_binary_version_matches_source_report(&installed_report, &versioned_path, source)?;
let current_link = update_current_symlink(&source.version_label)?;
let launcher_link = update_launcher_symlink_to_current()?;
Ok(PublishedBuild {
version: source.version_label.clone(),
source_fingerprint: source.fingerprint.clone(),
versioned_path,
current_link,
launcher_link,
previous_current_version,
})
}
/// Install the local release binary into immutable versions and make it the active `current`
/// build + launcher, while keeping `stable` untouched.
pub fn publish_local_current_build(repo_dir: &std::path::Path) -> Result<PathBuf> {
let source = current_source_state(repo_dir)?;
Ok(publish_local_current_build_for_source(repo_dir, &source)?.versioned_path)
}
/// Promote an already installed immutable version onto the shared server channel.
pub fn promote_version_to_shared_server(version: &str) -> Result<Option<String>> {
let previous = read_shared_server_version()?;
update_shared_server_symlink(version)?;
Ok(previous)
}
/// Install release binary into immutable versions, promote it to stable, and also make it the
/// active current/launcher build.
pub fn install_local_release(repo_dir: &std::path::Path) -> Result<PathBuf> {
let source = release_binary_path(repo_dir);
if !source.exists() {
anyhow::bail!("Binary not found at {:?}", source);
}
let version = repo_build_version(repo_dir)?;
let versioned = install_binary_at_version(&source, &version)?;
update_stable_symlink(&version)?;
update_current_symlink(&version)?;
update_shared_server_symlink(&version)?;
update_launcher_symlink_to_current()?;
Ok(versioned)
}
/// Copy binary to versioned location
pub fn install_version(repo_dir: &std::path::Path, hash: &str) -> Result<PathBuf> {
let source = release_binary_path(repo_dir);
install_binary_at_version(&source, hash)
}
/// Update canary symlink to point to a version
pub fn update_canary_symlink(hash: &str) -> Result<()> {
let _ = update_channel_symlink("canary", hash)?;
Ok(())
}
#[cfg(test)]
mod tests;