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
|
"""SCons.Sig
The Signature package for the scons software construction utility.
"""
#
# Copyright (c) 2001 Steven Knight
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os.path
import string
class SConsignFile:
"""
Encapsulates reading and writing a .sconsign file.
"""
def __init__(self, dir, module):
"""
dir - the directory for the file
module - the signature module being used
"""
self.path = os.path.join(dir, '.sconsign')
self.entries = {}
try:
file = open(self.path, 'rt')
except:
pass
else:
for line in file.readlines():
filename, rest = map(string.strip, string.split(line, ":"))
time, signature = map(string.strip, string.split(rest, " "))
self.entries[filename] = (int(time), module.from_string(signature))
def get(self, filename):
"""
Get the signature for a file
filename - the filename whose signature will be returned
returns - (timestamp, signature)
"""
try:
return self.entries[filename]
except KeyError:
return (0, None)
def set(self, filename, timestamp, signature, module):
"""
Set the signature for a file
filename - the filename whose signature will be set
timestamp - the timestamp
signature - the signature
module - the signature module being used
"""
self.entries[filename] = (timestamp, module.to_string(signature))
def write(self):
"""
Write the .sconsign file to disk.
"""
file = open(self.path, 'wt')
for item in self.entries.items():
file.write("%s: %d %s\n" % (item[0], item[1][0], item[1][1]))
class Calculator:
"""
Encapsulates signature calculations and .sconsign file generating
for the build engine.
"""
def __init__(self, module):
"""
Initialize the calculator.
module - the signature module to use for signature calculations
"""
self.module = module
self.sig_files = {}
def collect(self, node, signatures):
"""
Collect the signatures of the node's sources.
node - the node whose sources will be collected
signatures - the dictionary that the signatures will be
gathered into.
"""
for source_node in node.sources + node.depends:
if not signatures.has_key(source_node):
signature = self.signature(source_node)
signatures[source_node] = signature
self.collect(source_node, signatures)
def get_sig_file(self, dir):
"""
Get a sconsign file from the cache, or add it to the cache.
dir - the dir for the sconsign file
returns - the sconsign file
"""
if self.sig_files.has_key(dir):
return self.sig_files[dir]
else:
self.sig_files[dir] = SConsignFile(dir, self.module)
return self.sig_files[dir]
def signature(self, node):
"""
Get the signature for a node.
node - the node
returns - the signature or None if the signature could not
be computed.
This method also stores the signature in the node and
in the .sconsign file.
"""
if node.has_signature():
sig = node.get_signature()
elif node.derived:
signatures = {}
self.collect(node, signatures)
signatures = filter(lambda x: not x is None, signatures.values())
sig = self.module.collect(signatures)
else:
if not node.exists():
return None
# XXX handle nodes that are not under the source root
sig = self.module.signature(node)
node.set_signature(sig)
dir, filename = os.path.split(node.path)
if node.exists():
timestamp = node.get_timestamp()
else:
timestamp = 0
self.get_sig_file(dir).set(filename,
timestamp,
sig,
self.module)
return sig
def current(self, node):
"""
Check if a node is up to date.
node - the node whose signature will be checked
returns - 0 if the signature has changed since the last invocation,
and 1 if it hasn't
"""
if not node.exists():
return 0
dir, filename = os.path.split(node.path)
oldtime, oldsig = self.get_sig_file(dir).get(filename)
newtime = node.get_timestamp()
if not node.derived and newtime == oldtime:
newsig = oldsig
else:
newsig = self.signature(node)
return self.module.current(newsig, oldsig)
def write(self, nodes):
"""
Write out all of the signature files.
nodes - the nodes whose signatures may have changed durring
the build
"""
# make sure all the signatures have been calculated:
for node in nodes:
self.signature(node)
for sig_file in self.sig_files.values():
sig_file.write()
|