| Home | Trees | Indices | Help |
|
|---|
|
|
1 #
2 # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
3 #
4 # Permission is hereby granted, free of charge, to any person obtaining
5 # a copy of this software and associated documentation files (the
6 # "Software"), to deal in the Software without restriction, including
7 # without limitation the rights to use, copy, modify, merge, publish,
8 # distribute, sublicense, and/or sell copies of the Software, and to
9 # permit persons to whom the Software is furnished to do so, subject to
10 # the following conditions:
11 #
12 # The above copyright notice and this permission notice shall be included
13 # in all copies or substantial portions of the Software.
14 #
15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
16 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
17 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 #
23
24 __revision__ = "src/engine/SCons/Script/Interactive.py 3266 2008/08/12 07:31:01 knight"
25
26 __doc__ = """
27 SCons interactive mode
28 """
29
30 # TODO:
31 #
32 # This has the potential to grow into something with a really big life
33 # of its own, which might or might not be a good thing. Nevertheless,
34 # here are some enhancements that will probably be requested some day
35 # and are worth keeping in mind (assuming this takes off):
36 #
37 # - A command to re-read / re-load the SConscript files. This may
38 # involve allowing people to specify command-line options (e.g. -f,
39 # -I, --no-site-dir) that affect how the SConscript files are read.
40 #
41 # - Additional command-line options on the "build" command.
42 #
43 # Of the supported options that seemed to make sense (after a quick
44 # pass through the list), the ones that seemed likely enough to be
45 # used are listed in the man page and have explicit test scripts.
46 #
47 # These had code changed in Script/Main.py to support them, but didn't
48 # seem likely to be used regularly, so had no test scripts added:
49 #
50 # build --diskcheck=*
51 # build --implicit-cache=*
52 # build --implicit-deps-changed=*
53 # build --implicit-deps-unchanged=*
54 #
55 # These look like they should "just work" with no changes to the
56 # existing code, but like those above, look unlikely to be used and
57 # therefore had no test scripts added:
58 #
59 # build --random
60 #
61 # These I'm not sure about. They might be useful for individual
62 # "build" commands, and may even work, but they seem unlikely enough
63 # that we'll wait until they're requested before spending any time on
64 # writing test scripts for them, or investigating whether they work.
65 #
66 # build -q [??? is there a useful analog to the exit status?]
67 # build --duplicate=
68 # build --profile=
69 # build --max-drift=
70 # build --warn=*
71 # build --Y
72 #
73 # - Most of the SCons command-line options that the "build" command
74 # supports should be settable as default options that apply to all
75 # subsequent "build" commands. Maybe a "set {option}" command that
76 # maps to "SetOption('{option}')".
77 #
78 # - Need something in the 'help' command that prints the -h output.
79 #
80 # - A command to run the configure subsystem separately (must see how
81 # this interacts with the new automake model).
82 #
83 # - Command-line completion of target names; maybe even of SCons options?
84 # Completion is something that's supported by the Python cmd module,
85 # so this should be doable without too much trouble.
86 #
87
88 import cmd
89 import copy
90 import os
91 import re
92 import shlex
93 import string
94 import sys
95
96 try:
97 import readline
98 except ImportError:
99 pass
100
101 from SCons.Debug import Trace
102
104 """\
105 build [TARGETS] Build the specified TARGETS and their dependencies.
106 'b' is a synonym.
107 clean [TARGETS] Clean (remove) the specified TARGETS and their
108 dependencies. 'c' is a synonym.
109 exit Exit SCons interactive mode.
110 help [COMMAND] Prints help for the specified COMMAND. 'h' and
111 '?' are synonyms.
112 shell [COMMANDLINE] Execute COMMANDLINE in a subshell. 'sh' and '!'
113 are synonyms.
114 version Prints SCons version information.
115 """
116
117 synonyms = {
118 'b' : 'build',
119 'c' : 'clean',
120 'h' : 'help',
121 'scons' : 'build',
122 'sh' : 'shell',
123 }
124
126 cmd.Cmd.__init__(self)
127 for key, val in kw.items():
128 setattr(self, key, val)
129
130 if sys.platform == 'win32':
131 self.shell_variable = 'COMSPEC'
132 else:
133 self.shell_variable = 'SHELL'
134
137
139 line = string.strip(line)
140 if not line:
141 print self.lastcmd
142 return self.emptyline()
143 self.lastcmd = line
144 if line[0] == '!':
145 line = 'shell ' + line[1:]
146 elif line[0] == '?':
147 line = 'help ' + line[1:]
148 if os.sep == '\\':
149 line = string.replace(line, '\\', '\\\\')
150 argv = shlex.split(line)
151 argv[0] = self.synonyms.get(argv[0], argv[0])
152 if not argv[0]:
153 return self.default(line)
154 else:
155 try:
156 func = getattr(self, 'do_' + argv[0])
157 except AttributeError:
158 return self.default(argv)
159 return func(argv)
160
162 """\
163 build [TARGETS] Build the specified TARGETS and their
164 dependencies. 'b' is a synonym.
165 """
166 import SCons.SConsign
167 import SCons.Script.Main
168
169 options = copy.deepcopy(self.options)
170
171 options, targets = self.parser.parse_args(argv[1:], values=options)
172
173 SCons.Script.COMMAND_LINE_TARGETS = targets
174
175 if targets:
176 SCons.Script.BUILD_TARGETS = targets
177 else:
178 # If the user didn't specify any targets on the command line,
179 # use the list of default targets.
180 SCons.Script.BUILD_TARGETS = SCons.Script._build_plus_default
181
182 nodes = SCons.Script.Main._build_targets(self.fs,
183 options,
184 targets,
185 self.target_top)
186
187 if not nodes:
188 return
189
190 # Call each of the Node's alter_targets() methods, which may
191 # provide additional targets that ended up as part of the build
192 # (the canonical example being a VariantDir() when we're building
193 # from a source directory) and which we therefore need their
194 # state cleared, too.
195 x = []
196 for n in nodes:
197 x.extend(n.alter_targets()[0])
198 nodes.extend(x)
199
200 # Clean up so that we can perform the next build correctly.
201 #
202 # We do this by walking over all the children of the targets,
203 # and clearing their state.
204 #
205 # We currently have to re-scan each node to find their
206 # children, because built nodes have already been partially
207 # cleared and don't remember their children. (In scons
208 # 0.96.1 and earlier, this wasn't the case, and we didn't
209 # have to re-scan the nodes.)
210 #
211 # Because we have to re-scan each node, we can't clear the
212 # nodes as we walk over them, because we may end up rescanning
213 # a cleared node as we scan a later node. Therefore, only
214 # store the list of nodes that need to be cleared as we walk
215 # the tree, and clear them in a separate pass.
216 #
217 # XXX: Someone more familiar with the inner workings of scons
218 # may be able to point out a more efficient way to do this.
219
220 SCons.Script.Main.progress_display("scons: Clearing cached node information ...")
221
222 seen_nodes = {}
223
224 def get_unseen_children(node, parent, seen_nodes=seen_nodes):
225 def is_unseen(node, seen_nodes=seen_nodes):
226 return not seen_nodes.has_key(node)
227 return filter(is_unseen, node.children(scan=1))
228
229 def add_to_seen_nodes(node, parent, seen_nodes=seen_nodes):
230 seen_nodes[node] = 1
231
232 # If this file is in a VariantDir and has a
233 # corresponding source file in the source tree, remember the
234 # node in the source tree, too. This is needed in
235 # particular to clear cached implicit dependencies on the
236 # source file, since the scanner will scan it if the
237 # VariantDir was created with duplicate=0.
238 try:
239 rfile_method = node.rfile
240 except AttributeError:
241 return
242 else:
243 rfile = rfile_method()
244 if rfile != node:
245 seen_nodes[rfile] = 1
246
247 for node in nodes:
248 walker = SCons.Node.Walker(node,
249 kids_func=get_unseen_children,
250 eval_func=add_to_seen_nodes)
251 n = walker.next()
252 while n:
253 n = walker.next()
254
255 for node in seen_nodes.keys():
256 # Call node.clear() to clear most of the state
257 node.clear()
258 # node.clear() doesn't reset node.state, so call
259 # node.set_state() to reset it manually
260 node.set_state(SCons.Node.no_state)
261 node.implicit = None
262
263 SCons.SConsign.Reset()
264 SCons.Script.Main.progress_display("scons: done clearing node information.")
265
267 """\
268 clean [TARGETS] Clean (remove) the specified TARGETS
269 and their dependencies. 'c' is a synonym.
270 """
271 return self.do_build(['build', '--clean'] + argv[1:])
272
276
278 try:
279 # If help_<arg>() exists, then call it.
280 func = getattr(self, 'help_' + arg)
281 except AttributeError:
282 try:
283 func = getattr(self, 'do_' + arg)
284 except AttributeError:
285 doc = None
286 else:
287 doc = self._doc_to_help(func)
288 if doc:
289 sys.stdout.write(doc + '\n')
290 sys.stdout.flush()
291 else:
292 doc = self.strip_initial_spaces(func())
293 if doc:
294 sys.stdout.write(doc + '\n')
295 sys.stdout.flush()
296
302
304 #lines = s.split('\n')
305 lines = string.split(s, '\n')
306 spaces = re.match(' *', lines[0]).group(0)
307 #def strip_spaces(l):
308 # if l.startswith(spaces):
309 # l = l[len(spaces):]
310 # return l
311 #return '\n'.join([ strip_spaces(l) for l in lines ])
312 def strip_spaces(l, spaces=spaces):
313 if l[:len(spaces)] == spaces:
314 l = l[len(spaces):]
315 return l
316 lines = map(strip_spaces, lines)
317 return string.join(lines, '\n')
318
324
326 """\
327 help [COMMAND] Prints help for the specified COMMAND. 'h'
328 and '?' are synonyms.
329 """
330 if argv[1:]:
331 for arg in argv[1:]:
332 if self._do_one_help(arg):
333 break
334 else:
335 # If bare 'help' is called, print this class's doc
336 # string (if it has one).
337 doc = self._doc_to_help(self.__class__)
338 if doc:
339 sys.stdout.write(doc + '\n')
340 sys.stdout.flush()
341
343 """\
344 shell [COMMANDLINE] Execute COMMANDLINE in a subshell. 'sh' and
345 '!' are synonyms.
346 """
347 import subprocess
348 argv = argv[1:]
349 if not argv:
350 argv = os.environ[self.shell_variable]
351 try:
352 p = subprocess.Popen(argv)
353 except EnvironmentError, e:
354 sys.stderr.write('scons: %s: %s\n' % (argv[0], e.strerror))
355 else:
356 p.wait()
357
359 """\
360 version Prints SCons version information.
361 """
362 sys.stdout.write(self.parser.version + '\n')
363
365 c = SConsInteractiveCmd(prompt = 'scons>>> ',
366 fs = fs,
367 parser = parser,
368 options = options,
369 targets = targets,
370 target_top = target_top)
371 c.cmdloop()
372
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0beta1 on Tue Aug 12 07:32:56 2008 | http://epydoc.sourceforge.net |