Search in sources :

Example 1 with Matcher

use of com.intellij.structuralsearch.Matcher in project intellij-community by JetBrains.

the class GuavaOptionalConversionUtil method simplifyParameterPattern.

static String simplifyParameterPattern(PsiMethodCallExpression methodCall) {
    final PsiExpressionList argumentList = methodCall.getArgumentList();
    final PsiExpression[] expressions = argumentList.getExpressions();
    if (expressions.length == 1) {
        final PsiExpression expression = expressions[0];
        Matcher matcher = new Matcher(methodCall.getProject());
        final MatchOptions options = new MatchOptions();
        options.setFileType(StdFileTypes.JAVA);
        final List<MatchResult> results = matcher.testFindMatches(expression.getText(), GuavaOptionalConversionRule.OPTIONAL_CONVERTOR_PATTERN, options, false);
        if (!results.isEmpty()) {
            final MatchResult result = results.get(0);
            if (result.getStart() == 0 && result.getEnd() == -1) {
                return GuavaOptionalConversionRule.OPTIONAL_CONVERTOR_PATTERN;
            }
        }
    }
    return "$o$";
}
Also used : Matcher(com.intellij.structuralsearch.Matcher) MatchOptions(com.intellij.structuralsearch.MatchOptions) MatchResult(com.intellij.structuralsearch.MatchResult)

Example 2 with Matcher

use of com.intellij.structuralsearch.Matcher in project intellij-community by JetBrains.

the class SSBasedInspection method buildVisitor.

@NotNull
@Override
public PsiElementVisitor buildVisitor(@NotNull final ProblemsHolder holder, final boolean isOnTheFly) {
    final Map<Configuration, MatchContext> compiledOptions = SSBasedInspectionCompiledPatternsCache.getCompiledOptions(myConfigurations, holder.getProject());
    if (compiledOptions.isEmpty())
        return super.buildVisitor(holder, isOnTheFly);
    return new PsiElementVisitor() {

        final Matcher matcher = new Matcher(holder.getManager().getProject());

        final PairProcessor<MatchResult, Configuration> processor = (matchResult, configuration) -> {
            PsiElement element = matchResult.getMatch();
            String name = configuration.getName();
            LocalQuickFix fix = createQuickFix(holder.getManager().getProject(), matchResult, configuration);
            holder.registerProblem(holder.getManager().createProblemDescriptor(element, name, fix, ProblemHighlightType.GENERIC_ERROR_OR_WARNING, isOnTheFly));
            return true;
        };

        @Override
        public void visitElement(PsiElement element) {
            synchronized (LOCK) {
                if (LexicalNodesFilter.getInstance().accepts(element))
                    return;
                final SsrFilteringNodeIterator matchedNodes = new SsrFilteringNodeIterator(element);
                for (Map.Entry<Configuration, MatchContext> entry : compiledOptions.entrySet()) {
                    Configuration configuration = entry.getKey();
                    MatchContext context = entry.getValue();
                    if (MatcherImpl.checkIfShouldAttemptToMatch(context, matchedNodes)) {
                        final int nodeCount = context.getPattern().getNodeCount();
                        try {
                            matcher.processMatchesInElement(context, configuration, new CountingNodeIterator(nodeCount, matchedNodes), processor);
                        } catch (StructuralSearchException e) {
                            if (myProblemsReported.add(configuration.getName())) {
                                // don't overwhelm the user with messages
                                Notifications.Bus.notify(new Notification(SSRBundle.message("structural.search.title"), SSRBundle.message("template.problem", configuration.getName()), e.getMessage(), NotificationType.ERROR), element.getProject());
                            }
                        }
                        matchedNodes.reset();
                    }
                }
            }
        }
    };
}
Also used : ReplaceConfiguration(com.intellij.structuralsearch.plugin.replace.ui.ReplaceConfiguration) Configuration(com.intellij.structuralsearch.plugin.ui.Configuration) Matcher(com.intellij.structuralsearch.Matcher) PsiElementVisitor(com.intellij.psi.PsiElementVisitor) PairProcessor(com.intellij.util.PairProcessor) Notification(com.intellij.notification.Notification) StructuralSearchException(com.intellij.structuralsearch.StructuralSearchException) CountingNodeIterator(com.intellij.dupLocator.iterators.CountingNodeIterator) MatchContext(com.intellij.structuralsearch.impl.matcher.MatchContext) SsrFilteringNodeIterator(com.intellij.structuralsearch.impl.matcher.iterators.SsrFilteringNodeIterator) PsiElement(com.intellij.psi.PsiElement) NotNull(org.jetbrains.annotations.NotNull)

Example 3 with Matcher

use of com.intellij.structuralsearch.Matcher in project intellij-community by JetBrains.

the class SSBasedInspectionCompiledPatternsCache method getCompiledOptions.

@NotNull
static Map<Configuration, MatchContext> getCompiledOptions(@NotNull List<Configuration> configurations, @NotNull Project project) {
    final Map<Configuration, MatchContext> cache = ObjectUtils.notNull(project.getUserData(COMPILED_OPTIONS_KEY), new HashMap<Configuration, MatchContext>());
    if (!areConfigurationsInCache(configurations, cache)) {
        final Matcher matcher = new Matcher(project);
        matcher.precompileOptions(configurations, cache);
        project.putUserData(COMPILED_OPTIONS_KEY, cache);
    }
    return configurations.stream().collect(Collectors.toMap(Function.identity(), cache::get, (c1, c2) -> c2));
}
Also used : List(java.util.List) MatchContext(com.intellij.structuralsearch.impl.matcher.MatchContext) Map(java.util.Map) Project(com.intellij.openapi.project.Project) Key(com.intellij.openapi.util.Key) Configuration(com.intellij.structuralsearch.plugin.ui.Configuration) ObjectUtils(com.intellij.util.ObjectUtils) HashMap(java.util.HashMap) NotNull(org.jetbrains.annotations.NotNull) Function(java.util.function.Function) Collectors(java.util.stream.Collectors) Matcher(com.intellij.structuralsearch.Matcher) Configuration(com.intellij.structuralsearch.plugin.ui.Configuration) MatchContext(com.intellij.structuralsearch.impl.matcher.MatchContext) Matcher(com.intellij.structuralsearch.Matcher) NotNull(org.jetbrains.annotations.NotNull)

Aggregations

Matcher (com.intellij.structuralsearch.Matcher)3 MatchContext (com.intellij.structuralsearch.impl.matcher.MatchContext)2 Configuration (com.intellij.structuralsearch.plugin.ui.Configuration)2 NotNull (org.jetbrains.annotations.NotNull)2 CountingNodeIterator (com.intellij.dupLocator.iterators.CountingNodeIterator)1 Notification (com.intellij.notification.Notification)1 Project (com.intellij.openapi.project.Project)1 Key (com.intellij.openapi.util.Key)1 PsiElement (com.intellij.psi.PsiElement)1 PsiElementVisitor (com.intellij.psi.PsiElementVisitor)1 MatchOptions (com.intellij.structuralsearch.MatchOptions)1 MatchResult (com.intellij.structuralsearch.MatchResult)1 StructuralSearchException (com.intellij.structuralsearch.StructuralSearchException)1 SsrFilteringNodeIterator (com.intellij.structuralsearch.impl.matcher.iterators.SsrFilteringNodeIterator)1 ReplaceConfiguration (com.intellij.structuralsearch.plugin.replace.ui.ReplaceConfiguration)1 ObjectUtils (com.intellij.util.ObjectUtils)1 PairProcessor (com.intellij.util.PairProcessor)1 HashMap (java.util.HashMap)1 List (java.util.List)1 Map (java.util.Map)1