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
use std::path::{Path, PathBuf};
use std::process::Command;

/// Replaces a `.pdf` extension with `.cmp.pdf`.
///
/// If there is no extension, or the extension is not `.pdf`, returns `None`.
///
/// # Examples
///
/// ```
/// # use pdfshrink::pdf_to_cmp_pdf;
/// let before = "some dir/subdir/name.pdf";
/// let after = "some dir/subdir/name.cmp.pdf";
/// assert_eq!(pdf_to_cmp_pdf(before), Some(after.into()));
/// ```
pub fn pdf_to_cmp_pdf<P>(inpath: P) -> Option<PathBuf>
where
    P: AsRef<Path>,
{
    let inpath = inpath.as_ref();
    if inpath.extension()? == "pdf" {
        Some(inpath.with_extension("cmp.pdf"))
    } else {
        None
    }
}

/// Moves the file `inpath` into the subdirectory `subdir`.
///
/// If there is no extension, or the extension is not `.pdf`, returns `None`.
///
/// # Examples
///
/// ```
/// # use pdfshrink::pdf_into_subdir;
/// let before = "some dir/name.pdf";
/// let after = "some dir/subdir/name.pdf";
/// assert_eq!(pdf_into_subdir(before, "subdir"), Some(after.into()));
/// ```
pub fn pdf_into_subdir<P, Q>(inpath: P, subdir: Q) -> Option<PathBuf>
where
    P: AsRef<Path>,
    Q: AsRef<Path>,
{
    let inpath = inpath.as_ref();
    // let subdir = subdir.as_ref();
    if inpath.extension()? == "pdf" {
        Some(
            inpath
                .parent()
                .unwrap_or("".as_ref())
                .join(subdir)
                .join(inpath.file_name()?),
        )
    } else {
        None
    }
}

/// Returns the subdirectory `subdir` sibling of `inpath`.
///
/// If there is no extension, or the extension is not `.pdf`, returns `None`.
///
/// # Examples
///
/// ```
/// # use pdfshrink::pdf_subdir;
/// let before = "some dir/name.pdf";
/// let after = "some dir/subdir";
/// assert_eq!(pdf_subdir(before, "subdir"), Some(after.into()));
/// ```
pub fn pdf_subdir<P, Q>(inpath: P, subdir: Q) -> Option<PathBuf>
where
    P: AsRef<Path>,
    Q: AsRef<Path>,
{
    let inpath = inpath.as_ref();
    // let subdir = subdir.as_ref();
    if inpath.extension()? == "pdf" {
        Some(inpath.parent().unwrap_or("".as_ref()).join(subdir))
    } else {
        None
    }
}

pub fn gs_command<P, Q>(inpath: P, outpath: Q) -> Command
where
    P: AsRef<Path>,
    Q: AsRef<Path>,
{
    let mut cmd = Command::new("gs");
    cmd.args(
        [
            "-q",
            "-dNOPAUSE",
            "-dBATCH",
            "-dSAFER",
            "-dPDFA=2",
            "-dPDFACompatibilityPolicy=1",
            "-dSimulateOverprint=true",
            "-sDEVICE=pdfwrite",
            "-dCompatibilityLevel=1.4",
            "-dPDFSETTINGS=/ebook",
            "-dEmbedAllFonts=true",
            "-dSubsetFonts=true",
            "-dAutoRotatePages=/None",
            "-dColorImageDownsampleType=/Bicubic",
            "-dColorImageResolution=135",
            "-dGrayImageDownsampleType=/Bicubic",
            "-dGrayImageResolution=135",
            "-dMonoImageDownsampleType=/Bicubic",
            "-dMonoImageResolution=135",
        ]
        .iter(),
    )
    .arg(format!(
        "-sOutputFile={}",
        outpath.as_ref().to_string_lossy().to_string()
    ))
    .arg(inpath.as_ref().to_string_lossy().to_string());
    cmd
}

pub fn dry_run_command<P, Q>(inpath: P, outpath: Q) -> Command
where
    P: AsRef<Path>,
    Q: AsRef<Path>,
{
    let mut cmd = Command::new("args");
    cmd.args(
        [
            "gs",
            "-q",
            "-dNOPAUSE",
            "-dBATCH",
            "-dSAFER",
            "-dPDFA=2",
            "-dPDFACompatibilityPolicy=1",
            "-dSimulateOverprint=true",
            "-sDEVICE=pdfwrite",
            "-dCompatibilityLevel=1.4",
            "-dPDFSETTINGS=/ebook",
            "-dEmbedAllFonts=true",
            "-dSubsetFonts=true",
            "-dAutoRotatePages=/None",
            "-dColorImageDownsampleType=/Bicubic",
            "-dColorImageResolution=135",
            "-dGrayImageDownsampleType=/Bicubic",
            "-dGrayImageResolution=135",
            "-dMonoImageDownsampleType=/Bicubic",
            "-dMonoImageResolution=135",
        ]
        .iter(),
    )
    .arg(format!(
        "-sOutputFile={}",
        outpath.as_ref().to_string_lossy().to_string()
    ))
    .arg(inpath.as_ref().to_string_lossy().to_string());
    cmd
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_pdf_to_cmp_pdf() {
        use pdf_to_cmp_pdf as f;
        for p in &["", "/", "./", "../"] {
            for d in &["", "dir/", "spaced dir/", "dotted.dir/"] {
                for n in &[
                    "name",
                    "spaced name",
                    "dotted.name",
                    ".hidden",
                    ".pdf", // this is not the extension
                    "strange'name",
                ] {
                    // valid case
                    let before = format!("{}{}{}.pdf", p, d, n);
                    let after = format!("{}{}{}.cmp.pdf", p, d, n);
                    assert_eq!(f(before), Some(after.into()));
                    // no extension
                    let before = format!("{}{}{}", p, d, n);
                    assert_eq!(f(before), None);
                    // wrong extension
                    let before = format!("{}{}{}.ext", p, d, n);
                    assert_eq!(f(before), None);
                }
            }
        }
    }

    #[test]
    fn test_pdf_into_subdir() {
        use pdf_into_subdir as f;
        for p in &["", "/", "./", "../"] {
            for d in &["", "dir/", "spaced dir/", "dotted.dir/"] {
                for s in &["sub/", "spaced sub/", "dotted.sub/"] {
                    for n in &[
                        "name",
                        "spaced name",
                        "dotted.name",
                        ".hidden",
                        ".pdf", // this is not the extension
                        "strange'name",
                    ] {
                        // valid case
                        let before = format!("{}{}{}.pdf", p, d, n);
                        let after = format!("{}{}{}{}.pdf", p, d, s, n);
                        assert_eq!(f(before, s), Some(after.into()));
                        // no extension
                        let before = format!("{}{}{}", p, d, n);
                        assert_eq!(f(before, s), None);
                        // wrong extension
                        let before = format!("{}{}{}.ext", p, d, n);
                        assert_eq!(f(before, s), None);
                    }
                }
            }
        }
    }

    #[test]
    fn test_pdf_subdir() {
        use pdf_subdir as f;
        for p in &["", "/", "./", "../"] {
            for d in &["", "dir/", "spaced dir/", "dotted.dir/"] {
                for s in &["sub/", "spaced sub/", "dotted.sub/"] {
                    for n in &[
                        "name",
                        "spaced name",
                        "dotted.name",
                        ".hidden",
                        ".pdf", // this is not the extension
                        "strange'name",
                    ] {
                        // valid case
                        let before = format!("{}{}{}.pdf", p, d, n);
                        let after = format!("{}{}{}", p, d, s);
                        assert_eq!(f(before, s), Some(after.into()));
                        // no extension
                        let before = format!("{}{}{}", p, d, n);
                        assert_eq!(f(before, s), None);
                        // wrong extension
                        let before = format!("{}{}{}.ext", p, d, n);
                        assert_eq!(f(before, s), None);
                    }
                }
            }
        }
    }
}