Package com.linkedin.databus2.core.filter

Source Code of com.linkedin.databus2.core.filter.KeyRangeFilterConfig$Config

package com.linkedin.databus2.core.filter;
/*
*
* Copyright 2013 LinkedIn Corp. All rights reserved
*
* 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.
*
*/


import org.codehaus.jackson.map.ObjectMapper;

import com.linkedin.databus.core.util.ConfigBuilder;
import com.linkedin.databus.core.util.InvalidConfigException;

/**
* @author bvaradar
*/
public class KeyRangeFilterConfig
  extends KeyFilterConfig
{
  private long rangeSize;
  private IDConfig rangeIds;

  protected static ObjectMapper _mapper;

  public KeyRangeFilterConfig()
  {
  }

  public  KeyRangeFilterConfig(StaticConfig config)
  {
    super();

    rangeSize = config.getSize();
    rangeIds = config.getIdConfig();
  }

  public long getRangeSize() {
    return rangeSize;
  }

  public void setRangeSize(long rangeSize) {
    this.rangeSize = rangeSize;
  }

  public IDConfig getRangeIds() {
    return rangeIds;
  }

  public void setRangeIds(IDConfig rangeIds) {
    this.rangeIds = rangeIds;
  }

  @Override
  public String toString() {
    return "KeyRangeFilterConfig [rangeSize=" + rangeSize + ", rangeIds="
        + rangeIds + "]";
  }

  public static class StaticConfig
  {
    private long size;
    private IDConfig idConfig;
   
    public long getSize() {
      return size;
    }
   
    public void setSize(long size) {
      this.size = size;
    }
   
    public IDConfig getIdConfig() {
      return idConfig;
    }
   
    public void setIdConfig(IDConfig idConfig) {
      this.idConfig = idConfig;
    }
   
    public StaticConfig(long size, IDConfig idConfig)
      throws InvalidConfigException
    {
      super();
      this.size = size;
      this.idConfig = idConfig;
    }
    @Override
    public String toString() {
      return "KeyRangeFilterConfig.StaticConfig [size=" + size + ", idConfig=" + idConfig
          + "]";
    }
  }

  public static class Config
    implements ConfigBuilder<StaticConfig>
  {
    private long size;
    private String partitions;

    public long getSize() {
      return size;
    }

    public void setSize(long size) {
      this.size = size;
    }

    public String getPartitions() {
      return partitions;
    }

    public void setPartitions(String partitions) {
      this.partitions = partitions;
    }

    @Override
    public StaticConfig build()
      throws InvalidConfigException
    {
      if ( size <= 0)
        throw new InvalidConfigException("Range size (" + size + ") must be greater than 0");
   
      StaticConfig sConf = null;
     
      try
      {
        sConf = new StaticConfig(size, IDConfig.fromString(partitions));
      } catch (Exception ex) {
        throw new InvalidConfigException(ex);
      }
     
     
      return sConf;
    }

  }
}
TOP

Related Classes of com.linkedin.databus2.core.filter.KeyRangeFilterConfig$Config

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.