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

io.cryostat.core.JvmIdentifier Maven / Gradle / Ivy

The newest version!
/*
 * Copyright The Cryostat Authors.
 *
 * 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 io.cryostat.core;

import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.Arrays;
import java.util.Base64;
import java.util.Objects;

import io.cryostat.core.net.IDException;
import io.cryostat.core.net.RuntimeMetrics;

import org.apache.commons.codec.digest.DigestUtils;

public class JvmIdentifier {

    private final String hash;

    private JvmIdentifier(String hash) {
        this.hash = hash;
    }

    public static JvmIdentifier getLocal() throws IDException {
        return from(RuntimeMetrics.readLocalMetrics());
    }

    public static JvmIdentifier from(RuntimeMetrics metrics) throws IDException {
        try (ByteArrayOutputStream baos = new ByteArrayOutputStream(512);
                DataOutputStream dos = new DataOutputStream(baos)) {
            dos.writeUTF(metrics.getClassPath());
            dos.writeUTF(metrics.getName());
            dos.writeUTF(stringifyArray(metrics.getInputArguments()));
            dos.writeUTF(metrics.getLibraryPath());
            dos.writeUTF(metrics.getVmVendor());
            dos.writeUTF(metrics.getVmVersion());
            dos.writeLong(metrics.getStartTime());
            byte[] hash = DigestUtils.sha256(baos.toByteArray());
            return new JvmIdentifier(
                    new String(Base64.getUrlEncoder().encode(hash), StandardCharsets.UTF_8).trim());
        } catch (IOException e) {
            throw new IDException(e);
        }
    }

    public String getHash() {
        return hash;
    }

    private static String stringifyArray(Object arrayObject) {
        String stringified;
        String componentType = arrayObject.getClass().getComponentType().toString();
        switch (componentType) {
            case "boolean":
                stringified = Arrays.toString((boolean[]) arrayObject);
                break;

            case "byte":
                stringified = Arrays.toString((byte[]) arrayObject);
                break;

            case "char":
                stringified = Arrays.toString((char[]) arrayObject);
                break;

            case "short":
                stringified = Arrays.toString((short[]) arrayObject);
                break;

            case "int":
                stringified = Arrays.toString((int[]) arrayObject);
                break;

            case "long":
                stringified = Arrays.toString((long[]) arrayObject);
                break;

            case "float":
                stringified = Arrays.toString((float[]) arrayObject);
                break;

            case "double":
                stringified = Arrays.toString((double[]) arrayObject);
                break;

            default:
                stringified = Arrays.toString((Object[]) arrayObject);
        }
        return stringified;
    }

    @Override
    public String toString() {
        return hash;
    }

    @Override
    public int hashCode() {
        return Objects.hash(hash);
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        JvmIdentifier other = (JvmIdentifier) obj;
        return Objects.equals(hash, other.hash);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy