author | benoit.boissinot@ens-lyon.fr |
Fri, 26 Aug 2005 13:06:58 +0200 | |
changeset 1062 | 6d5a62a549fa |
parent 1028 | 25e7ea0f2cff |
child 1071 | 8f0ac653f85e |
permissions | -rw-r--r-- |
207 | 1 |
# ui.py - user interface bits for mercurial |
2 |
# |
|
3 |
# Copyright 2005 Matt Mackall <mpm@selenic.com> |
|
4 |
# |
|
5 |
# This software may be used and distributed according to the terms |
|
6 |
# of the GNU General Public License, incorporated herein by reference. |
|
7 |
||
613
5374955ec5b1
Demand-load most modules in the commands and ui modules.
Bryan O'Sullivan <bos@serpentine.com>
parents:
608
diff
changeset
|
8 |
import os, ConfigParser |
5374955ec5b1
Demand-load most modules in the commands and ui modules.
Bryan O'Sullivan <bos@serpentine.com>
parents:
608
diff
changeset
|
9 |
from demandload import * |
5374955ec5b1
Demand-load most modules in the commands and ui modules.
Bryan O'Sullivan <bos@serpentine.com>
parents:
608
diff
changeset
|
10 |
demandload(globals(), "re socket sys util") |
207 | 11 |
|
12 |
class ui: |
|
13 |
def __init__(self, verbose=False, debug=False, quiet=False, |
|
14 |
interactive=True): |
|
960 | 15 |
self.overlay = {} |
285 | 16 |
self.cdata = ConfigParser.SafeConfigParser() |
951
859de3ebc041
Read global config file /etc/mercurial/hgrc and fix reading hgrc on Windows.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
691
diff
changeset
|
17 |
self.cdata.read([os.path.normpath(hgrc) for hgrc in |
859de3ebc041
Read global config file /etc/mercurial/hgrc and fix reading hgrc on Windows.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
691
diff
changeset
|
18 |
"/etc/mercurial/hgrc", os.path.expanduser("~/.hgrc")]) |
285 | 19 |
|
20 |
self.quiet = self.configbool("ui", "quiet") |
|
21 |
self.verbose = self.configbool("ui", "verbose") |
|
22 |
self.debugflag = self.configbool("ui", "debug") |
|
23 |
self.interactive = self.configbool("ui", "interactive", True) |
|
24 |
||
25 |
self.quiet = (self.quiet or quiet) and not verbose and not debug |
|
26 |
self.verbose = (self.verbose or verbose) or debug |
|
27 |
self.debugflag = (self.debugflag or debug) |
|
28 |
self.interactive = (self.interactive and interactive) |
|
29 |
||
337 | 30 |
def readconfig(self, fp): |
31 |
self.cdata.readfp(fp) |
|
32 |
||
960 | 33 |
def setconfig(self, section, name, val): |
34 |
self.overlay[(section, name)] = val |
|
35 |
||
36 |
def config(self, section, name, default=None): |
|
37 |
if self.overlay.has_key((section, name)): |
|
38 |
return self.overlay[(section, name)] |
|
39 |
if self.cdata.has_option(section, name): |
|
40 |
return self.cdata.get(section, name) |
|
285 | 41 |
return default |
42 |
||
960 | 43 |
def configbool(self, section, name, default=False): |
44 |
if self.overlay.has_key((section, name)): |
|
45 |
return self.overlay[(section, name)] |
|
46 |
if self.cdata.has_option(section, name): |
|
47 |
return self.cdata.getboolean(section, name) |
|
285 | 48 |
return default |
49 |
||
50 |
def configitems(self, section): |
|
51 |
if self.cdata.has_section(section): |
|
52 |
return self.cdata.items(section) |
|
53 |
return [] |
|
54 |
||
1028
25e7ea0f2cff
Add commands.debugconfig.
Bryan O'Sullivan <bos@serpentine.com>
parents:
981
diff
changeset
|
55 |
def walkconfig(self): |
25e7ea0f2cff
Add commands.debugconfig.
Bryan O'Sullivan <bos@serpentine.com>
parents:
981
diff
changeset
|
56 |
seen = {} |
25e7ea0f2cff
Add commands.debugconfig.
Bryan O'Sullivan <bos@serpentine.com>
parents:
981
diff
changeset
|
57 |
for (section, name), value in self.overlay.iteritems(): |
25e7ea0f2cff
Add commands.debugconfig.
Bryan O'Sullivan <bos@serpentine.com>
parents:
981
diff
changeset
|
58 |
yield section, name, value |
25e7ea0f2cff
Add commands.debugconfig.
Bryan O'Sullivan <bos@serpentine.com>
parents:
981
diff
changeset
|
59 |
seen[section, name] = 1 |
25e7ea0f2cff
Add commands.debugconfig.
Bryan O'Sullivan <bos@serpentine.com>
parents:
981
diff
changeset
|
60 |
for section in self.cdata.sections(): |
25e7ea0f2cff
Add commands.debugconfig.
Bryan O'Sullivan <bos@serpentine.com>
parents:
981
diff
changeset
|
61 |
for name, value in self.cdata.items(section): |
25e7ea0f2cff
Add commands.debugconfig.
Bryan O'Sullivan <bos@serpentine.com>
parents:
981
diff
changeset
|
62 |
if (section, name) in seen: continue |
25e7ea0f2cff
Add commands.debugconfig.
Bryan O'Sullivan <bos@serpentine.com>
parents:
981
diff
changeset
|
63 |
yield section, name, value.replace('\n', '\\n') |
25e7ea0f2cff
Add commands.debugconfig.
Bryan O'Sullivan <bos@serpentine.com>
parents:
981
diff
changeset
|
64 |
seen[section, name] = 1 |
25e7ea0f2cff
Add commands.debugconfig.
Bryan O'Sullivan <bos@serpentine.com>
parents:
981
diff
changeset
|
65 |
|
608
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
565
diff
changeset
|
66 |
def username(self): |
691
61c6b4178b9e
HG environment variables take precedence over hgrc
mpm@selenic.com
parents:
662
diff
changeset
|
67 |
return (os.environ.get("HGUSER") or |
61c6b4178b9e
HG environment variables take precedence over hgrc
mpm@selenic.com
parents:
662
diff
changeset
|
68 |
self.config("ui", "username") or |
608
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
565
diff
changeset
|
69 |
os.environ.get("EMAIL") or |
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
565
diff
changeset
|
70 |
(os.environ.get("LOGNAME", |
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
565
diff
changeset
|
71 |
os.environ.get("USERNAME", "unknown")) |
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
565
diff
changeset
|
72 |
+ '@' + socket.getfqdn())) |
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
565
diff
changeset
|
73 |
|
506 | 74 |
def expandpath(self, loc): |
75 |
paths = {} |
|
76 |
for name, path in self.configitems("paths"): |
|
77 |
paths[name] = path |
|
78 |
||
79 |
return paths.get(loc, loc) |
|
80 |
||
207 | 81 |
def write(self, *args): |
82 |
for a in args: |
|
83 |
sys.stdout.write(str(a)) |
|
565 | 84 |
|
85 |
def write_err(self, *args): |
|
86 |
sys.stdout.flush() |
|
87 |
for a in args: |
|
88 |
sys.stderr.write(str(a)) |
|
89 |
||
207 | 90 |
def readline(self): |
91 |
return sys.stdin.readline()[:-1] |
|
1062 | 92 |
def prompt(self, msg, pat, default="y"): |
207 | 93 |
if not self.interactive: return default |
94 |
while 1: |
|
95 |
self.write(msg, " ") |
|
96 |
r = self.readline() |
|
97 |
if re.match(pat, r): |
|
98 |
return r |
|
99 |
else: |
|
100 |
self.write("unrecognized response\n") |
|
101 |
def status(self, *msg): |
|
102 |
if not self.quiet: self.write(*msg) |
|
234
3427806d5ab9
ui.warn can use more than one argument like the other ui methods.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
207
diff
changeset
|
103 |
def warn(self, *msg): |
565 | 104 |
self.write_err(*msg) |
207 | 105 |
def note(self, *msg): |
106 |
if self.verbose: self.write(*msg) |
|
107 |
def debug(self, *msg): |
|
108 |
if self.debugflag: self.write(*msg) |
|
109 |
def edit(self, text): |
|
249 | 110 |
import tempfile |
207 | 111 |
(fd, name) = tempfile.mkstemp("hg") |
112 |
f = os.fdopen(fd, "w") |
|
113 |
f.write(text) |
|
114 |
f.close() |
|
115 |
||
691
61c6b4178b9e
HG environment variables take precedence over hgrc
mpm@selenic.com
parents:
662
diff
changeset
|
116 |
editor = (os.environ.get("HGEDITOR") or |
61c6b4178b9e
HG environment variables take precedence over hgrc
mpm@selenic.com
parents:
662
diff
changeset
|
117 |
self.config("ui", "editor") or |
608
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
565
diff
changeset
|
118 |
os.environ.get("EDITOR", "vi")) |
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
565
diff
changeset
|
119 |
|
662
b55a78595ef6
Pass username to hgeditor, remove temporary file
Radoslaw "AstralStorm" Szkodzinski <astralstorm@gorzow.mm.pl>
parents:
613
diff
changeset
|
120 |
os.environ["HGUSER"] = self.username() |
1062 | 121 |
util.system("%s %s" % (editor, name), errprefix="edit failed") |
207 | 122 |
|
123 |
t = open(name).read() |
|
124 |
t = re.sub("(?m)^HG:.*\n", "", t) |
|
125 |
||
662
b55a78595ef6
Pass username to hgeditor, remove temporary file
Radoslaw "AstralStorm" Szkodzinski <astralstorm@gorzow.mm.pl>
parents:
613
diff
changeset
|
126 |
os.unlink(name) |
b55a78595ef6
Pass username to hgeditor, remove temporary file
Radoslaw "AstralStorm" Szkodzinski <astralstorm@gorzow.mm.pl>
parents:
613
diff
changeset
|
127 |
|
207 | 128 |
return t |