package org.apache.hadoop.mapred;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import java.text.NumberFormat;
class JVMId extends ID {
boolean isMap;
JobID jobId;
private static final String JVM = "jvm";
private static NumberFormat idFormat = NumberFormat.getInstance();
static {
idFormat.setGroupingUsed(false);
idFormat.setMinimumIntegerDigits(6);
}
public JVMId(JobID jobId, boolean isMap, int id) {
super(id);
this.isMap = isMap;
this.jobId = jobId;
}
public JVMId (String jtIdentifier, int jobId, boolean isMap, int id) {
this(new JobID(jtIdentifier, jobId), isMap, id);
}
public JVMId() {
jobId = new JobID();
}
public boolean isMapJVM() {
return isMap;
}
public JobID getJobId() {
return jobId;
}
public boolean equals(Object o) {
if(o == null)
return false;
if(o.getClass().equals(JVMId.class)) {
JVMId that = (JVMId)o;
return this.id==that.id
&& this.isMap == that.isMap
&& this.jobId.equals(that.jobId);
}
else return false;
}
@Override
public int compareTo(org.apache.hadoop.mapreduce.ID o) {
JVMId that = (JVMId)o;
int jobComp = this.jobId.compareTo(that.jobId);
if(jobComp == 0) {
if(this.isMap == that.isMap) {
return this.id - that.id;
} else {
return this.isMap ? -1 : 1;
}
} else {
return jobComp;
}
}
@Override
public String toString() {
return appendTo(new StringBuilder(JVM)).toString();
}
protected StringBuilder appendTo(StringBuilder builder) {
return jobId.appendTo(builder).
append(SEPARATOR).
append(isMap ? 'm' : 'r').
append(SEPARATOR).
append(idFormat.format(id));
}
@Override
public int hashCode() {
return jobId.hashCode() * 11 + id;
}
@Override
public void readFields(DataInput in) throws IOException {
super.readFields(in);
this.jobId.readFields(in);
this.isMap = in.readBoolean();
}
@Override
public void write(DataOutput out) throws IOException {
super.write(out);
jobId.write(out);
out.writeBoolean(isMap);
}
public static JVMId forName(String str)
throws IllegalArgumentException {
if(str == null)
return null;
try {
String[] parts = str.split("_");
if(parts.length == 5) {
if(parts[0].equals(JVM)) {
boolean isMap = false;
if(parts[3].equals("m")) isMap = true;
else if(parts[3].equals("r")) isMap = false;
else throw new Exception();
return new JVMId(parts[1], Integer.parseInt(parts[2]),
isMap, Integer.parseInt(parts[4]));
}
}
}catch (Exception ex) { }
throw new IllegalArgumentException("TaskId string : " + str
+ " is not properly formed");
}
}