/* * Sun Public License * * The contents of this file are subject to the Sun Public License Version * 1.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is available at http://www.sun.com/ * * The Original Code is the SLAMD Distributed Load Generation Engine. * The Initial Developer of the Original Code is Neil A. Wilson. * Portions created by Neil A. Wilson are Copyright (C) 2004-2010. * Some preexisting portions Copyright (C) 2002-2006 Sun Microsystems, Inc. * All Rights Reserved. * * Contributor(s): Neil A. Wilson */ package com.slamd.tools; import java.net.URL; import com.slamd.common.Constants; import com.slamd.jobs.JSSEBlindTrustSocketFactory; import com.slamd.http.HTTPClient; import com.slamd.http.HTTPRequest; import com.slamd.http.HTTPResponse; /** * This class defines a utility that may be used to delete a job folder from the * command line. It does this by communicating with the SLAMD administrative * interface over HTTP to ensure that all appropriate validity checking is * performed, and that any required authentication is honored. * * * @author Neil A. Wilson */ public class DeleteFolder { // Variables used processing. private boolean deleteContents = false; private boolean useSSL = false; private boolean verboseMode = false; private int slamdPort = 8080; private String authID = null; private String authPW = null; private String eol = Constants.EOL; private String folderName = null; private String postURI = "/slamd"; private String slamdHost = "127.0.0.1"; /** * Invokes the constructor and provides it with the command-line arguments. * * @param args The command-line arguments provided to this program. */ public static void main(String[] args) { DeleteFolder deletor = new DeleteFolder(args); if (deletor.sendRequest()) { System.out.println("The job folder was successfully deleted."); } else { System.out.println("An error occurred while trying to delete the job " + "folder."); } } /** * Parses the provided command-line arguments. * * @param args The command-line arguments provided to this program. */ public DeleteFolder(String[] args) { for (int i=0; i< args.length; i++) { if (args[i].equals("-h")) { slamdHost = args[++i]; } else if (args[i].equals("-p")) { slamdPort = Integer.parseInt(args[++i]); } else if (args[i].equals("-u")) { postURI = args[++i]; } else if (args[i].equals("-S")) { useSSL = true; } else if (args[i].equals("-A")) { authID = args[++i]; } else if (args[i].equals("-P")) { authPW = args[++i]; } else if (args[i].equals("-f")) { folderName = args[++i]; } else if (args[i].equals("-d")) { deleteContents = true; } else if (args[i].equals("-v")) { verboseMode = true; } else if (args[i].equals("-H")) { displayUsage(); System.exit(0); } else { System.err.println("Unrecognized argument \"" + args[i] + '"'); displayUsage(); System.exit(1); } } // Make sure that the folder name has been provided. if (folderName == null) { System.err.println("No folder name provided (use -f)"); displayUsage(); System.exit(1); } } /** * Sends the request to the SLAMD server and parses the response. * * @return <CODE>true</CODE> if the job folder was removed successfully, or * <CODE>false</CODE> if not. */ public boolean sendRequest() { // Create the HTTP client to use to send the request. HTTPClient httpClient = new HTTPClient(); httpClient.setFollowRedirects(true); httpClient.setRetrieveAssociatedFiles(false); if ((authID != null) && (authID.length() > 0) && (authPW != null) && (authPW.length() > 0)) { httpClient.enableAuthentication(authID, authPW); } if (verboseMode) { httpClient.enableDebugMode(); } String protocol = "http"; if (useSSL) { try { protocol = "https"; httpClient.setSSLSocketFactory(new JSSEBlindTrustSocketFactory()); } catch (Exception e) { System.err.println("ERROR: Unable to initialize the SSL socket " + "factory:"); e.printStackTrace(); return false; } } // Construct the URL for the request. String urlStr = protocol + "://" + slamdHost + ':' + slamdPort + postURI; URL requestURL; try { requestURL = new URL(urlStr); } catch (Exception e) { System.err.println("ERROR: The constructed URL '" + urlStr + "' is invalid:"); e.printStackTrace(); return false; } // Construct the request to send to the server. HTTPRequest request = new HTTPRequest(false, requestURL); request.addParameter(Constants.SERVLET_PARAM_SECTION, Constants.SERVLET_SECTION_JOB); request.addParameter(Constants.SERVLET_PARAM_SUBSECTION, Constants.SERVLET_SECTION_JOB_MASS_OP); request.addParameter(Constants.SERVLET_PARAM_SUBMIT, Constants.SUBMIT_STRING_DELETE_FOLDER); request.addParameter(Constants.SERVLET_PARAM_JOB_FOLDER, folderName); request.addParameter(Constants.SERVLET_PARAM_CONFIRMED, Constants.SUBMIT_STRING_DELETE_FOLDER); if (deleteContents) { request.addParameter(Constants.SERVLET_PARAM_DELETE_FOLDER_CONTENTS, "true"); } // Send the request and read the response. HTTPResponse response; try { response = httpClient.sendRequest(request); httpClient.closeAll(); } catch (Exception e) { System.err.println("Error communicating with SLAMD server:"); e.printStackTrace(); return false; } // Make sure that the response status code was "200". if (response.getStatusCode() != 200) { System.err.println("ERROR: Unexpected response status code (" + response.getStatusCode() + ' ' + response.getResponseMessage() + ')'); return false; } // See if the response returned included an error header. If it did, then // there was an error. Otherwise, it was successful. String errorMessage = response.getHeader(Constants.RESPONSE_HEADER_ERROR_MESSAGE); if (errorMessage == null) { return true; } else { System.err.println("ERROR: " + errorMessage); return false; } } /** * Prints the provided message if the program is operating in verbose mode. * * @param message The message to be printed. */ public void debug(String message) { if (verboseMode) { System.out.println(message); } } /** * Displays usage information for this program. */ public static void displayUsage() { String eol = Constants.EOL; System.out.println( "USAGE: java -cp {classpath} DeleteFolder {options}" + eol + " where {options} include:" + eol + "-f {folderName} -- The name to use for the new job folder" + eol + "-d -- Indicates that the contents of the folder should " + eol + " be removed if it is not empty" + eol + "-h {slamdHost} -- The address of the SLAMD server" + eol + "-p {slamdPort} -- The port of the SLAMD server's admin interface" + eol + "-A {authID} -- The username to use to authenticate to the server" + eol + "-P {authPW} -- The password to use to authenticate to the server" + eol + "-u {uri} -- The URI to which the request should be sent" + eol + "-S -- Communicate with the SLAMD server over SSL" + eol + "-v -- Enable verbose mode" + eol + "-H -- Display usage information and exit" ); } }