Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

bookmarks: fixes invalidaterepo check if repo._bookmarks is a property

also provides hglib.is_descriptor, which might be useful for other things

Changeset 67a74dbcb9b4

Parent 4d75e31662d4

by Paul Molodowitch

Changes to one file · Browse files at 67a74dbcb9b4 Showing diff from parent 4d75e31662d4 Diff from another changeset...

1
2
3
4
5
6
7
8
9
10
11
 
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
 
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
 
 
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
 # hglib.py - Mercurial API wrappers for TortoiseHg  #  # Copyright 2007 Steve Borho <steve@borho.org>  #  # This software may be used and distributed according to the terms of the  # GNU General Public License version 2, incorporated herein by reference.    import os  import sys  import shlex  import time +import inspect    from mercurial import ui, util, extensions, match, bundlerepo, url  from mercurial import dispatch, encoding, templatefilters, filemerge    _encoding = encoding.encoding  _encodingmode = encoding.encodingmode  _fallbackencoding = encoding.fallbackencoding    from tortoisehg.util import paths  from tortoisehg.util.i18n import _  from tortoisehg.util.hgversion import hgversion    def tounicode(s):   """   Convert the encoding of string from MBCS to Unicode.     Based on mercurial.util.tolocal().   Return 'unicode' type string.   """   if isinstance(s, unicode):   return s   for e in ('utf-8', _encoding):   try:   return s.decode(e, 'strict')   except UnicodeDecodeError:   pass   return s.decode(_fallbackencoding, 'replace')    def toutf(s):   """   Convert the encoding of string from MBCS to UTF-8.     Return 'str' type string.   """   return tounicode(s).encode('utf-8')    def fromutf(s):   """   Convert the encoding of string from UTF-8 to MBCS     Return 'str' type string.   """   try:   return s.decode('utf-8').encode(_encoding)   except (UnicodeDecodeError, UnicodeEncodeError):   pass   try:   return s.decode('utf-8').encode(_fallbackencoding)   except (UnicodeDecodeError, UnicodeEncodeError):   pass   u = s.decode('utf-8', 'replace') # last ditch   return u.encode(_encoding, 'replace')    _tabwidth = None  def gettabwidth(ui):   global _tabwidth   if _tabwidth is not None:   return _tabwidth   tabwidth = ui.config('tortoisehg', 'tabwidth')   try:   tabwidth = int(tabwidth)   if tabwidth < 1 or tabwidth > 16:   tabwidth = 0   except (ValueError, TypeError):   tabwidth = 0   _tabwidth = tabwidth   return tabwidth    _maxdiff = None  def getmaxdiffsize(ui):   global _maxdiff   if _maxdiff is not None:   return _maxdiff   maxdiff = ui.config('tortoisehg', 'maxdiff')   try:   maxdiff = int(maxdiff)   if maxdiff < 1:   maxdiff = sys.maxint   except (ValueError, TypeError):   maxdiff = 1024 # 1MB by default   _maxdiff = maxdiff * 1024   return _maxdiff    _deadbranch = None  def getdeadbranch(ui):   global _deadbranch   if _deadbranch is None:   db = toutf(ui.config('tortoisehg', 'deadbranch', ''))   dblist = [b.strip() for b in db.split(',')]   _deadbranch = dblist   return _deadbranch    def getlivebranch(repo):   lives = []   deads = getdeadbranch(repo.ui)   for branch in repo.branchtags().keys():   if branch not in deads:   lives.append(branch)   return lives    _hidetags = None  def gethidetags(ui):   global _hidetags   if _hidetags is None:   tags = toutf(ui.config('tortoisehg', 'hidetags', ''))   taglist = [t.strip() for t in tags.split()]   _hidetags = taglist   return _hidetags    def diffexpand(line):   'Expand tabs in a line of diff/patch text'   if _tabwidth is None:   gettabwidth(ui.ui())   if not _tabwidth or len(line) < 2:   return line   return line[0] + line[1:].expandtabs(_tabwidth)    def uiwrite(u, args):   '''   write args if there are buffers   returns True if the caller shall handle writing   '''   if u._buffers:   ui.ui.write(u, *args)   return False   return True    def invalidaterepo(repo):   repo.dirstate.invalidate()   if isinstance(repo, bundlerepo.bundlerepository):   # Work around a bug in hg-1.3. repo.invalidate() breaks   # overlay bundlerepos   return   repo.invalidate()   # way _bookmarks / _bookmarkcurrent cached changed   # from 1.4 to 1.5...   for cachedAttr in ('_bookmarks', '_bookmarkcurrent'):   # Check if it's a property or normal value... - classAttr = getattr(repo.__class__, cachedAttr, None) - if hasattr(classAttr, '__get__'): + if is_descriptor(repo, cachedAttr):   # The very act of calling hasattr would   # re-cache the property, so just assume it's   # already cached, and catch the error if it wasn't.   try:   delattr(repo, cachedAttr)   except AttributeError:   pass   elif hasattr(repo, cachedAttr):   setattr(repo, cachedAttr, None)   if 'mq' in repo.__dict__: #do not create if it does not exist   repo.mq.invalidate()    def loadextension(ui, name):   # Between Mercurial revisions 1.2 and 1.3, extensions.load() stopped   # calling uisetup() after loading an extension. This could do   # unexpected things if you use an hg version < 1.3   extensions.load(ui, name, None)   mod = extensions.find(name)   uisetup = getattr(mod, 'uisetup', None)   if uisetup:   uisetup(ui)    def canonpaths(list):   'Get canonical paths (relative to root) for list of files'   # This is a horrible hack. Please remove this when HG acquires a   # decent case-folding solution.   canonpats = []   cwd = os.getcwd()   root = paths.find_root(cwd)   for f in list:   try:   canonpats.append(util.canonpath(root, cwd, f))   except util.Abort:   # Attempt to resolve case folding conflicts.   fu = f.upper()   cwdu = cwd.upper()   if fu.startswith(cwdu):   canonpats.append(util.canonpath(root, cwd, f[len(cwd+os.sep):]))   else:   # May already be canonical   canonpats.append(f)   return canonpats    def normpats(pats):   'Normalize file patterns'   normpats = []   for pat in pats:   kind, p = match._patsplit(pat, None)   if kind:   normpats.append(pat)   else:   if '[' in p or '{' in p or '*' in p or '?' in p:   normpats.append('glob:' + p)   else:   normpats.append('path:' + p)   return normpats      def mergetools(ui, values=None):   'returns the configured merge tools and the internal ones'   if values == None:   values = []   for key, value in ui.configitems('merge-tools'):   t = key.split('.')[0]   if t not in values:   # Ensure the tool is installed   if filemerge._findtool(ui, t):   values.append(t)   values.append('internal:merge')   values.append('internal:prompt')   values.append('internal:dump')   values.append('internal:local')   values.append('internal:other')   values.append('internal:fail')   return values      def difftools(ui):   tools = {}   for cmd, path in ui.configitems('extdiff'):   if cmd.startswith('cmd.'):   cmd = cmd[4:]   if not path:   path = cmd   diffopts = ui.config('extdiff', 'opts.' + cmd, '')   diffopts = diffopts and [diffopts] or []   tools[cmd] = [path, diffopts]   elif cmd.startswith('opts.'):   continue   else:   # command = path opts   if path:   diffopts = shlex.split(path)   path = diffopts.pop(0)   else:   path, diffopts = cmd, []   tools[cmd] = [path, diffopts]   mt = []   mergetools(ui, mt)   for t in mt:   if t.startswith('internal:'):   continue   opts = ui.config('merge-tools', t + '.diffargs', '')   tools[t] = [filemerge._findtool(ui, t), shlex.split(opts)]   return tools      def hgcmd_toq(q, *args):   '''   Run an hg command in a background thread, pipe all output to a Queue   object. Assumes command is completely noninteractive.   '''   class Qui(ui.ui):   def __init__(self, src=None):   super(Qui, self).__init__(src)   self.setconfig('ui', 'interactive', 'off')     def write(self, *args):   if uiwrite(self, args):   for a in args:   q.put(str(a))   u = Qui()   for k, v in u.configitems('defaults'):   u.setconfig('defaults', k, '')   return dispatch._dispatch(u, list(args))    def get_reponame(repo):   if repo.ui.config('tortoisehg', 'fullpath', False):   name = repo.root   elif repo.ui.config('web', 'name', False):   name = repo.ui.config('web', 'name')   else:   name = os.path.basename(repo.root)   return toutf(name)    def displaytime(date):   return util.datestr(date, '%Y-%m-%d %H:%M:%S %1%2')    def utctime(date):   return time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(date[0]))    def age(date):   return templatefilters.age(date)    def username(user):   author = templatefilters.person(user)   if not author:   author = util.shortuser(user)   return author    def validate_synch_path(path, repo):   '''   Validate the path that must be used to sync operations (pull,   push, outgoing and incoming)   '''   return_path = path   for alias, path_aux in repo.ui.configitems('paths'):   if path == alias:   return_path = path_aux   elif path == url.hidepassword(path_aux):   return_path = path_aux   return return_path    def get_repo_bookmarks(repo, values=False):   """   Will return the bookmarks for the given repo if the   bookmarks extension is loaded.     By default, returns a list of bookmark names; if   values is True, returns a dict mapping names to   nodes.     If the extension is not loaded, returns an empty   list/dict.   """   try:   bookmarks = extensions.find('bookmarks')   except KeyError:   return values and {} or []   if bookmarks:   # Bookmarks changed from 1.4 to 1.5...   if hasattr(bookmarks, 'parse'):   marks = bookmarks.parse(repo)   elif hasattr(repo, '_bookmarks'):   marks = repo._bookmarks   else:   marks = {}   else:   marks = {}     if values:   return marks   else:   return marks.keys()    def get_repo_bookmarkcurrent(repo):   """   Will return the current bookmark for the given repo   if the bookmarks extension is loaded, and the   track.current option is on.     If the extension is not loaded, or track.current   is not set, returns None   """   try:   bookmarks = extensions.find('bookmarks')   except KeyError:   return None   if bookmarks and repo.ui.configbool('bookmarks', 'track.current'):   # Bookmarks changed from 1.4 to 1.5...   if hasattr(bookmarks, 'current'):   return bookmarks.current(repo)   elif hasattr(repo, '_bookmarkcurrent'):   return repo._bookmarkcurrent   return None    def is_rev_current(repo, rev):   '''   Returns True if the revision indicated by 'rev' is the current   working directory parent.     If rev is '' or None, it is assumed to mean 'tip'.   '''   if rev in ('', None):   rev = 'tip'   rev = repo.lookup(rev)   parents = repo.parents()     if len(parents) > 1:   return False     return rev == parents[0].node() + +def is_descriptor(obj, attr): + """ + Returns True if obj.attr is a descriptor - ie, accessing + the attribute will actually invoke the '__get__' method of + some object. + + Returns False if obj.attr exists, but is not a descriptor, + and None if obj.attr was not found at all. + """ + for cls in inspect.getmro(obj.__class__): + if attr in cls.__dict__: + return hasattr(cls.__dict__[attr], '__get__') + return None +