2010-03-29 18:48:28 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2011-09-01 18:49:38 +02:00
|
|
|
# This command is a simple remote-helper, that is used both as a
|
|
|
|
# testcase for the remote-helper functionality, and as an example to
|
|
|
|
# show remote-helper authors one possible implementation.
|
|
|
|
#
|
|
|
|
# This is a Git <-> Git importer/exporter, that simply uses git
|
|
|
|
# fast-import and git fast-export to consume and produce fast-import
|
|
|
|
# streams.
|
|
|
|
#
|
|
|
|
# To understand better the way things work, one can activate debug
|
|
|
|
# traces by setting (to any value) the environment variables
|
|
|
|
# GIT_TRANSPORT_HELPER_DEBUG and GIT_DEBUG_TESTGIT, to see messages
|
|
|
|
# from the transport-helper side, or from this example remote-helper.
|
|
|
|
|
2010-06-10 02:24:54 +02:00
|
|
|
# hashlib is only available in python >= 2.5
|
|
|
|
try:
|
|
|
|
import hashlib
|
|
|
|
_digest = hashlib.sha1
|
|
|
|
except ImportError:
|
|
|
|
import sha
|
|
|
|
_digest = sha.new
|
2010-03-29 18:48:28 +02:00
|
|
|
import sys
|
2010-04-09 17:57:45 +02:00
|
|
|
import os
|
2012-04-22 22:30:58 +02:00
|
|
|
import time
|
2010-04-09 17:57:45 +02:00
|
|
|
sys.path.insert(0, os.getenv("GITPYTHONLIB","."))
|
2010-03-29 18:48:28 +02:00
|
|
|
|
|
|
|
from git_remote_helpers.util import die, debug, warn
|
|
|
|
from git_remote_helpers.git.repo import GitRepo
|
|
|
|
from git_remote_helpers.git.exporter import GitExporter
|
|
|
|
from git_remote_helpers.git.importer import GitImporter
|
|
|
|
from git_remote_helpers.git.non_local import NonLocalGit
|
|
|
|
|
2013-01-20 14:15:36 +01:00
|
|
|
if sys.hexversion < 0x02000000:
|
|
|
|
# string.encode() is the limiter
|
|
|
|
sys.stderr.write("git-remote-testgit: requires Python 2.0 or later.\n")
|
2012-12-28 17:40:59 +01:00
|
|
|
sys.exit(1)
|
|
|
|
|
2013-01-27 15:50:56 +01:00
|
|
|
|
|
|
|
def encode_filepath(path):
|
|
|
|
"""Encodes a Unicode file path to a byte string.
|
|
|
|
|
|
|
|
On Python 2 this is a no-op; on Python 3 we encode the string as
|
|
|
|
suggested by [1] which allows an exact round-trip from the command line
|
|
|
|
to the filesystem.
|
|
|
|
|
|
|
|
[1] http://docs.python.org/3/c-api/unicode.html#file-system-encoding
|
|
|
|
|
|
|
|
"""
|
|
|
|
if sys.hexversion < 0x03000000:
|
|
|
|
return path
|
|
|
|
return path.encode(sys.getfilesystemencoding(), 'surrogateescape')
|
|
|
|
|
|
|
|
|
2010-03-29 18:48:28 +02:00
|
|
|
def get_repo(alias, url):
|
|
|
|
"""Returns a git repository object initialized for usage.
|
|
|
|
"""
|
|
|
|
|
|
|
|
repo = GitRepo(url)
|
|
|
|
repo.get_revs()
|
|
|
|
repo.get_head()
|
|
|
|
|
2010-06-10 02:24:54 +02:00
|
|
|
hasher = _digest()
|
2013-01-27 15:50:56 +01:00
|
|
|
hasher.update(encode_filepath(repo.path))
|
2010-03-29 18:48:28 +02:00
|
|
|
repo.hash = hasher.hexdigest()
|
|
|
|
|
|
|
|
repo.get_base_path = lambda base: os.path.join(
|
|
|
|
base, 'info', 'fast-import', repo.hash)
|
|
|
|
|
|
|
|
prefix = 'refs/testgit/%s/' % alias
|
|
|
|
debug("prefix: '%s'", prefix)
|
|
|
|
|
2011-07-16 15:03:28 +02:00
|
|
|
repo.gitdir = os.environ["GIT_DIR"]
|
2010-03-29 18:48:28 +02:00
|
|
|
repo.alias = alias
|
|
|
|
repo.prefix = prefix
|
|
|
|
|
|
|
|
repo.exporter = GitExporter(repo)
|
|
|
|
repo.importer = GitImporter(repo)
|
|
|
|
repo.non_local = NonLocalGit(repo)
|
|
|
|
|
|
|
|
return repo
|
|
|
|
|
|
|
|
|
|
|
|
def local_repo(repo, path):
|
|
|
|
"""Returns a git repository object initalized for usage.
|
|
|
|
"""
|
|
|
|
|
|
|
|
local = GitRepo(path)
|
|
|
|
|
|
|
|
local.non_local = None
|
|
|
|
local.gitdir = repo.gitdir
|
|
|
|
local.alias = repo.alias
|
|
|
|
local.prefix = repo.prefix
|
|
|
|
local.hash = repo.hash
|
|
|
|
local.get_base_path = repo.get_base_path
|
|
|
|
local.exporter = GitExporter(local)
|
|
|
|
local.importer = GitImporter(local)
|
|
|
|
|
|
|
|
return local
|
|
|
|
|
|
|
|
|
|
|
|
def do_capabilities(repo, args):
|
|
|
|
"""Prints the supported capabilities.
|
|
|
|
"""
|
|
|
|
|
2013-01-20 14:15:38 +01:00
|
|
|
print("import")
|
|
|
|
print("export")
|
|
|
|
print("refspec refs/heads/*:%s*" % repo.prefix)
|
2010-03-29 18:48:28 +02:00
|
|
|
|
2011-07-16 15:03:40 +02:00
|
|
|
dirname = repo.get_base_path(repo.gitdir)
|
|
|
|
|
|
|
|
if not os.path.exists(dirname):
|
|
|
|
os.makedirs(dirname)
|
|
|
|
|
2012-11-24 04:17:02 +01:00
|
|
|
path = os.path.join(dirname, 'git.marks')
|
2011-07-16 15:03:40 +02:00
|
|
|
|
2013-01-20 14:15:38 +01:00
|
|
|
print("*export-marks %s" % path)
|
2011-07-16 15:03:40 +02:00
|
|
|
if os.path.exists(path):
|
2013-01-20 14:15:38 +01:00
|
|
|
print("*import-marks %s" % path)
|
2011-07-16 15:03:40 +02:00
|
|
|
|
2013-01-20 14:15:38 +01:00
|
|
|
print('') # end capabilities
|
2010-03-29 18:48:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
def do_list(repo, args):
|
|
|
|
"""Lists all known references.
|
|
|
|
|
|
|
|
Bug: This will always set the remote head to master for non-local
|
|
|
|
repositories, since we have no way of determining what the remote
|
|
|
|
head is at clone time.
|
|
|
|
"""
|
|
|
|
|
|
|
|
for ref in repo.revs:
|
|
|
|
debug("? refs/heads/%s", ref)
|
2013-01-20 14:15:38 +01:00
|
|
|
print("? refs/heads/%s" % ref)
|
2010-03-29 18:48:28 +02:00
|
|
|
|
|
|
|
if repo.head:
|
|
|
|
debug("@refs/heads/%s HEAD" % repo.head)
|
2013-01-20 14:15:38 +01:00
|
|
|
print("@refs/heads/%s HEAD" % repo.head)
|
2010-03-29 18:48:28 +02:00
|
|
|
else:
|
|
|
|
debug("@refs/heads/master HEAD")
|
2013-01-20 14:15:38 +01:00
|
|
|
print("@refs/heads/master HEAD")
|
2010-03-29 18:48:28 +02:00
|
|
|
|
2013-01-20 14:15:38 +01:00
|
|
|
print('') # end list
|
2010-03-29 18:48:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
def update_local_repo(repo):
|
|
|
|
"""Updates (or clones) a local repo.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if repo.local:
|
|
|
|
return repo
|
|
|
|
|
|
|
|
path = repo.non_local.clone(repo.gitdir)
|
|
|
|
repo.non_local.update(repo.gitdir)
|
|
|
|
repo = local_repo(repo, path)
|
|
|
|
return repo
|
|
|
|
|
|
|
|
|
|
|
|
def do_import(repo, args):
|
|
|
|
"""Exports a fast-import stream from testgit for git to import.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if len(args) != 1:
|
|
|
|
die("Import needs exactly one ref")
|
|
|
|
|
|
|
|
if not repo.gitdir:
|
|
|
|
die("Need gitdir to import")
|
|
|
|
|
2011-07-16 15:03:38 +02:00
|
|
|
ref = args[0]
|
|
|
|
refs = [ref]
|
|
|
|
|
|
|
|
while True:
|
2013-01-20 14:15:37 +01:00
|
|
|
line = sys.stdin.readline().decode()
|
2011-07-16 15:03:38 +02:00
|
|
|
if line == '\n':
|
|
|
|
break
|
|
|
|
if not line.startswith('import '):
|
|
|
|
die("Expected import line.")
|
|
|
|
|
|
|
|
# strip of leading 'import '
|
|
|
|
ref = line[7:].strip()
|
|
|
|
refs.append(ref)
|
|
|
|
|
2013-01-20 14:15:38 +01:00
|
|
|
print("feature done")
|
2012-10-22 22:56:34 +02:00
|
|
|
|
|
|
|
if os.environ.get("GIT_REMOTE_TESTGIT_FAILURE"):
|
|
|
|
die('Told to fail')
|
|
|
|
|
2010-03-29 18:48:28 +02:00
|
|
|
repo = update_local_repo(repo)
|
2011-07-16 15:03:38 +02:00
|
|
|
repo.exporter.export_repo(repo.gitdir, refs)
|
2010-03-29 18:48:28 +02:00
|
|
|
|
2013-01-20 14:15:38 +01:00
|
|
|
print("done")
|
2011-07-16 15:03:36 +02:00
|
|
|
|
2010-03-29 18:48:28 +02:00
|
|
|
|
|
|
|
def do_export(repo, args):
|
|
|
|
"""Imports a fast-import stream from git to testgit.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if not repo.gitdir:
|
|
|
|
die("Need gitdir to export")
|
|
|
|
|
2012-10-22 22:56:34 +02:00
|
|
|
if os.environ.get("GIT_REMOTE_TESTGIT_FAILURE"):
|
|
|
|
die('Told to fail')
|
|
|
|
|
2010-03-29 18:48:28 +02:00
|
|
|
update_local_repo(repo)
|
2011-07-16 15:03:37 +02:00
|
|
|
changed = repo.importer.do_import(repo.gitdir)
|
2011-07-16 15:03:30 +02:00
|
|
|
|
|
|
|
if not repo.local:
|
|
|
|
repo.non_local.push(repo.gitdir)
|
2010-03-29 18:48:28 +02:00
|
|
|
|
2011-07-16 15:03:37 +02:00
|
|
|
for ref in changed:
|
2013-01-20 14:15:38 +01:00
|
|
|
print("ok %s" % ref)
|
|
|
|
print('')
|
2011-07-16 15:03:37 +02:00
|
|
|
|
2010-03-29 18:48:28 +02:00
|
|
|
|
|
|
|
COMMANDS = {
|
|
|
|
'capabilities': do_capabilities,
|
|
|
|
'list': do_list,
|
|
|
|
'import': do_import,
|
|
|
|
'export': do_export,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def sanitize(value):
|
|
|
|
"""Cleans up the url.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if value.startswith('testgit::'):
|
|
|
|
value = value[9:]
|
|
|
|
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
|
|
|
def read_one_line(repo):
|
|
|
|
"""Reads and processes one command.
|
|
|
|
"""
|
|
|
|
|
2012-04-22 22:30:58 +02:00
|
|
|
sleepy = os.environ.get("GIT_REMOTE_TESTGIT_SLEEPY")
|
|
|
|
if sleepy:
|
|
|
|
debug("Sleeping %d sec before readline" % int(sleepy))
|
|
|
|
time.sleep(int(sleepy))
|
|
|
|
|
2010-03-29 18:48:28 +02:00
|
|
|
line = sys.stdin.readline()
|
|
|
|
|
2013-01-20 14:15:37 +01:00
|
|
|
cmdline = line.decode()
|
2010-03-29 18:48:28 +02:00
|
|
|
|
|
|
|
if not cmdline:
|
|
|
|
warn("Unexpected EOF")
|
|
|
|
return False
|
|
|
|
|
|
|
|
cmdline = cmdline.strip().split()
|
|
|
|
if not cmdline:
|
|
|
|
# Blank line means we're about to quit
|
|
|
|
return False
|
|
|
|
|
|
|
|
cmd = cmdline.pop(0)
|
|
|
|
debug("Got command '%s' with args '%s'", cmd, ' '.join(cmdline))
|
|
|
|
|
|
|
|
if cmd not in COMMANDS:
|
|
|
|
die("Unknown command, %s", cmd)
|
|
|
|
|
|
|
|
func = COMMANDS[cmd]
|
|
|
|
func(repo, cmdline)
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def main(args):
|
|
|
|
"""Starts a new remote helper for the specified repository.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if len(args) != 3:
|
|
|
|
die("Expecting exactly three arguments.")
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
if os.getenv("GIT_DEBUG_TESTGIT"):
|
|
|
|
import git_remote_helpers.util
|
|
|
|
git_remote_helpers.util.DEBUG = True
|
|
|
|
|
|
|
|
alias = sanitize(args[1])
|
|
|
|
url = sanitize(args[2])
|
|
|
|
|
|
|
|
if not alias.isalnum():
|
|
|
|
warn("non-alnum alias '%s'", alias)
|
|
|
|
alias = "tmp"
|
|
|
|
|
|
|
|
args[1] = alias
|
|
|
|
args[2] = url
|
|
|
|
|
|
|
|
repo = get_repo(alias, url)
|
|
|
|
|
|
|
|
debug("Got arguments %s", args[1:])
|
|
|
|
|
|
|
|
more = True
|
|
|
|
|
2013-01-20 14:15:37 +01:00
|
|
|
# Use binary mode since Python 3 does not permit unbuffered I/O in text
|
|
|
|
# mode. Unbuffered I/O is required to avoid data that should be going
|
|
|
|
# to git-fast-import after an "export" command getting caught in our
|
|
|
|
# stdin buffer instead.
|
|
|
|
sys.stdin = os.fdopen(sys.stdin.fileno(), 'rb', 0)
|
2010-03-29 18:48:28 +02:00
|
|
|
while (more):
|
|
|
|
more = read_one_line(repo)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main(sys.argv))
|