| /* |
| * 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.hyracks.api.dataflow; |
| |
| import java.io.DataInput; |
| import java.io.DataOutput; |
| import java.io.IOException; |
| import java.io.Serializable; |
| |
| import org.apache.hyracks.api.io.IWritable; |
| |
| public class TaskAttemptId implements IWritable, Serializable { |
| private static final long serialVersionUID = 1L; |
| |
| private TaskId taskId; |
| |
| private int attempt; |
| |
| public static TaskAttemptId create(DataInput dis) throws IOException { |
| TaskAttemptId taskAttemptId = new TaskAttemptId(); |
| taskAttemptId.readFields(dis); |
| return taskAttemptId; |
| } |
| |
| private TaskAttemptId() { |
| |
| } |
| |
| public TaskAttemptId(TaskId taskId, int attempt) { |
| this.taskId = taskId; |
| this.attempt = attempt; |
| } |
| |
| public TaskId getTaskId() { |
| return taskId; |
| } |
| |
| public int getAttempt() { |
| return attempt; |
| } |
| |
| @Override |
| public boolean equals(Object o) { |
| if (!(o instanceof TaskAttemptId)) { |
| return false; |
| } |
| TaskAttemptId oTaskId = (TaskAttemptId) o; |
| return oTaskId.attempt == attempt && oTaskId.taskId.equals(taskId); |
| } |
| |
| @Override |
| public int hashCode() { |
| return taskId.hashCode() + attempt; |
| } |
| |
| @Override |
| public String toString() { |
| return "TAID:" + taskId + ":" + attempt; |
| } |
| |
| public static TaskAttemptId parse(String str) { |
| if (str.startsWith("TAID:")) { |
| str = str.substring(5); |
| int idIdx = str.lastIndexOf(':'); |
| return new TaskAttemptId(TaskId.parse(str.substring(0, idIdx)), Integer.parseInt(str.substring(idIdx + 1))); |
| } |
| throw new IllegalArgumentException("Unable to parse: " + str); |
| } |
| |
| @Override |
| public void writeFields(DataOutput output) throws IOException { |
| taskId.writeFields(output); |
| output.writeInt(attempt); |
| } |
| |
| @Override |
| public void readFields(DataInput input) throws IOException { |
| taskId = TaskId.create(input); |
| attempt = input.readInt(); |
| } |
| } |