2015-04-27 20:10:36 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2015 Laurent CLOUET
|
|
|
|
|
* Author Laurent CLOUET <laurent.clouet@nopnop.net>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
|
* as published by the Free Software Foundation; version 2
|
|
|
|
|
* of the License.
|
|
|
|
|
*
|
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package com.sheepit.client;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
public class RenderProcess {
|
|
|
|
|
private long start;
|
|
|
|
|
private long end;
|
2015-04-27 20:35:44 +01:00
|
|
|
private int remainingDuration;
|
2015-04-27 20:10:36 +01:00
|
|
|
private long memoryUsed; // in kB
|
|
|
|
|
private Process process;
|
|
|
|
|
|
|
|
|
|
public RenderProcess() {
|
|
|
|
|
process = null;
|
|
|
|
|
start = -1;
|
|
|
|
|
end = -1;
|
|
|
|
|
memoryUsed = 0;
|
2015-04-27 20:35:44 +01:00
|
|
|
remainingDuration = 0;
|
2015-04-27 20:10:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setMemoryUsed(long val) {
|
|
|
|
|
memoryUsed = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public long getMemoryUsed() {
|
|
|
|
|
return memoryUsed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public long getStartTime() {
|
|
|
|
|
return start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public long getEndTime() {
|
|
|
|
|
return end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @return duration in seconds
|
|
|
|
|
*/
|
|
|
|
|
public int getDuration() {
|
|
|
|
|
if (start != -1 && end != -1) {
|
|
|
|
|
return (int) ((end - start) / 1000);
|
|
|
|
|
}
|
|
|
|
|
else if (start != -1) {
|
|
|
|
|
return (int) ((new Date().getTime() - start) / 1000);
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-27 20:35:44 +01:00
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @return duration in seconds
|
|
|
|
|
*/
|
|
|
|
|
public int getRemainingDuration() {
|
|
|
|
|
return remainingDuration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setRemainingDuration(int val) {
|
|
|
|
|
remainingDuration = val;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-27 20:10:36 +01:00
|
|
|
public void finish() {
|
|
|
|
|
end = new Date().getTime();
|
|
|
|
|
process = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void start() {
|
|
|
|
|
start = new Date().getTime();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int exitValue() {
|
|
|
|
|
int value = 0;
|
|
|
|
|
if (process == null) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
value = process.exitValue();
|
|
|
|
|
}
|
|
|
|
|
catch (IllegalThreadStateException e) {
|
|
|
|
|
// the process is not finished yet
|
|
|
|
|
value = 0;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e) {
|
|
|
|
|
// actually is for java.io.IOException: GetExitCodeProcess error=6, The handle is invalid
|
|
|
|
|
// it was not declared throwable
|
|
|
|
|
|
|
|
|
|
// the process is not finished yet
|
|
|
|
|
value = 0;
|
|
|
|
|
}
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setProcess(Process val) {
|
|
|
|
|
process = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Process getProcess() {
|
|
|
|
|
return process;
|
|
|
|
|
}
|
|
|
|
|
}
|