From db9352fb532d5a82ab0d01a067cae36ee3a72a3f Mon Sep 17 00:00:00 2001 From: Manfred Riem Date: Fri, 29 Mar 2024 16:52:35 -0500 Subject: [PATCH] Fixes #3675 - Add coreprofile stop command to CLI (#3689) --- .../cloud/piranha/cli/CoreProfileCommand.java | 1 + .../piranha/cli/CoreProfileStartCommand.java | 2 +- .../piranha/cli/CoreProfileStopCommand.java | 97 +++++++++++++++++++ 3 files changed, 99 insertions(+), 1 deletion(-) create mode 100644 cli/cli/src/main/java/cloud/piranha/cli/CoreProfileStopCommand.java diff --git a/cli/cli/src/main/java/cloud/piranha/cli/CoreProfileCommand.java b/cli/cli/src/main/java/cloud/piranha/cli/CoreProfileCommand.java index 56b0de7f0..01926b4ce 100644 --- a/cli/cli/src/main/java/cloud/piranha/cli/CoreProfileCommand.java +++ b/cli/cli/src/main/java/cloud/piranha/cli/CoreProfileCommand.java @@ -62,6 +62,7 @@ public void run() { case "download" -> new CoreProfileDownloadCommand(stripFirstElement(arguments)).run(); case "run" -> new CoreProfileRunCommand(stripFirstElement(arguments)).run(); case "start" -> new CoreProfileStartCommand(stripFirstElement(arguments)).run(); + case "stop" -> new CoreProfileStopCommand(stripFirstElement(arguments)).run(); case "help" -> usage(); } } diff --git a/cli/cli/src/main/java/cloud/piranha/cli/CoreProfileStartCommand.java b/cli/cli/src/main/java/cloud/piranha/cli/CoreProfileStartCommand.java index a11b87e8f..bb4d9b53f 100644 --- a/cli/cli/src/main/java/cloud/piranha/cli/CoreProfileStartCommand.java +++ b/cli/cli/src/main/java/cloud/piranha/cli/CoreProfileStartCommand.java @@ -33,7 +33,7 @@ import java.util.ArrayList; /** - * The coreprofile run command. + * The coreprofile start command. * * @author Manfred Riem (mriem@manorrock.com) */ diff --git a/cli/cli/src/main/java/cloud/piranha/cli/CoreProfileStopCommand.java b/cli/cli/src/main/java/cloud/piranha/cli/CoreProfileStopCommand.java new file mode 100644 index 000000000..5fc9cfe75 --- /dev/null +++ b/cli/cli/src/main/java/cloud/piranha/cli/CoreProfileStopCommand.java @@ -0,0 +1,97 @@ +/* + * Copyright (c) 2002-2024 Manorrock.com. All Rights Reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the copyright holder nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package cloud.piranha.cli; + +import static cloud.piranha.cli.Util.version; +import java.io.File; + +/** + * The coreprofile stop command. + * + * @author Manfred Riem (mriem@manorrock.com) + */ +public class CoreProfileStopCommand implements Runnable { + + /** + * Stores the arguments. + */ + private final String[] arguments; + + /** + * Stores the distribution filename we are going use. + */ + private String distributionFilename = "piranha-dist-coreprofile-" + version() + ".jar"; + + /** + * Stores the distribution directory. + */ + private File distributionDirectory = new File(System.getProperty("user.home"), + ".piranha/coreprofile/download"); + + /** + * Stores the run arguments (--arguments). + */ + private String runArguments; + + /** + * Stores the version we are using. + */ + private String version = "24.3.0"; + + /** + * Constructor. + * + * @param arguments the arguments. + */ + public CoreProfileStopCommand(String[] arguments) { + this.arguments = arguments; + } + + @Override + public void run() { + parseArguments(); + stopPiranhaCoreProfile(); + } + + /** + * Parse the command-line arguments. + */ + private void parseArguments() { + System.out.println("Parse arguments"); + } + + /** + * Stop Piranha Core Profile. + */ + private void stopPiranhaCoreProfile() { + File pidFile = new File("piranha.pid"); + if (pidFile.exists()) { + pidFile.delete(); + } + } +}