summaryrefslogtreecommitdiff
path: root/minimify
blob: 36fc829c50919bd37894808984a79dbd19378098 (plain)
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
#!/usr/bin/python
#
# minimify -- compress file to smallest size
# Copyright (C) 2009  Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.


import multiprocessing
import optparse
import os
import subprocess
import tempfile


COMPRESSORS = (
    ('gzip', '.gz'),
    ('bzip2', '.bz2'),
    ('xz', '.xz'),
)


def parse_args():
    parser = optparse.OptionParser()
    options, filenames = parser.parse_args()
    return options, filenames


def run_compressor(t):
    compressor, filename, suffix, options = t
    input_f = file(filename)
    fd, name = tempfile.mkstemp(dir=os.path.dirname(filename))
    p = subprocess.Popen([compressor], stdin=input_f, stdout=fd)
    p.communicate('')
    os.close(fd)
    if p.returncode:
        raise Exception('Compression program %s failed' % p.returncode)
    os.rename(name, filename + suffix)
    return os.path.getsize(filename + suffix), filename + suffix


def compress(filename, options):
    args = [(compressor, filename, suffix, options)
            for compressor, suffix in COMPRESSORS]
    pool = multiprocessing.Pool()
    sizes = sorted(pool.map(run_compressor, args))
    for size, pathname in sizes[1:]:
        os.remove(pathname)
    return sizes[0]


def main():
    options, filenames = parse_args()
    for filename in filenames:
        size, name = compress(filename, options)
        print size, name


if __name__ == "__main__":
    main()