summaryrefslogtreecommitdiff
path: root/lib/printquoted.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/printquoted.c')
-rw-r--r--lib/printquoted.c80
1 files changed, 80 insertions, 0 deletions
diff --git a/lib/printquoted.c b/lib/printquoted.c
new file mode 100644
index 0000000..ddc09e4
--- /dev/null
+++ b/lib/printquoted.c
@@ -0,0 +1,80 @@
+/* printquoted.c -- print a specified string with any necessary quoting.
+
+ Copyright (C) 1990, 1991, 1992, 1993, 1994, 2000, 2003, 2004, 2005,
+ 2007, 2009, 2010, 2011 Free Software Foundation, Inc.
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+/* config.h must be included first. */
+#include <config.h>
+
+/* system headers. */
+#include <stdio.h>
+#include <stdlib.h>
+
+/* gnulib headers. */
+#include "xalloc.h"
+
+/* find headers. */
+#include "printquoted.h"
+
+/*
+ * Print S according to the format FORMAT, but if the destination is a tty,
+ * convert any potentially-dangerous characters. The logic in this function
+ * was taken from ls.c in coreutils (at Sun Jun 5 20:42:51 2005 UTC).
+ */
+int
+print_quoted (FILE *fp,
+ const struct quoting_options *qopts,
+ bool dest_is_tty,
+ const char *format,
+ const char *s)
+{
+ int rv;
+
+ if (dest_is_tty)
+ {
+ char smallbuf[BUFSIZ];
+ size_t len = quotearg_buffer (smallbuf, sizeof smallbuf, s, -1, qopts);
+ char *buf;
+ if (len < sizeof smallbuf)
+ buf = smallbuf;
+ else
+ {
+ /* The original coreutils code uses alloca(), but I don't
+ * want to take on the anguish of introducing alloca() to
+ * 'find'.
+ * XXX: newsflash: we already have alloca().
+ */
+ buf = xmalloc (len + 1);
+ quotearg_buffer (buf, len + 1, s, -1, qopts);
+ }
+
+ /* Replace any remaining funny characters with '?'. */
+ len = qmark_chars (buf, len);
+
+ rv = fprintf (fp, format, buf); /* Print the quoted version */
+ if (buf != smallbuf)
+ {
+ free (buf);
+ buf = NULL;
+ }
+ }
+ else
+ {
+ /* no need to quote things. */
+ rv = fprintf (fp, format, s);
+ }
+ return rv;
+}