Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork966
Expand file tree
/
Copy pathfun.py
More file actions
358 lines (304 loc) · 12.1 KB
/
fun.py
File metadata and controls
358 lines (304 loc) · 12.1 KB
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
"""Package with general repository related functions"""
fromgit.refs.tagimportTag
importos
importstat
fromstringimportdigits
fromgit.excimportWorkTreeRepositoryUnsupported
fromgit.objectsimportObject
fromgit.refsimportSymbolicReference
fromgit.utilimporthex_to_bin,bin_to_hex,decygpath
fromgitdb.excimport (
BadObject,
BadName,
)
importos.pathasosp
fromgit.cmdimportGit
# Typing ----------------------------------------------------------------------
fromtypingimportAnyStr,Union,Optional,cast,TYPE_CHECKING
fromgit.typesimportPathLike
ifTYPE_CHECKING:
from .baseimportRepo
fromgit.dbimportGitCmdObjectDB
fromgit.objectsimportCommit,TagObject,Blob,Tree
# ----------------------------------------------------------------------------
__all__= ('rev_parse','is_git_dir','touch','find_submodule_git_dir','name_to_object','short_to_long','deref_tag',
'to_commit','find_worktree_git_dir')
deftouch(filename:str)->str:
withopen(filename,"ab"):
pass
returnfilename
defis_git_dir(d:PathLike)->bool:
""" This is taken from the git setup.c:is_git_directory
function.
@throws WorkTreeRepositoryUnsupported if it sees a worktree directory. It's quite hacky to do that here,
but at least clearly indicates that we don't support it.
There is the unlikely danger to throw if we see directories which just look like a worktree dir,
but are none."""
ifosp.isdir(d):
if (osp.isdir(osp.join(d,'objects'))or'GIT_OBJECT_DIRECTORY'inos.environ) \
andosp.isdir(osp.join(d,'refs')):
headref=osp.join(d,'HEAD')
returnosp.isfile(headref)or \
(osp.islink(headref)and
os.readlink(headref).startswith('refs'))
elif (osp.isfile(osp.join(d,'gitdir'))and
osp.isfile(osp.join(d,'commondir'))and
osp.isfile(osp.join(d,'gitfile'))):
raiseWorkTreeRepositoryUnsupported(d)
returnFalse
deffind_worktree_git_dir(dotgit:PathLike)->Optional[str]:
"""Search for a gitdir for this worktree."""
try:
statbuf=os.stat(dotgit)
exceptOSError:
returnNone
ifnotstat.S_ISREG(statbuf.st_mode):
returnNone
try:
lines=open(dotgit,'r').readlines()
forkey,valuein [line.strip().split(': ')forlineinlines]:
ifkey=='gitdir':
returnvalue
exceptValueError:
pass
returnNone
deffind_submodule_git_dir(d:PathLike)->Optional[PathLike]:
"""Search for a submodule repo."""
ifis_git_dir(d):
returnd
try:
withopen(d)asfp:
content=fp.read().rstrip()
exceptIOError:
# it's probably not a file
pass
else:
ifcontent.startswith('gitdir: '):
path=content[8:]
ifGit.is_cygwin():
## Cygwin creates submodules prefixed with `/cygdrive/...` suffixes.
path=decygpath(path)
ifnotosp.isabs(path):
path=osp.normpath(osp.join(osp.dirname(d),path))
returnfind_submodule_git_dir(path)
# end handle exception
returnNone
defshort_to_long(odb:'GitCmdObjectDB',hexsha:AnyStr)->Optional[bytes]:
""":return: long hexadecimal sha1 from the given less-than-40 byte hexsha
or None if no candidate could be found.
:param hexsha: hexsha with less than 40 byte"""
try:
returnbin_to_hex(odb.partial_to_complete_sha_hex(hexsha))
exceptBadObject:
returnNone
# END exception handling
defname_to_object(repo:'Repo',name:str,return_ref:bool=False
)->Union[SymbolicReference,'Commit','TagObject','Blob','Tree']:
"""
:return: object specified by the given name, hexshas ( short and long )
as well as references are supported
:param return_ref: if name specifies a reference, we will return the reference
instead of the object. Otherwise it will raise BadObject or BadName
"""
hexsha=None# type: Union[None, str, bytes]
# is it a hexsha ? Try the most common ones, which is 7 to 40
ifrepo.re_hexsha_shortened.match(name):
iflen(name)!=40:
# find long sha for short sha
hexsha=short_to_long(repo.odb,name)
else:
hexsha=name
# END handle short shas
# END find sha if it matches
# if we couldn't find an object for what seemed to be a short hexsha
# try to find it as reference anyway, it could be named 'aaa' for instance
ifhexshaisNone:
forbasein ('%s','refs/%s','refs/tags/%s','refs/heads/%s','refs/remotes/%s','refs/remotes/%s/HEAD'):
try:
hexsha=SymbolicReference.dereference_recursive(repo,base%name)
ifreturn_ref:
returnSymbolicReference(repo,base%name)
# END handle symbolic ref
break
exceptValueError:
pass
# END for each base
# END handle hexsha
# didn't find any ref, this is an error
ifreturn_ref:
raiseBadObject("Couldn't find reference named %r"%name)
# END handle return ref
# tried everything ? fail
ifhexshaisNone:
raiseBadName(name)
# END assert hexsha was found
returnObject.new_from_sha(repo,hex_to_bin(hexsha))
defderef_tag(tag:Tag)->'TagObject':
"""Recursively dereference a tag and return the resulting object"""
whileTrue:
try:
tag=tag.object
exceptAttributeError:
break
# END dereference tag
returntag
defto_commit(obj:Object)->Union['Commit','TagObject']:
"""Convert the given object to a commit if possible and return it"""
ifobj.type=='tag':
obj=deref_tag(obj)
ifobj.type!="commit":
raiseValueError("Cannot convert object %r to type commit"%obj)
# END verify type
returnobj
defrev_parse(repo:'Repo',rev:str)->Union['Commit','Tag','Tree','Blob']:
"""
:return: Object at the given revision, either Commit, Tag, Tree or Blob
:param rev: git-rev-parse compatible revision specification as string, please see
http://www.kernel.org/pub/software/scm/git/docs/git-rev-parse.html
for details
:raise BadObject: if the given revision could not be found
:raise ValueError: If rev couldn't be parsed
:raise IndexError: If invalid reflog index is specified"""
# colon search mode ?
ifrev.startswith(':/'):
# colon search mode
raiseNotImplementedError("commit by message search ( regex )")
# END handle search
obj=cast(Object,None)# not ideal. Should use guards
ref=None
output_type="commit"
start=0
parsed_to=0
lr=len(rev)
whilestart<lr:
ifrev[start]notin"^~:@":
start+=1
continue
# END handle start
token=rev[start]
ifobjisNone:
# token is a rev name
ifstart==0:
ref=repo.head.ref
else:
iftoken=='@':
ref=name_to_object(repo,rev[:start],return_ref=True)
else:
obj=name_to_object(repo,rev[:start])
# END handle token
# END handle refname
ifrefisnotNone:
obj=ref.commit
# END handle ref
# END initialize obj on first token
start+=1
# try to parse {type}
ifstart<lrandrev[start]=='{':
end=rev.find('}',start)
ifend==-1:
raiseValueError("Missing closing brace to define type in %s"%rev)
output_type=rev[start+1:end]# exclude brace
# handle type
ifoutput_type=='commit':
pass# default
elifoutput_type=='tree':
try:
obj=to_commit(obj).tree
except (AttributeError,ValueError):
pass# error raised later
# END exception handling
elifoutput_typein ('','blob'):
ifobjandobj.type=='tag':
obj=deref_tag(obj)
else:
# cannot do anything for non-tags
pass
# END handle tag
eliftoken=='@':
# try single int
assertrefisnotNone,"Requre Reference to access reflog"
revlog_index=None
try:
# transform reversed index into the format of our revlog
revlog_index=-(int(output_type)+1)
exceptValueErrorase:
# TODO: Try to parse the other date options, using parse_date
# maybe
raiseNotImplementedError("Support for additional @{...} modes not implemented")frome
# END handle revlog index
try:
entry=ref.log_entry(revlog_index)
exceptIndexErrorase:
raiseIndexError("Invalid revlog index: %i"%revlog_index)frome
# END handle index out of bound
obj=Object.new_from_sha(repo,hex_to_bin(entry.newhexsha))
# make it pass the following checks
output_type=None
else:
raiseValueError("Invalid output type: %s ( in %s )"% (output_type,rev))
# END handle output type
# empty output types don't require any specific type, its just about dereferencing tags
ifoutput_typeandobj.type!=output_type:
raiseValueError("Could not accommodate requested object type %r, got %s"% (output_type,obj.type))
# END verify output type
start=end+1# skip brace
parsed_to=start
continue
# END parse type
# try to parse a number
num=0
iftoken!=":":
found_digit=False
whilestart<lr:
ifrev[start]indigits:
num=num*10+int(rev[start])
start+=1
found_digit=True
else:
break
# END handle number
# END number parse loop
# no explicit number given, 1 is the default
# It could be 0 though
ifnotfound_digit:
num=1
# END set default num
# END number parsing only if non-blob mode
parsed_to=start
# handle hierarchy walk
try:
iftoken=="~":
obj=to_commit(obj)
for_inrange(num):
obj=obj.parents[0]
# END for each history item to walk
eliftoken=="^":
obj=to_commit(obj)
# must be n'th parent
ifnum:
obj=obj.parents[num-1]
eliftoken==":":
ifobj.type!="tree":
obj=obj.tree
# END get tree type
obj=obj[rev[start:]]
parsed_to=lr
else:
raiseValueError("Invalid token: %r"%token)
# END end handle tag
except (IndexError,AttributeError)ase:
raiseBadName(
"Invalid revision spec '%s' - not enough "
"parent commits to reach '%s%i'"% (rev,token,num))frome
# END exception handling
# END parse loop
# still no obj ? Its probably a simple name
ifobjisNone:
obj=name_to_object(repo,rev)
parsed_to=lr
# END handle simple name
ifobjisNone:
raiseValueError("Revision specifier could not be parsed: %s"%rev)
ifparsed_to!=lr:
raiseValueError("Didn't consume complete rev spec %s, consumed part: %s"% (rev,rev[:parsed_to]))
returnobj