2005-07-08 06:58:32 +00:00
|
|
|
#ifndef QUOTE_H
|
|
|
|
#define QUOTE_H
|
|
|
|
|
2011-01-05 00:36:34 +00:00
|
|
|
struct strbuf;
|
2005-07-08 06:58:32 +00:00
|
|
|
|
|
|
|
/* Help to copy the thing properly quoted for the shell safety.
|
2005-10-10 21:46:10 +00: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 06:58:32 +00: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 21:46:10 +00: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 22:58:34 +00:00
|
|
|
*
|
|
|
|
* sq_quotef() quotes the entire formatted string as a single result.
|
2005-07-08 06:58:32 +00:00
|
|
|
*/
|
|
|
|
|
2019-04-29 08:28:14 +00:00
|
|
|
void sq_quote_buf(struct strbuf *, const char *src);
|
|
|
|
void sq_quote_argv(struct strbuf *, const char **argv);
|
2019-04-29 08:28:20 +00:00
|
|
|
void sq_quotef(struct strbuf *, const char *fmt, ...);
|
2006-09-11 04:59:22 +00:00
|
|
|
|
2018-01-15 10:59:44 +00: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);
|
2019-08-09 15:00:55 +00:00
|
|
|
void sq_append_quote_argv_pretty(struct strbuf *dst, const char **argv);
|
2018-01-15 10:59:44 +00:00
|
|
|
|
2005-10-23 21:30:45 +00: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.
|
|
|
|
*/
|
2019-04-29 08:28:14 +00:00
|
|
|
char *sq_dequote(char *);
|
2005-10-23 21:30:45 +00:00
|
|
|
|
2009-03-29 09:44:44 +00:00
|
|
|
/*
|
|
|
|
* Same as the above, but can be used to unwrap many arguments in the
|
2011-09-13 21:57:47 +00: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 09:44:44 +00:00
|
|
|
*/
|
2019-04-29 08:28:14 +00:00
|
|
|
int sq_dequote_to_argv(char *arg, const char ***argv, int *nr, int *alloc);
|
2009-03-29 09:44:44 +00:00
|
|
|
|
2011-09-13 21:58:08 +00: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;
|
2019-04-29 08:28:14 +00:00
|
|
|
int sq_dequote_to_argv_array(char *arg, struct argv_array *);
|
2011-09-13 21:58:08 +00:00
|
|
|
|
2019-04-29 08:28:14 +00:00
|
|
|
int unquote_c_style(struct strbuf *, const char *quoted, const char **endp);
|
|
|
|
size_t quote_c_style(const char *name, struct strbuf *, FILE *, int no_dq);
|
|
|
|
void quote_two_c_style(struct strbuf *, const char *, const char *, int);
|
2005-10-15 04:54:47 +00:00
|
|
|
|
2019-04-29 08:28:14 +00:00
|
|
|
void write_name_quoted(const char *name, FILE *, int terminator);
|
|
|
|
void write_name_quoted_relative(const char *name, const char *prefix,
|
2019-04-29 08:28:23 +00:00
|
|
|
FILE *fp, int terminator);
|
2005-07-08 06:58:32 +00:00
|
|
|
|
2008-03-07 02:30:58 +00:00
|
|
|
/* quote path as relative to the given prefix */
|
2019-04-29 08:28:14 +00:00
|
|
|
char *quote_path_relative(const char *in, const char *prefix,
|
2013-06-25 15:53:45 +00:00
|
|
|
struct strbuf *out);
|
2008-03-07 02:30:58 +00:00
|
|
|
|
2006-09-15 20:30:02 +00:00
|
|
|
/* quoting as a string literal for other languages */
|
2019-04-29 08:28:14 +00:00
|
|
|
void perl_quote_buf(struct strbuf *sb, const char *src);
|
|
|
|
void python_quote_buf(struct strbuf *sb, const char *src);
|
|
|
|
void tcl_quote_buf(struct strbuf *sb, const char *src);
|
|
|
|
void basic_regex_quote_buf(struct strbuf *sb, const char *src);
|
2006-09-15 20:30:02 +00:00
|
|
|
|
2005-07-08 06:58:32 +00:00
|
|
|
#endif
|