mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
226 lines
7.9 KiB
XML
226 lines
7.9 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="xul.css" type="text/css"?>
|
|
<?xml-stylesheet href="downloadProgress.css" type="text/css"?>
|
|
|
|
<!DOCTYPE window>
|
|
|
|
<window xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="Saving file"
|
|
width="425"
|
|
height="225"
|
|
onload="onLoad()">
|
|
|
|
<data>
|
|
<broadcaster id="data.location" type="url" value="url"/>
|
|
<broadcaster id="data.contentType" type="string" value="content-type"/>
|
|
<broadcaster id="data.fileName" type="string" value=""/>
|
|
<broadcaster id="data.progress" type="progress" value="0" max="0" completed="false"/>
|
|
<broadcaster id="data.status" type="string" value=""/>
|
|
<broadcaster id="data.execute" command=""/>
|
|
</data>
|
|
|
|
<dialog>
|
|
<observes element="data.progress" attribute="value" onchange="onProgress()"/>
|
|
<observes element="data.progress" attribute="completed" onchange="onCompletion()"/>
|
|
<observes element="data.status" attribute="value" onchange="onStatus()"/>
|
|
</dialog>
|
|
|
|
<html:script>
|
|
var data;
|
|
var dialog;
|
|
|
|
function loadDialog() {
|
|
dialog.location.setAttribute( "value", data.location.getAttribute( "value" ) );
|
|
dialog.fileName.setAttribute( "value", data.fileName.getAttribute( "value" ) );
|
|
}
|
|
|
|
function onLoad() {
|
|
// Set global variables.
|
|
data = new Object;
|
|
data.location = document.getElementById("data.location");
|
|
data.contentType = document.getElementById("data.contentType");
|
|
data.fileName = document.getElementById("data.fileName");
|
|
data.progress = document.getElementById("data.progress");
|
|
data.status = document.getElementById("data.status");
|
|
data.execute = document.getElementById("data.execute");
|
|
dialog = new Object;
|
|
dialog.location = document.getElementById("dialog.location");
|
|
dialog.contentType = document.getElementById("dialog.contentType");
|
|
dialog.fileName = document.getElementById("dialog.fileName");
|
|
dialog.status = document.getElementById("dialog.status");
|
|
dialog.progress = document.getElementById("dialog.progress");
|
|
dialog.progressPercent = document.getElementById("dialog.progressPercent");
|
|
dialog.timeLeft = document.getElementById("dialog.timeLeft");
|
|
dialog.cancel = document.getElementById("dialog.cancel");
|
|
|
|
// Fill dialog.
|
|
loadDialog();
|
|
|
|
// Commence.
|
|
data.execute.setAttribute("command","start");
|
|
}
|
|
|
|
var started = false;
|
|
var completed = false;
|
|
var startTime;
|
|
var interval = 1000; // Update every 1000 milliseconds.
|
|
var lastUpdate = -interval; // Update initially.
|
|
|
|
function stop() {
|
|
if ( started && !completed ) {
|
|
// Stop the download.
|
|
data.execute.setAttribute( "command", "stop" );
|
|
} else {
|
|
// Close the window.
|
|
data.execute.setAttribute( "command", "close" );
|
|
}
|
|
}
|
|
|
|
function onProgress() {
|
|
// Check for first time.
|
|
if ( !started ) {
|
|
// Initialize download start time.
|
|
started = true;
|
|
startTime = ( new Date() ).getTime();
|
|
// Let the user stop, now.
|
|
dialog.cancel.removeAttribute( "disabled" );
|
|
}
|
|
// Get stats.
|
|
var bytes = data.progress.getAttribute("value");
|
|
var max = data.progress.getAttribute("max");
|
|
|
|
// Get current time.
|
|
var now = ( new Date() ).getTime();
|
|
// If interval hasn't elapsed, ignore it.
|
|
if ( now - lastUpdate < interval && eval(bytes) < eval(max) ) {
|
|
return;
|
|
}
|
|
|
|
// Update this time.
|
|
lastUpdate = now;
|
|
|
|
// Update download rate.
|
|
var elapsed = now - startTime;
|
|
var rate; // bytes/sec
|
|
if ( elapsed ) {
|
|
rate = ( bytes * 1000 ) / elapsed;
|
|
} else {
|
|
rate = 0;
|
|
}
|
|
|
|
// Calculate percentage.
|
|
var percent = Math.round( (bytes*100)/max );
|
|
|
|
// Advance progress meter.
|
|
dialog.progress.setAttribute( "value", percent );
|
|
|
|
// Update status (nnn of mmm)
|
|
var status = "( ";
|
|
status += Math.round( bytes/1024 );
|
|
status += "K of ";
|
|
status += Math.round( max/1024 );
|
|
status += "K bytes ";
|
|
if ( rate ) {
|
|
status += "at ";
|
|
status += Math.round( (rate*10)/1024 ) / 10;
|
|
status += "K bytes/sec )";
|
|
} else {
|
|
status += ")";
|
|
}
|
|
status +=
|
|
dialog.status.childNodes[0].nodeValue = status;
|
|
|
|
// Update percentage label on progress meter.
|
|
dialog.progressPercent.childNodes[0].nodeValue = percent + "%";
|
|
|
|
// Update time remaining.
|
|
if ( rate ) {
|
|
var rem = Math.round( ( max - bytes ) / rate ); // In seconds.
|
|
status = "";
|
|
if ( rem >= 3600 ) {
|
|
status += Math.round( rem/3600 ) + " hours, ";
|
|
rem = rem % 3600;
|
|
}
|
|
status += Math.round( rem/60 ) + " minutes and ";
|
|
rem = rem % 60;
|
|
status += rem + " seconds";
|
|
dialog.timeLeft.childNodes[0].nodeValue = status;
|
|
}
|
|
}
|
|
|
|
function onCompletion() {
|
|
if ( !completed ) {
|
|
completed = true;
|
|
data.execute.setAttribute( "command", "close" );
|
|
}
|
|
}
|
|
|
|
function onStatus() {
|
|
var txt = data.status.getAttribute( "value" );
|
|
dialog.status.childNodes[0].nodeValue = txt;
|
|
}
|
|
</html:script>
|
|
|
|
<html:table style="width:100%;">
|
|
|
|
<html:tr>
|
|
<html:td align="right">
|
|
Location:
|
|
</html:td>
|
|
<html:td align="left">
|
|
<html:input id="dialog.location" readonly="" style="background-color:lightgray;width:300px;"/>
|
|
</html:td>
|
|
</html:tr>
|
|
|
|
<html:tr>
|
|
<html:td align="right">
|
|
Saving:
|
|
</html:td>
|
|
<html:td align="left">
|
|
<html:input id="dialog.fileName" readonly="" value="" style="background-color:lightgray;width:300px;"/>
|
|
</html:td>
|
|
</html:tr>
|
|
|
|
<html:tr>
|
|
<html:td align="right">
|
|
Status:
|
|
</html:td>
|
|
<html:td align="left">
|
|
<html:span id="dialog.status">
|
|
( nn.nK of mm.mK bytes )
|
|
</html:span>
|
|
</html:td>
|
|
</html:tr>
|
|
|
|
<html:tr>
|
|
<html:td align="right">
|
|
Time Left:
|
|
</html:td>
|
|
<html:td align="left">
|
|
<html:span id="dialog.timeLeft">
|
|
?
|
|
</html:span>
|
|
</html:td>
|
|
</html:tr>
|
|
|
|
<html:tr>
|
|
<html:td align="center" height="40px" colspan="2">
|
|
<progressmeter id="dialog.progress" mode="normal" value="0"
|
|
style="width:300px;height:16px;"/>
|
|
<html:span id="dialog.progressPercent" style="border-left:5px solid lightgray;">
|
|
0%
|
|
</html:span>
|
|
</html:td>
|
|
</html:tr>
|
|
|
|
<html:tr>
|
|
<html:td align="center" colspan="2">
|
|
<html:button id="dialog.cancel" onclick="stop()">Cancel</html:button>
|
|
</html:td>
|
|
</html:tr>
|
|
|
|
</html:table>
|
|
|
|
</window>
|