blob: ef9d54693ee0e9b2625b4f3b8c00923a19bf7e1f [file] [log] [blame]
/*
* 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
*
* https://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.accumulo.core.iteratorsImpl;
import java.util.Collection;
import java.util.Map;
import org.apache.accumulo.core.dataImpl.thrift.IterInfo;
import org.apache.accumulo.core.iterators.IteratorEnvironment;
/**
* Builder class for setting up the iterator stack.
*/
public class IteratorBuilder {
Collection<IterInfo> iters;
Map<String,Map<String,String>> iterOpts;
IteratorEnvironment iteratorEnvironment;
boolean useAccumuloClassLoader;
String context = null;
boolean useClassCache = false;
IteratorBuilder() {}
/**
* Start building the iterator builder.
*/
public static IteratorBuilderImpl builder(Collection<IterInfo> iters) {
return new IteratorBuilderImpl(iters);
}
public interface IteratorBuilderEnv {
/**
* Set the iteratorEnvironment.
*/
IteratorBuilderOptions env(IteratorEnvironment iteratorEnvironment);
}
public interface IteratorBuilderOptions extends IteratorBuilderEnv {
/**
* Option to iterator classes when loading, defaults to false.
*/
IteratorBuilderOptions useClassCache(boolean useClassCache);
/**
* Call to use the class loader. The String context param is optional and can be null.
*/
IteratorBuilderOptions useClassLoader(String context);
/**
* Finish building and return the completed IteratorBuilder.
*/
IteratorBuilder build();
}
}