blob: 42be1b14d6cc3fa2215a9a52f67c4f2b05daab84 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.submarine.server.api.experiment;
import org.apache.submarine.commons.utils.AbstractUniqueIdGenerator;
/**
* The unique id for experiment. Formatter: experiment_${server_timestamp}_${counter}
* Such as: experiment_1577627710_0001
*/
public class ExperimentId extends AbstractUniqueIdGenerator<ExperimentId> {
private static final String EXPERIMENT_ID_PREFIX = "experiment_";
/**
* Get the object of JobId.
* @param jobId job id string
* @return object
*/
public static ExperimentId fromString(String jobId) {
if (jobId == null) {
return null;
}
String[] components = jobId.split("\\_");
if (components.length != 3) {
return null;
}
return ExperimentId.newInstance(Long.parseLong(components[1]), Integer.parseInt(components[2]));
}
/**
* Ge the object of JobId.
* @param serverTimestamp the timestamp when the server start
* @param id count
* @return object
*/
public static ExperimentId newInstance(long serverTimestamp, int id) {
ExperimentId experimentId = new ExperimentId();
experimentId.setServerTimestamp(serverTimestamp);
experimentId.setId(id);
return experimentId;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder(64);
sb.append(EXPERIMENT_ID_PREFIX).append(getServerTimestamp()).append("_");
format(sb, getId());
return sb.toString();
}
}