Import libarchive-2.5.4b.
[dragonfly.git] / contrib / libarchive-2 / libarchive / archive_string_sprintf.c
blob6f77a36a1b8cc251624c032d36cc59d24430908b
1 /*-
2 * Copyright (c) 2003-2007 Tim Kientzle
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #include "archive_platform.h"
27 __FBSDID("$FreeBSD: src/lib/libarchive/archive_string_sprintf.c,v 1.10 2008/03/14 22:00:09 kientzle Exp $");
30 * The use of printf()-family functions can be troublesome
31 * for space-constrained applications. In addition, correctly
32 * implementing this function in terms of vsnprintf() requires
33 * two calls (one to determine the size, another to format the
34 * result), which in turn requires duplicating the argument list
35 * using va_copy, which isn't yet universally available.
37 * So, I've implemented a bare minimum of printf()-like capability
38 * here. This is only used to format error messages, so doesn't
39 * require any floating-point support or field-width handling.
42 #include <stdio.h>
44 #include "archive_string.h"
45 #include "archive_private.h"
47 void
48 __archive_string_sprintf(struct archive_string *as, const char *fmt, ...)
50 va_list ap;
52 va_start(ap, fmt);
53 archive_string_vsprintf(as, fmt, ap);
54 va_end(ap);
58 * Like 'vsprintf', but ensures the target is big enough, resizing if
59 * necessary.
61 void
62 __archive_string_vsprintf(struct archive_string *as, const char *fmt,
63 va_list ap)
65 char long_flag;
66 intmax_t s; /* Signed integer temp. */
67 uintmax_t u; /* Unsigned integer temp. */
68 const char *p, *p2;
70 if (__archive_string_ensure(as, 64) == NULL)
71 __archive_errx(1, "Out of memory");
73 if (fmt == NULL) {
74 as->s[0] = 0;
75 return;
78 long_flag = '\0';
79 for (p = fmt; *p != '\0'; p++) {
80 const char *saved_p = p;
82 if (*p != '%') {
83 archive_strappend_char(as, *p);
84 continue;
87 p++;
89 switch(*p) {
90 case 'j':
91 long_flag = 'j';
92 p++;
93 break;
94 case 'l':
95 long_flag = 'l';
96 p++;
97 break;
100 switch (*p) {
101 case '%':
102 __archive_strappend_char(as, '%');
103 break;
104 case 'c':
105 s = va_arg(ap, int);
106 __archive_strappend_char(as, s);
107 break;
108 case 'd':
109 switch(long_flag) {
110 case 'j': s = va_arg(ap, intmax_t); break;
111 case 'l': s = va_arg(ap, long); break;
112 default: s = va_arg(ap, int); break;
114 archive_strappend_int(as, s, 10);
115 break;
116 case 's':
117 p2 = va_arg(ap, char *);
118 archive_strcat(as, p2);
119 break;
120 case 'o': case 'u': case 'x': case 'X':
121 /* Common handling for unsigned integer formats. */
122 switch(long_flag) {
123 case 'j': u = va_arg(ap, uintmax_t); break;
124 case 'l': u = va_arg(ap, unsigned long); break;
125 default: u = va_arg(ap, unsigned int); break;
127 /* Format it in the correct base. */
128 switch (*p) {
129 case 'o': archive_strappend_int(as, u, 8); break;
130 case 'u': archive_strappend_int(as, u, 10); break;
131 default: archive_strappend_int(as, u, 16); break;
133 break;
134 default:
135 /* Rewind and print the initial '%' literally. */
136 p = saved_p;
137 archive_strappend_char(as, *p);