Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | #include "quote.h" |
| 3 | |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 4 | int quote_path_fully = 1; |
| 5 | |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 6 | /* Help to copy the thing properly quoted for the shell safety. |
H. Peter Anvin | 77d604c | 2005-10-10 14:46:10 -0700 | [diff] [blame] | 7 | * any single quote is replaced with '\'', any exclamation point |
| 8 | * is replaced with '\!', and the whole thing is enclosed in a |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 9 | * |
| 10 | * E.g. |
| 11 | * original sq_quote result |
| 12 | * name ==> name ==> 'name' |
| 13 | * a b ==> a b ==> 'a b' |
| 14 | * a'b ==> a'\''b ==> 'a'\''b' |
H. Peter Anvin | 77d604c | 2005-10-10 14:46:10 -0700 | [diff] [blame] | 15 | * a!b ==> a'\!'b ==> 'a'\!'b' |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 16 | */ |
Linus Torvalds | 35eb2d3 | 2005-10-23 14:30:45 -0700 | [diff] [blame] | 17 | static inline int need_bs_quote(char c) |
| 18 | { |
| 19 | return (c == '\'' || c == '!'); |
| 20 | } |
| 21 | |
Pierre Habouzit | 7a33bcb | 2007-09-20 00:42:13 +0200 | [diff] [blame] | 22 | void sq_quote_buf(struct strbuf *dst, const char *src) |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 23 | { |
Pierre Habouzit | 7a33bcb | 2007-09-20 00:42:13 +0200 | [diff] [blame] | 24 | char *to_free = NULL; |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 25 | |
Pierre Habouzit | 7a33bcb | 2007-09-20 00:42:13 +0200 | [diff] [blame] | 26 | if (dst->buf == src) |
Pierre Habouzit | b315c5c | 2007-09-27 12:58:23 +0200 | [diff] [blame] | 27 | to_free = strbuf_detach(dst, NULL); |
Pierre Habouzit | 7a33bcb | 2007-09-20 00:42:13 +0200 | [diff] [blame] | 28 | |
| 29 | strbuf_addch(dst, '\''); |
| 30 | while (*src) { |
Johannes Sixt | c2015b3 | 2007-11-04 21:26:22 +0100 | [diff] [blame] | 31 | size_t len = strcspn(src, "'!"); |
Pierre Habouzit | 7a33bcb | 2007-09-20 00:42:13 +0200 | [diff] [blame] | 32 | strbuf_add(dst, src, len); |
| 33 | src += len; |
| 34 | while (need_bs_quote(*src)) { |
| 35 | strbuf_addstr(dst, "'\\"); |
| 36 | strbuf_addch(dst, *src++); |
| 37 | strbuf_addch(dst, '\''); |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 38 | } |
| 39 | } |
Pierre Habouzit | 7a33bcb | 2007-09-20 00:42:13 +0200 | [diff] [blame] | 40 | strbuf_addch(dst, '\''); |
| 41 | free(to_free); |
H. Peter Anvin | 77d604c | 2005-10-10 14:46:10 -0700 | [diff] [blame] | 42 | } |
| 43 | |
Matthias Lederhofer | 575ba9d | 2006-06-25 15:56:18 +0200 | [diff] [blame] | 44 | void sq_quote_print(FILE *stream, const char *src) |
| 45 | { |
| 46 | char c; |
| 47 | |
| 48 | fputc('\'', stream); |
| 49 | while ((c = *src++)) { |
| 50 | if (need_bs_quote(c)) { |
| 51 | fputs("'\\", stream); |
| 52 | fputc(c, stream); |
| 53 | fputc('\'', stream); |
| 54 | } else { |
| 55 | fputc(c, stream); |
| 56 | } |
| 57 | } |
| 58 | fputc('\'', stream); |
| 59 | } |
| 60 | |
Christian Couder | b319ce4 | 2007-12-03 05:51:50 +0100 | [diff] [blame] | 61 | void sq_quote_argv(struct strbuf *dst, const char** argv, size_t maxlen) |
Christian Couder | 7cf6720 | 2006-08-31 08:42:11 +0200 | [diff] [blame] | 62 | { |
Christian Couder | 7cf6720 | 2006-08-31 08:42:11 +0200 | [diff] [blame] | 63 | int i; |
Christian Couder | 7cf6720 | 2006-08-31 08:42:11 +0200 | [diff] [blame] | 64 | |
Christian Couder | 7cf6720 | 2006-08-31 08:42:11 +0200 | [diff] [blame] | 65 | /* Copy into destination buffer. */ |
Christian Couder | b319ce4 | 2007-12-03 05:51:50 +0100 | [diff] [blame] | 66 | strbuf_grow(dst, 255); |
| 67 | for (i = 0; argv[i]; ++i) { |
Pierre Habouzit | 7a33bcb | 2007-09-20 00:42:13 +0200 | [diff] [blame] | 68 | strbuf_addch(dst, ' '); |
| 69 | sq_quote_buf(dst, argv[i]); |
| 70 | if (maxlen && dst->len > maxlen) |
| 71 | die("Too many or long arguments"); |
Christian Couder | 7cf6720 | 2006-08-31 08:42:11 +0200 | [diff] [blame] | 72 | } |
Christian Couder | 86257aa | 2006-09-11 06:59:22 +0200 | [diff] [blame] | 73 | } |
| 74 | |
Linus Torvalds | 35eb2d3 | 2005-10-23 14:30:45 -0700 | [diff] [blame] | 75 | char *sq_dequote(char *arg) |
| 76 | { |
| 77 | char *dst = arg; |
| 78 | char *src = arg; |
| 79 | char c; |
| 80 | |
| 81 | if (*src != '\'') |
| 82 | return NULL; |
| 83 | for (;;) { |
| 84 | c = *++src; |
| 85 | if (!c) |
| 86 | return NULL; |
| 87 | if (c != '\'') { |
| 88 | *dst++ = c; |
| 89 | continue; |
| 90 | } |
| 91 | /* We stepped out of sq */ |
| 92 | switch (*++src) { |
| 93 | case '\0': |
| 94 | *dst = 0; |
| 95 | return arg; |
| 96 | case '\\': |
| 97 | c = *++src; |
| 98 | if (need_bs_quote(c) && *++src == '\'') { |
| 99 | *dst++ = c; |
| 100 | continue; |
| 101 | } |
| 102 | /* Fallthrough */ |
| 103 | default: |
| 104 | return NULL; |
| 105 | } |
| 106 | } |
| 107 | } |
| 108 | |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 109 | /* 1 means: quote as octal |
| 110 | * 0 means: quote as octal if (quote_path_fully) |
| 111 | * -1 means: never quote |
| 112 | * c: quote as "\\c" |
| 113 | */ |
| 114 | #define X8(x) x, x, x, x, x, x, x, x |
| 115 | #define X16(x) X8(x), X8(x) |
| 116 | static signed char const sq_lookup[256] = { |
| 117 | /* 0 1 2 3 4 5 6 7 */ |
| 118 | /* 0x00 */ 1, 1, 1, 1, 1, 1, 1, 'a', |
| 119 | /* 0x08 */ 'b', 't', 'n', 'v', 'f', 'r', 1, 1, |
| 120 | /* 0x10 */ X16(1), |
| 121 | /* 0x20 */ -1, -1, '"', -1, -1, -1, -1, -1, |
| 122 | /* 0x28 */ X16(-1), X16(-1), X16(-1), |
| 123 | /* 0x58 */ -1, -1, -1, -1,'\\', -1, -1, -1, |
| 124 | /* 0x60 */ X16(-1), X8(-1), |
| 125 | /* 0x78 */ -1, -1, -1, -1, -1, -1, -1, 1, |
| 126 | /* 0x80 */ /* set to 0 */ |
| 127 | }; |
| 128 | |
Junio C Hamano | f3fa183 | 2007-11-08 15:35:32 -0800 | [diff] [blame] | 129 | static inline int sq_must_quote(char c) |
| 130 | { |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 131 | return sq_lookup[(unsigned char)c] + quote_path_fully > 0; |
| 132 | } |
| 133 | |
| 134 | /* returns the longest prefix not needing a quote up to maxlen if positive. |
| 135 | This stops at the first \0 because it's marked as a character needing an |
| 136 | escape */ |
| 137 | static size_t next_quote_pos(const char *s, ssize_t maxlen) |
| 138 | { |
| 139 | size_t len; |
| 140 | if (maxlen < 0) { |
| 141 | for (len = 0; !sq_must_quote(s[len]); len++); |
| 142 | } else { |
| 143 | for (len = 0; len < maxlen && !sq_must_quote(s[len]); len++); |
| 144 | } |
| 145 | return len; |
| 146 | } |
| 147 | |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 148 | /* |
| 149 | * C-style name quoting. |
| 150 | * |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 151 | * (1) if sb and fp are both NULL, inspect the input name and counts the |
| 152 | * number of bytes that are needed to hold c_style quoted version of name, |
| 153 | * counting the double quotes around it but not terminating NUL, and |
| 154 | * returns it. |
| 155 | * However, if name does not need c_style quoting, it returns 0. |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 156 | * |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 157 | * (2) if sb or fp are not NULL, it emits the c_style quoted version |
| 158 | * of name, enclosed with double quotes if asked and needed only. |
| 159 | * Return value is the same as in (1). |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 160 | */ |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 161 | static size_t quote_c_style_counted(const char *name, ssize_t maxlen, |
| 162 | struct strbuf *sb, FILE *fp, int no_dq) |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 163 | { |
| 164 | #undef EMIT |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 165 | #define EMIT(c) \ |
| 166 | do { \ |
| 167 | if (sb) strbuf_addch(sb, (c)); \ |
| 168 | if (fp) fputc((c), fp); \ |
| 169 | count++; \ |
| 170 | } while (0) |
| 171 | #define EMITBUF(s, l) \ |
| 172 | do { \ |
| 173 | if (sb) strbuf_add(sb, (s), (l)); \ |
| 174 | if (fp) fwrite((s), (l), 1, fp); \ |
| 175 | count += (l); \ |
| 176 | } while (0) |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 177 | |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 178 | size_t len, count = 0; |
| 179 | const char *p = name; |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 180 | |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 181 | for (;;) { |
| 182 | int ch; |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 183 | |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 184 | len = next_quote_pos(p, maxlen); |
| 185 | if (len == maxlen || !p[len]) |
Pavel Roskin | 50e7b06 | 2005-12-21 15:35:48 -0500 | [diff] [blame] | 186 | break; |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 187 | |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 188 | if (!no_dq && p == name) |
| 189 | EMIT('"'); |
| 190 | |
| 191 | EMITBUF(p, len); |
| 192 | EMIT('\\'); |
| 193 | p += len; |
| 194 | ch = (unsigned char)*p++; |
| 195 | if (sq_lookup[ch] >= ' ') { |
| 196 | EMIT(sq_lookup[ch]); |
| 197 | } else { |
| 198 | EMIT(((ch >> 6) & 03) + '0'); |
| 199 | EMIT(((ch >> 3) & 07) + '0'); |
| 200 | EMIT(((ch >> 0) & 07) + '0'); |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 201 | } |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 202 | } |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 203 | |
| 204 | EMITBUF(p, len); |
| 205 | if (p == name) /* no ending quote needed */ |
| 206 | return 0; |
| 207 | |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 208 | if (!no_dq) |
| 209 | EMIT('"'); |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 210 | return count; |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 211 | } |
| 212 | |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 213 | size_t quote_c_style(const char *name, struct strbuf *sb, FILE *fp, int nodq) |
Junio C Hamano | 9ef2b3c | 2005-11-28 22:55:25 -0800 | [diff] [blame] | 214 | { |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 215 | return quote_c_style_counted(name, -1, sb, fp, nodq); |
| 216 | } |
| 217 | |
Junio C Hamano | d562509 | 2007-12-26 17:13:36 -0800 | [diff] [blame] | 218 | void quote_two_c_style(struct strbuf *sb, const char *prefix, const char *path, int nodq) |
| 219 | { |
| 220 | if (quote_c_style(prefix, NULL, NULL, 0) || |
| 221 | quote_c_style(path, NULL, NULL, 0)) { |
| 222 | if (!nodq) |
| 223 | strbuf_addch(sb, '"'); |
| 224 | quote_c_style(prefix, sb, NULL, 1); |
| 225 | quote_c_style(path, sb, NULL, 1); |
| 226 | if (!nodq) |
| 227 | strbuf_addch(sb, '"'); |
| 228 | } else { |
| 229 | strbuf_addstr(sb, prefix); |
| 230 | strbuf_addstr(sb, path); |
| 231 | } |
| 232 | } |
| 233 | |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 234 | void write_name_quoted(const char *name, FILE *fp, int terminator) |
| 235 | { |
| 236 | if (terminator) { |
| 237 | quote_c_style(name, NULL, fp, 0); |
| 238 | } else { |
| 239 | fputs(name, fp); |
| 240 | } |
| 241 | fputc(terminator, fp); |
| 242 | } |
| 243 | |
| 244 | extern void write_name_quotedpfx(const char *pfx, size_t pfxlen, |
| 245 | const char *name, FILE *fp, int terminator) |
| 246 | { |
| 247 | int needquote = 0; |
| 248 | |
| 249 | if (terminator) { |
| 250 | needquote = next_quote_pos(pfx, pfxlen) < pfxlen |
| 251 | || name[next_quote_pos(name, -1)]; |
| 252 | } |
| 253 | if (needquote) { |
| 254 | fputc('"', fp); |
| 255 | quote_c_style_counted(pfx, pfxlen, NULL, fp, 1); |
| 256 | quote_c_style(name, NULL, fp, 1); |
| 257 | fputc('"', fp); |
| 258 | } else { |
| 259 | fwrite(pfx, pfxlen, 1, fp); |
| 260 | fputs(name, fp); |
| 261 | } |
| 262 | fputc(terminator, fp); |
Junio C Hamano | 9ef2b3c | 2005-11-28 22:55:25 -0800 | [diff] [blame] | 263 | } |
| 264 | |
Dmitry Potapov | a734d0b | 2008-03-07 05:30:58 +0300 | [diff] [blame] | 265 | /* quote path as relative to the given prefix */ |
| 266 | char *quote_path_relative(const char *in, int len, |
| 267 | struct strbuf *out, const char *prefix) |
| 268 | { |
| 269 | int needquote; |
| 270 | |
| 271 | if (len < 0) |
| 272 | len = strlen(in); |
| 273 | |
| 274 | /* "../" prefix itself does not need quoting, but "in" might. */ |
| 275 | needquote = next_quote_pos(in, len) < len; |
| 276 | strbuf_setlen(out, 0); |
| 277 | strbuf_grow(out, len); |
| 278 | |
| 279 | if (needquote) |
| 280 | strbuf_addch(out, '"'); |
| 281 | if (prefix) { |
| 282 | int off = 0; |
| 283 | while (prefix[off] && off < len && prefix[off] == in[off]) |
| 284 | if (prefix[off] == '/') { |
| 285 | prefix += off + 1; |
| 286 | in += off + 1; |
| 287 | len -= off + 1; |
| 288 | off = 0; |
| 289 | } else |
| 290 | off++; |
| 291 | |
| 292 | for (; *prefix; prefix++) |
| 293 | if (*prefix == '/') |
| 294 | strbuf_addstr(out, "../"); |
| 295 | } |
| 296 | |
| 297 | quote_c_style_counted (in, len, out, NULL, 1); |
| 298 | |
| 299 | if (needquote) |
| 300 | strbuf_addch(out, '"'); |
| 301 | if (!out->len) |
| 302 | strbuf_addstr(out, "./"); |
| 303 | |
| 304 | return out->buf; |
| 305 | } |
| 306 | |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 307 | /* |
| 308 | * C-style name unquoting. |
| 309 | * |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 310 | * Quoted should point at the opening double quote. |
| 311 | * + Returns 0 if it was able to unquote the string properly, and appends the |
| 312 | * result in the strbuf `sb'. |
| 313 | * + Returns -1 in case of error, and doesn't touch the strbuf. Though note |
| 314 | * that this function will allocate memory in the strbuf, so calling |
| 315 | * strbuf_release is mandatory whichever result unquote_c_style returns. |
| 316 | * |
| 317 | * Updates endp pointer to point at one past the ending double quote if given. |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 318 | */ |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 319 | int unquote_c_style(struct strbuf *sb, const char *quoted, const char **endp) |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 320 | { |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 321 | size_t oldlen = sb->len, len; |
| 322 | int ch, ac; |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 323 | |
| 324 | if (*quoted++ != '"') |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 325 | return -1; |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 326 | |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 327 | for (;;) { |
| 328 | len = strcspn(quoted, "\"\\"); |
| 329 | strbuf_add(sb, quoted, len); |
| 330 | quoted += len; |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 331 | |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 332 | switch (*quoted++) { |
| 333 | case '"': |
| 334 | if (endp) |
Pierre Habouzit | c8744d6 | 2008-03-06 22:28:19 +0100 | [diff] [blame] | 335 | *endp = quoted; |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 336 | return 0; |
| 337 | case '\\': |
| 338 | break; |
| 339 | default: |
| 340 | goto error; |
| 341 | } |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 342 | |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 343 | switch ((ch = *quoted++)) { |
| 344 | case 'a': ch = '\a'; break; |
| 345 | case 'b': ch = '\b'; break; |
| 346 | case 'f': ch = '\f'; break; |
| 347 | case 'n': ch = '\n'; break; |
| 348 | case 'r': ch = '\r'; break; |
| 349 | case 't': ch = '\t'; break; |
| 350 | case 'v': ch = '\v'; break; |
| 351 | |
| 352 | case '\\': case '"': |
| 353 | break; /* verbatim */ |
| 354 | |
| 355 | /* octal values with first digit over 4 overflow */ |
| 356 | case '0': case '1': case '2': case '3': |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 357 | ac = ((ch - '0') << 6); |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 358 | if ((ch = *quoted++) < '0' || '7' < ch) |
| 359 | goto error; |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 360 | ac |= ((ch - '0') << 3); |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 361 | if ((ch = *quoted++) < '0' || '7' < ch) |
| 362 | goto error; |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 363 | ac |= (ch - '0'); |
| 364 | ch = ac; |
| 365 | break; |
| 366 | default: |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 367 | goto error; |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 368 | } |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 369 | strbuf_addch(sb, ch); |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 370 | } |
| 371 | |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 372 | error: |
| 373 | strbuf_setlen(sb, oldlen); |
| 374 | return -1; |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 375 | } |
| 376 | |
Junio C Hamano | 9f613dd | 2006-09-15 13:30:02 -0700 | [diff] [blame] | 377 | /* quoting as a string literal for other languages */ |
| 378 | |
| 379 | void perl_quote_print(FILE *stream, const char *src) |
| 380 | { |
| 381 | const char sq = '\''; |
| 382 | const char bq = '\\'; |
| 383 | char c; |
| 384 | |
| 385 | fputc(sq, stream); |
| 386 | while ((c = *src++)) { |
| 387 | if (c == sq || c == bq) |
| 388 | fputc(bq, stream); |
| 389 | fputc(c, stream); |
| 390 | } |
| 391 | fputc(sq, stream); |
| 392 | } |
| 393 | |
| 394 | void python_quote_print(FILE *stream, const char *src) |
| 395 | { |
| 396 | const char sq = '\''; |
| 397 | const char bq = '\\'; |
| 398 | const char nl = '\n'; |
| 399 | char c; |
| 400 | |
| 401 | fputc(sq, stream); |
| 402 | while ((c = *src++)) { |
| 403 | if (c == nl) { |
| 404 | fputc(bq, stream); |
| 405 | fputc('n', stream); |
| 406 | continue; |
| 407 | } |
| 408 | if (c == sq || c == bq) |
| 409 | fputc(bq, stream); |
| 410 | fputc(c, stream); |
| 411 | } |
| 412 | fputc(sq, stream); |
| 413 | } |
Shawn O. Pearce | 5558e55 | 2007-01-28 02:39:13 -0500 | [diff] [blame] | 414 | |
| 415 | void tcl_quote_print(FILE *stream, const char *src) |
| 416 | { |
| 417 | char c; |
| 418 | |
| 419 | fputc('"', stream); |
| 420 | while ((c = *src++)) { |
| 421 | switch (c) { |
| 422 | case '[': case ']': |
| 423 | case '{': case '}': |
| 424 | case '$': case '\\': case '"': |
| 425 | fputc('\\', stream); |
| 426 | default: |
| 427 | fputc(c, stream); |
| 428 | break; |
| 429 | case '\f': |
| 430 | fputs("\\f", stream); |
| 431 | break; |
| 432 | case '\r': |
| 433 | fputs("\\r", stream); |
| 434 | break; |
| 435 | case '\n': |
| 436 | fputs("\\n", stream); |
| 437 | break; |
| 438 | case '\t': |
| 439 | fputs("\\t", stream); |
| 440 | break; |
| 441 | case '\v': |
| 442 | fputs("\\v", stream); |
| 443 | break; |
| 444 | } |
| 445 | } |
| 446 | fputc('"', stream); |
| 447 | } |