Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e3c772f772641913aa25d6d02b57c8156f94cd20 (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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
/*******************************************************************************
 * Copyright (c) 2004, 2015 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)
 *     Bryan Wilkinson (QNX)
 *     Sergey Prigogin (Google)
 *******************************************************************************/
package org.eclipse.cdt.internal.core.dom.parser;

import org.eclipse.cdt.core.dom.ILinkage;
import org.eclipse.cdt.core.dom.IName;
import org.eclipse.cdt.core.dom.ast.DOMException;
import org.eclipse.cdt.core.dom.ast.EScopeKind;
import org.eclipse.cdt.core.dom.ast.IASTFileLocation;
import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IASTNode;
import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit;
import org.eclipse.cdt.core.dom.ast.IBinding;
import org.eclipse.cdt.core.dom.ast.IProblemBinding;
import org.eclipse.cdt.core.dom.ast.IScope;
import org.eclipse.cdt.core.dom.ast.IType;
import org.eclipse.cdt.core.dom.ast.IValue;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTTranslationUnit;
import org.eclipse.cdt.core.index.IIndexFileSet;
import org.eclipse.cdt.core.parser.util.CharArrayUtils;
import org.eclipse.cdt.internal.core.dom.Linkage;
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPEvaluation;
import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.CPPSemantics;
import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.CPPVisitor;
import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.EvalFixed;
import org.eclipse.cdt.internal.core.parser.ParserMessages;
import org.eclipse.core.runtime.PlatformObject;

import com.ibm.icu.text.MessageFormat;

/**
 * Implementation of problem bindings
 */
public class ProblemBinding extends PlatformObject implements IProblemBinding, IASTInternalScope {
	public static ProblemBinding NOT_INITIALIZED= new ProblemBinding(null, 0);

    protected final int id;
    protected char[] arg;
    protected IASTNode node;
	private IBinding[] candidateBindings;

    public ProblemBinding(IASTName name, int id) {
    	this(name, id, null, null);
    }

    public ProblemBinding(IASTName name, int id, IBinding[] candidateBindings) {
    	this(name, id, null, candidateBindings);
    }

    /**
     * @param name the name that could not be resolved, may be {@code null}
     * @param point the point in code where the problem was encountered
     * @param id the ID of the problem, see {@link IProblemBinding}
     */
    public ProblemBinding(IASTName name, IASTNode point, int id) {
    	this(name, point, id, null);
    }

    /**
     * @param name the name that could not be resolved, may be {@code null}
     * @param point the point in code where the problem was encountered
     * @param id the ID of the problem, see {@link IProblemBinding}
     * @param candidateBindings candidate bindings that were rejected due to ambiguity or for other
     *     reasons, may be {@code null}
     */
    public ProblemBinding(IASTName name, IASTNode point, int id, IBinding[] candidateBindings) {
        this.id = id;
        if (name != null && name.getTranslationUnit() != null) {
        	this.node = name;
        } else {
        	this.node = point;
        	if (name != null) {
        		this.arg = name.getSimpleID();
        	} else if (candidateBindings != null && candidateBindings.length != 0) {
        		this.arg = candidateBindings[0].getNameCharArray();
        	}
        }
		this.candidateBindings = candidateBindings;
    }

    public ProblemBinding(IASTNode node, int id, char[] arg) {
    	this(node, id, arg, null);
    }

    public ProblemBinding(IASTNode node, int id, char[] arg, IBinding[] candidateBindings) {
        this.id = id;
        this.arg = arg;
        this.node = node;
		this.candidateBindings = candidateBindings;
    }

    @Override
	public EScopeKind getKind() {
		return EScopeKind.eLocal;
	}

    @Override
	public IASTNode getASTNode() {
        return node;
    }

	@Override
	public IBinding[] getCandidateBindings() {
		return candidateBindings != null ? candidateBindings : IBinding.EMPTY_BINDING_ARRAY;
	}

	public void setCandidateBindings(IBinding[] foundBindings) {
		candidateBindings= foundBindings;
	}

    @Override
	public int getID() {
        return id;
    }

    @Override
	public String getMessage() {
        String msg = ParserMessages.getProblemPattern(this);
        if (msg == null)
        	return ""; //$NON-NLS-1$

        if (arg == null) {
        	if (node instanceof IASTName) {
            	arg= ((IASTName) node).toCharArray();
        	} else if (candidateBindings != null && candidateBindings.length != 0) {
        		arg = candidateBindings[0].getNameCharArray();
        	}
        }

        if (arg != null) {
            msg = MessageFormat.format(msg, new Object[] { new String(arg) });
        }

		return msg;
    }

    @Override
	public String getName() {
        return node instanceof IASTName ? new String(((IASTName) node).getSimpleID()) : CPPSemantics.EMPTY_NAME;
    }

    @Override
	public char[] getNameCharArray() {
        return node instanceof IASTName ? ((IASTName) node).getSimpleID() : CharArrayUtils.EMPTY;
    }

    @Override
	public IScope getScope() throws DOMException {
        throw new DOMException(this);
    }

    @Override
	public IASTNode getPhysicalNode() {
        return getASTNode();
    }

    @Override
	public Object clone() {
    	// Don't clone problems.
        return this;
    }

    @Override
	public IScope getParent() throws DOMException {
        throw new DOMException(this);
    }

    @Override
	public IBinding[] find(String name, IASTTranslationUnit tu) {
        return IBinding.EMPTY_BINDING_ARRAY;
    }

    @Override
	public IBinding[] find(String name) {
        return IBinding.EMPTY_BINDING_ARRAY;
    }

	@Override
	public IName getScopeName() {
		return null;
	}

    @Override
	public void addName(IASTName name) {
    }

    @Override
	public IBinding getBinding(IASTName name, boolean resolve) {
        return null;
    }

	@Override
	public final IBinding[] getBindings(IASTName name, boolean resolve, boolean prefix) {
        return IBinding.EMPTY_BINDING_ARRAY;
	}

    @Override
	public IBinding getBinding(IASTName name, boolean resolve, IIndexFileSet fileSet) {
        return null;
    }

	@Deprecated
	@Override
	public IBinding[] getBindings(IASTName name, boolean resolve, boolean prefixLookup, IIndexFileSet fileSet) {
		return getBindings(new ScopeLookupData(name, resolve, prefixLookup));
	}

    @Override
	public IBinding[] getBindings(ScopeLookupData lookup) {
        return IBinding.EMPTY_BINDING_ARRAY;
    }

    @Override
	public boolean isSameType(IType type) {
        return type == this;
    }

	@Override
	public String getFileName() {
		if (node != null)
			return node.getContainingFilename();

		return ""; //$NON-NLS-1$
	}

	@Override
	public int getLineNumber() {
		if (node != null) {
			IASTFileLocation fileLoc = node.getFileLocation();
			if (fileLoc != null)
				return fileLoc.getStartingLineNumber();
		}
		return -1;
	}

	@Override
	public void addBinding(IBinding binding) {
	}

	@Override
	public ILinkage getLinkage() {
		return Linkage.NO_LINKAGE;
	}

	@Override
	public String toString() {
		return getMessage();
	}

	@Override
	public IBinding getOwner() {
		if (node instanceof IASTName) {
			IASTTranslationUnit tu= node.getTranslationUnit();
			if (tu instanceof ICPPASTTranslationUnit) {
				return CPPVisitor.findNameOwner((IASTName) node, true);
			}
		}
		return null;
	}

	public void setASTNode(IASTName name) {
		if (name != null) {
			this.node= name;
			this.arg= null;
		}
	}

	@Override
	public void populateCache() {
	}

	@Override
	public void removeNestedFromCache(IASTNode container) {
	}

	// Dummy methods for derived classes.
    public IType getType() {
    	return new ProblemType(getID());
    }

    public boolean isStatic() {
    	return false;
    }

    public String[] getQualifiedName() throws DOMException {
        throw new DOMException(this);
    }

    public char[][] getQualifiedNameCharArray() throws DOMException {
        throw new DOMException(this);
    }

    public boolean isGloballyQualified() throws DOMException {
        throw new DOMException(this);
    }

    public boolean isMutable() {
    	return false;
    }

    public boolean isExtern() {
    	return false;
    }

    public boolean isExternC() {
    	return false;
    }

    public boolean isAuto() {
    	return false;
    }

    public boolean isRegister() {
    	return false;
    }

    public IValue getInitialValue() {
		return null;
	}

    public ICPPEvaluation getInitializerEvaluation() {
    	return EvalFixed.INCOMPLETE;
	}

    public boolean isAnonymous() {
		return false;
	}

    public boolean isDeleted() {
		return false;
	}

    public boolean isInline() {
    	return false;
    }

    public boolean takesVarArgs() {
    	return false;
    }

    public IType[] getExceptionSpecification() {
        return null;
	}

	public boolean hasParameterPack() {
		return false;
	}

	public boolean isVirtual() {
		return false;
	}

	public boolean isPureVirtual() {
		return false;
	}

	public boolean isImplicit() {
		return false;
	}

	public boolean isExplicit() {
        return false;
    }

	public boolean hasDefaultValue() {
        return false;
	}

	public IValue getDefaultValue() {
		return null;
	}

	public boolean isParameterPack() {
		return false;
	}
}

Back to the top