3 # Copyright (c) 2007, 2008 Rocco Rutte <pdmef@gmx.net> and others.
4 # License: MIT <http://www.opensource.org/licenses/mit-license.php>
6 from mercurial
import repo
,hg
,cmdutil
,util
,ui
,revlog
,node
11 # default git branch name
15 # silly regex to see if user field has email address
16 user_re
=re
.compile('([^<]+) (<[^>]+>)$')
17 # silly regex to clean out user names
18 user_clean_re
=re
.compile('^["]([^"]+)["]$')
20 def set_default_branch(name
):
24 def set_origin_name(name
):
30 myui
=ui
.ui(interactive
=False)
33 myui
.setconfig('ui', 'interactive', 'off')
34 return myui
,hg
.repository(myui
,url
)
36 def fixup_user(user
,authors
):
38 # if we have an authors table, try to get mapping
39 # by defaulting to the current value of 'user'
40 user
=authors
.get(user
,user
)
41 name
,mail
,m
='','',user_re
.match(user
)
43 # if we don't have 'Name <mail>' syntax, use 'user
44 # <devnull@localhost>' if use contains no at and
45 # 'user <user>' otherwise
48 mail
='<devnull@localhost>'
52 # if we have 'Name <mail>' syntax, everything is fine :)
53 name
,mail
=m
.group(1),m
.group(2)
55 # remove any silly quoting from username
56 m2
=user_clean_re
.match(name
)
59 return '%s %s' % (name
,mail
)
62 # 'HEAD' is the result of a bug in mutt's cvs->hg conversion,
63 # other CVS imports may need it, too
64 if name
=='HEAD' or name
=='default' or name
=='':
67 return origin_name
+ '/' + name
70 def get_changeset(ui
,repo
,revision
,authors
={}):
71 node
=repo
.lookup(revision
)
72 (manifest
,user
,(time
,timezone
),files
,desc
,extra
)=repo
.changelog
.read(node
)
73 tz
="%+03d%02d" % (-timezone
/ 3600, ((-timezone
% 3600) / 60))
74 branch
=get_branch(extra
.get('branch','master'))
75 return (node
,manifest
,fixup_user(user
,authors
),(time
,tz
),files
,desc
,branch
,extra
)
80 def load_cache(filename
,get_key
=mangle_key
):
82 if not os
.path
.exists(filename
):
86 for line
in f
.readlines():
88 fields
=line
.split(' ')
89 if fields
==None or not len(fields
)==2 or fields
[0][0]!=':':
90 sys
.stderr
.write('Invalid file format in [%s], line %d\n' % (filename
,l
))
92 # put key:value in cache, key without ^:
93 cache
[get_key(fields
[0][1:])]=fields
[1].split('\n')[0]
97 def save_cache(filename
,cache
):
99 map(lambda x
: f
.write(':%s %s\n' % (str(x
),str(cache
.get(x
)))),cache
.keys())
102 def get_git_sha1(name
,type='heads'):
104 # use git-rev-parse to support packed refs
105 cmd
="GIT_DIR='%s' git rev-parse --verify refs/%s/%s 2>/dev/null" % (os
.getenv('GIT_DIR','/dev/null'),type,name
)
109 if l
== None or len(l
) == 0: