Skip to main content
summaryrefslogtreecommitdiffstats
blob: 17418ca39b5336d400a8d6a030f34657df7c8968 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/*******************************************************************************
 * Copyright (c) 2004, 2012 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Andrew Niefer (IBM Corporation) - initial API and implementation
 *     Markus Schorn (Wind River Systems)
 *     Thomas Corbat (IFS)
 *******************************************************************************/
package org.eclipse.cdt.internal.core.dom.parser.cpp;

import org.eclipse.cdt.core.dom.ast.IASTCompositeTypeSpecifier;
import org.eclipse.cdt.core.dom.ast.IASTDeclaration;
import org.eclipse.cdt.core.dom.ast.IASTDeclarator;
import org.eclipse.cdt.core.dom.ast.IASTFunctionDefinition;
import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IASTNode;
import org.eclipse.cdt.core.dom.ast.IASTSimpleDeclaration;
import org.eclipse.cdt.core.dom.ast.IBinding;
import org.eclipse.cdt.core.dom.ast.IFunctionType;
import org.eclipse.cdt.core.dom.ast.IType;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTCompositeTypeSpecifier;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTFunctionDeclarator;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTTemplateDeclaration;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTVisibilityLabel;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassScope;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassType;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPFunctionType;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPMethod;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPParameter;
import org.eclipse.cdt.core.parser.util.CharArrayUtils;
import org.eclipse.cdt.internal.core.dom.parser.ASTInternal;
import org.eclipse.cdt.internal.core.dom.parser.ASTQueries;
import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.CPPVisitor;
import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil;

/**
 * Binding for implicit methods, base class for implicit constructors.
 */
public class CPPImplicitMethod extends CPPImplicitFunction implements ICPPMethod {
    
    public CPPImplicitMethod(ICPPClassScope scope, char[] name, ICPPFunctionType type, ICPPParameter[] params) {
		super(name, scope, type, params, false);
	}
   
	@Override
	public int getVisibility() {
		IASTDeclaration decl= getPrimaryDeclaration();
		if (decl == null) {
			// 12.1-5, 12.8-10 Implicit constructors and assignment operators are public.
			return ICPPASTVisibilityLabel.v_public;
		}
		
		IASTNode parent= decl.getParent();
		while (parent instanceof ICPPASTTemplateDeclaration) {
			decl= (ICPPASTTemplateDeclaration) parent;
			parent= parent.getParent();
		}
		if (parent instanceof IASTCompositeTypeSpecifier) {
			IASTCompositeTypeSpecifier cls = (IASTCompositeTypeSpecifier) decl.getParent();
			IASTDeclaration[] members = cls.getMembers();
			ICPPASTVisibilityLabel vis = null;
			for (IASTDeclaration member : members) {
				if (member instanceof ICPPASTVisibilityLabel) {
					vis = (ICPPASTVisibilityLabel) member;
				} else if (member == decl) {
					break;
				}
			}
			if (vis != null) {
				return vis.getVisibility();
			} else if (cls.getKey() == ICPPASTCompositeTypeSpecifier.k_class) {
				return ICPPASTVisibilityLabel.v_private;
			} 
		}
        return ICPPASTVisibilityLabel.v_public;
    }
	
	@Override
	public ICPPClassType getClassOwner() {
		ICPPClassScope scope = (ICPPClassScope) getScope();
		return scope.getClassType();
	}
	
	public IASTDeclaration getPrimaryDeclaration() {
		// First check if we already know it.
		if (declarations != null) {
			for (IASTDeclarator dtor : declarations) {
				if (dtor == null)
					break;

				IASTDeclaration decl = (IASTDeclaration) ASTQueries.findOutermostDeclarator(dtor).getParent();
				IASTNode parent= decl.getParent();
				while (parent instanceof ICPPASTTemplateDeclaration)
					parent= parent.getParent();
				if (parent instanceof ICPPASTCompositeTypeSpecifier)
					return decl;
			}
		}

		IFunctionType ftype = getType();
		IType[] params = ftype.getParameterTypes();

		ICPPASTCompositeTypeSpecifier compSpec =
				(ICPPASTCompositeTypeSpecifier) ASTInternal.getPhysicalNodeOfScope(getScope());
		if (compSpec == null) {
			return null;
		}
		IASTDeclaration[] members = compSpec.getMembers();
		for (IASTDeclaration member : members) {
			while (member instanceof ICPPASTTemplateDeclaration)
				member = ((ICPPASTTemplateDeclaration) member).getDeclaration();
			
			IASTDeclarator[] ds;
			if (member instanceof IASTSimpleDeclaration) {
				ds = ((IASTSimpleDeclaration) member).getDeclarators();
			} else if (member instanceof IASTFunctionDefinition) {
				ds = new IASTDeclarator[] {((IASTFunctionDefinition) member).getDeclarator()};
			} else {
				continue;
			}
			
			for (IASTDeclarator dtor : ds) {
				IASTName name = ASTQueries.findInnermostDeclarator(dtor).getName();
				if (ASTQueries.findTypeRelevantDeclarator(dtor) instanceof ICPPASTFunctionDeclarator
						&& CharArrayUtils.equals(name.getLookupKey(), getNameCharArray())) {
					IType t0 = CPPVisitor.createType(dtor);
					boolean ok = false;
					if (t0 instanceof IFunctionType) {
						IFunctionType t = (IFunctionType) t0;
						IType[] ps = t.getParameterTypes();
						if (ps.length == params.length) {
							int idx = 0;
							for (; idx < ps.length && ps[idx] != null; idx++) {
								if (!ps[idx].isSameType(params[idx]))
									break;
							}
							ok = idx == ps.length;
						} else if (ps.length == 0) {
							if (params.length == 1) {
								ok = SemanticUtil.isVoidType(params[0]);
							}
						}
					} else {
						ok = false;
					}
					if (ok) {
						name.setBinding(this);
						if (member instanceof IASTSimpleDeclaration) {
							ASTInternal.addDeclaration(this, dtor);
						} else if (member instanceof IASTFunctionDefinition) {
							ASTInternal.addDefinition(this, dtor);
						}
						return member;
					}
				}
			}
		}
		return null;
	}

    @Override
	public boolean isVirtual() {
        return false;
    }

	@Override
	public boolean isDestructor() {
		char[] n = getNameCharArray();
		if (n != null && n.length > 0)
			return n[0] == '~';
		return false;
	}

	@Override
	public boolean isImplicit() {
		return getPrimaryDeclaration() == null;
	}
	
    @Override
	public boolean isExplicit() {
        return false;
    }
	
	@Override
	public boolean isPureVirtual() {
		return false;
	}

	@Override
	public boolean isOverride() {
		return false;
	}

	@Override
	public boolean isFinal() {
		return false;
	}

	@Override
	public IBinding getOwner() {
		return getClassOwner();
	}

	@Override
	public IType[] getExceptionSpecification() {
		return ClassTypeHelper.getInheritedExceptionSpecification(this, null);
	}
}

Back to the top