blob: edeac1746e12478356852d967b39a994f2e778d9 [file] [log] [blame]
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* 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.intellij.openapi.updateSettings.impl;
import com.intellij.ide.AppLifecycleListener;
import com.intellij.openapi.application.Application;
import com.intellij.openapi.application.ApplicationInfo;
import com.intellij.openapi.components.ApplicationComponent;
import com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginsAdvertiser;
import com.intellij.openapi.util.Disposer;
import com.intellij.openapi.util.Ref;
import com.intellij.openapi.util.text.StringUtil;
import com.intellij.util.Alarm;
import com.intellij.util.text.DateFormatUtil;
import org.jetbrains.annotations.NotNull;
/**
* @author yole
*/
public class UpdateCheckerComponent implements ApplicationComponent {
private static final long CHECK_INTERVAL = DateFormatUtil.DAY;
private final Alarm myCheckForUpdatesAlarm = new Alarm(Alarm.ThreadToUse.SHARED_THREAD);
private final Runnable myCheckRunnable = new Runnable() {
@Override
public void run() {
UpdateChecker.updateAndShowResult().doWhenDone(new Runnable() {
@Override
public void run() {
queueNextCheck(CHECK_INTERVAL);
}
});
}
};
private final UpdateSettings mySettings;
public UpdateCheckerComponent(@NotNull Application app, @NotNull UpdateSettings settings) {
mySettings = settings;
app.getMessageBus().connect(app).subscribe(AppLifecycleListener.TOPIC, new AppLifecycleListener.Adapter() {
@Override
public void appFrameCreated(String[] commandLineArgs, @NotNull Ref<Boolean> willOpenProject) {
scheduleOnStartCheck();
}
});
}
@Override
public void initComponent() {
PluginsAdvertiser.ensureDeleted();
}
private void scheduleOnStartCheck() {
if (!mySettings.CHECK_NEEDED) {
return;
}
String currentBuild = ApplicationInfo.getInstance().getBuild().asString();
long timeToNextCheck = mySettings.LAST_TIME_CHECKED + CHECK_INTERVAL - System.currentTimeMillis();
if (StringUtil.compareVersionNumbers(mySettings.LAST_BUILD_CHECKED, currentBuild) < 0 || timeToNextCheck <= 0) {
myCheckRunnable.run();
}
else {
queueNextCheck(timeToNextCheck);
}
}
private void queueNextCheck(long interval) {
myCheckForUpdatesAlarm.addRequest(myCheckRunnable, interval);
}
@Override
public void disposeComponent() {
Disposer.dispose(myCheckForUpdatesAlarm);
}
@NotNull
@Override
public String getComponentName() {
return "UpdateCheckerComponent";
}
public void queueNextCheck() {
queueNextCheck(CHECK_INTERVAL);
}
public void cancelChecks() {
myCheckForUpdatesAlarm.cancelAllRequests();
}
}