Skip to content

Commit

Permalink
git p4: introduce gitConfigBool
Browse files Browse the repository at this point in the history
Make the intent of "--bool" more obvious by returning a direct True
or False value.  Convert a couple non-bool users with obvious bool
intent.

Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Pete Wyckoff authored and Junio C Hamano committed Jan 27, 2013
1 parent b345d6c commit 0d60903
Showing 1 changed file with 26 additions and 19 deletions.
45 changes: 26 additions & 19 deletions git-p4.py
Original file line number Diff line number Diff line change
Expand Up @@ -561,17 +561,25 @@ def gitBranchExists(branch):

_gitConfig = {}

def gitConfig(key, args=None): # set args to "--bool", for instance
def gitConfig(key):
if not _gitConfig.has_key(key):
cmd = [ "git", "config" ]
if args:
assert(args == "--bool")
cmd.append(args)
cmd.append(key)
cmd = [ "git", "config", key ]
s = read_pipe(cmd, ignore_error=True)
_gitConfig[key] = s.strip()
return _gitConfig[key]

def gitConfigBool(key):
"""Return a bool, using git config --bool. It is True only if the
variable is set to true, and False if set to false or not present
in the config."""

if not _gitConfig.has_key(key):
cmd = [ "git", "config", "--bool", key ]
s = read_pipe(cmd, ignore_error=True)
v = s.strip()
_gitConfig[key] = v == "true"
return _gitConfig[key]

def gitConfigList(key):
if not _gitConfig.has_key(key):
s = read_pipe(["git", "config", "--get-all", key], ignore_error=True)
Expand Down Expand Up @@ -722,8 +730,7 @@ def p4PathStartsWith(path, prefix):
#
# we may or may not have a problem. If you have core.ignorecase=true,
# we treat DirA and dira as the same directory
ignorecase = gitConfig("core.ignorecase", "--bool") == "true"
if ignorecase:
if gitConfigBool("core.ignorecase"):
return path.lower().startswith(prefix.lower())
return path.startswith(prefix)

Expand Down Expand Up @@ -959,7 +966,7 @@ def __init__(self):
self.usage += " [name of git branch to submit into perforce depot]"
self.origin = ""
self.detectRenames = False
self.preserveUser = gitConfig("git-p4.preserveUser").lower() == "true"
self.preserveUser = gitConfigBool("git-p4.preserveUser")
self.dry_run = False
self.prepare_p4_only = False
self.conflict_behavior = None
Expand Down Expand Up @@ -1068,7 +1075,7 @@ def checkValidP4Users(self,commits):
(user,email) = self.p4UserForCommit(id)
if not user:
msg = "Cannot find p4 user for email %s in commit %s." % (email, id)
if gitConfig('git-p4.allowMissingP4Users').lower() == "true":
if gitConfigBool("git-p4.allowMissingP4Users"):
print "%s" % msg
else:
die("Error: %s\nSet git-p4.allowMissingP4Users to true to allow this." % msg)
Expand Down Expand Up @@ -1163,7 +1170,7 @@ def edit_template(self, template_file):
message. Return true if okay to continue with the submit."""

# if configured to skip the editing part, just submit
if gitConfig("git-p4.skipSubmitEdit") == "true":
if gitConfigBool("git-p4.skipSubmitEdit"):
return True

# look at the modification time, to check later if the user saved
Expand All @@ -1179,7 +1186,7 @@ def edit_template(self, template_file):

# If the file was not saved, prompt to see if this patch should
# be skipped. But skip this verification step if configured so.
if gitConfig("git-p4.skipSubmitEditCheck") == "true":
if gitConfigBool("git-p4.skipSubmitEditCheck"):
return True

# modification time updated means user saved the file
Expand Down Expand Up @@ -1279,7 +1286,7 @@ def applyCommit(self, id):

# Patch failed, maybe it's just RCS keyword woes. Look through
# the patch to see if that's possible.
if gitConfig("git-p4.attemptRCSCleanup","--bool") == "true":
if gitConfigBool("git-p4.attemptRCSCleanup"):
file = None
pattern = None
kwfiles = {}
Expand Down Expand Up @@ -1574,7 +1581,7 @@ def run(self, args):
sys.exit(128)

self.useClientSpec = False
if gitConfig("git-p4.useclientspec", "--bool") == "true":
if gitConfigBool("git-p4.useclientspec"):
self.useClientSpec = True
if self.useClientSpec:
self.clientSpecDirs = getClientSpec()
Expand Down Expand Up @@ -1614,7 +1621,7 @@ def run(self, args):
commits.append(line.strip())
commits.reverse()

if self.preserveUser or (gitConfig("git-p4.skipUserNameCheck") == "true"):
if self.preserveUser or gitConfigBool("git-p4.skipUserNameCheck"):
self.checkAuthorship = False
else:
self.checkAuthorship = True
Expand Down Expand Up @@ -1650,7 +1657,7 @@ def run(self, args):
else:
self.diffOpts += " -C%s" % detectCopies

if gitConfig("git-p4.detectCopiesHarder", "--bool") == "true":
if gitConfigBool("git-p4.detectCopiesHarder"):
self.diffOpts += " --find-copies-harder"

#
Expand Down Expand Up @@ -1734,7 +1741,7 @@ def run(self, args):
"--format=format:%h %s", c])
print "You will have to do 'git p4 sync' and rebase."

if gitConfig("git-p4.exportLabels", "--bool") == "true":
if gitConfigBool("git-p4.exportLabels"):
self.exportLabels = True

if self.exportLabels:
Expand Down Expand Up @@ -2834,7 +2841,7 @@ def run(self, args):
# will use this after clone to set the variable
self.useClientSpec_from_options = True
else:
if gitConfig("git-p4.useclientspec", "--bool") == "true":
if gitConfigBool("git-p4.useclientspec"):
self.useClientSpec = True
if self.useClientSpec:
self.clientSpecDirs = getClientSpec()
Expand Down Expand Up @@ -3074,7 +3081,7 @@ def run(self, args):
sys.stdout.write("%s " % b)
sys.stdout.write("\n")

if gitConfig("git-p4.importLabels", "--bool") == "true":
if gitConfigBool("git-p4.importLabels"):
self.importLabels = True

if self.importLabels:
Expand Down

0 comments on commit 0d60903

Please sign in to comment.