Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 41779d21ff684e5ef6db0729f29d5de8f70b17b8 (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
/*******************************************************************************
 * Copyright (c) 2018 Institute for Software, HSR Hochschule fuer Technik
 * Rapperswil, University of applied sciences.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Thomas Corbat (IFS) - Initial API and implementation
 *******************************************************************************/

package org.eclipse.cdt.internal.core.dom.parser.cpp;

import java.util.Arrays;

import org.eclipse.cdt.core.dom.ast.ASTVisitor;
import org.eclipse.cdt.core.dom.ast.IASTDeclSpecifier;
import org.eclipse.cdt.core.dom.ast.IASTImplicitName;
import org.eclipse.cdt.core.dom.ast.IASTInitializer;
import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IBinding;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTFunctionDeclarator.RefQualifier;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTStructuredBindingDeclaration;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPBinding;
import org.eclipse.cdt.core.parser.util.ArrayUtil;
import org.eclipse.cdt.internal.core.dom.parser.ASTNode;
import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.EvalFixed;
import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.ExecDeclarator;
import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.ExecIncomplete;
import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.ExecSimpleDeclaration;
import org.eclipse.jdt.annotation.NonNull;

public class CPPASTStructuredBindingDeclaration extends CPPASTSimpleDeclaration
		implements ICPPASTStructuredBindingDeclaration {

	private RefQualifier refQualifier;
	private IASTName[] names;
	private IASTInitializer initializer;
	private IASTImplicitName implicitInitializerName;

	public CPPASTStructuredBindingDeclaration() {
	}

	public CPPASTStructuredBindingDeclaration(IASTDeclSpecifier declSpecifier, RefQualifier refQualifier,
			IASTName[] names, IASTInitializer initializer) {
		super(declSpecifier);
		this.refQualifier = refQualifier;
		for (IASTName name : names) {
			addName(name);
		}
		setInitializer(initializer);
	}

	@Override
	public RefQualifier getRefQualifier() {
		return refQualifier;
	}

	public void setRefQualifier(RefQualifier refQualifier) {
		assertNotFrozen();
		this.refQualifier = refQualifier;
	}

	@Override
	public IASTName[] getNames() {
		if (names == null) {
			return IASTName.EMPTY_NAME_ARRAY;
		}
		names = ArrayUtil.trim(names);
		return names;
	}

	@Override
	public IASTInitializer getInitializer() {
		return initializer;
	}

	@Override
	public boolean accept(ASTVisitor action) {
		if (action.shouldVisitDeclarations) {
			switch (action.visit(this)) {
			case ASTVisitor.PROCESS_ABORT:
				return false;
			case ASTVisitor.PROCESS_SKIP:
				return true;
			default:
				break;
			}
		}

		IASTDeclSpecifier declSpecifier = getDeclSpecifier();
		if (declSpecifier != null && !declSpecifier.accept(action)) {
			return false;
		}

		for (IASTName name : getNames()) {
			if (!name.accept(action)) {
				return false;
			}
		}

		if (initializer != null && !initializer.accept(action)) {
			return false;
		}

		if (action.shouldVisitImplicitNames && !getImplicitNames()[0].accept(action)) {
			return false;
		}

		if (action.shouldVisitDeclarations) {
			switch (action.leave(this)) {
			case ASTVisitor.PROCESS_ABORT:
				return false;
			case ASTVisitor.PROCESS_SKIP:
				return true;
			default:
				break;
			}
		}
		return true;
	}

	protected void addName(IASTName name) {
		assertNotFrozen();
		if (name != null) {
			names = ArrayUtil.append(IASTName.class, names, name);
			name.setParent(this);
			name.setPropertyInParent(IDENTIFIER);
		}
	}

	protected void setInitializer(IASTInitializer initializer) {
		assertNotFrozen();
		if (initializer != null) {
			this.initializer = initializer;
			initializer.setParent(this);
			initializer.setPropertyInParent(INITIALIZER);
		}
	}

	@Override
	public CPPASTStructuredBindingDeclaration copy() {
		return copy(CopyStyle.withoutLocations);
	}

	@Override
	public CPPASTStructuredBindingDeclaration copy(CopyStyle style) {
		CPPASTStructuredBindingDeclaration copy = new CPPASTStructuredBindingDeclaration();
		return copy(copy, style);
	}

	protected <T extends CPPASTStructuredBindingDeclaration> T copy(@NonNull T copy, CopyStyle style) {
		copy.setRefQualifier(refQualifier);
		if (initializer != null) {
			copy.setInitializer(initializer.copy(style));
		}

		for (IASTName name : names) {
			if (name == null) {
				break;
			}
			copy.addName(name.copy(style));
		}
		return super.copy(copy, style);
	}

	@Override
	public ICPPExecution getExecution() {
		IASTName[] names = getNames();
		ICPPExecution[] nameExecutions = Arrays.stream(names).map(name -> {
			IBinding binding = name.resolveBinding();
			if (binding instanceof CPPVariable) {
				CPPVariable variable = (CPPVariable) binding;
				ICPPEvaluation initializerEval = variable.getInitializerEvaluation();
				return new ExecDeclarator((ICPPBinding) binding, initializerEval);
			}
			return ExecIncomplete.INSTANCE;
		}).toArray(ICPPExecution[]::new);
		return new ExecSimpleDeclaration(nameExecutions);
	}

	@Override
	public int getRoleForName(IASTName name) {
		return r_definition;
	}

	@Override
	public IASTImplicitName[] getImplicitNames() {
		if (implicitInitializerName == null) {
			ICPPEvaluation initializerEvaluation = CPPVariable.evaluationOfInitializer(initializer);
			if (initializerEvaluation == null) {
				initializerEvaluation = EvalFixed.INCOMPLETE;
			}
			CPPASTImplicitName implicitName = new CPPASTImplicitName(this);
			implicitName.setIsDefinition(true);
			if (initializer != null) {
				implicitName.setOffsetAndLength((ASTNode) initializer);
			}
			implicitInitializerName = implicitName;
			CPPStructuredBindingComposite implicitInitializerVariable = new CPPStructuredBindingComposite(
					implicitInitializerName, initializerEvaluation);
			implicitInitializerName.setBinding(implicitInitializerVariable);
		}
		return new IASTImplicitName[] { implicitInitializerName };
	}
}

Back to the top