a692879057fb3fecde4be869996fc47120b5fec1
[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 8295 2007-08-11 17:57:24Z michi $
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/vm.h"
47
48
49 /* _Jv_getcwd ******************************************************************
50
51    Return the current working directory.
52
53    RETURN VALUE:
54        pointer to a char array allocated by MNEW, or
55            NULL if memory could not be allocated.
56
57 *******************************************************************************/
58
59 char *_Jv_getcwd(void)
60 {
61         char *buf;
62         s4    size;
63
64         size = 1024;
65
66         buf = MNEW(char, size);
67
68         while (buf) {
69                 if (getcwd(buf, size) != NULL)
70                         return buf;
71
72                 MFREE(buf, char, size);
73
74                 /* too small buffer or a more serious problem */
75
76                 if (errno != ERANGE)
77                         vm_abort("getcwd failed: %s", 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  */