* Removed all Id tags.
[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 */
32
33
34 #include "config.h"
35
36 #include <assert.h>
37 #include <errno.h>
38 #include <stdarg.h>
39 #include <unistd.h>
40
41 #include "vm/types.h"
42
43 #include "mm/memory.h"
44 #include "vm/vm.h"
45
46
47 /* _Jv_getcwd ******************************************************************
48
49    Return the current working directory.
50
51    RETURN VALUE:
52        pointer to a char array allocated by MNEW, or
53            NULL if memory could not be allocated.
54
55 *******************************************************************************/
56
57 char *_Jv_getcwd(void)
58 {
59         char *buf;
60         s4    size;
61
62         size = 1024;
63
64         buf = MNEW(char, size);
65
66         while (buf) {
67                 if (getcwd(buf, size) != NULL)
68                         return buf;
69
70                 MFREE(buf, char, size);
71
72                 /* too small buffer or a more serious problem */
73
74                 if (errno != ERANGE)
75                         vm_abort("getcwd failed: %s", strerror(errno));
76
77                 /* double the buffer size */
78
79                 size *= 2;
80
81                 buf = MNEW(char, size);
82         }
83
84         return NULL;
85 }
86
87
88 /* get_variable_message_length *************************************************
89
90    This function simluates the print of a variable message and
91    determines so the message length;
92
93 *******************************************************************************/
94
95 int get_variable_message_length(const char *fmt, va_list ap)
96 {
97         int n;
98
99         n = vsnprintf(NULL, 0, fmt, ap);
100
101 #if defined(__IRIX__)
102         /* We know that IRIX returns -1 if the buffer is NULL */
103
104         if (n == -1) {
105                 char *p, *np;
106                 s4    size;
107
108                 size = 100;                     /* start with 100-bytes               */
109
110                 p = MNEW(char, size);
111
112                 while (1) {
113                         /* Try to print in the allocated space. */
114
115                         n = vsnprintf(p, size, fmt, ap);
116
117                         /* If that worked, return the length. */
118                         if (n > -1 && n < size)
119                                 return n;
120
121                         /* Else try again with more space. */
122                         size *= 2;  /* twice the old size */
123
124                         if ((np = MREALLOC(p, char, size, size)) == NULL) {
125                                 assert(0);
126                         } else {
127                                 p = np;
128                         }
129                 }
130         }
131 #endif
132
133         return n;
134 }
135
136
137 /*
138  * These are local overrides for various environment variables in Emacs.
139  * Please do not remove this and leave it at the end of the file, where
140  * Emacs will automagically detect them.
141  * ---------------------------------------------------------------------
142  * Local variables:
143  * mode: c
144  * indent-tabs-mode: t
145  * c-basic-offset: 4
146  * tab-width: 4
147  * End:
148  */