Package org.aspectj.org.eclipse.jdt.internal.core.search.matching

Source Code of org.aspectj.org.eclipse.jdt.internal.core.search.matching.AndPattern

/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     IBM Corporation - initial API and implementation
*******************************************************************************/
package org.aspectj.org.eclipse.jdt.internal.core.search.matching;

import java.io.IOException;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.OperationCanceledException;
import org.aspectj.org.eclipse.jdt.core.search.*;
import org.aspectj.org.eclipse.jdt.internal.compiler.util.SimpleSet;
import org.aspectj.org.eclipse.jdt.internal.core.index.*;
import org.aspectj.org.eclipse.jdt.internal.core.search.IndexQueryRequestor;

/**
* Query the index multiple times and do an 'and' on the results.
*/
public abstract class AndPattern extends JavaSearchPattern { // TODO should rename IntersectingPattern, and make AndPattern a true subclass
 
public AndPattern(int patternKind, int matchRule) {
  super(patternKind, matchRule);
}
public void findIndexMatches(Index index, IndexQueryRequestor requestor, SearchParticipant participant, IJavaSearchScope scope, IProgressMonitor progressMonitor) throws IOException {
  if (progressMonitor != null && progressMonitor.isCanceled()) throw new OperationCanceledException();

  this.resetQuery();
  SimpleSet intersectedNames = null;
  try {
    index.startQuery();
    do {
      SearchPattern pattern = ((InternalSearchPattern) this).currentPattern();
      EntryResult[] entries = ((InternalSearchPattern)pattern).queryIn(index);
      if (entries == null) return;

      SearchPattern decodedResult = pattern.getBlankPattern();
      SimpleSet newIntersectedNames = new SimpleSet(3);
      for (int i = 0, l = entries.length; i < l; i++) {
        if (progressMonitor != null && progressMonitor.isCanceled()) throw new OperationCanceledException();

        EntryResult entry = entries[i];
        decodedResult.decodeIndexKey(entry.getWord());
        if (pattern.matchesDecodedKey(decodedResult)) {
          String[] names = entry.getDocumentNames(index);
          if (intersectedNames != null) {
            for (int j = 0, n = names.length; j < n; j++)
              if (intersectedNames.includes(names[j]))
                newIntersectedNames.add(names[j]);
          } else {
            for (int j = 0, n = names.length; j < n; j++)
              newIntersectedNames.add(names[j]);
          }
        }
      }

      if (newIntersectedNames.elementSize == 0) return;
      intersectedNames = newIntersectedNames;
    } while (this.hasNextQuery());
  } finally {
    index.stopQuery();
  }

  String containerPath = index.containerPath;
  Object[] names = intersectedNames.values;
  for (int i = 0, l = names.length; i < l; i++)
    if (names[i] != null)
      ((InternalSearchPattern) this).acceptMatch((String) names[i], containerPath, null/*no pattern*/, requestor, participant, scope); // AndPatterns cannot provide the decoded result
}
/**
* Returns whether another query must be done.
*/
protected abstract boolean hasNextQuery();
/**
* Resets the query and prepares this pattern to be queried.
*/
protected abstract void resetQuery();
}
TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.core.search.matching.AndPattern

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.