/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2012 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package com.sun.enterprise.admin.progress; import com.sun.enterprise.util.StringUtils; import java.util.HashMap; import java.util.Map; import org.glassfish.api.admin.ProgressStatus; import org.glassfish.api.admin.progress.ProgressStatusBase; import org.glassfish.api.admin.progress.ProgressStatusDTO; import org.glassfish.api.admin.progress.ProgressStatusEvent; /** Provides mirroring of events into given ProgressStatus substructure. * Never rewrites name in base ProgressStatus (i.e. only children will have copied * names). * * @author mmares */ public class ProgressStatusClient { private ProgressStatus status; private final Map<String, ProgressStatus> map = new HashMap<String, ProgressStatus>(); /** Mirror incoming events and structures into given ProgressStatus. * If null, CommandProgess will be created with first event or structure. * @param status */ public ProgressStatusClient(ProgressStatus status) { this.status = status; } private synchronized void preventNullStatus(String name, String id) { if (status == null) { status = new CommandProgressImpl(name, id); } map.put(id, status); } public synchronized void mirror(ProgressStatusDTO dto) { if (dto == null) { return; } preventNullStatus(dto.getName(), dto.getId()); mirror(dto, status); } private void mirror(ProgressStatusDTO dto, ProgressStatus stat) { //TODO: copy-paste problem because of ProgressStatusDTO and ProgressStatusBase we have to create shared interface stat.setTotalStepCount(dto.getTotalStepCount()); stat.setCurrentStepCount(dto.getCurrentStepCount()); if (dto.isCompleted()) { stat.complete(); } for (ProgressStatusDTO.ChildProgressStatusDTO chld : dto.getChildren()) { ProgressStatus dst = map.get(chld.getProgressStatus().getId()); if (dst == null) { dst = stat.createChild(chld.getProgressStatus().getName(), chld.getAllocatedSteps()); map.put(chld.getProgressStatus().getId(), dst); } mirror(chld.getProgressStatus(), dst); } } public synchronized void mirror(ProgressStatusBase source) { if (source == null) { return; } preventNullStatus(source.getName(), source.getId()); mirror(source, status); } private void mirror(ProgressStatusBase source, ProgressStatus stat) { stat.setTotalStepCount(source.getTotalStepCount()); stat.setCurrentStepCount(source.getCurrentStepCount()); if (source.isComplete()) { stat.complete(); } for (ProgressStatusBase.ChildProgressStatus chld : source.getChildProgressStatuses()) { ProgressStatus dst = map.get(chld.getProgressStatus().getId()); if (dst == null) { dst = stat.createChild(chld.getProgressStatus().getName(), chld.getAllocatedSteps()); map.put(chld.getProgressStatus().getId(), dst); } mirror(chld.getProgressStatus(), dst); } } /** Applies event on existing structures. If not appliable do nothing. */ public synchronized void mirror(ProgressStatusEvent event) { if (event == null) { return; } ProgressStatus effected = map.get(event.getSource().getId()); if (event.getChanged() != null && event.getChanged().size() > 0) { for (ProgressStatusEvent.Changed chng : event.getChanged()) { switch (chng) { case NEW_CHILD: effected = map.get(event.getParentSourceId()); if (effected != null) { ProgressStatus child = effected.createChild(event.getSource().getName(), event.getAllocatedSteps()); map.put(event.getSource().getId(), child); child.setTotalStepCount(event.getSource().getTotalStepCount()); child.setCurrentStepCount(event.getSource().getCurrentStepCount()); if (event.getSource().isCompleted()) { child.complete(); } } break; case COMPLETED: effected.complete(event.getMessage()); break; case STEPS: effected.setCurrentStepCount(event.getSource().getCurrentStepCount()); if (StringUtils.ok(event.getMessage())) { effected.progress(0, event.getMessage(), event.isSpinner()); } break; case TOTAL_STEPS: effected.setTotalStepCount(event.getSource().getTotalStepCount()); if (StringUtils.ok(event.getMessage())) { effected.progress(0, event.getMessage(), event.isSpinner()); } break; case SPINNER: break; default: throw new AssertionError(); } } } else { if (StringUtils.ok(event.getMessage())) { effected.progress(0, event.getMessage(), event.isSpinner()); } } } public synchronized ProgressStatus getProgressStatus() { return status; } }