blob: 010a58e20c5be06ae0d65b6adbf1d297808dec61 [file] [log] [blame]
/*
* Copyright (c) 2013, the Dart project authors.
*
* Licensed under the Eclipse Public License v1.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.eclipse.org/legal/epl-v10.html
*
* 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.dart.tools.ui.internal.text.correction;
import com.google.common.collect.Lists;
import com.google.common.util.concurrent.Uninterruptibles;
import com.google.dart.engine.error.AnalysisError;
import com.google.dart.engine.services.assist.AssistContext;
import com.google.dart.engine.services.correction.CorrectionProcessors;
import com.google.dart.engine.services.correction.CorrectionProposal;
import com.google.dart.server.GetFixesConsumer;
import com.google.dart.server.generated.types.AnalysisErrorFixes;
import com.google.dart.server.generated.types.RequestError;
import com.google.dart.tools.core.DartCore;
import com.google.dart.tools.core.DartCoreDebug;
import com.google.dart.tools.internal.corext.refactoring.util.ExecutionUtils;
import com.google.dart.tools.internal.corext.refactoring.util.RunnableEx;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
/**
* UI wrapper around {@link QuickFixProcessor_OLD} service.
*
* @coverage dart.editor.ui.correction
*/
public class QuickFixProcessor_OLD {
/**
* @param problem the {@link AnalysisError} to analyze, not {@code null}.
* @return {@code true} if {@link QuickFixProcessor_OLD} can produce {@link ICompletionProposal}
* to fix given problem.
*/
public static boolean hasFix(AnalysisError problem) {
return CorrectionProcessors.getQuickFixProcessor().hasFix(problem);
}
private static CorrectionProposal[] getFixes(String file, int offset) {
final List<CorrectionProposal> proposalList = Lists.newArrayList();
final CountDownLatch latch = new CountDownLatch(1);
DartCore.getAnalysisServer().edit_getFixes(file, offset, new GetFixesConsumer() {
@Override
public void computedFixes(List<AnalysisErrorFixes> errorFixesArray) {
System.out.println("errorFixesArray: " + errorFixesArray);
// TODO(scheglov) Analysis Server: implement for new API
latch.countDown();
}
@Override
public void onError(RequestError requestError) {
latch.countDown();
}
});
Uninterruptibles.awaitUninterruptibly(latch, 100, TimeUnit.MILLISECONDS);
CorrectionProposal[] serviceProposals = proposalList.toArray(new CorrectionProposal[proposalList.size()]);
return serviceProposals;
}
/**
* Computes {@link ICompletionProposal}s which can fix some of the given {@link AnalysisError}s.
*
* @return the {@link ICompletionProposal}s, may be empty, but not {@code null}.
*/
public ICompletionProposal[] computeFix(final AssistContextUI contextUI,
final AnalysisError problem) {
final List<ICompletionProposal> proposals = Lists.newArrayList();
ExecutionUtils.runLog(new RunnableEx() {
@Override
public void run() throws Exception {
AssistContext context = contextUI.getContext();
if (DartCoreDebug.ENABLE_ANALYSIS_SERVER) {
String file = context.getFile();
int offset = context.getSelectionOffset();
CorrectionProposal[] serviceProposals = getFixes(file, offset);
QuickAssistProcessor.addServiceProposals(proposals, serviceProposals);
} else {
com.google.dart.engine.services.correction.QuickFixProcessor serviceProcessor;
serviceProcessor = CorrectionProcessors.getQuickFixProcessor();
CorrectionProposal[] serviceProposals = serviceProcessor.computeProposals(
context,
problem);
QuickAssistProcessor.addServiceProposals(proposals, serviceProposals);
}
}
});
return proposals.toArray(new ICompletionProposal[proposals.size()]);
}
}