Java tutorial
/* * ClueWeb Tools: Hadoop tools for manipulating ClueWeb collections * * 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 io.bfscan.clueweb12; import io.bfscan.data.WarcTrecIdMapping; import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.CommandLineParser; import org.apache.commons.cli.GnuParser; import org.apache.commons.cli.HelpFormatter; import org.apache.commons.cli.OptionBuilder; import org.apache.commons.cli.Options; import org.apache.commons.cli.ParseException; import org.apache.hadoop.conf.Configured; import org.apache.hadoop.fs.Path; import org.apache.hadoop.util.Tool; import org.apache.hadoop.util.ToolRunner; public class LookupWarcTrecIdMapping extends Configured implements Tool { private static final String INDEX_OPTION = "index"; private static final String DOCID_OPTION = "docid"; private static final String DOCNO_OPTION = "docno"; @SuppressWarnings("static-access") public int run(String[] args) throws Exception { Options options = new Options(); options.addOption( OptionBuilder.withArgName("dir").hasArg().withDescription("index location").create(INDEX_OPTION)); options.addOption( OptionBuilder.withArgName("id").hasArg().withDescription("WARC-TREC-ID").create(DOCID_OPTION)); options.addOption(OptionBuilder.withArgName("num").hasArg().withDescription("docno").create(DOCNO_OPTION)); CommandLine cmdline = null; CommandLineParser parser = new GnuParser(); try { cmdline = parser.parse(options, args); } catch (ParseException exp) { System.err.println("Error parsing command line: " + exp.getMessage()); System.exit(-1); } if (!cmdline.hasOption(INDEX_OPTION) || !(cmdline.hasOption(DOCID_OPTION) || cmdline.hasOption(DOCNO_OPTION))) { HelpFormatter formatter = new HelpFormatter(); formatter.printHelp(LookupWarcTrecIdMapping.class.getCanonicalName(), options); System.exit(-1); } String indexPath = cmdline.getOptionValue(INDEX_OPTION); WarcTrecIdMapping mapping = new WarcTrecIdMapping(new Path(indexPath), getConf()); if (cmdline.hasOption(DOCID_OPTION)) { System.out.println(mapping.getDocno(cmdline.getOptionValue(DOCID_OPTION))); } if (cmdline.hasOption(DOCNO_OPTION)) { System.out.println(mapping.getDocid(Integer.parseInt(cmdline.getOptionValue(DOCNO_OPTION)))); } return 0; } public static void main(String[] args) throws Exception { ToolRunner.run(new LookupWarcTrecIdMapping(), args); } }