helper: fix code formatting
[openocd/libswd.git] / src / helper / replacements.c
blob583e6162a862bc606104cf433e72da68310e029c
1 /***************************************************************************
2 * Copyright (C) 2006 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
7 * *
8 * Copyright (C) 2008 by Spencer Oliver *
9 * spen@spen-soft.co.uk *
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
20 * *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 ***************************************************************************/
26 /* DANGER!!!! These must be defined *BEFORE* replacements.h and the malloc() macro!!!! */
28 #include <stdlib.h>
29 #include <string.h>
31 * clear_malloc
33 * will alloc memory and clear it
35 void *clear_malloc(size_t size)
37 void *t = malloc(size);
38 if (t != NULL)
39 memset(t, 0x00, size);
40 return t;
43 void *fill_malloc(size_t size)
45 void *t = malloc(size);
46 if (t != NULL) {
47 /* We want to initialize memory to some known bad state.
48 * 0 and 0xff yields 0 and -1 as integers, which often
49 * have meaningful values. 0x5555... is not often a valid
50 * integer and is quite easily spotted in the debugger
51 * also it is almost certainly an invalid address */
52 memset(t, 0x55, size);
54 return t;
57 #define IN_REPLACEMENTS_C
58 #ifdef HAVE_CONFIG_H
59 #include "config.h"
60 #endif
61 #ifdef HAVE_STRINGS_H
62 #include <strings.h>
63 #endif
65 #ifdef _WIN32
66 #include <io.h>
67 #endif
69 /* replacements for gettimeofday */
70 #ifndef HAVE_GETTIMEOFDAY
72 /* Windows */
73 #ifdef _WIN32
75 #ifndef __GNUC__
76 #define EPOCHFILETIME (116444736000000000i64)
77 #else
78 #define EPOCHFILETIME (116444736000000000LL)
79 #endif
81 int gettimeofday(struct timeval *tv, struct timezone *tz)
83 FILETIME ft;
84 LARGE_INTEGER li;
85 __int64 t;
86 static int tzflag;
88 if (tv) {
89 GetSystemTimeAsFileTime(&ft);
90 li.LowPart = ft.dwLowDateTime;
91 li.HighPart = ft.dwHighDateTime;
92 t = li.QuadPart; /* In 100-nanosecond intervals */
93 t -= EPOCHFILETIME; /* Offset to the Epoch time */
94 t /= 10; /* In microseconds */
95 tv->tv_sec = (long)(t / 1000000);
96 tv->tv_usec = (long)(t % 1000000);
99 if (tz) {
100 if (!tzflag) {
101 _tzset();
102 tzflag++;
104 tz->tz_minuteswest = _timezone / 60;
105 tz->tz_dsttime = _daylight;
108 return 0;
110 #endif /* _WIN32 */
112 #endif /* HAVE_GETTIMEOFDAY */
114 #ifndef HAVE_STRNLEN
115 size_t strnlen(const char *s, size_t maxlen)
117 const char *end = (const char *)memchr(s, '\0', maxlen);
118 return end ? (size_t) (end - s) : maxlen;
120 #endif
122 #ifndef HAVE_STRNDUP
123 char *strndup(const char *s, size_t n)
125 size_t len = strnlen(s, n);
126 char *new = (char *) malloc(len + 1);
128 if (new == NULL)
129 return NULL;
131 new[len] = '\0';
132 return (char *) memcpy(new, s, len);
134 #endif
136 #ifdef _WIN32
137 int win_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv)
139 DWORD ms_total, limit;
140 HANDLE handles[MAXIMUM_WAIT_OBJECTS];
141 int handle_slot_to_fd[MAXIMUM_WAIT_OBJECTS];
142 int n_handles = 0, i;
143 fd_set sock_read, sock_write, sock_except;
144 fd_set aread, awrite, aexcept;
145 int sock_max_fd = -1;
146 struct timeval tvslice;
147 int retcode;
149 #define SAFE_FD_ISSET(fd, set) (set != NULL && FD_ISSET(fd, set))
151 /* calculate how long we need to wait in milliseconds */
152 if (tv == NULL)
153 ms_total = INFINITE;
154 else {
155 ms_total = tv->tv_sec * 1000;
156 ms_total += tv->tv_usec / 1000;
159 FD_ZERO(&sock_read);
160 FD_ZERO(&sock_write);
161 FD_ZERO(&sock_except);
163 /* build an array of handles for non-sockets */
164 for (i = 0; i < max_fd; i++) {
165 if (SAFE_FD_ISSET(i, rfds) || SAFE_FD_ISSET(i, wfds) || SAFE_FD_ISSET(i, efds)) {
166 intptr_t handle = (intptr_t) _get_osfhandle(i);
167 handles[n_handles] = (HANDLE)handle;
168 if (handles[n_handles] == INVALID_HANDLE_VALUE) {
169 /* socket */
170 if (SAFE_FD_ISSET(i, rfds))
171 FD_SET(i, &sock_read);
172 if (SAFE_FD_ISSET(i, wfds))
173 FD_SET(i, &sock_write);
174 if (SAFE_FD_ISSET(i, efds))
175 FD_SET(i, &sock_except);
176 if (i > sock_max_fd)
177 sock_max_fd = i;
178 } else {
179 handle_slot_to_fd[n_handles] = i;
180 n_handles++;
185 if (n_handles == 0) {
186 /* plain sockets only - let winsock handle the whole thing */
187 return select(max_fd, rfds, wfds, efds, tv);
190 /* mixture of handles and sockets; lets multiplex between
191 * winsock and waiting on the handles */
193 FD_ZERO(&aread);
194 FD_ZERO(&awrite);
195 FD_ZERO(&aexcept);
197 limit = GetTickCount() + ms_total;
198 do {
199 retcode = 0;
201 if (sock_max_fd >= 0) {
202 /* overwrite the zero'd sets here; the select call
203 * will clear those that are not active */
204 aread = sock_read;
205 awrite = sock_write;
206 aexcept = sock_except;
208 tvslice.tv_sec = 0;
209 tvslice.tv_usec = 100000;
211 retcode = select(sock_max_fd + 1, &aread, &awrite, &aexcept, &tvslice);
213 if (n_handles > 0) {
214 /* check handles */
215 DWORD wret;
217 wret = MsgWaitForMultipleObjects(n_handles,
218 handles,
219 FALSE,
220 retcode > 0 ? 0 : 100,
221 QS_ALLEVENTS);
223 if (wret == WAIT_TIMEOUT) {
224 /* set retcode to 0; this is the default.
225 * select() may have set it to something else,
226 * in which case we leave it alone, so this branch
227 * does nothing */
229 } else if (wret == WAIT_FAILED) {
230 if (retcode == 0)
231 retcode = -1;
232 } else {
233 if (retcode < 0)
234 retcode = 0;
235 for (i = 0; i < n_handles; i++) {
236 if (WAIT_OBJECT_0 == WaitForSingleObject(handles[i], 0)) {
237 if (SAFE_FD_ISSET(handle_slot_to_fd[i], rfds)) {
238 DWORD dwBytes;
239 intptr_t handle = (intptr_t) _get_osfhandle(
240 handle_slot_to_fd[i]);
242 if (PeekNamedPipe((HANDLE)handle, NULL, 0,
243 NULL, &dwBytes, NULL)) {
244 /* check to see if gdb pipe has data available */
245 if (dwBytes) {
246 FD_SET(handle_slot_to_fd[i], &aread);
247 retcode++;
249 } else {
250 FD_SET(handle_slot_to_fd[i], &aread);
251 retcode++;
254 if (SAFE_FD_ISSET(handle_slot_to_fd[i], wfds)) {
255 FD_SET(handle_slot_to_fd[i], &awrite);
256 retcode++;
258 if (SAFE_FD_ISSET(handle_slot_to_fd[i], efds)) {
259 FD_SET(handle_slot_to_fd[i], &aexcept);
260 retcode++;
266 } while (retcode == 0 && (ms_total == INFINITE || GetTickCount() < limit));
268 if (rfds)
269 *rfds = aread;
270 if (wfds)
271 *wfds = awrite;
272 if (efds)
273 *efds = aexcept;
275 return retcode;
277 #endif