normalize-package-index 0.3.2

Package index ingestion from distro and language registries
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
//! APK package index fetcher (Alpine Linux).
//!
//! Fetches package metadata from Alpine Linux repositories by parsing
//! APKINDEX.tar.gz files from mirrors.
//!
//! ## API Strategy
//! - **fetch**: Parses APKINDEX.tar.gz from `dl-cdn.alpinelinux.org` (official mirror)
//! - **fetch_versions**: Loads from all configured repos
//! - **search**: Filters cached APKINDEX entries
//! - **fetch_all**: Returns all packages from APKINDEX (cached 1 hour)
//!
//! ## Multi-repo Support
//! ```rust,ignore
//! use normalize_packages::index::apk::{Apk, AlpineRepo};
//!
//! // All repos (default)
//! let all = Apk::all();
//!
//! // Edge only
//! let edge = Apk::edge();
//!
//! // Specific version
//! let v321 = Apk::version("v3.21");
//!
//! // Custom selection
//! let custom = Apk::with_repos(&[AlpineRepo::EdgeMain, AlpineRepo::EdgeCommunity]);
//! ```

use super::{IndexError, PackageIndex, PackageMeta, VersionMeta};
use crate::cache;
use flate2::read::MultiGzDecoder;
use rayon::prelude::*;
use std::collections::HashMap;
use std::io::{BufRead, BufReader, Cursor, Read};
use std::time::Duration;
use tar::Archive;

/// Cache TTL for APKINDEX (1 hour).
const INDEX_CACHE_TTL: Duration = Duration::from_secs(60 * 60);

/// Alpine mirror URL.
const ALPINE_MIRROR: &str = "https://dl-cdn.alpinelinux.org/alpine";

/// Available Alpine Linux repositories.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum AlpineRepo {
    // === Edge (rolling release) ===
    /// Edge main repository
    EdgeMain,
    /// Edge community repository
    EdgeCommunity,
    /// Edge testing repository (unstable)
    EdgeTesting,

    // === v3.21 ===
    /// Alpine 3.21 main repository
    V321Main,
    /// Alpine 3.21 community repository
    V321Community,

    // === v3.20 ===
    /// Alpine 3.20 main repository
    V320Main,
    /// Alpine 3.20 community repository
    V320Community,

    // === v3.19 ===
    /// Alpine 3.19 main repository
    V319Main,
    /// Alpine 3.19 community repository
    V319Community,

    // === v3.18 ===
    /// Alpine 3.18 main repository
    V318Main,
    /// Alpine 3.18 community repository
    V318Community,
}

struct RepoParts {
    branch: &'static str,
    repo: &'static str,
}

impl AlpineRepo {
    /// Get the branch and repo parts.
    fn parts(&self) -> RepoParts {
        let (branch, repo) = match self {
            Self::EdgeMain => ("edge", "main"),
            Self::EdgeCommunity => ("edge", "community"),
            Self::EdgeTesting => ("edge", "testing"),
            Self::V321Main => ("v3.21", "main"),
            Self::V321Community => ("v3.21", "community"),
            Self::V320Main => ("v3.20", "main"),
            Self::V320Community => ("v3.20", "community"),
            Self::V319Main => ("v3.19", "main"),
            Self::V319Community => ("v3.19", "community"),
            Self::V318Main => ("v3.18", "main"),
            Self::V318Community => ("v3.18", "community"),
        };
        RepoParts { branch, repo }
    }

    /// Get the repository name for tagging.
    pub fn name(&self) -> String {
        let parts = self.parts();
        format!("{}-{}", parts.branch, parts.repo)
    }

    /// All available repositories.
    pub fn all() -> &'static [AlpineRepo] {
        &[
            Self::EdgeMain,
            Self::EdgeCommunity,
            Self::EdgeTesting,
            Self::V321Main,
            Self::V321Community,
            Self::V320Main,
            Self::V320Community,
            Self::V319Main,
            Self::V319Community,
            Self::V318Main,
            Self::V318Community,
        ]
    }

    /// Edge repositories only.
    pub fn edge() -> &'static [AlpineRepo] {
        &[Self::EdgeMain, Self::EdgeCommunity, Self::EdgeTesting]
    }

    /// Latest stable version (v3.21).
    pub fn latest_stable() -> &'static [AlpineRepo] {
        &[Self::V321Main, Self::V321Community]
    }

    /// Stable versions only (no edge, no testing).
    pub fn stable() -> &'static [AlpineRepo] {
        &[
            Self::V321Main,
            Self::V321Community,
            Self::V320Main,
            Self::V320Community,
            Self::V319Main,
            Self::V319Community,
            Self::V318Main,
            Self::V318Community,
        ]
    }
}

/// APK package index fetcher with configurable repositories.
pub struct Apk {
    repos: Vec<AlpineRepo>,
    arch: &'static str,
}

impl Apk {
    /// Create a fetcher with all repositories.
    pub fn all() -> Self {
        Self {
            repos: AlpineRepo::all().to_vec(),
            arch: "x86_64",
        }
    }

    /// Create a fetcher with edge repositories only.
    pub fn edge() -> Self {
        Self {
            repos: AlpineRepo::edge().to_vec(),
            arch: "x86_64",
        }
    }

    /// Create a fetcher with the latest stable version.
    pub fn latest_stable() -> Self {
        Self {
            repos: AlpineRepo::latest_stable().to_vec(),
            arch: "x86_64",
        }
    }

    /// Create a fetcher with all stable versions.
    pub fn stable() -> Self {
        Self {
            repos: AlpineRepo::stable().to_vec(),
            arch: "x86_64",
        }
    }

    /// Create a fetcher with custom repository selection.
    pub fn with_repos(repos: &[AlpineRepo]) -> Self {
        Self {
            repos: repos.to_vec(),
            arch: "x86_64",
        }
    }

    /// Set the architecture.
    pub fn with_arch(mut self, arch: &'static str) -> Self {
        self.arch = arch;
        self
    }

    /// Parse APKINDEX format into PackageMeta entries.
    fn parse_apkindex<R: Read>(reader: R, repo: AlpineRepo) -> Vec<PackageMeta> {
        let reader = BufReader::new(reader);
        let mut packages = Vec::new();
        let mut current = ApkPackageBuilder::new(repo);

        for line in reader.lines().map_while(Result::ok) {
            if line.is_empty() {
                // End of stanza
                if let Some(pkg) = current.build() {
                    packages.push(pkg);
                }
                current = ApkPackageBuilder::new(repo);
                continue;
            }

            // Single-letter field format: "X:value"
            if line.len() >= 2 && line.chars().nth(1) == Some(':') {
                // normalize-syntax-allow: rust/unwrap-in-impl - guarded by len() >= 2 check
                let key = line.chars().next().unwrap();
                let value = &line[2..];

                match key {
                    'P' => current.name = Some(value.to_string()),
                    'V' => current.version = Some(value.to_string()),
                    'T' => current.description = Some(value.to_string()),
                    'U' => current.homepage = Some(value.to_string()),
                    'L' => current.license = Some(value.to_string()),
                    'S' => current.size = value.parse().ok(),
                    'C' => current.checksum = Some(value.to_string()),
                    'D' => current.depends = Some(value.to_string()),
                    'm' => current.maintainer = Some(value.to_string()),
                    'o' => current.origin = Some(value.to_string()),
                    'A' => current.arch = Some(value.to_string()),
                    'p' => current.provides = Some(value.to_string()),
                    _ => {}
                }
            }
        }

        // Handle last stanza
        if let Some(pkg) = current.build() {
            packages.push(pkg);
        }

        packages
    }

    /// Fetch and parse APKINDEX.tar.gz from a repository.
    fn load_repo(&self, repo: AlpineRepo) -> Result<Vec<PackageMeta>, IndexError> {
        let parts = repo.parts();
        let url = format!(
            "{}/{}/{}/{}/APKINDEX.tar.gz",
            ALPINE_MIRROR, parts.branch, parts.repo, self.arch
        );

        // Try cache first
        let (data, _was_cached) = cache::fetch_with_cache(
            "apk",
            &format!("apkindex-{}-{}-{}", parts.branch, parts.repo, self.arch),
            &url,
            INDEX_CACHE_TTL,
        )
        .map_err(IndexError::Network)?;

        // Check if data is gzip compressed
        let tar_data = if data.len() >= 2 && data[0] == 0x1f && data[1] == 0x8b {
            let mut decoder = MultiGzDecoder::new(Cursor::new(data));
            let mut decompressed = Vec::new();
            decoder
                .read_to_end(&mut decompressed)
                .map_err(IndexError::Io)?;
            decompressed
        } else {
            data
        };

        let mut archive = Archive::new(Cursor::new(tar_data));

        for entry in archive.entries().map_err(IndexError::Io)? {
            let mut entry = entry.map_err(IndexError::Io)?;
            let path = entry
                .path()
                .map_err(IndexError::Io)?
                .to_string_lossy()
                .to_string();

            // Read entry content - must consume it to advance the iterator
            let mut content = Vec::new();
            entry.read_to_end(&mut content).map_err(IndexError::Io)?;

            if path == "APKINDEX" {
                return Ok(Self::parse_apkindex(Cursor::new(content), repo));
            }
        }

        Err(IndexError::Parse("APKINDEX not found in archive".into()))
    }

    /// Load packages from all configured repositories in parallel.
    fn load_packages(&self) -> Result<Vec<PackageMeta>, IndexError> {
        let results: Vec<_> = self
            .repos
            .par_iter()
            .map(|&repo| self.load_repo(repo))
            .collect();

        let mut packages = Vec::new();
        for result in results {
            match result {
                Ok(pkgs) => packages.extend(pkgs),
                Err(e) => {
                    tracing::warn!("failed to load Alpine repo: {}", e);
                }
            }
        }

        Ok(packages)
    }
}

impl PackageIndex for Apk {
    fn ecosystem(&self) -> &'static str {
        "apk"
    }

    fn display_name(&self) -> &'static str {
        "APK (Alpine Linux)"
    }

    fn fetch(&self, name: &str) -> Result<PackageMeta, IndexError> {
        // Search in all configured repos
        let packages = self.load_packages()?;

        packages
            .into_iter()
            .find(|p| p.name == name)
            .ok_or_else(|| IndexError::NotFound(name.to_string()))
    }

    fn fetch_versions(&self, name: &str) -> Result<Vec<VersionMeta>, IndexError> {
        let packages = self.load_packages()?;

        let versions: Vec<_> = packages
            .into_iter()
            .filter(|p| p.name == name)
            .map(|p| VersionMeta {
                version: p.version,
                released: None,
                yanked: false,
            })
            .collect();

        if versions.is_empty() {
            return Err(IndexError::NotFound(name.to_string()));
        }

        Ok(versions)
    }

    fn supports_fetch_all(&self) -> bool {
        true
    }

    fn fetch_all(&self) -> Result<Vec<PackageMeta>, IndexError> {
        self.load_packages()
    }

    fn search(&self, query: &str) -> Result<Vec<PackageMeta>, IndexError> {
        let packages = self.load_packages()?;
        let query_lower = query.to_lowercase();

        Ok(packages
            .into_iter()
            .filter(|p| {
                p.name.to_lowercase().contains(&query_lower)
                    || p.description
                        .as_ref()
                        .map(|d| d.to_lowercase().contains(&query_lower))
                        .unwrap_or(false)
            })
            .collect())
    }
}

/// Builder for APK package metadata.
#[derive(Default)]
struct ApkPackageBuilder {
    repo: Option<AlpineRepo>,
    name: Option<String>,
    version: Option<String>,
    description: Option<String>,
    homepage: Option<String>,
    license: Option<String>,
    size: Option<u64>,
    checksum: Option<String>,
    depends: Option<String>,
    maintainer: Option<String>,
    origin: Option<String>,
    arch: Option<String>,
    provides: Option<String>,
}

impl ApkPackageBuilder {
    fn new(repo: AlpineRepo) -> Self {
        Self {
            repo: Some(repo),
            ..Default::default()
        }
    }

    fn build(self) -> Option<PackageMeta> {
        let name = self.name?;
        let version = self.version?;
        let repo = self.repo?;
        let repo_parts = repo.parts();
        let (branch, repo_name) = (repo_parts.branch, repo_parts.repo);

        let mut extra = HashMap::new();

        // Parse dependencies
        if let Some(deps) = self.depends {
            let parsed_deps: Vec<serde_json::Value> = deps
                .split_whitespace()
                .filter(|d| {
                    // Filter out so: dependencies (shared library deps)
                    !d.starts_with("so:")
                })
                .map(|d| {
                    // Strip version constraints and prefixes
                    let name = d.split(['>', '<', '=', '~']).next().unwrap_or(d);
                    serde_json::Value::String(name.to_string())
                })
                .collect();
            if !parsed_deps.is_empty() {
                extra.insert("depends".to_string(), serde_json::Value::Array(parsed_deps));
            }
        }

        // Store size
        if let Some(size) = self.size {
            extra.insert("size".to_string(), serde_json::Value::Number(size.into()));
        }

        // Store origin package
        if let Some(origin) = self.origin {
            extra.insert("origin".to_string(), serde_json::Value::String(origin));
        }

        // Parse provides (shared libraries and virtual packages)
        if let Some(provides) = self.provides {
            let parsed_provides: Vec<serde_json::Value> = provides
                .split_whitespace()
                .map(|p| {
                    // Strip version constraints
                    let name = p.split(['>', '<', '=', '~']).next().unwrap_or(p);
                    serde_json::Value::String(name.to_string())
                })
                .collect();
            if !parsed_provides.is_empty() {
                extra.insert(
                    "provides".to_string(),
                    serde_json::Value::Array(parsed_provides),
                );
            }
        }

        // Tag with source repo
        extra.insert(
            "source_repo".to_string(),
            serde_json::Value::String(repo.name()),
        );

        // Build download URL
        let archive_url = Some(format!(
            "{}/{}/{}/x86_64/{}-{}.apk",
            ALPINE_MIRROR, branch, repo_name, name, version
        ));

        // Convert checksum (Q1... is SHA1 in base64)
        let checksum = self.checksum.map(|c| {
            if let Some(stripped) = c.strip_prefix("Q1") {
                format!("sha1-base64:{}", stripped)
            } else {
                c
            }
        });

        Some(PackageMeta {
            name,
            version,
            description: self.description,
            homepage: self.homepage,
            repository: None,
            license: self.license,
            binaries: Vec::new(),
            keywords: Vec::new(),
            maintainers: self.maintainer.into_iter().collect(),
            published: None,
            downloads: None,
            archive_url,
            checksum,
            extra,
        })
    }
}