/*
 * Copyright (C) 2013, Robin Stocker <robin@nibor.org> and others
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0 which is available at
 * https://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package org.eclipse.jgit.treewalk.filter;

import java.io.IOException;
import java.text.MessageFormat;

import org.eclipse.jgit.errors.IncorrectObjectTypeException;
import org.eclipse.jgit.errors.MissingObjectException;
import org.eclipse.jgit.errors.StopWalkException;
import org.eclipse.jgit.internal.JGitText;
import org.eclipse.jgit.treewalk.TreeWalk;

For testing an array of TreeFilter during a TreeWalk for each entry and returning the result as a bitmask.
Since:2.3
/** * For testing an array of {@link org.eclipse.jgit.treewalk.filter.TreeFilter} * during a {@link org.eclipse.jgit.treewalk.TreeWalk} for each entry and * returning the result as a bitmask. * * @since 2.3 */
public class TreeFilterMarker { private final TreeFilter[] filters;
Construct a TreeFilterMarker. Note that it is stateful and can only be used for one walk loop.
Params:
  • markTreeFilters – the filters to use for marking, must not have more elements than Integer.SIZE.
Throws:
/** * Construct a TreeFilterMarker. Note that it is stateful and can only be * used for one walk loop. * * @param markTreeFilters * the filters to use for marking, must not have more elements * than {@link java.lang.Integer#SIZE}. * @throws java.lang.IllegalArgumentException * if more tree filters are passed than possible */
public TreeFilterMarker(TreeFilter[] markTreeFilters) { if (markTreeFilters.length > Integer.SIZE) { throw new IllegalArgumentException(MessageFormat.format( JGitText.get().treeFilterMarkerTooManyFilters, Integer.valueOf(Integer.SIZE), Integer.valueOf(markTreeFilters.length))); } filters = new TreeFilter[markTreeFilters.length]; System.arraycopy(markTreeFilters, 0, filters, 0, markTreeFilters.length); }
Test the filters against the walk. Returns a bitmask where each bit represents the result of a call to TreeFilter.include(TreeWalk), ordered by the index for which the tree filters were passed in the constructor.
Params:
  • walk – the walk from which to test the current entry
Throws:
Returns:the marks bitmask
/** * Test the filters against the walk. Returns a bitmask where each bit * represents the result of a call to * {@link org.eclipse.jgit.treewalk.filter.TreeFilter#include(TreeWalk)}, * ordered by the index for which the tree filters were passed in the * constructor. * * @param walk * the walk from which to test the current entry * @return the marks bitmask * @throws org.eclipse.jgit.errors.MissingObjectException * as thrown by * {@link org.eclipse.jgit.treewalk.filter.TreeFilter#include(TreeWalk)} * @throws org.eclipse.jgit.errors.IncorrectObjectTypeException * as thrown by * {@link org.eclipse.jgit.treewalk.filter.TreeFilter#include(TreeWalk)} * @throws java.io.IOException * as thrown by * {@link org.eclipse.jgit.treewalk.filter.TreeFilter#include(TreeWalk)} */
public int getMarks(TreeWalk walk) throws MissingObjectException, IncorrectObjectTypeException, IOException { int marks = 0; for (int index = 0; index < filters.length; index++) { TreeFilter filter = filters[index]; if (filter != null) { try { boolean marked = filter.include(walk); if (marked) marks |= (1 << index); } catch (StopWalkException e) { // Don't check tree filter anymore, it will no longer // match filters[index] = null; } } } return marks; } }