Include new proper header files.
[cacao.git] / src / vm / access.h
1 /* src/vm/access.h - checking access rights
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    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., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Edwin Steiner
28
29    Changes:
30
31    $Id: access.h 2111 2005-03-29 21:28:24Z twisti $
32
33 */
34
35 #ifndef _ACCESS_H
36 #define _ACCESS_H
37
38 #include "types.h"
39 #include "vm/class.h"
40
41
42 /* macros *********************************************************************/
43
44 #define SAME_PACKAGE(a,b)                                  \
45                         ((a)->classloader == (b)->classloader &&       \
46                          (a)->packagename == (b)->packagename)
47
48 /* function prototypes ********************************************************/
49
50 /* is_accessible_class *********************************************************
51  
52    Check if a class is accessible from another class
53   
54    IN:
55        referer..........the class containing the reference
56        cls..............the result of resolving the reference
57   
58    RETURN VALUE:
59        true.............access permitted
60        false............access denied
61    
62    NOTE:
63        This function performs the checks listed in section 5.4.4.
64            "Access Control" of "The Java(TM) Virtual Machine Specification,
65            Second Edition".
66
67 *******************************************************************************/
68
69 bool
70 is_accessible_class(classinfo *referer,classinfo *cls);
71
72 /* is_accessible_member ********************************************************
73  
74    Check if a field or method is accessible from a given class
75   
76    IN:
77        referer..........the class containing the reference
78        cls..............the class declaring the member
79        memberflags......the access flags of the member
80   
81    RETURN VALUE:
82        true.............access permitted
83        false............access denied
84
85    NOTE:
86        This function only performs the checks listed in section 5.4.4.
87            "Access Control" of "The Java(TM) Virtual Machine Specification,
88            Second Edition".
89
90            In particular a special condition for protected access with is
91            part of the verification process according to the spec is not
92            checked in this function.
93    
94 *******************************************************************************/
95
96 bool
97 is_accessible_member(classinfo *referer,classinfo *declarer,s4 memberflags);
98
99 #endif /* _ACCESS_H */
100
101 /*
102  * These are local overrides for various environment variables in Emacs.
103  * Please do not remove this and leave it at the end of the file, where
104  * Emacs will automagically detect them.
105  * ---------------------------------------------------------------------
106  * Local variables:
107  * mode: c
108  * indent-tabs-mode: t
109  * c-basic-offset: 4
110  * tab-width: 4
111  * End:
112  * vim:noexpandtab:sw=4:ts=4:
113  */
114