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