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

org.pitest.util.PitError Maven / Gradle / Ivy

There is a newer version: 1.17.4
Show newest version
/*
 * Copyright 2010 Henry Coles
 *
 * 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 org.pitest.util;

import java.lang.management.ManagementFactory;
import java.lang.management.RuntimeMXBean;
import java.util.List;
import java.util.function.BiFunction;

import org.pitest.functional.FCollection;

public final class PitError extends RuntimeException {

  private static final long serialVersionUID = 1L;

  public PitError(final String message, final Throwable cause) {
    super(message + info(), cause);
  }

  public PitError(final String message) {
    super(message + info());
  }

  private static String info() {
    final RuntimeMXBean rt = ManagementFactory.getRuntimeMXBean();

    return "\n\nPlease copy and paste the information and the complete stacktrace below when reporting an issue\n"
    + "VM : "
    + rt.getVmName()
    + "\n"
    + "Vendor : "
    + rt.getVmVendor()
    + "\n"
    + "Version : "
    + rt.getVmVersion()
    + "\n"
    + "Uptime : "
    + rt.getUptime()
    + "\n"
    + "Input -> "
    + createInputString(rt.getInputArguments())
    + "\n"
    + "BootClassPathSupported : " + rt.isBootClassPathSupported() + "\n";

  }

  private static String createInputString(final List inputArguments) {
    final StringBuilder sb = new StringBuilder();
    FCollection.fold(append(), sb, inputArguments);
    return sb.toString();
  }

  private static BiFunction append() {
    return new BiFunction() {
      private int position = 0;

      @Override
      public StringBuilder apply(final StringBuilder a, final String b) {
        this.position++;
        return a.append("\n " + this.position + " : " + b);
      }

    };
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy