git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-p4: fix filetype detection on files opened exclusively
@ 2015-03-31 21:54 Holloway, Blair
  2015-04-02 19:54 ` Luke Diamand
  0 siblings, 1 reply; 3+ messages in thread
From: Holloway, Blair @ 2015-03-31 21:54 UTC (permalink / raw)
  To: git@vger.kernel.org; +Cc: luke@diamand.org, gitster@pobox.com

If a Perforce server is configured to automatically set +l (exclusive lock) on
add of certain file types, git p4 submit will fail during getP4OpenedType, as
the regex doesn't expect the trailing '*exclusive*' from p4 opened:

//depot/file.png#1 - add default change (binary+l) *exclusive*

Signed-off-by: Blair Holloway <blair_holloway@playstation.sony.com>
---
 git-p4.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/git-p4.py b/git-p4.py
index ff132b2..d43482a 100755
--- a/git-p4.py
+++ b/git-p4.py
@@ -368,7 +368,7 @@ def getP4OpenedType(file):
     # Returns the perforce file type for the given file.
 
     result = p4_read_pipe(["opened", wildcard_encode(file)])
-    match = re.match(".*\((.+)\)\r?$", result)
+    match = re.match(".*\((.+)\)( \*exclusive\*)?\r?$", result)
     if match:
         return match.group(1)
     else:
-- 
1.8.3.msysgit.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] git-p4: fix filetype detection on files opened exclusively
  2015-03-31 21:54 [PATCH] git-p4: fix filetype detection on files opened exclusively Holloway, Blair
@ 2015-04-02 19:54 ` Luke Diamand
  2015-04-02 21:17   ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: Luke Diamand @ 2015-04-02 19:54 UTC (permalink / raw)
  To: Holloway, Blair; +Cc: git@vger.kernel.org, gitster@pobox.com, Pete Wyckoff

(+Pete for interest).

On 31 March 2015 at 22:54, Holloway, Blair
<Blair_Holloway@playstation.sony.com> wrote:
> If a Perforce server is configured to automatically set +l (exclusive lock) on
> add of certain file types, git p4 submit will fail during getP4OpenedType, as
> the regex doesn't expect the trailing '*exclusive*' from p4 opened:

Thanks - that actually fixes a part of the long-standing problem of
handling locked files which Pete identified about a year ago.

There's a test case for handling of locked files,
t9816-git-p4-locked.sh, which needs updating now as a bit more of it
passes. Junio, I'll submit a followup patch to update those tests once
I get back from vacation.

(Fixing t9816 is very slightly non-trivial because test #4 is subtly
broken and so incorrectly passes).

Ack,
Luke

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] git-p4: fix filetype detection on files opened exclusively
  2015-04-02 19:54 ` Luke Diamand
@ 2015-04-02 21:17   ` Junio C Hamano
  0 siblings, 0 replies; 3+ messages in thread
From: Junio C Hamano @ 2015-04-02 21:17 UTC (permalink / raw)
  To: Luke Diamand; +Cc: Holloway, Blair, git@vger.kernel.org, Pete Wyckoff

Luke Diamand <luke@diamand.org> writes:

> (+Pete for interest).
>
> On 31 March 2015 at 22:54, Holloway, Blair
> <Blair_Holloway@playstation.sony.com> wrote:
>> If a Perforce server is configured to automatically set +l (exclusive lock) on
>> add of certain file types, git p4 submit will fail during getP4OpenedType, as
>> the regex doesn't expect the trailing '*exclusive*' from p4 opened:
>
> Thanks - that actually fixes a part of the long-standing problem of
> handling locked files which Pete identified about a year ago.
>
> There's a test case for handling of locked files,
> t9816-git-p4-locked.sh, which needs updating now as a bit more of it
> passes. Junio, I'll submit a followup patch to update those tests once
> I get back from vacation.

Thanks.  Lest I forget, I'd prefer this patch resent from you in a
two (or more) patch series, with this one marked as 1/N with your
"Acked-by:", and your follow-up patches 2/N...N/N.  If it is not a
too much work for you, that is.

Thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-04-02 21:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-31 21:54 [PATCH] git-p4: fix filetype detection on files opened exclusively Holloway, Blair
2015-04-02 19:54 ` Luke Diamand
2015-04-02 21:17   ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).