All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.internal.logging.progress.ProgressLogger Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2016 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.gradle.internal.logging.progress;

/**
 * Used to log the progress of a potentially long running operation.
 *
 * 

When running in the command-line UI, the properties of an operation are treated as follows: * *

    * *
  • When an operation starts, and the operation has a logging header defined, a LIFECYCLE log message is generated containing the logging header. * If running under a terminal, and the logging header == the short description or the status, this log message is deferred until either some other log * message is generated or the operation completes.
  • * *
  • If running under a terminal, and the operation has a status defined, that status is shown in the 'status bar' at the bottom of the screen.
  • * *
  • If running under a terminal, and the operation has a short description and no status defined, the short description is shown in the 'status bar' at the bottom of the screen.
  • * *
* *

*/ public interface ProgressLogger { /** * Returns the description of the operation. * * @return the description, must not be empty. */ String getDescription(); /** *

Sets the description of the operation. This should be a full, stand-alone description of the operation. * *

This must be called before {@link #started()}. * * @param description The description. */ ProgressLogger setDescription(String description); /** * Returns the short description of the operation. This is used in place of the full description when display space is limited. * * @return The short description, must not be empty. */ String getShortDescription(); /** *

Sets the short description of the operation. This is used in place of the full description when display space is limited. * *

This must be called before {@link #started()} * * @param description The short description. */ ProgressLogger setShortDescription(String description); /** *

Returns the logging header for the operation. This is logged before any other log messages for this operation are logged. It is usually * also logged at the end of the operation, along with the final status message. Defaults to null. * *

If not specified, no logging header is logged. * * @return The logging header, possibly empty. */ String getLoggingHeader(); /** *

Sets the logging header for the operation. This is logged before any other log messages for this operation are logged. It is usually * also logged at the end of the operation, along with the final status message. Defaults to null. * * @param header The header. May be empty or null. */ ProgressLogger setLoggingHeader(String header); /** * Convenience method that sets descriptions and logs started() event. * * @return this logger instance */ ProgressLogger start(String description, String shortDescription); /** * Logs the start of the operation, with no initial status. */ void started(); /** * Logs the start of the operation, with the given status. * * @param status The initial status message. Can be null or empty. */ void started(String status); /** * Logs some progress, indicated by a new status. * * @param status The new status message. Can be null or empty. */ void progress(String status); /** * Logs the completion of the operation, with no final status */ void completed(); /** * Logs the completion of the operation, with a final status. This is generally logged along with the description. * * @param status The final status message. Can be null or empty. */ void completed(String status); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy