/* * 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: JacOrbRCDefaultServant.java 2342 2006-03-30 13:06:17Z $ */ package com.arjuna.ats.internal.jts.orbspecific.jacorb.recoverycoordinators; import java.nio.charset.StandardCharsets; import org.omg.CORBA.ORB; import org.omg.CORBA.SystemException; import org.omg.CosTransactions.NotPrepared; import org.omg.CosTransactions.Resource; import org.omg.CosTransactions.Status; import com.arjuna.ats.internal.jts.orbspecific.recovery.recoverycoordinators.GenericRecoveryCoordinator; import com.arjuna.ats.internal.jts.orbspecific.recovery.recoverycoordinators.RecoveryCoordinatorId; import com.arjuna.ats.jts.logging.jtsLogger; public class JacOrbRCDefaultServant extends GenericRecoveryCoordinator { private ORB _ourOrb; static byte[] RCObjectId = null; /** * constructor supplies orb - used only within package */ JacOrbRCDefaultServant(ORB orb) { super(); // ensure id is null _ourOrb = orb; if (jtsLogger.logger.isDebugEnabled()) { jtsLogger.logger.debug("JacOrbDefaultServant(orb)"); } } public Status replay_completion ( Resource res ) throws SystemException, NotPrepared { if (jtsLogger.logger.isDebugEnabled()) { jtsLogger.logger.debug("JacOrbDefaultServant::replay_completion)"); } try { //Begin New org.omg.CORBA.Object obj = _ourOrb.resolve_initial_references("POACurrent"); org.omg.PortableServer.Current poa_current = org.omg.PortableServer.CurrentHelper.narrow(obj); byte[] objectId = poa_current.get_object_id(); //End New String objectIdString = new String(objectId, StandardCharsets.UTF_8); // convert that to the structured id RecoveryCoordinatorId recovCoId = RecoveryCoordinatorId.reconstruct(objectIdString); if (jtsLogger.logger.isDebugEnabled()) { jtsLogger.logger.debug("JacOrbDefaultServant replay_completion for Id "+recovCoId); } // and do the real replay return GenericRecoveryCoordinator.replay_completion(recovCoId, res); } /***/ catch (NotPrepared exp) { throw exp; } /**/ catch (Exception ex) { jtsLogger.i18NLogger.warn_orbspecific_jacorb_recoverycoordinators_JacOrbRCDefaultServant_3(ex); return Status.StatusUnknown; } } }