Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(866)

Side by Side Diff: bin/chromite

Issue 6334039: chromite: Switch from execve to import. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/chromite.git@master
Patch Set: Respond to review. Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. 2 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Wrapper for the chromite shell. 6 """Wrapper for the chromite shell.
7 7
8 This script is intended to run in several ways: 8 This script is intended to run in several ways:
9 - Outside the chroot, it should be _copied_ to someplace that is in the 9 - Outside the chroot, it should be _copied_ to someplace that is in the
10 path (like depot_tools). It will search for the right chromite by looking 10 path (like depot_tools). It will search for the right chromite by looking
11 for a file 'chromite/shell/main.py' upward based on the CWD. 11 for a file 'chromite/shell/main.py' upward based on the CWD.
12 - Inside the chroot, it might be _either_ copied to someplace in the path (since 12 - Inside the chroot, it might be _either_ copied to someplace in the path (since
13 depot_tools is in the path in the chroot) or it might run from chromite/bin 13 depot_tools is in the path in the chroot) or it might run from chromite/bin
14 directly, which should be in the PATH. In any case, we'll look for the 14 directly, which should be in the PATH. In any case, we'll look for the
15 real 'chromite/shell/main.py' based on the environment variable 15 real 'chromite/shell/main.py' based on the environment variable
16 CROS_WORKON_SRCROOT, so it doesn't matter what the CWD is. 16 CROS_WORKON_SRCROOT, so it doesn't matter what the CWD is.
17 17
18 If you're looking at a copy and want to know where the original looks at, look 18 If you're looking at a copy and want to know where the original looks at, look
19 here: 19 here:
20 http://git.chromium.org/gitweb/?p=chromite.git;a=blob;f=bin/chromite 20 http://git.chromium.org/gitweb/?p=chromite.git;a=blob;f=bin/chromite
21 21
22 Since this script is _copied_, it should remain small and not use internal libs. 22 Since this script is _copied_, it should remain small and not use internal libs.
23
23 """ 24 """
24 25
25 # Python imports. 26 # Python imports.
26 import os 27 import os
27 import sys 28 import sys
28 29
29 if __name__ == '__main__': 30 def Search(path):
30 # Look relative to CROS_WORKON_SRCROOT if that variable exists. This is 31 """Return an iterator of lists of places to look for chromite."""
31 # the "inside the chroot" case. 32
33 # Look in $CROS_WORKON_SRCROOT first.
32 if 'CROS_WORKON_SRCROOT' in os.environ: 34 if 'CROS_WORKON_SRCROOT' in os.environ:
33 chromite_path = os.path.join(os.environ['CROS_WORKON_SRCROOT'], 35 yield [os.environ['CROS_WORKON_SRCROOT']]
34 'chromite', 'shell', 'main.py')
35 if os.path.isfile(chromite_path):
36 # Exec the script, which will never return.
37 os.execv(chromite_path, sys.argv)
38 else:
39 print (
40 "ERROR: Couldn't find the chromite tool.\n"
41 "\n"
42 "You may need to update your chroot. If you need help, see:\n"
43 " http://www.chromium.org/chromium-os/developer-guide"
44 )
45 sys.exit(1)
46 36
47 # Outside the chroot, search upward until the "parent" dir doesn't change 37 # Try the path as is
48 # (on Linux, that means we're at '/'). That is an error case. 38 yield []
49 dir = os.getcwd()
50 prev_dir = None
51 while dir != prev_dir:
52 chromite_path = os.path.join(dir, 'chromite', 'shell', 'main.py')
53 if os.path.isfile(chromite_path):
54 # Add the directory above chromite to PYTHONPATH before executing, so
55 # that "import chromite.abc.xyz" works...
56 env = os.environ.copy()
57 if 'PYTHONPATH' in env:
58 env['PYTHONPATH'] += ':%s' % dir
59 else:
60 env['PYTHONPATH'] = dir
61 39
62 # Exec the script, which will never return. 40 # Search upward until we either end up with a blank dir or the "parent" dir
63 os.execve(chromite_path, sys.argv, env) 41 # doesn't change.
42 prev_path = None
43 while path and path != prev_path:
44 yield [path]
45 path, prev_path = os.path.dirname(path), path
64 46
65 prev_dir = dir
66 dir = os.path.dirname(dir)
67 47
48 for path in Search(os.getcwd()):
49 sys.path = path + sys.path
50 try:
51 import chromite.shell.main
52 break
53 except ImportError, e:
54 # We've got different modules named chromite in the tree, pulling in the
55 # wrong one will break the right one. So unload it.
56 if 'chromite' in sys.modules:
57 del sys.modules['chromite']
58 sys.path = sys.path[len(path):]
59 else:
68 # TODO(dianders): Should we actually print out the 'repo init' call that 60 # TODO(dianders): Should we actually print out the 'repo init' call that
69 # the user should use? 61 # the user should use?
70 print ( 62 sys.stderr.write(
71 "ERROR: Couldn't find the chromite tool.\n" 63 "ERROR: Couldn't find the chromite tool.\n"
72 "\n" 64 "\n"
73 "Please change to a directory inside your Chromium OS source tree\n" 65 "Please change to a directory inside your Chromium OS source tree\n"
74 "and retry. If you need to setup a Chromium OS source tree, see:\n" 66 "and retry. If you need to setup a Chromium OS source tree, see:\n"
75 " http://www.chromium.org/chromium-os/developer-guide" 67 " http://www.chromium.org/chromium-os/developer-guide\n")
76 )
77 sys.exit(1) 68 sys.exit(1)
69
70 chromite.shell.main.main()
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698