blob: 81d95e4cfc3358335df3999d9acd0cbc1a9f1174 [file] [log] [blame]
/*
* Copyright 2017 The Bazel Authors. All rights reserved.
*
* 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 com.google.idea.blaze.ijwb.javascript;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;
import com.google.idea.blaze.base.ideinfo.ArtifactLocation;
import com.google.idea.blaze.base.ideinfo.TargetIdeInfo;
import com.google.idea.blaze.base.model.BlazeProjectData;
import com.google.idea.blaze.base.model.primitives.LanguageClass;
import com.google.idea.blaze.base.model.primitives.WorkspacePath;
import com.google.idea.blaze.base.prefetch.PrefetchFileSource;
import com.google.idea.blaze.base.projectview.ProjectViewSet;
import com.google.idea.blaze.base.sync.projectview.ImportRoots;
import com.google.idea.common.experiments.BoolExperiment;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.io.FileUtil;
import java.io.File;
import java.util.Collection;
import java.util.List;
import java.util.Set;
import java.util.function.Predicate;
import java.util.stream.Collectors;
/** Declare that js files should be prefetched. */
public class JavascriptPrefetchFileSource implements PrefetchFileSource {
private static final BoolExperiment prefetchAllJsSources =
new BoolExperiment("prefetch.all.js.sources", true);
@Override
public void addFilesToPrefetch(
Project project,
ProjectViewSet projectViewSet,
ImportRoots importRoots,
BlazeProjectData blazeProjectData,
Set<File> files) {
if (!blazeProjectData.workspaceLanguageSettings.isLanguageActive(LanguageClass.JAVASCRIPT)
|| !blazeProjectData.workspaceLanguageSettings.isLanguageActive(LanguageClass.TYPESCRIPT)) {
return;
}
if (!prefetchAllJsSources.getValue()) {
return;
}
// Prefetch all non-project js source files found during sync
Predicate<ArtifactLocation> shouldPrefetch =
location -> {
if (!location.isSource || location.isExternal) {
return false;
}
WorkspacePath path = WorkspacePath.createIfValid(location.relativePath);
if (path == null || importRoots.containsWorkspacePath(path)) {
return false;
}
String extension = FileUtil.getExtension(path.relativePath());
return prefetchFileExtensions().contains(extension);
};
List<File> sourceFiles =
blazeProjectData
.targetMap
.targets()
.stream()
.map(JavascriptPrefetchFileSource::getJsSources)
.flatMap(Collection::stream)
.filter(shouldPrefetch)
.map(blazeProjectData.artifactLocationDecoder::decode)
.collect(Collectors.toList());
files.addAll(sourceFiles);
}
@Override
public Set<String> prefetchFileExtensions() {
return ImmutableSet.of("js", "html", "css", "gss");
}
private static Collection<ArtifactLocation> getJsSources(TargetIdeInfo target) {
if (target.jsIdeInfo != null) {
return target.jsIdeInfo.sources;
}
if (target.kind.languageClass == LanguageClass.JAVASCRIPT) {
return target.sources;
}
return ImmutableList.of();
}
}