Re: [PATCH v2] format-patch: add --description-file option

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Oswald Buddenhagen <oswald.buddenhagen@xxxxxx> writes:

> This patch makes it possible to directly feed a branch description to
> derive the cover letter from. The use case is formatting dynamically
> created temporary commits which are not referenced anywhere.
>
> The most obvious alternative would be creating a temporary branch and
> setting a description on it, but that doesn't seem particularly elegant.

Elegance is quite subjective, but not having to create a temporary
branch is a good thing in itself.  Everything after ", but that
doesn't" is better left out of the message here.

In the longer term, the templating system is the way to go to
achieve more flexibility that is more general than the single
problem this patch is trying to solve, but we do not always have to
wait for such a most general solution.

> +--description-file=<file>::
> +	Use the contents of <file> instead of the branch's description
> +	for generating the cover letter.

OK.

> diff --git a/builtin/log.c b/builtin/log.c
> index 1b119eaf0b..9c4738bbde 100644
> --- a/builtin/log.c
> +++ b/builtin/log.c
> @@ -1255,7 +1255,15 @@ static void show_diffstat(struct rev_info *rev,
>  	fprintf(rev->diffopt.file, "\n");
>  }
>  
> +static void read_desc_file(struct strbuf *buf, const char *desc_file)
> +{
> +	if (strbuf_read_file(buf, desc_file, 2000) < 0)
> +		die_errno(_("unable to read branch description file '%s'"),
> +			  desc_file);
> +}

You would probably want to do "2000" -> "0" here.

>  static void prepare_cover_text(struct pretty_print_context *pp,
> +			       const char *description_file,
>  			       const char *branch_name,

This is kind of suboptimal, but let's let it pass.

A better design is to pass the description string itself to this
function and the make_cover_letter() function, and have the higher
level callers of the callchain prepare the either read_desc_file()
or read_branch_desc() to prepare that string before calling into the
callchain.  Such a division of labor between the callers and this
function will allow us to more easily add another option to the
command, to feed the description string itself (instead of having to
create a temporary file and storing the description in it).

But such a clean-up can be safely left for now and be done after the
dust settles.

> @@ -1269,7 +1277,9 @@ static void prepare_cover_text(struct pretty_print_context *pp,
>  	if (cover_from_description_mode == COVER_FROM_NONE)
>  		goto do_pp;
>  
> -	if (branch_name && *branch_name)
> +	if (description_file && *description_file)
> +		read_desc_file(&description_sb, description_file);
> +	else if (branch_name && *branch_name)
>  		read_branch_desc(&description_sb, branch_name);

This allows use of a custom description to override the branch
description, which makes quite a lot of sense.

> @@ -1315,6 +1325,7 @@ static void get_notes_args(struct strvec *arg, struct rev_info *rev)
>  static void make_cover_letter(struct rev_info *rev, int use_separate_file,
>  			      struct commit *origin,
>  			      int nr, struct commit **list,
> +			      const char *description_file,
>  			      const char *branch_name,

I've already touched on this.

>  			      int quiet)
>  {
> @@ -1354,7 +1365,8 @@ static void make_cover_letter(struct rev_info *rev, int use_separate_file,
>  	pp.rev = rev;
>  	pp.print_email_subject = 1;
>  	pp_user_info(&pp, NULL, &sb, committer, encoding);
> -	prepare_cover_text(&pp, branch_name, &sb, encoding, need_8bit_cte);
> +	prepare_cover_text(&pp, description_file, branch_name, &sb,
> +			   encoding, need_8bit_cte);
>  	fprintf(rev->diffopt.file, "%s\n", sb.buf);
>  
>  	strbuf_release(&sb);
> @@ -1895,6 +1907,7 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)
>  	int quiet = 0;
>  	const char *reroll_count = NULL;
>  	char *cover_from_description_arg = NULL;
> +	char *description_file = NULL;
>  	char *branch_name = NULL;
>  	char *base_commit = NULL;
>  	struct base_tree_info bases;
> @@ -1938,6 +1951,8 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)
>  		OPT_STRING(0, "cover-from-description", &cover_from_description_arg,
>  			    N_("cover-from-description-mode"),
>  			    N_("generate parts of a cover letter based on a branch's description")),
> +		OPT_FILENAME(0, "description-file", &description_file,
> +			     N_("use branch description from file")),
>  		OPT_CALLBACK_F(0, "subject-prefix", &rev, N_("prefix"),
>  			    N_("use [<prefix>] instead of [PATCH]"),
>  			    PARSE_OPT_NONEG, subject_prefix_callback),
> @@ -2323,7 +2338,7 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)
>  		if (thread)
>  			gen_message_id(&rev, "cover");
>  		make_cover_letter(&rev, !!output_directory,
> -				  origin, nr, list, branch_name, quiet);
> +				  origin, nr, list, description_file, branch_name, quiet);
>  		print_bases(&bases, rev.diffopt.file);
>  		print_signature(rev.diffopt.file);
>  		total++;
> diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh
> index 3cf2b7a7fb..b31401876b 100755
> --- a/t/t4014-format-patch.sh
> +++ b/t/t4014-format-patch.sh
> @@ -1991,6 +1991,18 @@ test_expect_success 'cover letter using branch description (6)' '
>  	grep hello actual
>  '
>  
> +test_expect_success 'cover letter with --description-file' '
> +	test_when_finished "rm -f description.txt" &&
> +	echo "subject from file
> +
> +body from file" > description.txt &&

It is more conventional to write a multi-line file like so:

	cat >description.txt <<\-EOF &&
	subject from file

	body from file
	EOF

which would allow readers not to get distracted by the unindented
second line.  Also redirection operator ">" (or "<") sticks to the
target file in our coding style.

> +	git checkout rebuild-1 &&
> +	git format-patch --stdout --cover-letter --cover-from-description auto \
> +		--description-file description.txt main >actual &&
> +	grep "^Subject: \[PATCH 0/2\] subject from file$" actual &&
> +	grep "^body from file$" actual

Nice.

> +'
> +
>  test_expect_success 'cover letter with nothing' '
>  	git format-patch --stdout --cover-letter >actual &&
>  	test_line_count = 0 actual

Thanks.



[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux