git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Junio C Hamano <gitster@pobox.com>
To: Brandon Williams <bmwill@google.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH 2/2] ls-files: add pathspec matching for submodules
Date: Wed, 21 Sep 2016 15:53:41 -0700	[thread overview]
Message-ID: <xmqqtwd86f0q.fsf@gitster.mtv.corp.google.com> (raw)
In-Reply-To: <1474495472-94190-2-git-send-email-bmwill@google.com> (Brandon Williams's message of "Wed, 21 Sep 2016 15:04:32 -0700")

Brandon Williams <bmwill@google.com> writes:

> Pathspecs can be a bit tricky when trying to apply them to submodules.
> The main challenge is that the pathspecs will be with respect to the
> super module and not with respect to paths in the submodule.  The
> approach this patch takes is to pass in the identical pathspec from the
> super module to the submodule in addition to the submodule-prefix, which
> is the path from the root of the super module to the submodule, and then
> we can compare an entry in the submodule prepended with the
> submodule-prefix to the pathspec in order to determine if there is a
> match.
>
> This patch also permits the pathspec logic to perform a prefix match against
> submodules since a pathspec could refer to a file inside of a submodule.
> Due to limitations in the wildmatch logic, a prefix match is only done
> literally.  If any wildcard character is encountered we'll simply punt
> and produce a false positive match.  More accurate matching will be done
> once inside the submodule.  This is due to the super module not knowing
> what files could exist in the submodule.

Sounds sensible.  Just a minor nit in terminology, but I think we
fairly consistently say "a superproject contains submodules" (run
"git grep -E 'super *(module|project)'").

I'd suggest s/super module/superproject/ for consistency.

> diff --git a/dir.c b/dir.c
> index 0ea235f..9df6d36 100644
> --- a/dir.c
> +++ b/dir.c
> @@ -207,8 +207,9 @@ int within_depth(const char *name, int namelen,
>  	return 1;
>  }
>  
> -#define DO_MATCH_EXCLUDE   1
> -#define DO_MATCH_DIRECTORY 2
> +#define DO_MATCH_EXCLUDE   (1<<0)
> +#define DO_MATCH_DIRECTORY (1<<1)
> +#define DO_MATCH_SUBMODULE (1<<2)
>  
>  /*
>   * Does 'match' match the given name?
> @@ -283,6 +284,29 @@ static int match_pathspec_item(const struct pathspec_item *item, int prefix,
>  			 item->nowildcard_len - prefix))
>  		return MATCHED_FNMATCH;
>  
> +	/* Perform checks to see if "name" is a super set of the pathspec */
> +	if (flags & DO_MATCH_SUBMODULE) {
> +		/* Check if the name is a literal prefix of the pathspec */
> +		if ((item->match[namelen] == '/') &&
> +		    !ps_strncmp(item, match, name, namelen))
> +			return MATCHED_RECURSIVELY;

An example of this test would be to match pathspec "sub/file" with
submodule path "sub"?

item->match[namelen] is accessed without checking if item->match[]
is long enough here; shouldn't item->len be checked before doing
that?

> +		/*
> +		 * Here is where we would perform a wildmatch to check if
> +		 * "name" can be matched as a directory (or a prefix) against
> +		 * the pathspec.  Since wildmatch doesn't have this capability
> +		 * at the present we have to punt and say that it is a match,
> +		 * esentially returning a false positive (as long as "name"
> +		 * matches upto the first wild character).
> +		 * The submodules themselves will be able to perform more
> +		 * accurate matching to determine if the pathspec matches.
> +		 */
> +		if (item->nowildcard_len < item->len &&
> +		    !ps_strncmp(item, match, name,
> +				item->nowildcard_len - prefix))
> +			return MATCHED_RECURSIVELY;

An example of this test would be to match pathspec "su?/file" with
submodule path "sub", where the substring up to nowildcard_len is
the leading literal string "su" that must match with the path (in
other words, a path "sib" will not match "su?/file").

> +	}
> +

Hmph, isn't this the one that is allowed produce false positive but
cannot afford to give any false negative?  It feels a bit strange
that the code checks two cases where we can positively say that it
is worth descending into, and falling through would give "no this
will never match".  That sounds like invitation for false negatives.

IOW, I would have expected

        if (flags & DO_MATCH_SUBMODULE) {
                if (may match in this case)
                        return MATCHED_RECURSIVE;
                if (may match in this other case)
                        return MATCHED_RECURSIVE;
                ...
                if (obviously cannot match in this case)
                        return 0;
                if (obviously cannot match in this other case)
                        return 0;
                /* otherwise we cannot say */
                return MATCHED_RECURSIVELY;
        }

as the general code structure.

Fully spelled out,

        if (flags & DO_MATCH_SUBMODULE) {
                /* Check if the name is a literal prefix of the pathspec */
                if (namelen < item->len &&
                    item->match[namelen] == '/' &&
                    !ps_strncmp(item, match, name, namelen))
                        return MATCHED_RECURSIVE;

                /* Does the literal leading part have chance of matching? */
                if (item->nowildcard_len < item->len &&
                    namelen <= item->nowildcard_len &&
                    ps_strncmp(item, match, name, namelen))
                        return 0; /* no way "su?/file" can match "sib" */

                /* Otherwise we cannot say */
                return MATCHED_RECURSIVELY;
        }

or something like that.  There may be other "obviously cannot match"
cases we may want to add further.

Thanks.

  reply	other threads:[~2016-09-21 22:53 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-21 22:04 [PATCH 1/2] ls-files: adding support for submodules Brandon Williams
2016-09-21 22:04 ` [PATCH 2/2] ls-files: add pathspec matching " Brandon Williams
2016-09-21 22:53   ` Junio C Hamano [this message]
2016-09-21 23:23     ` Brandon Williams
2016-09-21 23:28       ` [PATCH 2/2 v2] " Brandon Williams
2016-09-23 18:48         ` Junio C Hamano
2016-09-23 19:20         ` Junio C Hamano
2016-09-23 20:49           ` Brandon Williams
2016-09-21 22:08 ` [PATCH 1/2] ls-files: adding support " Brandon Williams
2016-09-21 22:28   ` Junio C Hamano
2016-09-21 22:38     ` Brandon Williams
2016-09-21 22:42       ` [PATCH 1/2] ls-files: optionally recurse into submodules Brandon Williams
2016-09-22  6:20         ` Jeff King
2016-09-23 23:31           ` Brandon Williams
2016-09-21 23:13       ` [PATCH 1/2] ls-files: adding support for submodules Junio C Hamano
2016-09-22  4:18         ` Jeff King
2016-09-22 16:04           ` Stefan Beller
2016-09-22 18:13           ` Junio C Hamano
2016-09-23  3:41             ` Jeff King
2016-09-23  5:47               ` Stefan Beller
2016-09-23  6:06                 ` Jeff King
2016-09-23 16:16                   ` Brandon Williams
2016-09-23 16:34                     ` Stefan Beller
2016-09-25 11:03                       ` Nazri Ramliy
2016-09-27 21:38             ` Junio C Hamano
2016-09-27 21:48               ` Brandon Williams
2016-09-27 22:01                 ` Junio C Hamano
2016-09-27 22:09                   ` Brandon Williams
2016-09-27 22:23                     ` Junio C Hamano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=xmqqtwd86f0q.fsf@gitster.mtv.corp.google.com \
    --to=gitster@pobox.com \
    --cc=bmwill@google.com \
    --cc=git@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).