OLD | NEW |
---|---|
(Empty) | |
1 #!/usr/bin/env python | |
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
3 # Use of this source code is governed by a BSD-style license that can be | |
4 # found in the LICENSE file. | |
5 # | |
6 # Usage: | |
7 # gclient-new-workdir.py <repository> <new_workdir> [<branch>] | |
8 # | |
9 | |
10 import os | |
11 import shutil | |
12 import subprocess | |
13 import sys | |
14 | |
15 | |
16 def parse_options(argv): | |
17 assert not sys.platform.startswith("win") | |
18 | |
19 if len(argv) != 3: | |
20 print("usage: gclient-new-workdir.py <repository> <new_workdir>") | |
21 sys.exit(1) | |
22 | |
23 repository = argv[1] | |
24 new_workdir = argv[2] | |
25 | |
26 if not os.path.exists(repository): | |
27 print("Repository does not exist: " + repository) | |
28 sys.exit(1) | |
29 | |
30 if os.path.exists(new_workdir): | |
31 print("New workdir already exists: " + new_workdir) | |
32 sys.exit(1) | |
33 | |
34 return repository, new_workdir | |
35 | |
36 | |
37 def main(argv): | |
38 repository, new_workdir = parse_options(argv) | |
39 | |
40 gclient = os.path.join(repository, ".gclient") | |
41 if not os.path.exists(gclient): | |
42 print("No .gclient file: " + gclient) | |
43 | |
44 gclient_entries = os.path.join(repository, ".gclient_entries") | |
45 if not os.path.exists(gclient_entries): | |
46 print("No .gclient_entries file: " + gclient_entries) | |
47 | |
48 os.mkdir(new_workdir) | |
49 os.symlink(gclient, os.path.join(new_workdir, ".gclient")) | |
50 os.symlink(gclient_entries, os.path.join(new_workdir, ".gclient_entries")) | |
51 | |
52 for root, dirs, files in os.walk(repository): | |
53 if ".git" in dirs: | |
54 workdir = root.replace(repository, new_workdir, 1) | |
55 make_workdir(os.path.join(root, ".git"), | |
56 os.path.join(workdir, ".git")) | |
iannucci
2013/11/05 00:25:54
This loop is probably good for a V1, but it would
| |
57 | |
58 | |
59 def make_workdir(repository, new_workdir): | |
60 print("Creating: " + new_workdir) | |
61 os.makedirs(new_workdir) | |
62 | |
63 GIT_DIRECTORY_WHITELIST = [ | |
64 "config", | |
65 "info", | |
66 "hooks", | |
67 "logs/refs", | |
68 "objects", | |
69 "packed-refs", | |
70 "refs", | |
71 "remotes", | |
72 "rr-cache", | |
73 "svn" | |
74 ] | |
75 | |
76 if os.path.exists(os.path.join(repository, "logs")): | |
77 os.makedirs(os.path.join(new_workdir, "logs")) | |
iannucci
2013/11/05 00:25:54
I would make this the responsibility of make_symli
| |
78 | |
79 for entry in GIT_DIRECTORY_WHITELIST: | |
80 make_symlink(repository, new_workdir, entry) | |
81 | |
82 shutil.copy2(os.path.join(repository, "HEAD"), | |
83 os.path.join(new_workdir, "HEAD")) | |
84 subprocess.check_call(["git", "checkout", "-f"], | |
85 cwd=new_workdir.rstrip(".git")) | |
86 | |
87 | |
88 def make_symlink(repository, new_workdir, link): | |
89 if not os.path.exists(os.path.join(repository, link)): | |
90 return | |
91 os.symlink(os.path.join(repository, link), os.path.join(new_workdir, link)) | |
92 | |
93 | |
94 if __name__ == '__main__': | |
95 sys.exit(main(sys.argv)) | |
OLD | NEW |