Return-Path: Delivered-To: apmail-hadoop-hbase-commits-archive@minotaur.apache.org Received: (qmail 13425 invoked from network); 12 Feb 2010 20:15:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 12 Feb 2010 20:15:51 -0000 Received: (qmail 86536 invoked by uid 500); 12 Feb 2010 20:15:51 -0000 Delivered-To: apmail-hadoop-hbase-commits-archive@hadoop.apache.org Received: (qmail 86473 invoked by uid 500); 12 Feb 2010 20:15:50 -0000 Mailing-List: contact hbase-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hbase-dev@hadoop.apache.org Delivered-To: mailing list hbase-commits@hadoop.apache.org Received: (qmail 86464 invoked by uid 99); 12 Feb 2010 20:15:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 20:15:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 20:15:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BA31023889F1; Fri, 12 Feb 2010 20:15:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909592 - /hadoop/hbase/branches/0.20/src/java/org/apache/hadoop/hbase/filter/BinaryPrefixComparator.java Date: Fri, 12 Feb 2010 20:15:27 -0000 To: hbase-commits@hadoop.apache.org From: stack@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100212201527.BA31023889F1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: stack Date: Fri Feb 12 20:15:26 2010 New Revision: 909592 URL: http://svn.apache.org/viewvc?rev=909592&view=rev Log: HBASE-2220 Add a binary comparator that only compares up to the length of the supplied byte array Added: hadoop/hbase/branches/0.20/src/java/org/apache/hadoop/hbase/filter/BinaryPrefixComparator.java Added: hadoop/hbase/branches/0.20/src/java/org/apache/hadoop/hbase/filter/BinaryPrefixComparator.java URL: http://svn.apache.org/viewvc/hadoop/hbase/branches/0.20/src/java/org/apache/hadoop/hbase/filter/BinaryPrefixComparator.java?rev=909592&view=auto ============================================================================== --- hadoop/hbase/branches/0.20/src/java/org/apache/hadoop/hbase/filter/BinaryPrefixComparator.java (added) +++ hadoop/hbase/branches/0.20/src/java/org/apache/hadoop/hbase/filter/BinaryPrefixComparator.java Fri Feb 12 20:15:26 2010 @@ -0,0 +1,66 @@ +/* + * Copyright 2009 The Apache Software Foundation + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.hadoop.hbase.filter; + +import org.apache.hadoop.hbase.util.Bytes; + +import java.io.DataInput; +import java.io.DataOutput; +import java.io.IOException; + +/** + * A comparator which compares against a specified byte array, but only compares + * up to the length of this byte array. For the rest it is similar to + * {@link BinaryComparator}. + */ +public class BinaryPrefixComparator implements WritableByteArrayComparable { + private byte [] value; + + /** + * Writable constructor, do not use. + */ + public BinaryPrefixComparator() { + } + + /** + * Constructor. + * @param value the value to compare against + */ + public BinaryPrefixComparator(byte [] value) { + this.value = value; + } + + @Override + public void readFields(DataInput in) throws IOException { + value = Bytes.readByteArray(in); + } + + @Override + public void write(DataOutput out) throws IOException { + Bytes.writeByteArray(out, value); + } + + @Override + public int compareTo(byte [] value) { + return Bytes.compareTo(this.value, 0, this.value.length, value, 0, this.value.length); + } + +}