summaryrefslogtreecommitdiff
path: root/summainlib.py
blob: e20b447bae9491c75833d330c999c67fca63ac0a (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
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
# Copyright (C) 2010  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 grp
import hashlib
import os
import pwd
import stat
import time
import urllib


class NumberNormalizer(object):

    '''Normalize inode and device numbers.
    
    When we make two manifests of the same directory tree, but the
    tree may have been moved to another disk, the inode and device
    numbers may be different. This should not be a cause for concern,
    however. What is important is that if two names were hardlinked
    to the same file before, they still are, and if they weren't,
    they still aren't.
    
    To achieve this, we normalize the inode and device numbers.
    The input files are fed to the normalizer in a deterministic
    sequence, and the sequence defines the numbers we use. Thus,
    if the input files have inode numbers [42, 13, 105], we produce
    [1, 2, 3]. If one of the input numbers is repeated, that number
    is re-used.
    
    This is not a perfect solution. If the second manifest has a
    new file, it will throw off the entire remaining sequence, causing
    a big diff. But we'll live with that.
    
    '''
    
    def __init__(self):
        self.reset()

    def get(self, input_number, numbers, next):
        if input_number in numbers:
            return numbers[input_number], next
        else:
            numbers[input_number] = next
            return numbers[input_number], next + 1
    
    def get_ino(self, ino):
        output, self.next_ino = self.get(ino, self.ino_numbers, self.next_ino)
        return output
    
    def get_dev(self, dev):
        output, self.next_dev = self.get(dev, self.dev_numbers, self.next_dev)
        return output

    def reset(self):
        '''This is used by unit tests.'''
        self.ino_numbers = dict()
        self.next_ino = 1

        self.dev_numbers = dict()
        self.next_dev = 1


class FilesystemObject(object):

    '''An object in the file system.
    
    Responsible for gathering information and formatting it for
    reporting.
    
    The optional arguments are intended for unit tests.
    
    '''
    
    def __init__(self, filename, normalizer, stat_result=None, sha1=None,
                 open_file=None, readlink=None):
        stat_result = stat_result or os.lstat(filename)
        sha1 = sha1 or hashlib.sha1()
        self.open_file = open_file or file
        readlink = readlink or os.readlink
        
        self.values = dict()
        self['Name'] = filename
        self['Mtime'] = self.format_time(stat_result.st_mtime)
        self['Mode'] = '%o' % stat_result.st_mode
        self['Ino'] = '%d' % normalizer.get_ino(stat_result.st_ino)
        self['Dev'] = '%d' % normalizer.get_dev(stat_result.st_dev)
        self['Nlink'] = '%d' % stat_result.st_nlink
        if not stat.S_ISDIR(stat_result.st_mode):
            self['Size'] = '%d' % stat_result.st_size
        self['Uid'] = '%d' % stat_result.st_uid
        self['Username'] = self.lookup_username(stat_result.st_uid)
        self['Gid'] = '%d' % stat_result.st_gid
        self['Group'] = self.lookup_group(stat_result.st_gid)
        if stat.S_ISREG(stat_result.st_mode):
            self['Sha-1'] = self.compute_sha1(filename, sha1)
        if stat.S_ISLNK(stat_result.st_mode):
            self['Target'] = readlink(filename)

    def format_time(self, timestamp):
        return time.strftime('%Y-%m-%d %H:%M:%S +0000', 
                             time.gmtime(timestamp))

    def lookup_username(self, uid):
        return pwd.getpwuid(uid).pw_name

    def lookup_group(self, gid):
        return grp.getgrgid(gid).gr_name

    def compute_sha1(self, filename, sha1):
        f = self.open_file(filename)
        while True:
            data = f.read(64*1024) # 64 KiB seems reasonable.
            if not data:
                break
            sha1.update(data)
        f.close()
        return sha1.hexdigest()

    def hook_name(self, value):
        return urllib.quote(value)

    def __setitem__(self, key, value):
        hook_name = 'hook_%s' % key.lower()
        if hasattr(self, hook_name):
            value = getattr(self, hook_name)(value)
        self.values[key] = value
        
    def __getitem__(self, key):
        return self.values.get(key, '')

    def _isdir(self):
        '''Is this a directory?'''
        
        return stat.S_ISDIR(int(self['Mode'], 8))

    def relative_path(self, root):
        '''Return a path that is relative to root, if possible.
        
        If pathname does not start with root, then return it
        unmodified.
        
        '''
        
        if root.endswith(os.sep):
            root2 = root
        else:
            root2 = root + os.sep
        pathname = self['Name']
        if pathname.startswith(root2):
            return pathname[len(root2):]
        elif pathname == root and self._isdir():
            return '.'
        else:
            return pathname

    def format(self, root=None): # pragma: no cover
        if root is None:
            name = self['Name']
        else:
            name = self.relative_path(root)
        
        values = ([('Name', name)] + 
                  [(x, self[x])
                   for x in sorted(self.values.keys()) if x != 'Name'])
        return ''.join('%s: %s\n' % (k, v) for k, v in values)