src-main.org.awakefw.commons.api.client.DefaultAwakeProgressManager Maven / Gradle / Ivy
Show all versions of awake-file Show documentation
/*
* This file is part of Awake FILE.
* Awake FILE: Easy file upload & download over HTTP with Java.
* Copyright (C) 2014, KawanSoft SAS
* (http://www.kawansoft.com). All rights reserved.
*
* Awake FILE is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* Awake FILE 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*
* Any modifications to this file must keep this entire header
* intact.
*/
package org.awakefw.commons.api.client;
import java.util.Date;
import org.awakefw.file.api.util.AwakeDebug;
/**
*
* A default implementation for an Awake Progress Manager.
*
* This implementation is ready to use without any customization.
*
*
* @author Nicolas de Pomereu
* @since 1.0
*/
public class DefaultAwakeProgressManager implements AwakeProgressManager {
private static boolean DEBUG = AwakeDebug.isSet(DefaultAwakeProgressManager.class);
private long lengthToTransfer = 0;
private boolean cancelValue = false;
private int progress = 0;
/**
* Constructor.
*/
public DefaultAwakeProgressManager() {
}
/*
* (non-Javadoc)
*
* @see org.awakefw.file.api.progress.AwakeProgressManager#cancel()
*/
@Override
public void cancel() {
cancelValue = true;
}
/*
* (non-Javadoc)
*
* @see
* org.awakefw.file.api.progress.AwakeProgressManager#getLengthToTransfer()
*/
@Override
public long getLengthToTransfer() {
return lengthToTransfer;
}
/*
* (non-Javadoc)
*
* @see org.awakefw.file.api.progress.AwakeProgressManager#getProgress()
*/
@Override
public int getProgress() {
return progress;
}
/*
* (non-Javadoc)
*
* @see org.awakefw.file.api.progress.AwakeProgressManager#isCancelled()
*/
@Override
public boolean isCancelled() {
return cancelValue;
}
// /*
// * (non-Javadoc)
// *
// * @see org.awakefw.file.api.progress.AwakeProgressManager#setLengthToTransfer(long)
// */
/**
* Will reinitialize all other values for a new usage:
*
* cancelValue = false
* progress = 0
*
*/
@Override
public void setLengthToTransfer(long lengthToTransfer) {
this.lengthToTransfer = lengthToTransfer;
this.cancelValue = false;
this.progress = 0;
}
/*
* (non-Javadoc)
*
* @see org.awakefw.file.api.progress.AwakeProgressManager#setProgress(int)
*/
@Override
public void setProgress(int progress) {
this.progress = progress;
debug("progress: " + this.progress + " " + new Date());
}
/**
* Displays the given message if DEBUG is set.
*
* @param s
* the debug message
*/
private static void debug(String s) {
if (DEBUG) {
System.out.println(s);
}
}
}