blob: c99f9db6acab638e4034838ac513e2f3e493190d [file] [log] [blame]
/*
* Copyright 2016 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.base.sync;
import com.google.idea.blaze.base.async.executor.BlazeExecutor;
import com.google.idea.blaze.base.settings.Blaze;
import com.google.idea.blaze.base.settings.BlazeImportSettings;
import com.google.idea.blaze.base.settings.BlazeImportSettingsManager;
import com.intellij.openapi.components.ServiceManager;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.startup.StartupManager;
import org.jetbrains.annotations.NotNull;
/**
* Manages syncing and its listeners.
*/
public class BlazeSyncManager {
@NotNull
private final Project project;
public BlazeSyncManager(@NotNull Project project) {
this.project = project;
}
public static BlazeSyncManager getInstance(@NotNull Project project) {
return ServiceManager.getService(project, BlazeSyncManager.class);
}
/**
* Requests a project sync with Blaze.
*/
public void requestProjectSync(@NotNull final BlazeSyncParams syncParams) {
StartupManager.getInstance(project).runWhenProjectIsInitialized(new Runnable() {
@Override
public void run() {
final BlazeImportSettings importSettings =
BlazeImportSettingsManager.getInstance(project).getImportSettings();
if (importSettings == null) {
throw new IllegalStateException(String.format("Attempt to sync non-%s project.", Blaze.buildSystemName(project)));
}
final BlazeSyncTask syncTask = new BlazeSyncTask(
project,
importSettings,
syncParams
);
BlazeExecutor.submitTask(project, syncTask);
}
});
}
}