org.glassfish.api.admin.ProgressStatus Maven / Gradle / Ivy
Show all versions of payara-embedded-all Show documentation
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2012-2014 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 org.glassfish.api.admin;
import java.io.Serializable;
/** API for providing information about work progress in {@link AdminCommand}
* implementations.
*
*
* Progress is represented by two attributes:
*
* - {@code steps}
- an integer value which represents units of
* progress (a.k.a. steps) taken during command execution to show progress.
* Should not be greater than * {@code totalStepCount} (if defined).
* - {@code message}
- A progress message to be sent to the client.
*
*
* Because {@code AdminCommand} can execute other {@code AdminCommand} and
* command execution on a cluster triggers the replication process the
* {@code ProgressStatus} can have child ProgressStatus objects. Any
* {@code ProgressStatus} can be used independently without knowledge
* of the parent's {@code ProgressStatus}.
* Any child ProgressStatus objects can be named by its creator. The {@code name}
* is mainly used in connection with the {@code message} attribute to define its
* context.
*
*
* Usage:
*
* First inject a {@code ProgressStatus} into an {@code AdminCommand} implementation.
*
* @Progress
* private ProgressStatus ps;
*
*
* Optionally pass the total step count or name to provide context of the
* progress (if the name is not provided it defaults to the command's name).
*
* @Progress(totalStepCount=10, name="deploy")
*
*
*
* Total step count can also be set via this method. This overrides the count if
* it was previously set (possibly via the @Progress annotation).
*
* setTotalStepCount(int totalStepCount);
*
*
* The primary use of {@code tatalStepCount} is as the denominator for computing
* the completion percentage as reported in the commands progress report:
*
* percent complete = current step count / total step count * 100
*
*
* The total step count can be changed after being set but may result in the
* completion percentage jumping (forward or backwards).
*
* If the total step count is not set then a completion percentage will not
* be available.
*
*
* The {@code progress()} methods are used to move progress forward (or backwards).
* The current step count will be incremented by the number of
* steps indicated.
*
* progress(String message, int steps);
* progress(String message);
* progress(int steps);
*
*
* The version of progress that only takes a message will cause a new message
* to be displayed but will not change the completion percentage.
*
*
*
* It is possible to set the current step count to a specific value, for
* example when an error occurs and the command must repeat a set of operations.
*
* setCurrentStepCount(int stepCount);
*
*
* This will likely result in the overall completion percentage jumping
* when the next progress() message is generated.
*
*
* Any ProgressStatus can be completed using methods
*
* complete(String message);
* complete();
*
*
* Indicates the command is complete and no further progress status will
* be delivered. Subsequent invocations of progress() will be ignored. This
* method also invokes {@code complete()} on all child ProgressStatus objects.
*
*
*
* It is also possible to create a child ProgressStatus with independent logic
* used to determine progress. The parent {@code ProgressStatus} is not visible to the
* child ProgressStatus object and the child can progress somewhat independently
* from the parent's progress. But generally the parent should not complete
* its progress before the children have completed.
*
* createChild(String name, int allocatedSteps);
* createChild(int allocatedSteps);
*
*
* The name allocated to the child is used in the progress status output to
* define context of the {@code message}.
*
.
* 80%: [parent name:[child name:[...]] message
*
*
* The allocatedSteps parameter represents the subset of steps from the
* parent's allocation that will be given to the child to complete.
*
* @see org.glassfish.api.Progress
* @author mmares
*/
public interface ProgressStatus extends Serializable {
/** Number of steps necessary to complete the operation.
* Value is used to determine percentage of work completed. This method
* can be used to override the totalStepCount if it was established via the
* {@link org.glassfish.api.Progress} annotation.
* The total step count is used as the denominator for computing the
* completion percentage as reported in the command's progress output:
* {@code percent complete = current step count / total step count * 100}
* Note the above formula is a bit more complex when child ProgressStatus
* objects are in use.
*
* The total step count can be changed after being set but may result in the
* completion percentage jumping (forward or backwards).
*
* If the total step count is not set then a completion percentage will not
* be available.
*
* It can be also set during injection using {@code totalStepCount}
* parameter in {@link org.glassfish.api.Progress} annotation.
*
* @param totalStepCount non-negative value defines denominator for
* the percentage computation
*/
public void setTotalStepCount(int totalStepCount);
/** Total step count. Used for computing the completion percentage.
*
* @return total step count. Negative for undefined value.
*/
public int getTotalStepCount();
/** Remaining count of steps to complete this progress.
* {@code totalStepCount - currentStepCount - allocated step count}
*
* @return negative value for undefined totalStepCount. 0 value for
* completed progress.
*/
public int getRemainingStepCount();
/** Indicates progress occurred.
* The steps taken will be used to reduce the remaining step count.
* If the number of steps taken exceeds the total step count the
* current step count will be normalized to the total step count. This
* avoids the completion percentage ever exceeding 100%. The message
* will be sent to the client along with the completion percentage if
* it can be computed.
*
* @param steps the number of steps taken. Negative steps will reduce
* the completion percentage. Never to non-negative value.
* @param message to be displayed by the client.
* @param spinner {@code true} starts showing the spinner. It will be
* active until next progress.
*/
public void progress(int steps, String message, boolean spinner);
/** Indicates progress occurred.
* The steps taken will be used to reduce the remaining step count.
* If the number of steps taken exceeds the total step count the
* current step count will be normalized to the total step count. This
* avoids the completion percentage ever exceeding 100%. The message
* will be sent to the client along with the completion percentage if
* it can be computed.
*
* @param steps the number of steps taken. Negative steps will reduce
* the completion percentage. Never to non-negative value.
* @param message to be displayed by the client.
*/
public void progress(int steps, String message);
/** Indicate progress occurred.
* The existing (prior) progress message, if available will be reused.
* If the number of steps taken exceeds the total step count the
* current step count will be normalized to the total step count. This
* avoids the completion percentage ever exceeding 100%.
*
* @param steps the number of steps taken. Negative steps will reduce
* the completion percentage. Never to non-negative value.
*/
public void progress(int steps);
/** Indicate progress occurred.
* The completion percentage (if computable) will be displayed.
*
* @param message to be displayed by the client.
*/
public void progress(String message);
/** This allows the current step count to be changed to a specific value,
* for example when an error occurs and the command must repeat a set
* of operations.
* This will likely result in the overall completion percentage jumping
* when the next progress() message is generated.
* If child ProgressStatus objects exist care must be taken when changing
* the step count value to account for steps allocated to children.
* Generally the current step count should not be advanced beyond the
* number of steps allocated to child ProgressStatus objects.
*
* @param stepCount new {@code stepCount} value. Negative is normalized to 0
* greater than the total step count is normalized to the total step
* count
*/
public void setCurrentStepCount(int stepCount);
/** Indicates the command is complete and no further progress status will
* be delivered. Subsequent invocations of progress() will be ignored.
* This method also invokes {@code complete()} on all child ProgressStatus objects.
*
* If this method is not invoked prior to the command completing the CLI
* framework will implicitly invoke {@code complete()} for the ProgressStatus
* associated with the command.
*
* @param message to be displayed to the user.
*/
public void complete(String message);
/** Indicates the command is complete and no further progress status will
* be delivered. Subsequent invocations of progress() will be ignored.
* This method also invokes {@code complete()} on all child ProgressStatus objects.
*
* If this method is not invoked prior to the command completing the CLI
* framework will implicitly invoke {@code complete()} for the ProgressStatus
* associated with the command.
*/
public void complete();
/** Returns true if the {@code ProgressStatus} has been marked as complete
* via the {@code complete()} method.
*
* @return if this progress was completed
*/
public boolean isComplete();
/** Create a child ProgressStatus object which can be used independently by
* a command's subroutine or sub-commands.
* The name allocated to the child is used in the progress status output:
*
* 80%: [parent name:[child name: message]]
*
* The allocatedSteps parameter represents the subset of steps from the
* parent's allocation that will be given to the child to complete.
* When the child has completed all its steps it will have progressed the
* parent's allocated steps.
* Example: Suppose the parent sets its TotalStepCount to 100 and
* allocates 25 steps to a child.
* The child sets its TotalStepCount to 100. Then for every 4 steps
* the child progresses it will move the parent's progress 1 step given
* the parent only allocated a total of 25 steps to the child but the child
* has a total step count of {@code 100: 100/25 = 4} child steps are
* equivalent to 1 parent step.
*
* Note: care must be taken when allocating steps to children. The number
* of steps allocated to all children of the parent must not exceed the
* parent's total step count. Doing so may results in erroneous
* completion percentages.
*
* @param name to be associated with the child ProgressStatus. This name
* appears in the progress sent to the client. If the name is an
* empty string a name for this child will not be included in the
* message.
* @param allocatedSteps the number of progress steps the parent is
* allocating to the child.
*/
public ProgressStatus createChild(String name, int allocatedSteps);
/** Create a child ProgressStatus object which can be used independently by
* a command's subroutine or sub-commands.
* This version does not take a name and therefor a child name will not
* be use in any messages generated from this ProgressStatus object.
*
* 80%: [parent name: message]
*
* @param allocatedSteps the number of progress steps the parent is
* allocating to the child.
*/
public ProgressStatus createChild(int allocatedSteps);
/** Id is unique for any ProgressStatuses. It is mainly used for remote
* communication.
*/
public String getId();
}