![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.wiki.ui.progress.DefaultProgressManager Maven / Gradle / Ivy
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.apache.wiki.ui.progress;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.wiki.ajax.WikiAjaxDispatcherServlet;
import org.apache.wiki.ajax.WikiAjaxServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import java.util.concurrent.ConcurrentHashMap;
/**
* Manages progressing items. In general this class is used whenever JSPWiki is doing something which may require a long time.
* In addition, this manager provides a JSON interface for finding remotely what the progress is. The JSON object name is
* JSON_PROGRESSTRACKER = "{@value #JSON_PROGRESSTRACKER}".
*
* @since 2.6
*/
public class DefaultProgressManager implements ProgressManager {
private final Map< String,ProgressItem > m_progressingTasks = new ConcurrentHashMap<>();
private static final Logger LOG = LogManager.getLogger( DefaultProgressManager.class );
/**
* Creates a new ProgressManager.
*/
public DefaultProgressManager() {
// TODO: Replace with custom annotations. See JSPWIKI-566
WikiAjaxDispatcherServlet.registerServlet( JSON_PROGRESSTRACKER, new JSONTracker() );
}
/**
* You can use this to get an unique process identifier.
*
* @return A new random value
*/
public String getNewProgressIdentifier()
{
return UUID.randomUUID().toString();
}
/**
* Call this method to get your ProgressItem into the ProgressManager queue. The ProgressItem will be moved to state STARTED.
*
* @param pi ProgressItem to start
* @param id The progress identifier
*/
@Override
public void startProgress( final ProgressItem pi, final String id ) {
LOG.debug( "Adding " + id + " to progress queue" );
m_progressingTasks.put( id, pi );
pi.setState( ProgressItem.STARTED );
}
/**
* Call this method to remove your ProgressItem from the queue (after which getProgress() will no longer find it.
* The ProgressItem will be moved to state STOPPED.
*
* @param id The progress identifier
*/
@Override
public void stopProgress( final String id ) {
LOG.debug( "Removed " + id + " from progress queue" );
final ProgressItem pi = m_progressingTasks.remove( id );
if( pi != null ) {
pi.setState( ProgressItem.STOPPED );
}
}
/**
* Get the progress in percents.
*
* @param id The progress identifier.
* @return a value between 0 to 100 indicating the progress
* @throws IllegalArgumentException If no such progress item exists.
*/
@Override
public int getProgress( final String id ) throws IllegalArgumentException {
final ProgressItem pi = m_progressingTasks.get( id );
if( pi != null ) {
return pi.getProgress();
}
throw new IllegalArgumentException( "No such id was found" );
}
/**
* Provides access to a progress indicator, assuming you know the ID. Progress of zero (0) means that the progress has just started,
* and a progress of 100 means that it is complete.
*/
public class JSONTracker implements WikiAjaxServlet {
/**
* Returns upload progress in percents so far.
*
* @param progressId The string representation of the progress ID that you want to know the progress of.
* @return a value between 0 to 100 indicating the progress
*/
public int getProgress( final String progressId )
{
return DefaultProgressManager.this.getProgress( progressId );
}
@Override
public String getServletMapping() {
return JSON_PROGRESSTRACKER;
}
@Override
public void service( final HttpServletRequest req,
final HttpServletResponse resp,
final String actionName,
final List< String > params ) throws IOException {
LOG.debug( "ProgressManager.doGet() START" );
if( params.isEmpty() ) {
return;
}
final String progressId = params.get(0);
LOG.debug( "progressId=" + progressId );
String progressString = "";
try {
progressString = Integer.toString( getProgress( progressId ) );
} catch( final IllegalArgumentException e ) { // ignore
LOG.debug( "progressId " + progressId + " is no longer valid" );
}
LOG.debug( "progressString=" + progressString );
resp.getWriter().write( progressString );
LOG.debug( "ProgressManager.doGet() DONE" );
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy