Package cleo.search.tool

Source Code of cleo.search.tool.ScannerTypeaheadInitializer

/*
* Copyright (c) 2011 LinkedIn, Inc
*
* Licensed 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 cleo.search.tool;

import cleo.search.Element;
import cleo.search.filter.BloomFilter;
import cleo.search.filter.FnvBloomFilterLong;
import cleo.search.selector.PrefixSelectorFactory;
import cleo.search.selector.SelectorFactory;
import cleo.search.store.ArrayStoreElement;
import cleo.search.store.MemoryArrayStoreElement;
import cleo.search.store.StoreFactory;
import cleo.search.typeahead.ScannerTypeahead;
import cleo.search.typeahead.ScannerTypeaheadConfig;
import cleo.search.typeahead.Typeahead;

/**
* ScannerTypeaheadInitializer
*
* @author jwu
* @since 03/24, 2011
*/
public class ScannerTypeaheadInitializer<E extends Element> implements TypeaheadInitializer<E> {
  private final ScannerTypeahead<E> scannerTypeahead;

  public ScannerTypeaheadInitializer(Config<E> config) throws Exception {
    this.scannerTypeahead = createTypeahead(config);
  }
 
  public ScannerTypeaheadInitializer(ScannerTypeaheadConfig<E> config) throws Exception {
    this.scannerTypeahead = createTypeahead(config);
  }
 
  protected ScannerTypeahead<E> createTypeahead(ScannerTypeaheadConfig<E> config) throws Exception {
    // create elementStore
    ArrayStoreElement<E> elementStore =
      StoreFactory.createElementStorePartition(
          config.getElementStoreDir(),
          config.getElementStoreIndexStart(),
          config.getElementStoreCapacity(),
          config.getElementStoreSegmentFactory(),
          config.getElementStoreSegmentMB(),
          config.getElementSerializer());
   
    // load elementStore in memory
    elementStore = new MemoryArrayStoreElement<E>(elementStore);
   
    // create selectorFactory
    SelectorFactory<E> selectorFactory = config.getSelectorFactory();
    if(selectorFactory == null) selectorFactory = new PrefixSelectorFactory<E>();
   
    // Create BrowseTypeahead
    BloomFilter<Long> bloomFilter = new FnvBloomFilterLong(config.getFilterPrefixLength());
   
    return new ScannerTypeahead<E>(
        config.getName(),
        elementStore,
        selectorFactory,
        bloomFilter);
  }
 
  @Override
  public Typeahead<E> getTypeahead() {
    return scannerTypeahead;
  }
 
  public static class Config<E extends Element> extends ScannerTypeaheadConfig<E> {}
}
TOP

Related Classes of cleo.search.tool.ScannerTypeaheadInitializer

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.