blob: 076dbbca686433717b114124a455afb4f2952177 [file] [log] [blame]
/**
* Copyright (c) 2013-2016 Angelo ZERR.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
*/
package org.eclipse.wst.json.ui.internal.contentassist;
import java.util.Collection;
import org.eclipse.json.jsonpath.IJSONPath;
import org.eclipse.wst.json.core.document.IJSONNode;
import org.eclipse.wst.json.core.jsonpath.JSONPathMatcher;
import org.eclipse.wst.json.ui.contentassist.ContentAssistRequest;
import org.eclipse.wst.json.ui.contentassist.ICompletionProposalCollector;
import org.eclipse.wst.json.ui.contentassist.ICompletionProposalCollector.TargetType;
import org.eclipse.wst.sse.ui.contentassist.CompletionProposalInvocationContext;
public class CompletionProposalMatcher {
private final Collection<TargetType> targets;
private final IJSONPath[] paths;
private final ICompletionProposalCollector collector;
public CompletionProposalMatcher(Collection<TargetType> targets,
IJSONPath[] paths, ICompletionProposalCollector collector) {
this.targets = targets;
this.paths = paths;
this.collector = collector;
}
public void addProposalsIfMatch(ContentAssistRequest contentAssistRequest,
CompletionProposalInvocationContext context, TargetType target) {
if (isMatchTarget(target)) {
// match target
if (isMatchPaths(contentAssistRequest.getNode())) {
// match paths
collector.addProposals(contentAssistRequest, context, target);
}
}
}
private boolean isMatchPaths(IJSONNode node) {
for (int i = 0; i < paths.length; i++) {
if (JSONPathMatcher.isMatch(node, paths[i])) {
return true;
}
}
return false;
}
private boolean isMatchTarget(TargetType target) {
return targets.contains(target);
}
}