All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.shaded.vertx.core.impl.launcher.CommandLineUtils Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
/*
 * Copyright (c) 2011-2019 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package com.arangodb.shaded.vertx.core.impl.launcher;

import java.io.File;

/**
 * Utilities method to analyse original command line.
 *
 * @author Clement Escoffier 
 */
public class CommandLineUtils {

  /**
   * @return the fat-jar file used to execute the application if the fat-jar approach is used.
   */
  public static String getJar() {
    // Check whether or not the "sun.java.command" system property is defined,
    // if it is, check whether the first segment of the command ends with ".jar".
    String segment = getFirstSegmentOfCommand();
    if (segment != null && segment.endsWith(".jar")) {
      return segment;
    } else {
      // Second attend is to check the classpath. If the classpath contains only one element,
      // it's the fat jar
      String classpath = System.getProperty("java.class.path");
      if (!classpath.isEmpty() && !classpath.contains(File.pathSeparator) && classpath.endsWith(".jar")) {
        return classpath;
      }
    }

    return null;

  }

  /**
   * @return try to get the command line having launched the application using the {@code sun.java.command}
   * system properties. {@code null} if not set.
   */
  public static String getCommand() {
    return System.getProperty("sun.java.command");
  }

  /**
   * @return the first segment of the command line.
   */
  public static String getFirstSegmentOfCommand() {
    String cmd = getCommand();
    if (cmd != null) {
      String[] segments = cmd.split(" ");
      if (segments.length >= 1) {
        return segments[0];
      }
    }
    return null;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy