2005-07-08 08:58:32 +02:00
|
|
|
#ifndef QUOTE_H
|
|
|
|
#define QUOTE_H
|
|
|
|
|
2011-01-05 01:36:34 +01:00
|
|
|
struct strbuf;
|
2005-07-08 08:58:32 +02:00
|
|
|
|
|
|
|
/* Help to copy the thing properly quoted for the shell safety.
|
2005-10-10 23:46:10 +02:00
|
|
|
* any single quote is replaced with '\'', any exclamation point
|
|
|
|
* is replaced with '\!', and the whole thing is enclosed in a
|
|
|
|
* single quote pair.
|
2005-07-08 08:58:32 +02:00
|
|
|
*
|
|
|
|
* For example, if you are passing the result to system() as an
|
|
|
|
* argument:
|
|
|
|
*
|
|
|
|
* sprintf(cmd, "foobar %s %s", sq_quote(arg0), sq_quote(arg1))
|
|
|
|
*
|
|
|
|
* would be appropriate. If the system() is going to call ssh to
|
|
|
|
* run the command on the other side:
|
|
|
|
*
|
|
|
|
* sprintf(cmd, "git-diff-tree %s %s", sq_quote(arg0), sq_quote(arg1));
|
|
|
|
* sprintf(rcmd, "ssh %s %s", sq_quote(host), sq_quote(cmd));
|
|
|
|
*
|
|
|
|
* Note that the above examples leak memory! Remember to free result from
|
|
|
|
* sq_quote() in a real application.
|
2005-10-10 23:46:10 +02:00
|
|
|
*
|
|
|
|
* sq_quote_buf() writes to an existing buffer of specified size; it
|
|
|
|
* will return the number of characters that would have been written
|
|
|
|
* excluding the final null regardless of the buffer size.
|
2016-02-29 23:58:34 +01:00
|
|
|
*
|
|
|
|
* sq_quotef() quotes the entire formatted string as a single result.
|
2005-07-08 08:58:32 +02:00
|
|
|
*/
|
|
|
|
|
2007-09-20 00:42:13 +02:00
|
|
|
extern void sq_quote_buf(struct strbuf *, const char *src);
|
2018-01-15 11:59:43 +01:00
|
|
|
extern void sq_quote_argv(struct strbuf *, const char **argv);
|
2016-02-29 23:58:34 +01:00
|
|
|
extern void sq_quotef(struct strbuf *, const char *fmt, ...);
|
2006-09-11 06:59:22 +02:00
|
|
|
|
2018-01-15 11:59:44 +01:00
|
|
|
/*
|
|
|
|
* These match their non-pretty variants, except that they avoid
|
|
|
|
* quoting when there are no exotic characters. These should only be used for
|
|
|
|
* human-readable output, as sq_dequote() is not smart enough to dequote it.
|
|
|
|
*/
|
|
|
|
void sq_quote_buf_pretty(struct strbuf *, const char *src);
|
|
|
|
void sq_quote_argv_pretty(struct strbuf *, const char **argv);
|
|
|
|
|
2005-10-23 23:30:45 +02:00
|
|
|
/* This unwraps what sq_quote() produces in place, but returns
|
|
|
|
* NULL if the input does not look like what sq_quote would have
|
|
|
|
* produced.
|
|
|
|
*/
|
|
|
|
extern char *sq_dequote(char *);
|
|
|
|
|
2009-03-29 11:44:44 +02:00
|
|
|
/*
|
|
|
|
* Same as the above, but can be used to unwrap many arguments in the
|
2011-09-13 23:57:47 +02:00
|
|
|
* same string separated by space. Like sq_quote, it works in place,
|
|
|
|
* modifying arg and appending pointers into it to argv.
|
2009-03-29 11:44:44 +02:00
|
|
|
*/
|
2009-03-29 11:44:52 +02:00
|
|
|
extern int sq_dequote_to_argv(char *arg, const char ***argv, int *nr, int *alloc);
|
2009-03-29 11:44:44 +02:00
|
|
|
|
2011-09-13 23:58:08 +02:00
|
|
|
/*
|
|
|
|
* Same as above, but store the unquoted strings in an argv_array. We will
|
|
|
|
* still modify arg in place, but unlike sq_dequote_to_argv, the argv_array
|
|
|
|
* will duplicate and take ownership of the strings.
|
|
|
|
*/
|
|
|
|
struct argv_array;
|
|
|
|
extern int sq_dequote_to_argv_array(char *arg, struct argv_array *);
|
|
|
|
|
2007-09-20 00:42:14 +02:00
|
|
|
extern int unquote_c_style(struct strbuf *, const char *quoted, const char **endp);
|
Full rework of quote_c_style and write_name_quoted.
* quote_c_style works on a strbuf instead of a wild buffer.
* quote_c_style is now clever enough to not add double quotes if not needed.
* write_name_quoted inherits those advantages, but also take a different
set of arguments. Now instead of asking for quotes or not, you pass a
"terminator". If it's \0 then we assume you don't want to escape, else C
escaping is performed. In any case, the terminator is also appended to the
stream. It also no longer takes the prefix/prefix_len arguments, as it's
seldomly used, and makes some optimizations harder.
* write_name_quotedpfx is created to work like write_name_quoted and take
the prefix/prefix_len arguments.
Thanks to those API changes, diff.c has somehow lost weight, thanks to the
removal of functions that were wrappers around the old write_name_quoted
trying to give it a semantics like the new one, but performing a lot of
allocations for this goal. Now we always write directly to the stream, no
intermediate allocation is performed.
As a side effect of the refactor in builtin-apply.c, the length of the bar
graphs in diffstats are not affected anymore by the fact that the path was
clipped.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
2007-09-20 00:42:15 +02:00
|
|
|
extern size_t quote_c_style(const char *name, struct strbuf *, FILE *, int no_dq);
|
2007-12-27 02:13:36 +01:00
|
|
|
extern void quote_two_c_style(struct strbuf *, const char *, const char *, int);
|
2005-10-15 06:54:47 +02:00
|
|
|
|
Full rework of quote_c_style and write_name_quoted.
* quote_c_style works on a strbuf instead of a wild buffer.
* quote_c_style is now clever enough to not add double quotes if not needed.
* write_name_quoted inherits those advantages, but also take a different
set of arguments. Now instead of asking for quotes or not, you pass a
"terminator". If it's \0 then we assume you don't want to escape, else C
escaping is performed. In any case, the terminator is also appended to the
stream. It also no longer takes the prefix/prefix_len arguments, as it's
seldomly used, and makes some optimizations harder.
* write_name_quotedpfx is created to work like write_name_quoted and take
the prefix/prefix_len arguments.
Thanks to those API changes, diff.c has somehow lost weight, thanks to the
removal of functions that were wrappers around the old write_name_quoted
trying to give it a semantics like the new one, but performing a lot of
allocations for this goal. Now we always write directly to the stream, no
intermediate allocation is performed.
As a side effect of the refactor in builtin-apply.c, the length of the bar
graphs in diffstats are not affected anymore by the fact that the path was
clipped.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
2007-09-20 00:42:15 +02:00
|
|
|
extern void write_name_quoted(const char *name, FILE *, int terminator);
|
2013-06-25 17:53:46 +02:00
|
|
|
extern void write_name_quoted_relative(const char *name, const char *prefix,
|
2010-06-03 15:36:31 +02:00
|
|
|
FILE *fp, int terminator);
|
2005-07-08 08:58:32 +02:00
|
|
|
|
2008-03-07 03:30:58 +01:00
|
|
|
/* quote path as relative to the given prefix */
|
2013-06-25 17:53:45 +02:00
|
|
|
extern char *quote_path_relative(const char *in, const char *prefix,
|
|
|
|
struct strbuf *out);
|
2008-03-07 03:30:58 +01:00
|
|
|
|
2006-09-15 22:30:02 +02:00
|
|
|
/* quoting as a string literal for other languages */
|
2013-07-30 10:31:25 +02:00
|
|
|
extern void perl_quote_buf(struct strbuf *sb, const char *src);
|
|
|
|
extern void python_quote_buf(struct strbuf *sb, const char *src);
|
|
|
|
extern void tcl_quote_buf(struct strbuf *sb, const char *src);
|
2016-06-25 07:22:31 +02:00
|
|
|
extern void basic_regex_quote_buf(struct strbuf *sb, const char *src);
|
2006-09-15 22:30:02 +02:00
|
|
|
|
2005-07-08 08:58:32 +02:00
|
|
|
#endif
|