Mercurial > hg > config
annotate python/hgrc.py @ 486:c9aab7092af1
python/hgrc.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 10 Aug 2013 21:13:42 -0700 |
parents | e192c235d5d6 |
children | 178419da6e0b |
rev | line source |
---|---|
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
1 #!/usr/bin/env python |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
2 |
350 | 3 """ |
4 Script for modifying hgrc files. | |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
5 |
433 | 6 If no arguments specified, the repository given by `hg root` is used. |
350 | 7 """ |
433 | 8 |
351
971e7deca495
got --print working, maybe
Jeff Hammel <jhammel@mozilla.com>
parents:
350
diff
changeset
|
9 # imports |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
10 import optparse |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
11 import os |
433 | 12 import subprocess |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
13 import sys |
477 | 14 import urlparse |
484 | 15 from collections import OrderedDict |
437 | 16 from ConfigParser import RawConfigParser as ConfigParser |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
17 |
484 | 18 ### global methods |
19 | |
480 | 20 class section(object): |
482 | 21 def __init__(self, section_name, *section_names): |
480 | 22 self.sections = [section_name] |
23 self.sections.extend(section_names) | |
486 | 24 def __call__(self, function): |
482 | 25 def wrapped(parser, *args, **kwargs): |
26 for section in self.sections: | |
27 if section not in parser.sections(): | |
28 parser.add_section(section) | |
486 | 29 function(parser, *args, **kwargs) |
482 | 30 return wrapped |
480 | 31 |
468 | 32 #@parser # decorator makes this x-form path -> ConfigParser automagically |
480 | 33 @section('paths') |
479 | 34 def set_default(parser, default): |
35 """set [paths]:default""" | |
486 | 36 print 'OIOIOIOI!' |
479 | 37 |
482 | 38 @section('paths') |
467 | 39 def set_default_push(parser, default_push): |
40 """ | |
478 | 41 set [paths]:default-push to `default_push` |
467 | 42 """ |
478 | 43 if 'paths' not in parser.sections(): |
44 parser.add_section('paths') | |
45 parser.set('paths', 'default-push', default_push) | |
46 | |
467 | 47 |
468 | 48 def set_default_push_to_ssh(parser): |
49 """ | |
478 | 50 set `[paths]:default-push` to that given by `[paths]:default` but |
474 | 51 turn the protocol to 'ssh' |
477 | 52 If `[paths]:default` is not there, do nothing. |
53 Returns True if written, otherwise False | |
468 | 54 """ |
467 | 55 |
477 | 56 # get [paths]:default value |
57 if 'paths' not in parser.sections(): | |
58 return False | |
59 if not parser.has_option('paths', 'default'): | |
60 return False | |
61 default = parser.get('paths', 'default') | |
475 | 62 |
477 | 63 # parse URL |
64 scheme, netloc, path, query, anchor = urlparse.urlsplit(default) | |
65 ssh_url = urlparse.urlunsplit(('ssh', netloc, path, query, anchor)) | |
66 | |
478 | 67 # set |
68 set_default_push(parser, ssh_url) | |
69 return True # XXX could instead be url to set to or old value | |
70 | |
473 | 71 |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
72 def main(args=sys.argv[1:]): |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
73 |
433 | 74 # parse command line arguments |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
75 usage = '%prog [options] repository <repository> <...>' |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
76 parser = optparse.OptionParser(usage=usage, description=__doc__) |
433 | 77 parser.add_option('-l', '--list', dest='list_hgrc', |
350 | 78 action='store_true', default=False, |
433 | 79 help="list full path to hgrc files") |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
80 parser.add_option('--ssh', dest='default_push_ssh', |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
81 action='store_true', default=False, |
350 | 82 help="use `default` entries for `default-push`") |
353 | 83 parser.add_option('--push', '--default-push', dest='default_push', |
84 help="set [paths] default-push location") | |
484 | 85 parser.add_option('-d', '--default', dest='default', |
479 | 86 help="set [paths] default entry") |
478 | 87 parser.add_option('-p', '--print', dest='print_ini', |
88 action='store_true', default=False, | |
89 help="print .ini contents") | |
437 | 90 options, args = parser.parse_args(args) |
433 | 91 |
467 | 92 # sanitization |
93 if options.default_push and options.default_push_ssh: | |
94 parser.error("Cannot set --push and --ssh") | |
95 | |
433 | 96 # if not specified, use repo from `hg root` |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
97 if not args: |
437 | 98 args = [subprocess.check_output(['hg', 'root']).strip()] |
433 | 99 |
100 # if not specified, set a default action | |
101 default_action = 'default_push_ssh' | |
481 | 102 available_actions = ('default', |
103 'default_push', | |
104 'default_push_ssh', | |
484 | 105 'print_ini', |
481 | 106 'list_hgrc', |
465 | 107 ) |
481 | 108 actions = [(name, getattr(options, name)) |
109 for name in available_actions | |
485 | 110 if getattr(options, name)] |
465 | 111 if not actions: |
481 | 112 actions = [('default_push_ssh', True)] |
484 | 113 actions = OrderedDict(actions) |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
114 |
353 | 115 # find all hgrc files |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
116 hgrc = [] |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
117 missing = [] |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
118 not_hg = [] |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
119 not_a_directory = [] |
350 | 120 errors = {'Missing path': missing, |
121 'Not a mercurial directory': not_hg, | |
122 'Not a directory': not_a_directory, | |
123 } | |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
124 for path in args: |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
125 if not os.path.exists(path): |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
126 missing.append(path) |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
127 path = os.path.abspath(os.path.normpath(path)) |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
128 if os.path.isdir(path): |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
129 basename = os.path.basename(path) |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
130 subhgdir = os.path.join(path, '.hg') # hypothetical .hg subdirectory |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
131 if basename == '.hg': |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
132 hgrcpath = os.path.join(path, 'hgrc') |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
133 elif os.path.exists(subhgdir): |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
134 if not os.path.isdir(subhgdir): |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
135 not_a_directory.append(subhgdir) |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
136 continue |
437 | 137 hgrcpath = os.path.join(subhgdir, 'hgrc') |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
138 else: |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
139 not_hg.append(path) |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
140 continue |
437 | 141 hgrc.append(hgrcpath) |
350 | 142 else: |
143 assert os.path.isfile(path), "%s is not a file, exiting" % path | |
437 | 144 hgrc.append(path) |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
145 |
353 | 146 # raise errors if encountered |
437 | 147 if filter(None, errors.values()): |
353 | 148 for key, value in errors.items(): |
149 if value: | |
150 print '%s: %s' % (key, ', '.join(value)) | |
151 parser.exit(1) | |
152 | |
352 | 153 # construct ConfigParser objects and |
154 # ensure that all the files are parseable | |
155 config = {} | |
156 for path in hgrc: | |
353 | 157 config[path] = ConfigParser() |
352 | 158 if isinstance(path, basestring): |
353 | 159 if os.path.exists(path): |
160 config[path].read(path) | |
161 | |
433 | 162 # print the chosen hgrc paths |
484 | 163 if 'list_hgrc' in actions: |
351
971e7deca495
got --print working, maybe
Jeff Hammel <jhammel@mozilla.com>
parents:
350
diff
changeset
|
164 print '\n'.join(hgrc) |
433 | 165 |
482 | 166 # remove from actions list |
484 | 167 actions.pop('list_hgrc', None) |
481 | 168 |
470 | 169 # map of actions -> functions; |
170 # XXX this is pretty improv; to be improved | |
471 | 171 action_map = {'default_push_ssh': set_default_push_to_ssh, |
484 | 172 'default_push': set_default_push, |
173 'default': set_default | |
471 | 174 } |
470 | 175 |
484 | 176 # cache for later (XXX) |
177 print_ini = actions.pop('print_ini', None) | |
178 | |
465 | 179 # alter .hgrc files |
486 | 180 for action_name, parameter in actions.items(): |
468 | 181 |
471 | 182 # XXX crappy |
473 | 183 method = action_map[action_name] |
476 | 184 if action_name == 'default_push_ssh': |
185 parameter = None | |
471 | 186 |
187 # apply to all files | |
470 | 188 for path, ini in config.items(): |
481 | 189 |
190 # call method with parser | |
486 | 191 if parameter is None: |
192 method(ini) | |
193 else: | |
473 | 194 method(ini, parameter) |
195 | |
478 | 196 # print .hgrc files, if specified |
484 | 197 if print_ini: |
198 for path, ini in config.items(): | |
199 print '+++ %s' % (path) | |
200 ini.write(sys.stdout) | |
201 print | |
348
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
202 |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
203 if __name__ == '__main__': |
6004e00b602d
new hg file; TODO: incorporate!
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
204 main() |