com.foundationdb.sql.jdbc.xa.RecoveredXid Maven / Gradle / Ivy
/*-------------------------------------------------------------------------
*
* Copyright (c) 2009-2011, PostgreSQL Global Development Group
*
*-------------------------------------------------------------------------
*/
package com.foundationdb.sql.jdbc.xa;
import java.util.Arrays;
import javax.transaction.xa.Xid;
import com.foundationdb.sql.jdbc.util.Base64;
class RecoveredXid implements Xid {
int formatId;
byte[] globalTransactionId;
byte[] branchQualifier;
public int getFormatId() {
return formatId;
}
public byte[] getGlobalTransactionId() {
return globalTransactionId;
}
public byte[] getBranchQualifier() {
return branchQualifier;
}
public boolean equals(Object o) {
if (o == this) // optimization for the common case.
return true;
if (!(o instanceof Xid))
return false;
Xid other = (Xid) o;
if (other.getFormatId() != formatId)
return false;
if (!Arrays.equals(globalTransactionId, other.getGlobalTransactionId()))
return false;
if (!Arrays.equals(branchQualifier, other.getBranchQualifier()))
return false;
return true;
}
/**
* This is for debugging purposes only
*/
public String toString()
{
return xidToString(this);
}
//--- Routines for converting xid to string and back.
static String xidToString(Xid xid) {
return xid.getFormatId() + "_"
+ Base64.encodeBytes(xid.getGlobalTransactionId(), Base64.DONT_BREAK_LINES) + "_"
+ Base64.encodeBytes(xid.getBranchQualifier(), Base64.DONT_BREAK_LINES);
}
/**
* @param s
* @return recovered xid, or null if s does not represent a
* valid xid encoded by the driver.
*/
static Xid stringToXid(String s) {
RecoveredXid xid = new RecoveredXid();
int a = s.indexOf("_");
int b = s.lastIndexOf("_");
if (a == b) // this also catches the case a == b == -1.
return null;
try
{
xid.formatId = Integer.parseInt(s.substring(0, a));
xid.globalTransactionId = Base64.decode(s.substring(a + 1, b));
xid.branchQualifier = Base64.decode(s.substring(b + 1));
if (xid.globalTransactionId == null || xid.branchQualifier == null)
return null;
}
catch (Exception ex)
{
return null; // Doesn't seem to be an xid generated by this driver.
}
return xid;
}
}