1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-08 13:36:15 +02:00

Robustness fixes for pipes

- add read_pipe(), read_pipe_lines(), write_pipe(), which
check pipe.close()

- use throughout

Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
This commit is contained in:
Han-Wen Nienhuys 2007-05-23 17:10:46 -03:00
parent 5c1131c964
commit b016d39756

View File

@ -14,9 +14,43 @@ import re
from sets import Set; from sets import Set;
gitdir = os.environ.get("GIT_DIR", "") gitdir = os.environ.get("GIT_DIR", "")
silent = False
def mypopen(command): def write_pipe (c, str):
return os.popen(command, "rb"); if not silent:
sys.stderr.write ('writing pipe: %s\n' % c)
## todo: check return status
pipe = os.popen (c, 'w')
val = pipe.write(str)
if pipe.close ():
sys.stderr.write ('Command failed')
sys.exit (1)
return val
def read_pipe (c):
sys.stderr.write ('reading pipe: %s\n' % c)
## todo: check return status
pipe = os.popen (c, 'rb')
val = pipe.read()
if pipe.close ():
sys.stderr.write ('Command failed')
sys.exit (1)
return val
def read_pipe_lines (c):
sys.stderr.write ('reading pipe: %s\n' % c)
## todo: check return status
pipe = os.popen (c, 'rb')
val = pipe.readlines()
if pipe.close ():
sys.stderr.write ('Command failed')
sys.exit (1)
return val
def p4CmdList(cmd): def p4CmdList(cmd):
cmd = "p4 -G %s" % cmd cmd = "p4 -G %s" % cmd
@ -67,7 +101,7 @@ def die(msg):
sys.exit(1) sys.exit(1)
def currentGitBranch(): def currentGitBranch():
return mypopen("git name-rev HEAD").read().split(" ")[1][:-1] return read_pipe("git name-rev HEAD").split(" ")[1][:-1]
def isValidGitDir(path): def isValidGitDir(path):
if os.path.exists(path + "/HEAD") and os.path.exists(path + "/refs") and os.path.exists(path + "/objects"): if os.path.exists(path + "/HEAD") and os.path.exists(path + "/refs") and os.path.exists(path + "/objects"):
@ -75,7 +109,7 @@ def isValidGitDir(path):
return False return False
def parseRevision(ref): def parseRevision(ref):
return mypopen("git rev-parse %s" % ref).read()[:-1] return read_pipe("git rev-parse %s" % ref)[:-1]
def system(cmd): def system(cmd):
if os.system(cmd) != 0: if os.system(cmd) != 0:
@ -83,8 +117,10 @@ def system(cmd):
def extractLogMessageFromGitCommit(commit): def extractLogMessageFromGitCommit(commit):
logMessage = "" logMessage = ""
## fixme: title is first line of commit, not 1st paragraph.
foundTitle = False foundTitle = False
for log in mypopen("git cat-file commit %s" % commit).readlines(): for log in read_pipe_lines("git cat-file commit %s" % commit):
if not foundTitle: if not foundTitle:
if len(log) == 1: if len(log) == 1:
foundTitle = True foundTitle = True
@ -158,10 +194,10 @@ class P4RollBack(Command):
if self.rollbackLocalBranches: if self.rollbackLocalBranches:
refPrefix = "refs/heads/" refPrefix = "refs/heads/"
lines = mypopen("git rev-parse --symbolic --branches").readlines() lines = read_pipe_lines("git rev-parse --symbolic --branches")
else: else:
refPrefix = "refs/remotes/" refPrefix = "refs/remotes/"
lines = mypopen("git rev-parse --symbolic --remotes").readlines() lines = read_pipe_lines("git rev-parse --symbolic --remotes")
for line in lines: for line in lines:
if self.rollbackLocalBranches or (line.startswith("p4/") and line != "p4/HEAD\n"): if self.rollbackLocalBranches or (line.startswith("p4/") and line != "p4/HEAD\n"):
@ -230,7 +266,7 @@ class P4Submit(Command):
if self.directSubmit: if self.directSubmit:
commits.append("0") commits.append("0")
else: else:
for line in mypopen("git rev-list --no-merges %s..%s" % (self.origin, self.master)).readlines(): for line in read_pipe_lines("git rev-list --no-merges %s..%s" % (self.origin, self.master)):
commits.append(line[:-1]) commits.append(line[:-1])
commits.reverse() commits.reverse()
@ -264,8 +300,8 @@ class P4Submit(Command):
print "Applying local change in working directory/index" print "Applying local change in working directory/index"
diff = self.diffStatus diff = self.diffStatus
else: else:
print "Applying %s" % (mypopen("git log --max-count=1 --pretty=oneline %s" % id).read()) print "Applying %s" % (read_pipe("git log --max-count=1 --pretty=oneline %s" % id))
diff = mypopen("git diff-tree -r --name-status \"%s^\" \"%s\"" % (id, id)).readlines() diff = read_pipe_lines("git diff-tree -r --name-status \"%s^\" \"%s\"" % (id, id))
filesToAdd = set() filesToAdd = set()
filesToDelete = set() filesToDelete = set()
editedFiles = set() editedFiles = set()
@ -334,11 +370,11 @@ class P4Submit(Command):
logMessage = logMessage.replace("\n", "\n\t") logMessage = logMessage.replace("\n", "\n\t")
logMessage = logMessage[:-1] logMessage = logMessage[:-1]
template = mypopen("p4 change -o").read() template = read_pipe("p4 change -o")
if self.interactive: if self.interactive:
submitTemplate = self.prepareLogMessage(template, logMessage) submitTemplate = self.prepareLogMessage(template, logMessage)
diff = mypopen("p4 diff -du ...").read() diff = read_pipe("p4 diff -du ...")
for newFile in filesToAdd: for newFile in filesToAdd:
diff += "==== new file ====\n" diff += "==== new file ====\n"
@ -387,14 +423,10 @@ class P4Submit(Command):
if self.directSubmit: if self.directSubmit:
print "Submitting to git first" print "Submitting to git first"
os.chdir(self.oldWorkingDirectory) os.chdir(self.oldWorkingDirectory)
pipe = os.popen("git commit -a -F -", "wb") write_pipe("git commit -a -F -", submitTemplate)
pipe.write(submitTemplate)
pipe.close()
os.chdir(self.clientPath) os.chdir(self.clientPath)
pipe = os.popen("p4 submit -i", "wb") write_pipe("p4 submit -i", submitTemplate)
pipe.write(submitTemplate)
pipe.close()
elif response == "s": elif response == "s":
for f in editedFiles: for f in editedFiles:
system("p4 revert \"%s\"" % f); system("p4 revert \"%s\"" % f);
@ -451,11 +483,11 @@ class P4Submit(Command):
self.oldWorkingDirectory = os.getcwd() self.oldWorkingDirectory = os.getcwd()
if self.directSubmit: if self.directSubmit:
self.diffStatus = mypopen("git diff -r --name-status HEAD").readlines() self.diffStatus = read_pipe_lines("git diff -r --name-status HEAD")
if len(self.diffStatus) == 0: if len(self.diffStatus) == 0:
print "No changes in working directory to submit." print "No changes in working directory to submit."
return True return True
patch = mypopen("git diff -p --binary --diff-filter=ACMRTUXB HEAD").read() patch = read_pipe("git diff -p --binary --diff-filter=ACMRTUXB HEAD")
self.diffFile = gitdir + "/p4-git-diff" self.diffFile = gitdir + "/p4-git-diff"
f = open(self.diffFile, "wb") f = open(self.diffFile, "wb")
f.write(patch) f.write(patch)
@ -557,7 +589,7 @@ class P4Sync(Command):
self.syncWithOrigin = False self.syncWithOrigin = False
def p4File(self, depotPath): def p4File(self, depotPath):
return os.popen("p4 print -q \"%s\"" % depotPath, "rb").read() return read_pipe("p4 print -q \"%s\"" % depotPath)
def extractFilesFromCommit(self, commit): def extractFilesFromCommit(self, commit):
files = [] files = []
@ -799,7 +831,7 @@ class P4Sync(Command):
else: else:
cmdline += " --branches" cmdline += " --branches"
for line in mypopen(cmdline).readlines(): for line in read_pipe_lines(cmdline):
if self.importIntoRemotes and ((not line.startswith("p4/")) or line == "p4/HEAD\n"): if self.importIntoRemotes and ((not line.startswith("p4/")) or line == "p4/HEAD\n"):
continue continue
if self.importIntoRemotes: if self.importIntoRemotes:
@ -1032,7 +1064,7 @@ class P4Sync(Command):
else: else:
if self.verbose: if self.verbose:
print "Getting p4 changes for %s...%s" % (self.depotPath, self.changeRange) print "Getting p4 changes for %s...%s" % (self.depotPath, self.changeRange)
output = mypopen("p4 changes %s...%s" % (self.depotPath, self.changeRange)).readlines() output = read_pipe_lines("p4 changes %s...%s" % (self.depotPath, self.changeRange))
for line in output: for line in output:
changeNum = line.split(" ")[1] changeNum = line.split(" ")[1]
@ -1141,7 +1173,7 @@ class P4Rebase(Command):
sync = P4Sync() sync = P4Sync()
sync.run([]) sync.run([])
print "Rebasing the current branch" print "Rebasing the current branch"
oldHead = mypopen("git rev-parse HEAD").read()[:-1] oldHead = read_pipe("git rev-parse HEAD")[:-1]
system("git rebase p4") system("git rebase p4")
system("git diff-tree --stat --summary -M %s HEAD" % oldHead) system("git diff-tree --stat --summary -M %s HEAD" % oldHead)
return True return True
@ -1252,9 +1284,9 @@ if cmd.needsGit:
if len(gitdir) == 0: if len(gitdir) == 0:
gitdir = ".git" gitdir = ".git"
if not isValidGitDir(gitdir): if not isValidGitDir(gitdir):
gitdir = mypopen("git rev-parse --git-dir").read()[:-1] gitdir = read_pipe("git rev-parse --git-dir")[:-1]
if os.path.exists(gitdir): if os.path.exists(gitdir):
cdup = mypopen("git rev-parse --show-cdup").read()[:-1]; cdup = read_pipe("git rev-parse --show-cdup")[:-1];
if len(cdup) > 0: if len(cdup) > 0:
os.chdir(cdup); os.chdir(cdup);
@ -1268,4 +1300,3 @@ if cmd.needsGit:
if not cmd.run(args): if not cmd.run(args):
parser.print_help() parser.print_help()