/* * JBoss, Home of Professional Open Source * Copyright 2006, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. * See the copyright.txt in the distribution for a full listing * of individual contributors. * This copyrighted material is made available to anyone wishing to use, * modify, copy, or redistribute it subject to the terms and conditions * of the GNU Lesser General Public License, v. 2.1. * This program is distributed in the hope that it will be useful, but WITHOUT A * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public License, * v.2.1 along with this distribution; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. * * (C) 2005-2006, * @author JBoss Inc. */ /* * Copyright (C) 1998, 1999, 2000, * * Arjuna Solutions Limited, * Newcastle upon Tyne, * Tyne and Wear, * UK. * * $Id: SynchronizationRecord.java 2342 2006-03-30 13:06:17Z $ */ package com.arjuna.ats.internal.jts.resources; import org.omg.CosTransactions.Synchronization; import com.arjuna.ats.arjuna.common.Uid; import com.arjuna.ats.jts.logging.jtsLogger; /** * CosTransactions::Synchronizations are maintained in a separate list * from the standard transaction intentions list. * * @author Mark Little (mark@arjuna.com) * @version $Id: SynchronizationRecord.java 2342 2006-03-30 13:06:17Z $ * @since JTS 1.0. */ public class SynchronizationRecord implements Comparable { public SynchronizationRecord (Synchronization ptr) { if (jtsLogger.logger.isTraceEnabled()) { jtsLogger.logger.trace("SynchronizationRecord::SynchronizationRecord ( " + ptr + " )"); } _ptr = ptr; _uid = new Uid(); _isJTAInterposed = false; } public SynchronizationRecord (Synchronization ptr, boolean isJTAInterposed) { this(ptr); _isJTAInterposed = isJTAInterposed; } public final Synchronization contents () { if (jtsLogger.logger.isTraceEnabled()) { jtsLogger.logger.trace("SynchronizationRecord::contents - for " + _ptr); } return _ptr; } public final Uid get_uid () { return _uid; } /* * SyncronizationsImples are ordered first according to the isJTAInterposed property and then by Uid. * Interposed synchronizations must come after non-interposed ones (see * TransactionSynchronizationRegistry) The ordering within the interposed/non-interposed categories * is arbitrary but must be defined for correct functioning of the sort. Just don't rely on it in * application level code. * * Note that interposition here is in the JTA TSR interface sense, not CORBA TS. * * @param object * @return */ public int compareTo(Object object) { SynchronizationRecord other = (SynchronizationRecord)object; if(this._isJTAInterposed && (!other._isJTAInterposed)) { return 1; } else if((!this._isJTAInterposed) && other._isJTAInterposed) { return -1; } else if(this._uid.equals(other._uid)) { return 0; } else { return this._uid.lessThan(other._uid) ? -1 : 1; } } private Uid _uid; private Synchronization _ptr; private boolean _isJTAInterposed; }