1 from __future__
import absolute_import
, division
, print_function
, unicode_literals
2 from functools
import partial
5 from os
.path
import join
10 from .compat
import int_types
11 from .compat
import ustr
12 from .compat
import WIN32
13 from .decorators
import memoize
14 from .interaction
import Interaction
17 GIT_COLA_TRACE
= core
.getenv('GIT_COLA_TRACE', '')
18 GIT
= core
.getenv('GIT_COLA_GIT', 'git')
23 # Object ID / SHA1-related constants
24 # Git's empty tree is a built-in constant object name.
25 EMPTY_TREE_OID
= '4b825dc642cb6eb9a060e54bf8d69288fbee4904'
26 # Git's diff machinery returns zeroes for modified files whose content exists
27 # in the worktree only.
28 MISSING_BLOB_OID
= '0000000000000000000000000000000000000000'
29 # Git's SHA-1 object IDs are 40 characters long.
30 # This will need to change when Git moves away from SHA-1.
31 # When that happens we'll have to detect and update this at runtime in
32 # order to support both old and new git.
35 _index_lock
= threading
.Lock()
39 return s
.replace('_', '-')
42 def is_git_dir(git_dir
):
43 """From git's setup.c:is_git_directory()."""
46 headref
= join(git_dir
, 'HEAD')
51 core
.isdir(join(git_dir
, 'objects'))
52 and core
.isdir(join(git_dir
, 'refs'))
55 core
.isfile(join(git_dir
, 'gitdir'))
56 and core
.isfile(join(git_dir
, 'commondir'))
60 result
= core
.isfile(headref
) or (
61 core
.islink(headref
) and core
.readlink(headref
).startswith('refs/')
64 result
= is_git_file(git_dir
)
70 return core
.isfile(f
) and os
.path
.basename(f
) == '.git'
73 def is_git_worktree(d
):
74 return is_git_dir(join(d
, '.git'))
77 def is_git_repository(path
):
78 return is_git_worktree(path
) or is_git_dir(path
)
81 def read_git_file(path
):
82 """Read the path from a .git-file
84 `None` is returned when <path> is not a .git-file.
88 if path
and is_git_file(path
):
90 data
= core
.read(path
).strip()
91 if data
.startswith(header
):
92 result
= data
[len(header
) :]
93 if result
and not os
.path
.isabs(result
):
94 path_folder
= os
.path
.dirname(path
)
95 repo_relative
= join(path_folder
, result
)
96 result
= os
.path
.normpath(repo_relative
)
101 """Git repository paths of interest"""
103 def __init__(self
, git_dir
=None, git_file
=None, worktree
=None, common_dir
=None):
104 if git_dir
and not is_git_dir(git_dir
):
106 self
.git_dir
= git_dir
107 self
.git_file
= git_file
108 self
.worktree
= worktree
109 self
.common_dir
= common_dir
113 ceiling
= core
.getenv('GIT_CEILING_DIRECTORIES')
115 ceiling_dirs
.update([x
for x
in ceiling
.split(':') if x
])
118 path
= core
.abspath(path
)
120 if not self
.git_dir
or not self
.worktree
:
121 # Search for a .git directory
123 if path
in ceiling_dirs
:
128 basename
= os
.path
.basename(path
)
129 if not self
.worktree
and basename
== '.git':
130 self
.worktree
= os
.path
.dirname(path
)
131 # We are either in a bare repository, or someone set GIT_DIR
132 # but did not set GIT_WORK_TREE.
134 if not self
.worktree
:
135 basename
= os
.path
.basename(self
.git_dir
)
136 if basename
== '.git':
137 self
.worktree
= os
.path
.dirname(self
.git_dir
)
138 elif path
and not is_git_dir(path
):
141 gitpath
= join(path
, '.git')
142 if is_git_dir(gitpath
):
144 self
.git_dir
= gitpath
145 if not self
.worktree
:
148 path
, dummy
= os
.path
.split(path
)
153 git_dir_path
= read_git_file(self
.git_dir
)
155 self
.git_file
= self
.git_dir
156 self
.git_dir
= git_dir_path
158 commondir_file
= join(git_dir_path
, 'commondir')
159 if core
.exists(commondir_file
):
160 common_path
= core
.read(commondir_file
).strip()
162 if os
.path
.isabs(common_path
):
163 common_dir
= common_path
165 common_dir
= join(git_dir_path
, common_path
)
166 common_dir
= os
.path
.normpath(common_dir
)
167 self
.common_dir
= common_dir
168 # usage: Paths().get()
172 def find_git_directory(path
):
173 """Perform Git repository discovery"""
175 git_dir
=core
.getenv('GIT_DIR'), worktree
=core
.getenv('GIT_WORK_TREE')
181 The Git class manages communication with the Git binary
187 self
._valid
= {} #: Store the result of is_git_dir() for performance
188 self
.set_worktree(core
.getcwd())
190 # pylint: disable=no-self-use
191 def is_git_repository(self
, path
):
192 return is_git_repository(path
)
195 """Return the working directory used by git()"""
196 return self
.paths
.worktree
or self
.paths
.git_dir
198 def set_worktree(self
, path
):
199 path
= core
.decode(path
)
200 self
.paths
= find_git_directory(path
)
201 return self
.paths
.worktree
204 if not self
.paths
.worktree
:
205 path
= core
.abspath(core
.getcwd())
206 self
.paths
= find_git_directory(path
)
207 return self
.paths
.worktree
210 """Is this a valid git repository?
212 Cache the result to avoid hitting the filesystem.
215 git_dir
= self
.paths
.git_dir
217 valid
= bool(git_dir
) and self
._valid
[git_dir
]
219 valid
= self
._valid
[git_dir
] = is_git_dir(git_dir
)
223 def git_path(self
, *paths
):
225 if self
.paths
.git_dir
:
226 result
= join(self
.paths
.git_dir
, *paths
)
227 if result
and self
.paths
.common_dir
and not core
.exists(result
):
228 common_result
= join(self
.paths
.common_dir
, *paths
)
229 if core
.exists(common_result
):
230 result
= common_result
234 if not self
.paths
.git_dir
:
235 path
= core
.abspath(core
.getcwd())
236 self
.paths
= find_git_directory(path
)
237 return self
.paths
.git_dir
239 def __getattr__(self
, name
):
240 git_cmd
= partial(self
.git
, name
)
241 setattr(self
, name
, git_cmd
)
252 _stderr
=subprocess
.PIPE
,
253 _stdout
=subprocess
.PIPE
,
255 _no_win32_startupinfo
=False,
258 Execute a command and returns its output
260 :param command: argument list to execute.
261 :param _cwd: working directory, defaults to the current directory.
262 :param _decode: whether to decode output, defaults to True.
263 :param _encoding: default encoding, defaults to None (utf-8).
264 :param _raw: do not strip trailing whitespace.
265 :param _stdin: optional stdin filehandle.
266 :returns (status, out, err): exit status, stdout, stderr
269 # Allow the user to have the command executed in their working dir.
275 if hasattr(os
, 'setsid'):
276 # SSH uses the SSH_ASKPASS variable only if the process is really
277 # detached from the TTY (stdin redirection and setting the
278 # SSH_ASKPASS environment variable is not enough). To detach a
279 # process from the console it should fork and call os.setsid().
280 extra
['preexec_fn'] = os
.setsid
283 # Guard against thread-unsafe .git/index.lock files
285 _index_lock
.acquire()
287 status
, out
, err
= core
.run_command(
294 no_win32_startupinfo
=_no_win32_startupinfo
,
298 # Let the next thread in
300 _index_lock
.release()
302 if not _raw
and out
is not None:
303 out
= core
.UStr(out
.rstrip('\n'), out
.encoding
)
305 cola_trace
= GIT_COLA_TRACE
306 if cola_trace
== 'trace':
307 msg
= 'trace: ' + core
.list2cmdline(command
)
308 Interaction
.log_status(status
, msg
, '')
309 elif cola_trace
== 'full':
312 "%s -> %d: '%s' '%s'" % (' '.join(command
), status
, out
, err
)
315 core
.print_stderr("%s -> %d" % (' '.join(command
), status
))
317 core
.print_stderr(' '.join(command
))
319 # Allow access to the command's status code
320 return (status
, out
, err
)
322 def git(self
, cmd
, *args
, **kwargs
):
323 # Handle optional arguments prior to calling transform_kwargs
324 # otherwise they'll end up in args, which is bad.
325 _kwargs
= dict(_cwd
=self
.getcwd())
335 '_no_win32_startupinfo',
338 for kwarg
in execute_kwargs
:
340 _kwargs
[kwarg
] = kwargs
.pop(kwarg
)
342 # Prepare the argument list
346 'diff.suppressBlankEmpty=false',
348 'log.showSignature=false',
351 opt_args
= transform_kwargs(**kwargs
)
352 call
= git_args
+ opt_args
355 result
= self
.execute(call
, **_kwargs
)
357 if WIN32
and e
.errno
== errno
.ENOENT
:
358 # see if git exists at all. on win32 it can fail with ENOENT in
359 # case of argv overflow. we should be safe from that but use
360 # defensive coding for the worst-case scenario. On UNIX
361 # we have ENAMETOOLONG but that doesn't exist on Windows.
362 if _git_is_installed():
364 _print_win32_git_hint()
365 result
= (1, '', "error: unable to execute '%s'" % GIT
)
369 def _git_is_installed():
370 """Return True if git is installed"""
371 # On win32 Git commands can fail with ENOENT in case of argv overflow. we
372 # should be safe from that but use defensive coding for the worst-case
373 # scenario. On UNIX we have ENAMETOOLONG but that doesn't exist on
376 status
, _
, _
= Git
.execute([GIT
, '--version'])
383 def transform_kwargs(**kwargs
):
384 """Transform kwargs into git command line options
386 Callers can assume the following behavior:
388 Passing foo=None ignores foo, so that callers can
389 use default values of None that are ignored unless
392 Passing foo=False ignore foo, for the same reason.
394 Passing foo={string-or-number} results in ['--foo=<value>']
395 in the resulting arguments.
399 types_to_stringify
= (ustr
, float, str) + int_types
401 for k
, v
in kwargs
.items():
408 # isinstance(False, int) is True, so we have to check bool first
409 if isinstance(v
, bool):
411 args
.append('%s%s' % (dashes
, dashify(k
)))
412 # else: pass # False is ignored; flag=False inhibits --flag
413 elif isinstance(v
, types_to_stringify
):
414 args
.append('%s%s%s%s' % (dashes
, dashify(k
), eq
, v
))
419 def win32_git_error_hint():
422 'NOTE: If you have Git installed in a custom location, e.g.\n'
423 'C:\\Tools\\Git, then you can create a file at\n'
424 '~/.config/git-cola/git-bindir with following text\n'
425 'and git-cola will add the specified location to your $PATH\n'
426 'automatically when starting cola:\n'
433 def _print_win32_git_hint():
434 hint
= '\n' + win32_git_error_hint() + '\n'
435 core
.print_stderr("error: unable to execute 'git'" + hint
)
439 """Create Git instances
442 >>> status, out, err = git.version()
443 >>> 'git' == out[:3].lower()