001: /**
002: * JOnAS: Java(TM) Open Application Server
003: * Copyright (C) 1999 Bull S.A.
004: * Contact: jonas-team@objectweb.org
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
019: * USA
020: *
021: * --------------------------------------------------------------------------
022: * $Id: ResetRecoveryAction.java 9680 2006-10-06 12:08:33Z danesa $
023: * --------------------------------------------------------------------------
024: */package org.objectweb.jonas.webapp.jonasadmin.service.jtm;
025:
026: import java.io.IOException;
027: import java.util.ArrayList;
028:
029: import javax.management.ObjectName;
030: import javax.servlet.ServletException;
031: import javax.servlet.http.HttpServletRequest;
032: import javax.servlet.http.HttpServletResponse;
033:
034: import org.apache.struts.action.ActionForm;
035: import org.apache.struts.action.ActionForward;
036: import org.apache.struts.action.ActionMapping;
037: import org.objectweb.jonas.jmx.JonasManagementRepr; //import org.objectweb.jonas.jmx.JonasObjectName;
038: import org.objectweb.jonas.jmx.J2eeObjectName;
039: import org.objectweb.jonas.webapp.jonasadmin.JonasBaseAction;
040:
041: /**
042: *
043: * @author Tony Ortiz
044: */
045: public class ResetRecoveryAction extends JonasBaseAction {
046: /**
047: * Principal method
048: * @param pMapping action mapping
049: * @param pForm used form
050: * @param pRequest request parameters
051: * @param pResponse response parameters
052: * @return action forward
053: * @throws IOException action failed because a IOException
054: * @throws ServletException a ServletException occured
055: */
056: public ActionForward executeAction(ActionMapping pMapping,
057: ActionForm pForm, HttpServletRequest pRequest,
058: HttpServletResponse pResponse) throws IOException,
059: ServletException {
060:
061: try {
062: // Get container list
063: String mys;
064: String sDate;
065: String sFullTrans;
066: String sTransaction;
067: String sResource;
068: String sState;
069: String sXidcount;
070: Object txObject;
071: String[] myTxInfo;
072: int txInfoSize;
073: ArrayList al = new ArrayList();
074:
075: // Object name used
076: String currentDomainName = m_WhereAreYou
077: .getCurrentDomainName();
078: String currentJonasServerName = m_WhereAreYou
079: .getCurrentJonasServerName();
080: String jtaResourceName = "JTAResource";
081: ObjectName jtaResourceObjectName = J2eeObjectName
082: .JTAResource(currentDomainName,
083: currentJonasServerName, jtaResourceName);
084:
085: txObject = JonasManagementRepr.invoke(
086: jtaResourceObjectName, "getAllRecoveryTx", null,
087: null, currentJonasServerName);
088: myTxInfo = (String[]) txObject;
089:
090: if (txObject != null) {
091: txInfoSize = myTxInfo.length;
092:
093: for (int i = 0; i < txInfoSize; i++) {
094: mys = myTxInfo[i];
095: int myix1 = mys.indexOf("????");
096: sFullTrans = mys.substring(0, myix1);
097: int myix2 = mys.indexOf("????", myix1 + 4);
098: sTransaction = mys.substring(myix1 + 4, myix2);
099: int myix3 = mys.indexOf("????", myix2 + 4);
100: sDate = mys.substring(myix2 + 4, myix3);
101: sXidcount = mys.substring(myix3 + 4);
102: al.add(new TxRecovery(sFullTrans, sTransaction,
103: sDate, sXidcount));
104: }
105: }
106:
107: // Set list in the request
108: pRequest.setAttribute("listRecoveryEntries", al);
109: } catch (Throwable t) {
110: addGlobalError(t);
111: saveErrors(pRequest, m_Errors);
112: return (pMapping.findForward("Global Error"));
113: }
114:
115: // Forward to action
116: return (pMapping.findForward("Jtm Recovery"));
117: }
118:
119: }
|