/* * RHQ Management Platform * Copyright (C) 2005-2008 Red Hat, Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ package org.rhq.enterprise.gui.operation.history.resource; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.faces.application.FacesMessage; import javax.faces.model.DataModel; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.rhq.core.domain.auth.Subject; import org.rhq.core.domain.operation.ResourceOperationHistory; import org.rhq.core.domain.resource.Resource; import org.rhq.core.domain.util.PageControl; import org.rhq.core.domain.util.PageList; import org.rhq.core.gui.util.FacesContextUtility; import org.rhq.core.gui.util.StringUtility; import org.rhq.core.util.exception.ThrowableUtil; import org.rhq.enterprise.gui.common.framework.PagedDataTableUIBean; import org.rhq.enterprise.gui.common.paging.PageControlView; import org.rhq.enterprise.gui.common.paging.PagedListDataModel; import org.rhq.enterprise.gui.util.EnterpriseFacesContextUtility; import org.rhq.enterprise.server.operation.OperationManagerLocal; import org.rhq.enterprise.server.util.LookupUtil; public class ResourceOperationCompletedHistoryUIBean extends PagedDataTableUIBean { private final Log log = LogFactory.getLog(ResourceOperationCompletedHistoryUIBean.class); public static final String MANAGED_BEAN_NAME = "ResourceOperationCompletedHistoryUIBean"; private OperationManagerLocal manager = LookupUtil.getOperationManager(); private ResourceOperationHistory latestCompletedResourceOperation = null; public ResourceOperationCompletedHistoryUIBean() { } public ResourceOperationHistory getLatestCompletedResourceOperation() { if (latestCompletedResourceOperation == null) { Subject subject = EnterpriseFacesContextUtility.getSubject(); Resource resource = EnterpriseFacesContextUtility.getResource(); OperationManagerLocal manager = LookupUtil.getOperationManager(); latestCompletedResourceOperation = manager.getLatestCompletedResourceOperation(subject, resource.getId()); } return latestCompletedResourceOperation; } @Override public DataModel getDataModel() { if (dataModel == null) { dataModel = new A( PageControlView.ResourceOperationCompletedHistory, MANAGED_BEAN_NAME); } return dataModel; } public String delete() { Subject subject = EnterpriseFacesContextUtility.getSubject(); String[] selectedItems = FacesContextUtility.getRequest().getParameterValues("completedSelectedItems"); List<String> success = new ArrayList<String>(); Map<String, String> failure = new HashMap<String, String>(); String next = null; Integer doomed; long start = System.currentTimeMillis(); for (int i = 0; i < selectedItems.length; i++) { try { next = selectedItems[i]; doomed = Integer.valueOf(next); manager.deleteOperationHistory(subject, doomed, true); success.add(next); } catch (Exception e) { failure.put(next, ThrowableUtil.getAllMessages(e, true)); } } long end = System.currentTimeMillis(); log.debug("Performance: took [" + (end - start) + "]ms to delete " + selectedItems.length + " Resource OperationHistory elements"); if (success.size() > 0) { // one success message for all successful deletions FacesContextUtility.addMessage(FacesMessage.SEVERITY_INFO, "Deleted resource operation records: " + StringUtility.getListAsDelimitedString(success)); } for (Map.Entry<String, String> error : failure.entrySet()) { // one message per failed deletion (hopefully rare) FacesContextUtility.addMessage(FacesMessage.SEVERITY_ERROR, "Failed to delete resource operation record " + error.getKey() + ". Cause: " + error.getValue()); } return "success"; } // intentially short class for win path issues. This whole class is soon going away with portal war private class A extends PagedListDataModel<ResourceOperationHistory> { public A(PageControlView view, String beanName) { super(view, beanName); } @Override public PageList<ResourceOperationHistory> fetchPage(PageControl pc) { OperationManagerLocal manager = LookupUtil.getOperationManager(); PageList<ResourceOperationHistory> results; results = manager.findCompletedResourceOperationHistories(getSubject(), getResource().getId(), null, null, pc); return results; } } }