/* * Copyright (C) 2010, Google Inc. 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.diff; /** * Wrap another comparator for use with * {@link org.eclipse.jgit.diff.HashedSequence}. *

* This comparator acts as a proxy for the real comparator, evaluating the * cached hash code before testing the underlying comparator's equality. * Comparators of this type must be used with a * {@link org.eclipse.jgit.diff.HashedSequence}. *

* To construct an instance of this type use * {@link org.eclipse.jgit.diff.HashedSequencePair}. * * @param * the base sequence type. */ public final class HashedSequenceComparator extends SequenceComparator> { private final SequenceComparator cmp; HashedSequenceComparator(SequenceComparator cmp) { this.cmp = cmp; } @Override public boolean equals(HashedSequence a, int ai, // HashedSequence b, int bi) { return a.hashes[ai] == b.hashes[bi] && cmp.equals(a.base, ai, b.base, bi); } @Override public int hash(HashedSequence seq, int ptr) { return seq.hashes[ptr]; } }