blob: 577aef963c05c9acba732f2c85fd3ba2cae4e124 [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.tez.dag.history.events;
import java.io.IOException;
import com.google.protobuf.CodedInputStream;
import com.google.protobuf.CodedOutputStream;
import org.apache.tez.dag.api.oldrecords.TaskState;
import org.apache.tez.dag.history.HistoryEvent;
import org.apache.tez.dag.history.HistoryEventType;
import org.apache.tez.dag.records.TaskIDAware;
import org.apache.tez.dag.records.TezTaskID;
import org.apache.tez.dag.recovery.records.RecoveryProtos.TaskStartedProto;
public class TaskStartedEvent implements HistoryEvent, TaskIDAware {
private TezTaskID taskID;
private String vertexName;
private long scheduledTime;
private long startTime;
private TaskState state;
public TaskStartedEvent(TezTaskID taskId,
String vertexName, long scheduledTime, long startTime) {
this(taskId, vertexName, scheduledTime, startTime, TaskState.SCHEDULED);
}
public TaskStartedEvent(TezTaskID taskId,
String vertexName, long scheduledTime, long startTime, TaskState state) {
this.vertexName = vertexName;
this.taskID = taskId;
this.scheduledTime = scheduledTime;
this.startTime = startTime;
this.state = state;
}
public TaskStartedEvent() {
}
@Override
public HistoryEventType getEventType() {
return HistoryEventType.TASK_STARTED;
}
@Override
public boolean isRecoveryEvent() {
return true;
}
@Override
public boolean isHistoryEvent() {
return true;
}
public TaskStartedProto toProto() {
return TaskStartedProto.newBuilder()
.setTaskId(taskID.toString())
.setLaunchTime(startTime)
.setScheduledTime(scheduledTime)
.build();
}
public void fromProto(TaskStartedProto proto) {
this.taskID = TezTaskID.fromString(proto.getTaskId());
this.startTime = proto.getLaunchTime();
this.scheduledTime = proto.getScheduledTime();
}
@Override
public void toProtoStream(CodedOutputStream outputStream) throws IOException {
outputStream.writeMessageNoTag(toProto());
}
@Override
public void fromProtoStream(CodedInputStream inputStream) throws IOException {
TaskStartedProto proto = inputStream.readMessage(TaskStartedProto.PARSER, null);
if (proto == null) {
throw new IOException("No data found in stream");
}
fromProto(proto);
}
@Override
public String toString() {
return "vertexName=" + vertexName
+ ", taskId=" + taskID.toString()
+ ", scheduledTime=" + scheduledTime
+ ", launchTime=" + startTime;
}
@Override
public TezTaskID getTaskID() {
return taskID;
}
public long getScheduledTime() {
return scheduledTime;
}
public long getStartTime() {
return startTime;
}
public TaskState getState() {
return state;
}
}