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