Removed return value from descriptor_params_from_paramtypes.
[cacao.git] / src / vm / string.hpp
1 /* src/vm/string.hpp - string header
2
3    Copyright (C) 1996-2005, 2006, 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #ifndef _STRINGLOCAL_H
27 #define _STRINGLOCAL_H
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 typedef struct literalstring literalstring;
34
35
36 #include "config.h"
37
38 #include "vm/types.h"
39
40 #include "toolbox/hashtable.h"
41
42 #include "vm/global.h"
43 #include "vm/os.hpp"
44 #include "vm/utf8.h"
45
46
47 /* data structure of internal javastrings stored in global hashtable **********/
48
49 struct literalstring {
50         literalstring     *hashlink;        /* link for external hash chain       */
51         java_object_t     *string;  
52 };
53
54
55 /* function prototypes ********************************************************/
56
57 /* initialize string subsystem */
58 bool string_init(void);
59
60 void stringtable_update(void);
61
62 /* creates a new object of type java/lang/String from a utf-text */
63 java_handle_t *javastring_new(utf *text);
64
65 /* creates a new object of type java/lang/String from a utf-text, changes slashes to dots */
66 java_handle_t *javastring_new_slash_to_dot(utf *text);
67
68 /* creates a new object of type java/lang/String from an ASCII c-string */
69 java_handle_t *javastring_new_from_ascii(const char *text);
70
71 /* creates a new object of type java/lang/String from UTF-8 */
72 java_handle_t *javastring_new_from_utf_string(const char *utfstr);
73
74 /* creates a new object of type java/lang/String from (possibly invalid) UTF-8 */
75 java_handle_t *javastring_safe_new_from_utf8(const char *text);
76
77 /* make c-string from a javastring (debugging) */
78 char *javastring_tochar(java_handle_t *string);
79
80 /* make utf symbol from javastring */
81 utf *javastring_toutf(java_handle_t *string, bool isclassname);
82
83 /* creates a new javastring with the text of the utf-symbol */
84 java_object_t *literalstring_new(utf *u);
85
86 java_handle_t *javastring_intern(java_handle_t *s);
87 void           javastring_fprint(java_handle_t *s, FILE *stream);
88
89 #ifdef __cplusplus
90 }
91 #endif
92
93 #endif /* _STRINGLOCAL_H */
94
95
96 /*
97  * These are local overrides for various environment variables in Emacs.
98  * Please do not remove this and leave it at the end of the file, where
99  * Emacs will automagically detect them.
100  * ---------------------------------------------------------------------
101  * Local variables:
102  * mode: c
103  * indent-tabs-mode: t
104  * c-basic-offset: 4
105  * tab-width: 4
106  * End:
107  * vim:noexpandtab:sw=4:ts=4:
108  */