net.sf.ehcache.transaction.XidTransactionIDSerializedForm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache-core Show documentation
Show all versions of ehcache-core Show documentation
Internal ehcache-core module. This artifact is not meant to be used directly
/**
* Copyright Terracotta, Inc.
*
* 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 net.sf.ehcache.transaction;
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.transaction.xa.SerializableXid;
import javax.transaction.xa.Xid;
import java.io.Serializable;
/**
* A replacement serialized form for XID transaction IDs. It can be used by transaction ID factories
* to create XID-based IDs that serialize to this form (using writeReplace()) if they don't want or
* cannot provide directly serializable IDs.
*
* During deserialization, objects of this class will be replaced by the result of the
* CacheManager.restoreXidTransactionID() call.
*
* @author Ludovic Orban
*/
public class XidTransactionIDSerializedForm implements Serializable {
private final String cacheManagerName;
private final String cacheName;
private final String ownerID;
private final Xid xid;
/**
* Constructor
*
* @param cacheManagerName the name of the cache manager which contains the factory
* that created the original XidTransactionID
* @param cacheName the name of the cache for this id
* @param xid the XidTransactionID's XID
*/
public XidTransactionIDSerializedForm(String cacheManagerName, String cacheName, String ownerID, Xid xid) {
this.cacheManagerName = cacheManagerName;
this.cacheName = cacheName;
this.ownerID = ownerID;
this.xid = new SerializableXid(xid);
}
/**
* Get the name of the cache manager which contains the factory that created the
* original XidTransactionID
*
* @return the cache manager name
*/
public String getCacheManagerName() {
return cacheManagerName;
}
/**
* Get the name of the cache which this original XidTransactionID is for.
*
* @return the cache name
*/
public String getCacheName() {
return cacheName;
}
/**
* Get the original XidTransactionID's owner id
*
* @return the original XidTransactionID's owner id
*/
public String getOwnerID() {
return ownerID;
}
/**
* Get the original XidTransactionID's XID
*
* @return the original XidTransactionID's XID
*/
public Xid getXid() {
return xid;
}
private Object readResolve() {
// do NOT call CacheManager.getCache() as that method synchronizes around the CacheManager class monitor
// which can cause some nasty initialization deadlock, see: MNK-5824
CacheManager cacheManager = getCacheManager(cacheManagerName);
if (cacheManager == null) {
throw new TransactionException("unable to restore XID transaction ID from " + cacheManagerName);
}
return cacheManager.getOrCreateTransactionIDFactory().restoreXidTransactionID(this);
}
/**
* Basically does the same as CacheManager.getCache() except that this method is lock free.
*/
private static CacheManager getCacheManager(String cacheManagerName) {
for (CacheManager cacheManager : CacheManager.ALL_CACHE_MANAGERS) {
if (cacheManager.getName().equals(cacheManagerName)) {
return cacheManager;
}
}
return null;
}
}