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
):
39 # if we have an authors table, try to get mapping
40 # by defaulting to the current value of 'user'
41 user
=authors
.get(user
,user
)
42 name
,mail
,m
='','',user_re
.match(user
)
44 # if we don't have 'Name <mail>' syntax, use 'user
45 # <devnull@localhost>' if use contains no at and
46 # 'user <user>' otherwise
49 mail
='<devnull@localhost>'
53 # if we have 'Name <mail>' syntax, everything is fine :)
54 name
,mail
=m
.group(1),m
.group(2)
56 # remove any silly quoting from username
57 m2
=user_clean_re
.match(name
)
60 return '%s %s' % (name
,mail
)
63 # 'HEAD' is the result of a bug in mutt's cvs->hg conversion,
64 # other CVS imports may need it, too
65 if name
=='HEAD' or name
=='default' or name
=='':
68 return origin_name
+ '/' + name
71 def get_changeset(ui
,repo
,revision
,authors
={}):
72 node
=repo
.lookup(revision
)
73 (manifest
,user
,(time
,timezone
),files
,desc
,extra
)=repo
.changelog
.read(node
)
74 tz
="%+03d%02d" % (-timezone
/ 3600, ((-timezone
% 3600) / 60))
75 branch
=get_branch(extra
.get('branch','master'))
76 return (node
,manifest
,fixup_user(user
,authors
),(time
,tz
),files
,desc
,branch
,extra
)
81 def load_cache(filename
,get_key
=mangle_key
):
83 if not os
.path
.exists(filename
):
87 for line
in f
.readlines():
89 fields
=line
.split(' ')
90 if fields
==None or not len(fields
)==2 or fields
[0][0]!=':':
91 sys
.stderr
.write('Invalid file format in [%s], line %d\n' % (filename
,l
))
93 # put key:value in cache, key without ^:
94 cache
[get_key(fields
[0][1:])]=fields
[1].split('\n')[0]
98 def save_cache(filename
,cache
):
100 map(lambda x
: f
.write(':%s %s\n' % (str(x
),str(cache
.get(x
)))),cache
.keys())
103 def get_git_sha1(name
,type='heads'):
105 # use git-rev-parse to support packed refs
106 cmd
="GIT_DIR='%s' git rev-parse --verify refs/%s/%s 2>/dev/null" % (os
.getenv('GIT_DIR','/dev/null'),type,name
)
110 if l
== None or len(l
) == 0: