org.gradle.language.nativeplatform.internal.incremental.CollectingMacroLookup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.language.nativeplatform.internal.incremental;
import com.google.common.collect.Iterators;
import org.gradle.language.nativeplatform.internal.IncludeDirectives;
import java.io.File;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
public class CollectingMacroLookup implements MacroLookup {
private final List uncollected = new ArrayList();
private final IncludeDirectives includeDirectives;
private Map visible;
public CollectingMacroLookup(IncludeDirectives includeDirectives) {
this.includeDirectives = includeDirectives;
}
public CollectingMacroLookup() {
this(IncludeDirectives.EMPTY);
}
/**
* Appends a single file.
*/
public void append(File file, IncludeDirectives includeDirectives) {
if (!includeDirectives.hasMacros() && !includeDirectives.hasMacroFunctions()) {
// Ignore
return;
}
if (visible == null) {
visible = new LinkedHashMap();
visible.put(file, includeDirectives);
} else if (!visible.containsKey(file)) {
visible.put(file, includeDirectives);
}
}
/**
* Appends a source of macros
*/
public void append(MacroSource source) {
uncollected.add(source);
}
@Override
public Iterator iterator() {
collectAll();
Iterator initialDirectives = Iterators.singletonIterator(includeDirectives);
if (visible == null || visible.isEmpty()) {
return initialDirectives;
}
return Iterators.concat(initialDirectives, visible.values().iterator());
}
public void appendTo(CollectingMacroLookup lookup) {
collectAll();
if (visible != null) {
for (Map.Entry entry : visible.entrySet()) {
lookup.append(entry.getKey(), entry.getValue());
}
}
}
private void collectAll() {
while (!uncollected.isEmpty()) {
MacroSource source = uncollected.remove(0);
source.collectInto(this);
}
}
interface MacroSource {
void collectInto(CollectingMacroLookup lookup);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy