* configure.ac (disassembler): Disabled by default, made too many
[cacao.git] / src / toolbox / util.c
1 /* src/toolbox/util.c - contains some utility functions
2
3    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    Contact: cacao@cacaojvm.org
26
27    Authors: Christian Thalinger
28
29    Changes:
30
31    $Id: util.c 5104 2006-07-10 17:22:18Z twisti $
32
33 */
34
35
36 #include "config.h"
37
38 #include <assert.h>
39 #include <errno.h>
40 #include <stdarg.h>
41 #include <unistd.h>
42 #include <sys/time.h>
43
44 #include "vm/types.h"
45
46 #include "mm/memory.h"
47 #include "vm/exceptions.h"
48 #include "vm/stringlocal.h"
49 #include "vm/vm.h"
50
51
52 /* _Jv_getcwd ******************************************************************
53
54    Return the current working directory.
55
56    RETURN VALUE:
57        pointer to a char array allocated by MNEW, or
58            NULL if memory could not be allocated.
59
60 *******************************************************************************/
61
62 char *_Jv_getcwd(void)
63 {
64         char *buf;
65         s4    size;
66
67         size = 1024;
68
69         buf = MNEW(char, size);
70
71         while (buf) {
72                 if (getcwd(buf, size) != NULL)
73                         return buf;
74
75                 MFREE(buf, char, size);
76
77                 /* too small buffer or a more serious problem */
78
79                 if (errno != ERANGE)
80                         throw_cacao_exception_exit(string_java_lang_InternalError,
81                                                                            strerror(errno));
82
83                 /* double the buffer size */
84
85                 size *= 2;
86
87                 buf = MNEW(char, size);
88         }
89
90         return NULL;
91 }
92
93
94 /* get_variable_message_length *************************************************
95
96    This function simluates the print of a variable message and
97    determines so the message length;
98
99 *******************************************************************************/
100
101 int get_variable_message_length(const char *fmt, va_list ap)
102 {
103         int n;
104
105         n = vsnprintf(NULL, 0, fmt, ap);
106
107 #if defined(__IRIX__)
108         /* We know that IRIX returns -1 if the buffer is NULL */
109
110         if (n == -1) {
111                 char *p, *np;
112                 s4    size;
113
114                 size = 100;                     /* start with 100-bytes               */
115
116                 p = MNEW(char, size);
117
118                 while (1) {
119                         /* Try to print in the allocated space. */
120
121                         n = vsnprintf(p, size, fmt, ap);
122
123                         /* If that worked, return the length. */
124                         if (n > -1 && n < size)
125                                 return n;
126
127                         /* Else try again with more space. */
128                         size *= 2;  /* twice the old size */
129
130                         if ((np = MREALLOC(p, char, size, size)) == NULL) {
131                                 assert(0);
132                         } else {
133                                 p = np;
134                         }
135                 }
136         }
137 #endif
138
139         return n;
140 }
141
142
143 /* util_current_time_millis ****************************************************
144
145    Return the current time in milliseconds.
146
147 *******************************************************************************/
148
149 s8 util_current_time_millis(void)
150 {
151         struct timeval tv;
152         s8             result;
153
154         if (gettimeofday(&tv, NULL) == -1)
155                 vm_abort("gettimeofday failed: %s", strerror(errno));
156
157         result = (s8) tv.tv_sec;
158         result *= 1000;
159         result += (tv.tv_usec / 1000);
160
161         return result;
162 }
163
164
165 /*
166  * These are local overrides for various environment variables in Emacs.
167  * Please do not remove this and leave it at the end of the file, where
168  * Emacs will automagically detect them.
169  * ---------------------------------------------------------------------
170  * Local variables:
171  * mode: c
172  * indent-tabs-mode: t
173  * c-basic-offset: 4
174  * tab-width: 4
175  * End:
176  */