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
/*
 * Copyright (c) 2019 Jonathan Perkin <jonathan@perkin.org.uk>
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 * metadata.rs - parse package metadata from "+*" files
 */

/**
 * Parse metadata contained in `+*` files in a package archive.
 *
 * ## Examples
 *
 * ```no_run
 * use flate2::read::GzDecoder;
 * use pkgsrc::{Metadata,MetadataEntry};
 * use std::fs::File;
 * use std::io::Read;
 * use tar::Archive;
 *
 * fn main() -> Result<(), std::io::Error> {
 *     let pkg = File::open("package-1.0.tgz")?;
 *     let mut archive = Archive::new(GzDecoder::new(pkg));
 *     let mut metadata = Metadata::new();
 *
 *     for file in archive.entries()? {
 *         let mut file = file?;
 *         let fname = String::from(file.header().path()?.to_str().unwrap());
 *         let mut s = String::new();
 *
 *         if let Some(entry) = MetadataEntry::from_filename(fname.as_str()) {
 *             file.read_to_string(&mut s)?;
 *             if let Err(e) = metadata.read_metadata(entry, &s) {
 *                 panic!("Bad metadata: {}", e);
 *             }
 *         }
 *     }
 *
 *     if let Err(e) = metadata.is_valid() {
 *         panic!("Bad metadata: {}", e);
 *     }
 *
 *     println!("Information for package-1.0");
 *     println!("Comment: {}", metadata.comment());
 *     println!("Files:");
 *     for line in metadata.contents().lines() {
 *         if !line.starts_with('@') && !line.starts_with('+') {
 *             println!("{}", line);
 *         }
 *     }
 *
 *     Ok(())
 * }
 * ```
 */
#[derive(Debug, Default)]
pub struct Metadata {
    build_info: Option<Vec<String>>,
    build_version: Option<Vec<String>>,
    comment: String,
    contents: String,
    deinstall: Option<String>,
    desc: String,
    display: Option<String>,
    install: Option<String>,
    installed_info: Option<Vec<String>>,
    mtree_dirs: Option<Vec<String>>,
    preserve: Option<Vec<String>>,
    required_by: Option<Vec<String>>,
    size_all: Option<i64>,
    size_pkg: Option<i64>,
}

/**
 * Type of Metadata entry.
 *
 * Package metadata stored either in a package archive or inside a package
 * entry in a `PkgDB::DBType::Files` package database is contained in various
 * files prefixed with `+`.
 *
 * This enum supports all of those filenames and avoids having to hardcode
 * their values.  It supports converting to and from the filename or enum.
 *
 * ## Example
 *
 * ```
 * use pkgsrc::MetadataEntry;
 *
 * let e = MetadataEntry::Desc;
 *
 * /*
 *  * Validate that the `Desc` entry matches our expected filename.
 *  */
 * assert_eq!(e.to_filename(), "+DESC");
 * assert_eq!(MetadataEntry::from_filename("+DESC"), Some(e));
 *
 * /*
 *  * This is not a known +FILE
 *  */
 * assert_eq!(MetadataEntry::from_filename("+BADFILE"), None);
 * ```
 */
#[derive(Debug, PartialEq)]
pub enum MetadataEntry {
    /**
     * Optional package build information stored in `+BUILD_INFO`.
     */
    BuildInfo,
    /**
     * Optional version information (usually CVS Id's) for the files used to
     * create the package stored in `+BUILD_VERSION`.
     */
    BuildVersion,
    /**
     * Single line description of the package stored in `+COMMENT`.
     */
    Comment,
    /**
     * Packing list contents, also known as the `packlist` or `PLIST`, stored
     * in `+CONTENTS`.
     */
    Contents,
    /**
     * Optional script executed upon deinstall, stored in `+DEINSTALL`.
     */
    DeInstall,
    /**
     * Multi-line description of the package stored in `+DESC`.
     */
    Desc,
    /**
     * Optional file, also known as `MESSAGE`, to be shown during package
     * install or deinstall, stored in `+DISPLAY`.
     */
    Display,
    /**
     * Optional script executed upon install, stored in `+INSTALL`.
     */
    Install,
    /**
     * Variables set by this package, currently only `automatic=yes` being
     * supported, stored in `+INSTALLED_INFO`.
     */
    InstalledInfo,
    /**
     * Obsolete file used to pre-create directories prior to a package install,
     * stored in `+MTREE_DIRS`.
     */
    MtreeDirs,
    /**
     * Optional marker that this package should not be deleted under normal
     * circumstances, stored in `+PRESERVE`.
     */
    Preserve,
    /**
     * Optional list of packages that are reverse dependencies of (i.e. depend
     * upon) this package, stored in `+REQUIRED_BY`.
     */
    RequiredBy,
    /**
     * Optional size of this package plus all of its dependencies, stored in
     * `+SIZE_ALL`.
     */
    SizeAll,
    /**
     * Optional size of this package, stored in `+SIZE_ALL`.
     */
    SizePkg,
}

impl Metadata {
    /**
     * Return a new empty `Metadata` container.
     */
    pub fn new() -> Metadata {
        let metadata: Metadata = Default::default();
        metadata
    }

    /**
     * Return the optional `+BUILD_INFO` file as a vector of strings.
     */
    pub fn build_info(&self) -> &Option<Vec<String>> {
        &self.build_info
    }

    /**
     * Return the optional `+BUILD_VERSION` file as a vector of strings.
     */
    pub fn build_version(&self) -> &Option<Vec<String>> {
        &self.build_version
    }

    /**
     * Return the mandatory `+COMMENT` file as a string.  This should be a
     * single line.
     */
    pub fn comment(&self) -> &String {
        &self.comment
    }

    /**
     * Return the mandatory `+CONTENTS` (i.e. packlist or PLIST) file as a
     * complete string.
     */
    pub fn contents(&self) -> &String {
        &self.contents
    }

    /**
     * Return the optional `+DEINSTALL` script as complete string.
     */
    pub fn deinstall(&self) -> &Option<String> {
        &self.deinstall
    }

    /**
     * Return the mandatory `+DESC` file as a complete string.
     */
    pub fn desc(&self) -> &String {
        &self.desc
    }

    /**
     * Return the optional `+DISPLAY` (i.e. MESSAGE) file as a complete string.
     */
    pub fn display(&self) -> &Option<String> {
        &self.display
    }

    /**
     * Return the optional `+INSTALL` script as a complete string.
     */
    pub fn install(&self) -> &Option<String> {
        &self.install
    }

    /**
     * Return the optional `+INSTALLED_INFO` file as a vector of strings.
     */
    pub fn installed_info(&self) -> &Option<Vec<String>> {
        &self.installed_info
    }

    /**
     * Return the optional `+MTREE_DIRS` file (obsolete) as a vector of strings.
     */
    pub fn mtree_dirs(&self) -> &Option<Vec<String>> {
        &self.mtree_dirs
    }

    /**
     * Return the optional `+PRESERVE` file as a vector of strings.
     */
    pub fn preserve(&self) -> &Option<Vec<String>> {
        &self.preserve
    }

    /**
     * Return the optional `+REQUIRED_BY` file as a vector of strings.
     */
    pub fn required_by(&self) -> &Option<Vec<String>> {
        &self.required_by
    }

    /**
     * Return the optional `+SIZE_ALL` file as an i64.
     */
    pub fn size_all(&self) -> &Option<i64> {
        &self.size_all
    }

    /**
     * Return the optional `+SIZE_PKG` file as an i64.
     */
    pub fn size_pkg(&self) -> &Option<i64> {
        &self.size_pkg
    }

    /**
     * Read in a metadata file `fname` and its `value` as strings, populating
     * the associated Metadata struct.
     *
     * ## Example
     *
     * ```
     * use pkgsrc::{Metadata, MetadataEntry};
     *
     * let mut m = Metadata::new();
     * m.read_metadata(MetadataEntry::Comment, "This is a package comment");
     * ```
     */
    pub fn read_metadata(
        &mut self,
        entry: MetadataEntry,
        value: &str,
    ) -> Result<(), &'static str> {
        /*
         * Set up various variable types that may be used.
         *
         * XXX: I'm not 100% sure .trim() is correct here, it might need to be
         * modified to only strip newlines rather than all whitespace.
         */
        let val_string = value.trim().to_string();
        let val_i64 = val_string.parse::<i64>();
        let mut val_vec = vec![];
        for line in val_string.lines() {
            val_vec.push(line.to_string());
        }

        match entry {
            MetadataEntry::BuildInfo => self.build_info = Some(val_vec),
            MetadataEntry::BuildVersion => self.build_version = Some(val_vec),
            MetadataEntry::Comment => self.comment.push_str(&val_string),
            MetadataEntry::Contents => self.contents.push_str(&val_string),
            MetadataEntry::DeInstall => self.deinstall = Some(val_string),
            MetadataEntry::Desc => self.desc.push_str(&val_string),
            MetadataEntry::Display => self.display = Some(val_string),
            MetadataEntry::Install => self.install = Some(val_string),
            MetadataEntry::InstalledInfo => self.installed_info = Some(val_vec),
            MetadataEntry::MtreeDirs => self.mtree_dirs = Some(val_vec),
            MetadataEntry::Preserve => self.preserve = Some(val_vec),
            MetadataEntry::RequiredBy => self.required_by = Some(val_vec),
            MetadataEntry::SizeAll => self.size_all = Some(val_i64.unwrap()),
            MetadataEntry::SizePkg => self.size_pkg = Some(val_i64.unwrap()),
        }

        Ok(())
    }

    /**
     * Ensure the required files (`+COMMENT`, `+CONTENTS`, and `+DESC`) have
     * been registered, indicating that this is a valid package.
     */
    pub fn is_valid(&self) -> Result<(), &'static str> {
        if self.comment.is_empty() {
            return Err("Missing or empty +COMMENT");
        }
        if self.contents.is_empty() {
            return Err("Missing or empty +CONTENTS");
        }
        if self.desc.is_empty() {
            return Err("Missing or empty +DESC");
        }
        Ok(())
    }
}

impl MetadataEntry {
    /**
     * Return filename for the associated `MetadataEntry` type.
     *
     * ## Example
     *
     * ```
     * use pkgsrc::MetadataEntry;
     *
     * let e = MetadataEntry::Contents;
     * assert_eq!(e.to_filename(), "+CONTENTS");
     * ```
     */
    pub fn to_filename(&self) -> &str {
        match self {
            MetadataEntry::BuildInfo => "+BUILD_INFO",
            MetadataEntry::BuildVersion => "+BUILD_VERSION",
            MetadataEntry::Comment => "+COMMENT",
            MetadataEntry::Contents => "+CONTENTS",
            MetadataEntry::DeInstall => "+DEINSTALL",
            MetadataEntry::Desc => "+DESC",
            MetadataEntry::Display => "+DISPLAY",
            MetadataEntry::Install => "+INSTALL",
            MetadataEntry::InstalledInfo => "+INSTALLED_INFO",
            MetadataEntry::MtreeDirs => "+MTREE_DIRS",
            MetadataEntry::Preserve => "+PRESERVE",
            MetadataEntry::RequiredBy => "+REQUIRED_BY",
            MetadataEntry::SizeAll => "+SIZE_ALL",
            MetadataEntry::SizePkg => "+SIZE_PKG",
        }
    }
    /**
     * Return `MetadataEntry` enum in an Option for requested file.
     *
     * ## Example
     *
     * ```
     * use pkgsrc::MetadataEntry;
     *
     * assert_eq!(MetadataEntry::from_filename("+CONTENTS"),
     *            Some(MetadataEntry::Contents));
     * assert_eq!(MetadataEntry::from_filename("+BADFILE"), None);
     * ```
     */
    pub fn from_filename(file: &str) -> Option<MetadataEntry> {
        match file {
            "+BUILD_INFO" => Some(MetadataEntry::BuildInfo),
            "+BUILD_VERSION" => Some(MetadataEntry::BuildVersion),
            "+COMMENT" => Some(MetadataEntry::Comment),
            "+CONTENTS" => Some(MetadataEntry::Contents),
            "+DEINSTALL" => Some(MetadataEntry::DeInstall),
            "+DESC" => Some(MetadataEntry::Desc),
            "+DISPLAY" => Some(MetadataEntry::Display),
            "+INSTALL" => Some(MetadataEntry::Install),
            "+INSTALLED_INFO" => Some(MetadataEntry::InstalledInfo),
            "+MTREE_DIRS" => Some(MetadataEntry::MtreeDirs),
            "+PRESERVE" => Some(MetadataEntry::Preserve),
            "+REQUIRED_BY" => Some(MetadataEntry::RequiredBy),
            "+SIZE_ALL" => Some(MetadataEntry::SizeAll),
            "+SIZE_PKG" => Some(MetadataEntry::SizePkg),
            _ => None,
        }
    }
}