kopi 0.1.1

Kopi is a JDK version management tool
Documentation
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
// Copyright 2025 dentsusoken
//
// 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.

use crate::cache::MetadataCache;
use crate::config::KopiConfig;
use crate::doctor::{CheckCategory, CheckResult, CheckStatus, DiagnosticCheck};
use std::fs;
use std::time::{Duration, Instant};

const MAX_CACHE_SIZE_MB: u64 = 50; // Warn if cache is larger than 50MB

pub struct CacheFileCheck<'a> {
    config: &'a KopiConfig,
}

impl<'a> CacheFileCheck<'a> {
    pub fn new(config: &'a KopiConfig) -> Self {
        Self { config }
    }
}

impl<'a> DiagnosticCheck for CacheFileCheck<'a> {
    fn name(&self) -> &str {
        "Cache File Existence"
    }

    fn run(&self, start: Instant, category: CheckCategory) -> CheckResult {
        let duration = start.elapsed();
        let cache_path = match self.config.metadata_cache_path() {
            Ok(path) => path,
            Err(e) => {
                return CheckResult::new(
                    self.name(),
                    category,
                    CheckStatus::Fail,
                    format!("Failed to get cache path: {e}"),
                    duration,
                );
            }
        };

        if cache_path.exists() {
            match fs::metadata(&cache_path) {
                Ok(metadata) => {
                    if metadata.is_file() {
                        CheckResult::new(
                            self.name(),
                            category,
                            CheckStatus::Pass,
                            "Cache file exists",
                            duration,
                        )
                        .with_details(format!("Path: {}", cache_path.display()))
                    } else {
                        CheckResult::new(
                            self.name(),
                            category,
                            CheckStatus::Fail,
                            "Cache path exists but is not a file",
                            duration,
                        )
                        .with_details(format!("Path: {}", cache_path.display()))
                        .with_suggestion(
                            "Remove the directory and run 'kopi refresh' to recreate cache",
                        )
                    }
                }
                Err(e) => CheckResult::new(
                    self.name(),
                    category,
                    CheckStatus::Warning,
                    format!("Cache file exists but cannot read metadata: {e}"),
                    duration,
                )
                .with_suggestion("Check file permissions"),
            }
        } else {
            CheckResult::new(
                self.name(),
                category,
                CheckStatus::Warning,
                "Cache file does not exist",
                duration,
            )
            .with_details(format!("Expected at: {}", cache_path.display()))
            .with_suggestion("Run 'kopi refresh' to create cache")
        }
    }
}

pub struct CachePermissionsCheck<'a> {
    config: &'a KopiConfig,
}

impl<'a> CachePermissionsCheck<'a> {
    pub fn new(config: &'a KopiConfig) -> Self {
        Self { config }
    }
}

impl<'a> DiagnosticCheck for CachePermissionsCheck<'a> {
    fn name(&self) -> &str {
        "Cache File Permissions"
    }

    fn run(&self, start: Instant, category: CheckCategory) -> CheckResult {
        let duration = start.elapsed();
        let cache_path = match self.config.metadata_cache_path() {
            Ok(path) => path,
            Err(e) => {
                return CheckResult::new(
                    self.name(),
                    category,
                    CheckStatus::Fail,
                    format!("Failed to get cache path: {e}"),
                    duration,
                );
            }
        };

        if !cache_path.exists() {
            return CheckResult::new(
                self.name(),
                category,
                CheckStatus::Skip,
                "Cache file does not exist",
                duration,
            );
        }

        // Use platform-independent file readability check
        match crate::platform::file_ops::check_file_readable(&cache_path) {
            Ok(is_readable) => {
                if is_readable {
                    // Get permissions string for details
                    let permissions_str =
                        crate::platform::file_ops::get_file_permissions_string(&cache_path)
                            .unwrap_or_else(|_| "unknown".to_string());

                    CheckResult::new(
                        self.name(),
                        category,
                        CheckStatus::Pass,
                        "Cache file has correct permissions",
                        duration,
                    )
                    .with_details(format!("Permissions: {permissions_str}"))
                } else {
                    // Get permissions string for details
                    let permissions_str =
                        crate::platform::file_ops::get_file_permissions_string(&cache_path)
                            .unwrap_or_else(|_| "unknown".to_string());

                    CheckResult::new(
                        self.name(),
                        category,
                        CheckStatus::Fail,
                        "Cache file is not readable",
                        duration,
                    )
                    .with_details(format!("Permissions: {permissions_str}"))
                    .with_suggestion(if cfg!(unix) {
                        "Run: chmod 644 ~/.kopi/cache/metadata.json"
                    } else {
                        "Check file permissions in Windows Security settings"
                    })
                }
            }
            Err(e) => CheckResult::new(
                self.name(),
                category,
                CheckStatus::Fail,
                format!("Cannot check cache permissions: {e}"),
                duration,
            ),
        }
    }
}

pub struct CacheFormatCheck<'a> {
    config: &'a KopiConfig,
}

impl<'a> CacheFormatCheck<'a> {
    pub fn new(config: &'a KopiConfig) -> Self {
        Self { config }
    }
}

impl<'a> DiagnosticCheck for CacheFormatCheck<'a> {
    fn name(&self) -> &str {
        "Cache Format Validation"
    }

    fn run(&self, start: Instant, category: CheckCategory) -> CheckResult {
        let duration = start.elapsed();
        let cache_path = match self.config.metadata_cache_path() {
            Ok(path) => path,
            Err(e) => {
                return CheckResult::new(
                    self.name(),
                    category,
                    CheckStatus::Fail,
                    format!("Failed to get cache path: {e}"),
                    duration,
                );
            }
        };

        if !cache_path.exists() {
            return CheckResult::new(
                self.name(),
                category,
                CheckStatus::Skip,
                "Cache file does not exist",
                duration,
            );
        }

        match fs::read_to_string(&cache_path) {
            Ok(content) => match serde_json::from_str::<MetadataCache>(&content) {
                Ok(cache) => {
                    let dist_count = cache.distributions.len();
                    let total_packages: usize =
                        cache.distributions.values().map(|d| d.packages.len()).sum();

                    CheckResult::new(
                        self.name(),
                        category,
                        CheckStatus::Pass,
                        "Cache format is valid",
                        duration,
                    )
                    .with_details(format!(
                        "Version: {}, Distributions: {}, Total packages: {}",
                        cache.version, dist_count, total_packages
                    ))
                }
                Err(e) => CheckResult::new(
                    self.name(),
                    category,
                    CheckStatus::Fail,
                    "Cache file has invalid JSON format",
                    duration,
                )
                .with_details(format!("Parse error: {e}"))
                .with_suggestion("Delete cache and run 'kopi refresh' to regenerate"),
            },
            Err(e) => CheckResult::new(
                self.name(),
                category,
                CheckStatus::Fail,
                format!("Cannot read cache file: {e}"),
                duration,
            ),
        }
    }
}

pub struct CacheStalenessCheck<'a> {
    config: &'a KopiConfig,
}

impl<'a> CacheStalenessCheck<'a> {
    pub fn new(config: &'a KopiConfig) -> Self {
        Self { config }
    }
}

impl<'a> DiagnosticCheck for CacheStalenessCheck<'a> {
    fn name(&self) -> &str {
        "Cache Staleness"
    }

    fn run(&self, start: Instant, category: CheckCategory) -> CheckResult {
        let duration = start.elapsed();
        let cache_path = match self.config.metadata_cache_path() {
            Ok(path) => path,
            Err(e) => {
                return CheckResult::new(
                    self.name(),
                    category,
                    CheckStatus::Fail,
                    format!("Failed to get cache path: {e}"),
                    duration,
                );
            }
        };

        if !cache_path.exists() {
            return CheckResult::new(
                self.name(),
                category,
                CheckStatus::Skip,
                "Cache file does not exist",
                duration,
            );
        }

        match fs::read_to_string(&cache_path) {
            Ok(content) => match serde_json::from_str::<MetadataCache>(&content) {
                Ok(cache) => {
                    // Use configured max age from config.metadata.cache.max_age_hours
                    let max_age =
                        Duration::from_secs(self.config.metadata.cache.max_age_hours * 60 * 60);
                    let max_age_days = self.config.metadata.cache.max_age_hours / 24;

                    if cache.is_stale(max_age) {
                        let age_days = chrono::Utc::now()
                            .signed_duration_since(cache.last_updated)
                            .num_days();

                        CheckResult::new(
                            self.name(),
                            category,
                            CheckStatus::Warning,
                            format!("Cache is {age_days} days old (max age: {max_age_days} days)"),
                            duration,
                        )
                        .with_details(format!(
                            "Last updated: {}",
                            cache.last_updated.format("%Y-%m-%d %H:%M:%S UTC")
                        ))
                        .with_suggestion("Run 'kopi refresh' to refresh cache")
                    } else {
                        let age_days = chrono::Utc::now()
                            .signed_duration_since(cache.last_updated)
                            .num_days();

                        CheckResult::new(
                            self.name(),
                            category,
                            CheckStatus::Pass,
                            format!("Cache is {age_days} days old"),
                            duration,
                        )
                        .with_details(format!(
                            "Last updated: {} (max age: {} days)",
                            cache.last_updated.format("%Y-%m-%d %H:%M:%S UTC"),
                            max_age_days
                        ))
                    }
                }
                Err(_) => CheckResult::new(
                    self.name(),
                    category,
                    CheckStatus::Skip,
                    "Cannot parse cache to check staleness",
                    duration,
                ),
            },
            Err(_) => CheckResult::new(
                self.name(),
                category,
                CheckStatus::Skip,
                "Cannot read cache file",
                duration,
            ),
        }
    }
}

pub struct CacheSizeCheck<'a> {
    config: &'a KopiConfig,
}

impl<'a> CacheSizeCheck<'a> {
    pub fn new(config: &'a KopiConfig) -> Self {
        Self { config }
    }
}

impl<'a> DiagnosticCheck for CacheSizeCheck<'a> {
    fn name(&self) -> &str {
        "Cache Size Analysis"
    }

    fn run(&self, start: Instant, category: CheckCategory) -> CheckResult {
        let duration = start.elapsed();
        let cache_path = match self.config.metadata_cache_path() {
            Ok(path) => path,
            Err(e) => {
                return CheckResult::new(
                    self.name(),
                    category,
                    CheckStatus::Fail,
                    format!("Failed to get cache path: {e}"),
                    duration,
                );
            }
        };

        if !cache_path.exists() {
            return CheckResult::new(
                self.name(),
                category,
                CheckStatus::Skip,
                "Cache file does not exist",
                duration,
            );
        }

        match fs::metadata(&cache_path) {
            Ok(metadata) => {
                let size_bytes = metadata.len();
                let size_mb = size_bytes as f64 / (1024.0 * 1024.0);

                if size_mb > MAX_CACHE_SIZE_MB as f64 {
                    CheckResult::new(
                        self.name(),
                        category,
                        CheckStatus::Warning,
                        format!("Cache file is unusually large: {size_mb:.2} MB"),
                        duration,
                    )
                    .with_details(format!("Size: {size_bytes} bytes"))
                    .with_suggestion("Consider clearing and regenerating cache with 'kopi refresh'")
                } else {
                    CheckResult::new(
                        self.name(),
                        category,
                        CheckStatus::Pass,
                        format!("Cache size is reasonable: {size_mb:.2} MB"),
                        duration,
                    )
                    .with_details(format!("Size: {size_bytes} bytes"))
                }
            }
            Err(e) => CheckResult::new(
                self.name(),
                category,
                CheckStatus::Warning,
                format!("Cannot check cache size: {e}"),
                duration,
            ),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::path::Path;
    use tempfile::TempDir;

    fn create_test_config(temp_dir: &Path) -> KopiConfig {
        // Clear environment variables that might interfere with config loading
        unsafe {
            std::env::remove_var("KOPI_STORAGE_MIN_DISK_SPACE_MB");
            std::env::remove_var("KOPI_AUTO_INSTALL_TIMEOUT_SECS");
            std::env::remove_var("KOPI_AUTO_INSTALL_ENABLED");
            std::env::remove_var("KOPI_CACHE_TTL_HOURS");
        }

        KopiConfig::new(temp_dir.to_path_buf()).unwrap()
    }

    #[test]
    fn test_cache_check_names() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(temp_dir.path());

        let file_check = CacheFileCheck::new(&config);
        assert_eq!(file_check.name(), "Cache File Existence");

        let perm_check = CachePermissionsCheck::new(&config);
        assert_eq!(perm_check.name(), "Cache File Permissions");

        let format_check = CacheFormatCheck::new(&config);
        assert_eq!(format_check.name(), "Cache Format Validation");

        let stale_check = CacheStalenessCheck::new(&config);
        assert_eq!(stale_check.name(), "Cache Staleness");

        let size_check = CacheSizeCheck::new(&config);
        assert_eq!(size_check.name(), "Cache Size Analysis");
    }

    #[test]
    fn test_cache_file_not_exists() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(temp_dir.path());
        let check = CacheFileCheck::new(&config);

        let result = check.run(Instant::now(), CheckCategory::Cache);
        assert_eq!(result.status, CheckStatus::Warning);
        assert!(result.message.contains("does not exist"));
    }

    #[test]
    fn test_skip_checks_when_no_cache() {
        let temp_dir = TempDir::new().unwrap();
        let config = create_test_config(temp_dir.path());

        let perm_check = CachePermissionsCheck::new(&config);
        let result = perm_check.run(Instant::now(), CheckCategory::Cache);
        assert_eq!(result.status, CheckStatus::Skip);

        let format_check = CacheFormatCheck::new(&config);
        let result = format_check.run(Instant::now(), CheckCategory::Cache);
        assert_eq!(result.status, CheckStatus::Skip);
    }
}