From: Christian Couder <chriscool@tuxfamily.org>
To: Junio Hamano <junkio@cox.net>
Cc: git@vger.kernel.org
Subject: [PATCH] Helper function to shell quote all arg values at once.
Date: Sun, 20 Aug 2006 08:07:49 +0200 [thread overview]
Message-ID: <20060820080749.e31276dd.chriscool@tuxfamily.org> (raw)
The new sq_quote_argv function is used to refactor the
tracing code in "git.c" and "exec_cmd.c".
This function allocates memory and fills it with a string
containing the quoted argument values. Then it returns a
pointer to this memory that must be freed afterwards.
---
exec_cmd.c | 11 +++--------
git.c | 22 +++++++---------------
quote.c | 33 +++++++++++++++++++++++++++++++++
quote.h | 1 +
4 files changed, 44 insertions(+), 23 deletions(-)
diff --git a/exec_cmd.c b/exec_cmd.c
index e30936d..6d215d8 100644
--- a/exec_cmd.c
+++ b/exec_cmd.c
@@ -98,15 +98,10 @@ int execv_git_cmd(const char **argv)
argv[0] = git_command;
if (getenv("GIT_TRACE")) {
- const char **p = argv;
- fputs("trace: exec:", stderr);
- while (*p) {
- fputc(' ', stderr);
- sq_quote_print(stderr, *p);
- ++p;
- }
- putc('\n', stderr);
+ char *arg_str = sq_quote_argv(argv, -1);
+ fprintf(stderr, "trace: exec: %s\n", arg_str);
fflush(stderr);
+ free(arg_str);
}
/* execve() can only ever return if it fails */
diff --git a/git.c b/git.c
index 930998b..ff4ba66 100644
--- a/git.c
+++ b/git.c
@@ -180,15 +180,11 @@ static int handle_alias(int *argcp, cons
die("recursive alias: %s", alias_command);
if (getenv("GIT_TRACE")) {
- int i;
- fprintf(stderr, "trace: alias expansion: %s =>",
- alias_command);
- for (i = 0; i < count; ++i) {
- fputc(' ', stderr);
- sq_quote_print(stderr, new_argv[i]);
- }
- fputc('\n', stderr);
+ char *arg_str = sq_quote_argv(new_argv, count);
+ fprintf(stderr, "trace: alias expansion: %s => %s\n",
+ alias_command, arg_str);
fflush(stderr);
+ free(arg_str);
}
new_argv = realloc(new_argv, sizeof(char*) *
@@ -292,14 +288,10 @@ static void handle_internal_command(int
if (p->option & USE_PAGER)
setup_pager();
if (getenv("GIT_TRACE")) {
- int i;
- fprintf(stderr, "trace: built-in: git");
- for (i = 0; i < argc; ++i) {
- fputc(' ', stderr);
- sq_quote_print(stderr, argv[i]);
- }
- putc('\n', stderr);
+ char *arg_str = sq_quote_argv(argv, argc);
+ fprintf(stderr, "trace: built-in: git %s\n", arg_str);
fflush(stderr);
+ free(arg_str);
}
exit(p->fn(argc, argv, prefix));
diff --git a/quote.c b/quote.c
index e220dcc..2e6289b 100644
--- a/quote.c
+++ b/quote.c
@@ -74,6 +74,39 @@ char *sq_quote(const char *src)
return buf;
}
+char *sq_quote_argv(const char** argv, int count)
+{
+ char *buf, *to;
+ int i;
+ size_t len;
+
+ /* Count argv if needed. */
+ if (count < 0) {
+ char **p = (char **)argv;
+ count = 0;
+ while (*p++) count++;
+ }
+
+ /* Get destination buffer length. */
+ len = count ? count : 1;
+ for (i = 0; i < count; ++i)
+ len += sq_quote_buf(NULL, 0, argv[i]);
+
+ /* Alloc destination buffer. */
+ to = buf = xmalloc(len);
+
+ /* Copy into destination buffer. */
+ for (i = 0; i < count; ++i) {
+ if (i) *to++ = ' ';
+ to += sq_quote_buf(to, len, argv[i]);
+ }
+
+ if (!count)
+ *buf = 0;
+
+ return buf;
+}
+
char *sq_dequote(char *arg)
{
char *dst = arg;
diff --git a/quote.h b/quote.h
index fc5481e..a6c4611 100644
--- a/quote.h
+++ b/quote.h
@@ -31,6 +31,7 @@ #include <stdio.h>
extern char *sq_quote(const char *src);
extern void sq_quote_print(FILE *stream, const char *src);
extern size_t sq_quote_buf(char *dst, size_t n, const char *src);
+extern char *sq_quote_argv(const char** argv, int count);
/* This unwraps what sq_quote() produces in place, but returns
* NULL if the input does not look like what sq_quote would have
--
1.4.2.g44496-dirty
next reply other threads:[~2006-08-20 6:03 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-08-20 6:07 Christian Couder [this message]
2006-08-20 18:32 ` [PATCH] Helper function to shell quote all arg values at once Christian Couder
2006-08-20 22:57 ` Junio C Hamano
2006-08-21 5:15 ` Christian Couder
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060820080749.e31276dd.chriscool@tuxfamily.org \
--to=chriscool@tuxfamily.org \
--cc=git@vger.kernel.org \
--cc=junkio@cox.net \
/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.
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).