Package org.apache.hbase.index.covered.data

Source Code of org.apache.hbase.index.covered.data.LazyValueGetter

/*
* 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.hbase.index.covered.data;

import java.io.IOException;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;

import org.apache.hadoop.hbase.KeyValue;

import org.apache.hbase.index.ValueGetter;
import org.apache.hbase.index.covered.update.ColumnReference;
import org.apache.hbase.index.scanner.Scanner;
import org.apache.hbase.index.util.ImmutableBytesPtr;

/**
* {@link ValueGetter} that uses lazy initialization to get the value for the given
* {@link ColumnReference}. Once stored, the mapping for that reference is retained.
*/
public class LazyValueGetter implements ValueGetter {

  private Scanner scan;
  private volatile Map<ColumnReference, ImmutableBytesPtr> values;
  private byte[] row;
 
  /**
   * Back the getter with a {@link Scanner} to actually access the local data.
   * @param scan backing scanner
   * @param currentRow row key for the row to seek in the scanner
   */
  public LazyValueGetter(Scanner scan, byte[] currentRow) {
    this.scan = scan;
    this.row = currentRow;
  }

  @Override
  public ImmutableBytesPtr getLatestValue(ColumnReference ref) throws IOException {
    // ensure we have a backing map
    if (values == null) {
      synchronized (this) {
        values = Collections.synchronizedMap(new HashMap<ColumnReference, ImmutableBytesPtr>());
      }
    }

    // check the value in the map
    ImmutableBytesPtr value = values.get(ref);
    if (value == null) {
      value = get(ref);
      values.put(ref, value);
    }

    return value;
  }

  /**
   * @param ref
   * @return the first value on the scanner for the given column
   */
  private ImmutableBytesPtr get(ColumnReference ref) throws IOException {
    KeyValue first = ref.getFirstKeyValueForRow(row);
    if (!scan.seek(first)) {
      return null;
    }
    // there is a next value - we only care about the current value, so we can just snag that
    KeyValue next = scan.next();
    if (ref.matches(next)) {
      return new ImmutableBytesPtr(next.getBuffer(), next.getValueOffset(), next.getValueLength());
    }
    return null;
  }
}
TOP

Related Classes of org.apache.hbase.index.covered.data.LazyValueGetter

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.