org.gradle.launcher.daemon.registry.DaemonStopEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2016 the original author or 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 org.gradle.launcher.daemon.registry;
import org.gradle.api.Nullable;
import org.gradle.internal.serialize.Decoder;
import org.gradle.internal.serialize.Encoder;
import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus;
import java.io.EOFException;
import java.io.Serializable;
import java.util.Calendar;
import java.util.Date;
/**
* Information regarding when and why a daemon was stopped.
*/
public class DaemonStopEvent implements Serializable {
public static final org.gradle.internal.serialize.Serializer SERIALIZER = new Serializer();
private final Date timestamp;
@Nullable
private final Long pid;
@Nullable
private final DaemonExpirationStatus status;
@Nullable
private final String reason;
public DaemonStopEvent(Date timestamp, @Nullable Long pid, @Nullable DaemonExpirationStatus status, @Nullable String reason) {
this.timestamp = timestamp;
this.status = status;
this.reason = reason;
this.pid = pid;
}
public Date getTimestamp() {
return timestamp;
}
@Nullable
public Long getPid() {
return pid;
}
@Nullable
public DaemonExpirationStatus getStatus() {
return status;
}
@Nullable
public String getReason() {
if (reason == null) {
return "";
}
return reason;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DaemonStopEvent stopEvent = (DaemonStopEvent) o;
return timestamp.equals(stopEvent.timestamp)
&& (reason != null ? reason.equals(stopEvent.reason) : stopEvent.reason == null);
}
@Override
public int hashCode() {
int result = timestamp.hashCode();
result = 31 * result + (reason != null ? reason.hashCode() : 0);
return result;
}
@Override
public String toString() {
return "DaemonStopEvent{"
+ "timestamp=" + timestamp
+ ", pid=" + pid
+ ", status=" + status
+ "}";
}
boolean occurredInLastHours(final int numHours) {
Calendar cal = Calendar.getInstance();
cal.setTime(new Date(System.currentTimeMillis()));
cal.add(Calendar.HOUR_OF_DAY, -1 * numHours);
return timestamp.after(cal.getTime());
}
private static class Serializer implements org.gradle.internal.serialize.Serializer {
@Override
public DaemonStopEvent read(Decoder decoder) throws EOFException, Exception {
long timestamp = decoder.readLong();
long pid = decoder.readLong();
DaemonExpirationStatus status = decoder.readBoolean() ? DaemonExpirationStatus.values()[decoder.readByte()] : null;
String reason = decoder.readNullableString();
return new DaemonStopEvent(new Date(timestamp), pid, status, reason);
}
@Override
public void write(Encoder encoder, DaemonStopEvent value) throws Exception {
encoder.writeLong(value.timestamp.getTime());
encoder.writeLong(value.pid);
encoder.writeBoolean(value.status != null);
if (value.status != null) {
encoder.writeByte((byte) value.status.ordinal());
}
encoder.writeNullableString(value.reason);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy