Java tutorial
package fr.ortolang.diffusion.client.cmd; /* * #%L * ORTOLANG * A online network structure for hosting language resources and tools. * * Jean-Marie Pierrel / ATILF UMR 7118 - CNRS / Universit de Lorraine * Etienne Petitjean / ATILF UMR 7118 - CNRS * Jrme Blanchard / ATILF UMR 7118 - CNRS * Bertrand Gaiffe / ATILF UMR 7118 - CNRS * Cyril Pestel / ATILF UMR 7118 - CNRS * Marie Tonnelier / ATILF UMR 7118 - CNRS * Ulrike Fleury / ATILF UMR 7118 - CNRS * Frdric Pierre / ATILF UMR 7118 - CNRS * Cline Moro / ATILF UMR 7118 - CNRS * * This work is based on work done in the equipex ORTOLANG (http://www.ortolang.fr/), by several Ortolang contributors (mainly CNRTL and SLDR) * ORTOLANG is funded by the French State program "Investissements d'Avenir" ANR-11-EQPX-0032 * %% * Copyright (C) 2013 - 2016 Ortolang Team * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Lesser Public License for more details. * * You should have received a copy of the GNU General Lesser Public * License along with this program. If not, see * <http://www.gnu.org/licenses/lgpl-3.0.html>. * #L% */ import fr.ortolang.diffusion.client.OrtolangClient; import fr.ortolang.diffusion.client.OrtolangClientException; import fr.ortolang.diffusion.client.account.OrtolangClientAccountException; import org.apache.commons.cli.*; import java.util.Collections; import java.util.HashMap; import java.util.Map; public class IndexAllCommand extends Command { private final Options options = new Options(); public IndexAllCommand() { options.addOption("h", "help", false, "show help."); options.addOption("U", "username", true, "username for login"); options.addOption("P", "password", true, "password for login"); options.addOption("t", "types", true, "list of object types to index (coma separated) or 'all'"); options.addOption("p", "phase", true, "[optional] phase number (when indexing all)"); } @Override public void execute(String[] args) { CommandLineParser parser = new DefaultParser(); CommandLine cmd; try { cmd = parser.parse(options, args); if (cmd.hasOption("h")) { help(); } String[] credentials = getCredentials(cmd); String username = credentials[0]; String password = credentials[1]; Map<String, String> params = new HashMap<>(); if (!cmd.hasOption("t")) { System.out.println("Types must be defined"); help(); } String types = cmd.getOptionValue("t"); String phase = cmd.getOptionValue("p"); if (types.contains("all")) { if (phase == null) { System.out.println("When indexing all a phase must be given"); help(); } else if (!phase.equals("1") && !phase.equals("2")) { System.out.println("Phase number indexing all a phase must be given"); help(); } } params.put("indexingPhase", phase); params.put("indexingTypes", types); OrtolangClient client = OrtolangClient.getInstance(); if (username.length() > 0) { client.getAccountManager().setCredentials(username, password); client.login(username); } System.out.println("Connected as user: " + client.connectedProfile()); String pkey = client.createProcess("index-all", "Index all " + (types != null ? "(" + types + ")" : "(all)"), params, Collections.emptyMap()); System.out.println("Index-All process created with key : " + pkey); client.logout(); client.close(); } catch (ParseException e) { System.out.println("Failed to parse command line properties " + e.getMessage()); help(); } catch (OrtolangClientException | OrtolangClientAccountException e) { System.out.println("Unexpected error !!"); e.printStackTrace(); } } private void help() { HelpFormatter formatter = new HelpFormatter(); formatter.printHelp("Index All", options); System.exit(0); } }