/* * Copyright 2000-2017 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.vcs.log.ui.table; import com.google.common.primitives.Ints; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.diagnostic.Logger; import com.intellij.openapi.progress.EmptyProgressIndicator; import com.intellij.openapi.progress.ProgressIndicator; import com.intellij.vcs.log.VcsFullCommitDetails; import com.intellij.vcs.log.data.VcsLogData; import org.jetbrains.annotations.CalledInAwt; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import javax.swing.event.ListSelectionEvent; import javax.swing.event.ListSelectionListener; import java.util.List; public abstract class CommitSelectionListener implements ListSelectionListener { private final static Logger LOG = Logger.getInstance(CommitSelectionListener.class); @NotNull private final VcsLogData myLogData; @NotNull protected final VcsLogGraphTable myGraphTable; @Nullable private ListSelectionEvent myLastEvent; @Nullable private ProgressIndicator myLastRequest; protected CommitSelectionListener(@NotNull VcsLogData data, @NotNull VcsLogGraphTable table) { myLogData = data; myGraphTable = table; } @Override public void valueChanged(@Nullable ListSelectionEvent event) { if (event != null && event.getValueIsAdjusting()) return; myLastEvent = event; if (myLastRequest != null) myLastRequest.cancel(); myLastRequest = null; ApplicationManager.getApplication().invokeLater(this::processEvent, o -> myLastEvent != event); } public void processEvent() { int rows = myGraphTable.getSelectedRowCount(); if (rows < 1) { stopLoading(); onEmptySelection(); } else { onSelection(myGraphTable.getSelectedRows()); startLoading(); final EmptyProgressIndicator indicator = new EmptyProgressIndicator(); myLastRequest = indicator; List<Integer> selectionToLoad = getSelectionToLoad(); myLogData.getCommitDetailsGetter() .loadCommitsData(myGraphTable.getModel().convertToCommitIds(selectionToLoad), detailsList -> { if (myLastRequest == indicator && !(indicator.isCanceled())) { LOG.assertTrue(selectionToLoad.size() == detailsList.size(), "Loaded incorrect number of details " + detailsList + " for selection " + selectionToLoad); myLastRequest = null; onDetailsLoaded(detailsList); stopLoading(); } }, indicator); } } @NotNull protected List<Integer> getSelectionToLoad() { return Ints.asList(myGraphTable.getSelectedRows()); } protected abstract void startLoading(); protected abstract void stopLoading(); @CalledInAwt protected abstract void onDetailsLoaded(@NotNull List<VcsFullCommitDetails> detailsList); @CalledInAwt protected abstract void onSelection(@NotNull int[] selection); @CalledInAwt protected abstract void onEmptySelection(); }