Temporary workaround for ppc on ppc
[qemu/mini2440.git] / cutils.c
bloba1652ab0bc39bafcf0e9e9f71d90af65d237d426
1 /*
2 * Simple C functions to supplement the C library
4 * Copyright (c) 2006 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
24 #include "qemu-common.h"
25 #include "host-utils.h"
26 #include <assert.h>
28 void pstrcpy(char *buf, int buf_size, const char *str)
30 int c;
31 char *q = buf;
33 if (buf_size <= 0)
34 return;
36 for(;;) {
37 c = *str++;
38 if (c == 0 || q >= buf + buf_size - 1)
39 break;
40 *q++ = c;
42 *q = '\0';
45 /* strcat and truncate. */
46 char *pstrcat(char *buf, int buf_size, const char *s)
48 int len;
49 len = strlen(buf);
50 if (len < buf_size)
51 pstrcpy(buf + len, buf_size - len, s);
52 return buf;
55 int strstart(const char *str, const char *val, const char **ptr)
57 const char *p, *q;
58 p = str;
59 q = val;
60 while (*q != '\0') {
61 if (*p != *q)
62 return 0;
63 p++;
64 q++;
66 if (ptr)
67 *ptr = p;
68 return 1;
71 int stristart(const char *str, const char *val, const char **ptr)
73 const char *p, *q;
74 p = str;
75 q = val;
76 while (*q != '\0') {
77 if (qemu_toupper(*p) != qemu_toupper(*q))
78 return 0;
79 p++;
80 q++;
82 if (ptr)
83 *ptr = p;
84 return 1;
87 time_t mktimegm(struct tm *tm)
89 time_t t;
90 int y = tm->tm_year + 1900, m = tm->tm_mon + 1, d = tm->tm_mday;
91 if (m < 3) {
92 m += 12;
93 y--;
95 t = 86400 * (d + (153 * m - 457) / 5 + 365 * y + y / 4 - y / 100 +
96 y / 400 - 719469);
97 t += 3600 * tm->tm_hour + 60 * tm->tm_min + tm->tm_sec;
98 return t;
101 int qemu_fls(int i)
103 return 32 - clz32(i);
106 /* io vectors */
108 void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint)
110 qiov->iov = qemu_malloc(alloc_hint * sizeof(struct iovec));
111 qiov->niov = 0;
112 qiov->nalloc = alloc_hint;
113 qiov->size = 0;
116 void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov)
118 int i;
120 qiov->iov = iov;
121 qiov->niov = niov;
122 qiov->nalloc = -1;
123 qiov->size = 0;
124 for (i = 0; i < niov; i++)
125 qiov->size += iov[i].iov_len;
128 void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len)
130 assert(qiov->nalloc != -1);
132 if (qiov->niov == qiov->nalloc) {
133 qiov->nalloc = 2 * qiov->nalloc + 1;
134 qiov->iov = qemu_realloc(qiov->iov, qiov->nalloc * sizeof(struct iovec));
136 qiov->iov[qiov->niov].iov_base = base;
137 qiov->iov[qiov->niov].iov_len = len;
138 qiov->size += len;
139 ++qiov->niov;
142 void qemu_iovec_destroy(QEMUIOVector *qiov)
144 assert(qiov->nalloc != -1);
146 qemu_free(qiov->iov);
149 void qemu_iovec_reset(QEMUIOVector *qiov)
151 assert(qiov->nalloc != -1);
153 qiov->niov = 0;
154 qiov->size = 0;
157 void qemu_iovec_to_buffer(QEMUIOVector *qiov, void *buf)
159 uint8_t *p = (uint8_t *)buf;
160 int i;
162 for (i = 0; i < qiov->niov; ++i) {
163 memcpy(p, qiov->iov[i].iov_base, qiov->iov[i].iov_len);
164 p += qiov->iov[i].iov_len;
168 void qemu_iovec_from_buffer(QEMUIOVector *qiov, const void *buf, size_t count)
170 const uint8_t *p = (const uint8_t *)buf;
171 size_t copy;
172 int i;
174 for (i = 0; i < qiov->niov && count; ++i) {
175 copy = count;
176 if (copy > qiov->iov[i].iov_len)
177 copy = qiov->iov[i].iov_len;
178 memcpy(qiov->iov[i].iov_base, p, copy);
179 p += copy;
180 count -= copy;