Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.shell.commands;
import java.util.Collections;
import java.util.concurrent.TimeUnit;
import org.apache.accumulo.core.client.BatchScanner;
import org.apache.accumulo.core.client.IteratorSetting;
import org.apache.accumulo.core.iterators.user.GrepIterator;
import org.apache.accumulo.core.security.Authorizations;
import org.apache.accumulo.core.util.format.Formatter;
import org.apache.accumulo.core.util.format.FormatterConfig;
import org.apache.accumulo.shell.Shell;
import org.apache.accumulo.shell.Shell.PrintFile;
import org.apache.commons.cli.CommandLine;
import org.apache.commons.cli.MissingArgumentException;
import org.apache.commons.cli.Option;
import org.apache.commons.cli.Options;
public class GrepCommand extends ScanCommand {
private Option numThreadsOpt;
private Option negateOpt;
@Override
public int execute(final String fullCommand, final CommandLine cl, final Shell shellState)
throws Exception {
try (final PrintFile printFile = getOutputFile(cl)) {
final String tableName = OptUtil.getTableOpt(cl, shellState);
if (cl.getArgList().isEmpty()) {
throw new MissingArgumentException("No terms specified");
}
final Class extends Formatter> formatter = getFormatter(cl, tableName, shellState);
@SuppressWarnings("deprecation")
final org.apache.accumulo.core.util.interpret.ScanInterpreter interpeter =
getInterpreter(cl, tableName, shellState);
// handle first argument, if present, the authorizations list to
// scan with
int numThreads = 20;
if (cl.hasOption(numThreadsOpt.getOpt())) {
numThreads = Integer.parseInt(cl.getOptionValue(numThreadsOpt.getOpt()));
}
boolean negate = false;
if (cl.hasOption(negateOpt.getOpt())) {
negate = true;
}
final Authorizations auths = getAuths(cl, shellState);
final BatchScanner scanner =
shellState.getAccumuloClient().createBatchScanner(tableName, auths, numThreads);
scanner.setRanges(Collections.singletonList(getRange(cl, interpeter)));
scanner.setTimeout(getTimeout(cl), TimeUnit.MILLISECONDS);
scanner.setConsistencyLevel(getConsistency(cl));
setupSampling(tableName, cl, shellState, scanner);
addScanIterators(shellState, cl, scanner, "");
for (int i = 0; i < cl.getArgs().length; i++) {
setUpIterator(Integer.MAX_VALUE - cl.getArgs().length + i, "grep" + i, cl.getArgs()[i],
scanner, cl, negate);
}
try {
// handle columns
fetchColumns(cl, scanner, interpeter);
// output the records
final FormatterConfig config = new FormatterConfig();
config.setPrintTimestamps(cl.hasOption(timestampOpt.getOpt()));
printRecords(cl, shellState, config, scanner, formatter, printFile);
} finally {
scanner.close();
}
}
return 0;
}
protected void setUpIterator(final int prio, final String name, final String term,
final BatchScanner scanner, CommandLine cl, boolean negate) throws Exception {
if (prio < 0) {
throw new IllegalArgumentException("Priority < 0 " + prio);
}
final IteratorSetting grep = new IteratorSetting(prio, name, GrepIterator.class);
GrepIterator.setTerm(grep, term);
GrepIterator.setNegate(grep, negate);
scanner.addScanIterator(grep);
}
@Override
public String description() {
return "searches each row, column family, column qualifier and value in a"
+ " table for a substring (not a regular expression), in parallel, on the server side";
}
@Override
public Options getOptions() {
final Options opts = super.getOptions();
numThreadsOpt = new Option("nt", "num-threads", true, "number of threads to use");
negateOpt = new Option("v", "negate", false, "only include rows without search term");
opts.addOption(numThreadsOpt);
opts.addOption(negateOpt);
return opts;
}
@Override
public String usage() {
return getName() + " { }";
}
@Override
public int numArgs() {
return Shell.NO_FIXED_ARG_LENGTH_CHECK;
}
}