summaryrefslogtreecommitdiff
path: root/morphlib/bins.py
blob: 3381bc287ecf3c8c0e6ffc97580e3c1e93318b63 (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
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
# Copyright (C) 2011  Codethink Limited
# 
# 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; version 2 of the License.
# 
# 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


'''Functions for dealing with Baserock binaries.

Binaries are chunks, strata, and system images.

'''


import logging
import os
import re
import tarfile

import morphlib


def create_chunk(rootdir, chunk_filename, regexps):
    '''Create a chunk from the contents of a directory.
    
    Only files and directories that match at least one of the regular
    expressions are accepted. The regular expressions are implicitly
    anchored to the beginning of the string, but not the end. The 
    filenames are relative to rootdir.
    
    '''
    
    def mkrel(filename):
        assert filename.startswith(rootdir)
        if filename == rootdir:
            return '.'
        assert filename.startswith(rootdir + '/')
        return filename[len(rootdir + '/'):]

    def matches(filename):
        return any(x.match(filename) for x in compiled)

    def names_to_root(filename):
        yield filename
        while filename != rootdir:
            filename = os.path.dirname(filename)
            yield filename

    logging.debug('Creating chunk file %s from %s with regexps %s' % 
                    (chunk_filename, rootdir, regexps))

    compiled = [re.compile(x) for x in regexps]
    include = set()
    for dirname, subdirs, basenames in os.walk(rootdir):
        if matches(dirname):
            include.add(dirname)
        filenames = [os.path.join(dirname, x) for x in basenames]
        for filename in filenames:
            if matches(mkrel(filename)):
                for name in names_to_root(filename):
                    include.add(name)

    include = sorted(include)

    tar = tarfile.open(name=chunk_filename, mode='w:gz')
    for filename in include:
        tar.add(filename, arcname=mkrel(filename), recursive=False)
    tar.close()

    include.remove(rootdir)    
    for filename in reversed(include):
        if os.path.isdir(filename):
            if not os.listdir(filename):
                os.rmdir(filename)
        else:
            os.remove(filename)


def unpack_chunk(chunk_filename, dirname):
    '''Unpack a chunk into a directory.
    
    The directory must exist already.
    
    '''

    logging.debug('Unpacking chunk %s into %s' % (chunk_filename, dirname))
    tar = tarfile.open(name=chunk_filename)
    tar.extractall(path=dirname)
    tar.close()


def create_stratum(rootdir, stratum_filename):
    '''Create a stratum from the contents of a directory.'''
    logging.debug('Creating stratum file %s from %s' % 
                    (stratum_filename, rootdir))
    tar = tarfile.open(name=stratum_filename, mode='w:gz')
    tar.add(rootdir, arcname='.')
    tar.close()


def unpack_stratum(stratum_filename, dirname):
    '''Unpack a stratum into a directory.
    
    The directory must exist already.
    
    '''

    logging.debug('Unpacking stratum %s into %s' % (stratum_filename, dirname))
    tar = tarfile.open(name=stratum_filename)
    tar.extractall(path=dirname)
    tar.close()