* classcache_lookup_name, classcache_new_name: Speed up lookup in external
[cacao.git] / src / vm / access.c
1 /* vm/access.c - 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.c 3258 2005-09-21 19:38:49Z twisti $
32
33 */
34
35 #include <assert.h>
36 #include "vm/access.h"
37 #include "vm/builtin.h"
38
39 /****************************************************************************/
40 /* DEBUG HELPERS                                                            */
41 /****************************************************************************/
42
43 #ifdef NDEBUG
44 #define ACCESS_DEBUG
45 #endif
46
47 #ifdef ACCESS_DEBUG
48 #define ACCESS_ASSERT(cond)  assert(cond)
49 #else
50 #define ACCESS_ASSERT(cond)
51 #endif
52
53 /****************************************************************************/
54 /* ACCESS CHECKS                                                            */
55 /****************************************************************************/
56
57 /* for documentation see access.h */
58
59 bool is_accessible_class(classinfo *referer, classinfo *cls)
60 {
61         ACCESS_ASSERT(referer);
62         ACCESS_ASSERT(cls);
63
64         /* public classes are always accessible */
65         if (cls->flags & ACC_PUBLIC)
66                 return true;
67
68         /* a class in the same package is always accessible */
69         if (SAME_PACKAGE(referer, cls))
70                 return true;
71
72         /* a non-public class in another package is not accessible */
73         return false;
74 }
75
76
77 /* for documentation see access.h */
78 bool
79 is_accessible_member(classinfo *referer,classinfo *declarer,s4 memberflags)
80 {
81         ACCESS_ASSERT(referer);
82         ACCESS_ASSERT(declarer);
83         
84         /* public members are accessible */
85         if ((memberflags & ACC_PUBLIC) != 0)
86                 return true;
87
88         /* {declarer is not an interface} */
89
90         /* private members are only accessible by the class itself */
91         if ((memberflags & ACC_PRIVATE) != 0)
92                 return (referer == declarer);
93
94         /* {the member is protected or package private} */
95
96         /* protected and package private members are accessible in the same package */
97         if (SAME_PACKAGE(referer,declarer))
98                 return true;
99
100         /* package private members are not accessible outside the package */
101         if ((memberflags & ACC_PROTECTED) == 0)
102                 return false;
103
104         /* {the member is protected and declarer is in another package} */
105
106         /* a necessary condition for access is that referer is a subclass of declarer */
107         ACCESS_ASSERT(referer->linked && declarer->linked);
108         if (builtin_isanysubclass(referer,declarer))
109                 return true;
110
111         return false;
112 }
113
114 /*
115  * These are local overrides for various environment variables in Emacs.
116  * Please do not remove this and leave it at the end of the file, where
117  * Emacs will automagically detect them.
118  * ---------------------------------------------------------------------
119  * Local variables:
120  * mode: c
121  * indent-tabs-mode: t
122  * c-basic-offset: 4
123  * tab-width: 4
124  * End:
125  * vim:noexpandtab:sw=4:ts=4:
126  */
127