home *** CD-ROM | disk | FTP | other *** search
/ Freelog 112 / FreelogNo112-NovembreDecembre2012.iso / Multimedia / Songbird / Songbird_2.0.0-2311_windows-i686-msvc8.exe / xulrunner / components / nsProgressDialog.js < prev    next >
Text File  |  2010-06-04  |  37KB  |  945 lines

  1. /* vim:set ts=4 sts=4 sw=4 et cin: */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla Progress Dialog.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corp.
  19.  * Portions created by the Initial Developer are Copyright (C) 2002
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Bill Law       <law@netscape.com>
  24.  *   Aaron Kaluszka <ask@swva.net>
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. /* This file implements the nsIProgressDialog interface.  See nsIProgressDialog.idl
  41.  *
  42.  * The implementation consists of a JavaScript "class" named nsProgressDialog,
  43.  * comprised of:
  44.  *   - a JS constructor function
  45.  *   - a prototype providing all the interface methods and implementation stuff
  46.  *
  47.  * In addition, this file implements an nsIModule object that registers the
  48.  * nsProgressDialog component.
  49.  */
  50.  
  51. /* ctor
  52.  */
  53. function nsProgressDialog() {
  54.     // Initialize data properties.
  55.     this.mParent      = null;
  56.     this.mOperation   = null;
  57.     this.mStartTime   = ( new Date() ).getTime();
  58.     this.observer     = null;
  59.     this.mLastUpdate  = Number.MIN_VALUE; // To ensure first onProgress causes update.
  60.     this.mInterval    = 750; // Default to .75 seconds.
  61.     this.mElapsed     = 0;
  62.     this.mLoaded      = false;
  63.     this.fields       = new Array;
  64.     this.strings      = new Array;
  65.     this.mSource      = null;
  66.     this.mTarget      = null;
  67.     this.mTargetFile  = null;
  68.     this.mMIMEInfo    = null;
  69.     this.mDialog      = null;
  70.     this.mDisplayName = null;
  71.     this.mPaused      = false;
  72.     this.mRequest     = null;
  73.     this.mCompleted   = false;
  74.     this.mMode        = "normal";
  75.     this.mPercent     = -1;
  76.     this.mRate        = 0;
  77.     this.mBundle      = null;
  78.     this.mCancelDownloadOnClose = true;
  79. }
  80.  
  81. const nsIProgressDialog      = Components.interfaces.nsIProgressDialog;
  82. const nsIWindowWatcher       = Components.interfaces.nsIWindowWatcher;
  83. const nsIWebProgressListener = Components.interfaces.nsIWebProgressListener;
  84. const nsITextToSubURI        = Components.interfaces.nsITextToSubURI;
  85. const nsIChannel             = Components.interfaces.nsIChannel;
  86. const nsIFileURL             = Components.interfaces.nsIFileURL;
  87. const nsIURL                 = Components.interfaces.nsIURL;
  88. const nsILocalFile           = Components.interfaces.nsILocalFile;
  89.  
  90. nsProgressDialog.prototype = {
  91.     // Turn this on to get debugging messages.
  92.     debug: false,
  93.  
  94.     // Chrome-related constants.
  95.     dialogChrome:   "chrome://global/content/nsProgressDialog.xul",
  96.     dialogFeatures: "chrome,titlebar,minimizable=yes,dialog=no",
  97.  
  98.     // getters/setters
  99.     get saving()            { return this.MIMEInfo == null ||
  100.                               this.MIMEInfo.preferredAction == Components.interfaces.nsIMIMEInfo.saveToDisk; },
  101.     get parent()            { return this.mParent; },
  102.     set parent(newval)      { return this.mParent = newval; },
  103.     get operation()         { return this.mOperation; },
  104.     set operation(newval)   { return this.mOperation = newval; },
  105.     get observer()          { return this.mObserver; },
  106.     set observer(newval)    { return this.mObserver = newval; },
  107.     get startTime()         { return this.mStartTime; },
  108.     set startTime(newval)   { return this.mStartTime = newval/1000; }, // PR_Now() is in microseconds, so we convert.
  109.     get lastUpdate()        { return this.mLastUpdate; },
  110.     set lastUpdate(newval)  { return this.mLastUpdate = newval; },
  111.     get interval()          { return this.mInterval; },
  112.     set interval(newval)    { return this.mInterval = newval; },
  113.     get elapsed()           { return this.mElapsed; },
  114.     set elapsed(newval)     { return this.mElapsed = newval; },
  115.     get loaded()            { return this.mLoaded; },
  116.     set loaded(newval)      { return this.mLoaded = newval; },
  117.     get source()            { return this.mSource; },
  118.     set source(newval)      { return this.mSource = newval; },
  119.     get target()            { return this.mTarget; },
  120.     get targetFile()        { return this.mTargetFile; },
  121.     get MIMEInfo()          { return this.mMIMEInfo; },
  122.     set MIMEInfo(newval)    { return this.mMIMEInfo = newval; },
  123.     get dialog()            { return this.mDialog; },
  124.     set dialog(newval)      { return this.mDialog = newval; },
  125.     get displayName()       { return this.mDisplayName; },
  126.     set displayName(newval) { return this.mDisplayName = newval; },
  127.     get paused()            { return this.mPaused; },
  128.     get completed()         { return this.mCompleted; },
  129.     get mode()              { return this.mMode; },
  130.     get percent()           { return this.mPercent; },
  131.     get rate()              { return this.mRate; },
  132.     get kRate()             { return this.mRate / 1024; },
  133.     get cancelDownloadOnClose() { return this.mCancelDownloadOnClose; },
  134.     set cancelDownloadOnClose(newval) { return this.mCancelDownloadOnClose = newval; },
  135.  
  136.     set target(newval) {
  137.         // If newval references a file on the local filesystem, then grab a
  138.         // reference to its corresponding nsIFile.
  139.         if (newval instanceof nsIFileURL && newval.file instanceof nsILocalFile) {
  140.             this.mTargetFile = newval.file.QueryInterface(nsILocalFile);
  141.         } else {
  142.             this.mTargetFile = null;
  143.         }
  144.  
  145.         return this.mTarget = newval;
  146.     },
  147.  
  148.     // These setters use functions that update the dialog.
  149.     set paused(newval)      { return this.setPaused(newval); },
  150.     set completed(newval)   { return this.setCompleted(newval); },
  151.     set mode(newval)        { return this.setMode(newval); },
  152.     set percent(newval)     { return this.setPercent(newval); },
  153.     set rate(newval)        { return this.setRate(newval); },
  154.  
  155.     // ---------- nsIProgressDialog methods ----------
  156.  
  157.     // open: Store aParentWindow and open the dialog.
  158.     open: function( aParentWindow ) {
  159.         // Save parent and "persist" operation.
  160.         this.parent    = aParentWindow;
  161.  
  162.         // Open dialog using the WindowWatcher service.
  163.         var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  164.                    .getService( nsIWindowWatcher );
  165.         this.dialog = ww.openWindow( this.parent,
  166.                                      this.dialogChrome,
  167.                                      null,
  168.                                      this.dialogFeatures,
  169.                                      this );
  170.     },
  171.  
  172.     init: function( aSource, aTarget, aDisplayName, aMIMEInfo, aStartTime,
  173.                     aTempFile, aOperation ) {
  174.       this.source = aSource;
  175.       this.target = aTarget;
  176.       this.displayName = aDisplayName;
  177.       this.MIMEInfo = aMIMEInfo;
  178.       if ( aStartTime ) {
  179.           this.startTime = aStartTime;
  180.       }
  181.       this.operation = aOperation;
  182.     },
  183.  
  184.     // ----- nsIDownloadProgressListener/nsIWebProgressListener methods -----
  185.     // Take advantage of javascript's function overloading feature to combine
  186.     // similiar nsIDownloadProgressListener and nsIWebProgressListener methods
  187.     // in one. For nsIWebProgressListener calls, the aDownload paramater will
  188.     // always be undefined.
  189.  
  190.     // Look for STATE_STOP and update dialog to indicate completion when it happens.
  191.     onStateChange: function( aWebProgress, aRequest, aStateFlags, aStatus, aDownload ) {
  192.         if ( aStateFlags & nsIWebProgressListener.STATE_STOP ) {
  193.             // if we are downloading, then just wait for the first STATE_STOP
  194.             if ( this.targetFile != null ) {
  195.                 // we are done transferring...
  196.                 this.completed = true;
  197.                 return;
  198.             }
  199.  
  200.             // otherwise, wait for STATE_STOP with aRequest corresponding to
  201.             // our target.  XXX redirects might screw up this logic.
  202.             try {
  203.                 var chan = aRequest.QueryInterface(nsIChannel);
  204.                 if (chan.URI.equals(this.target)) {
  205.                     // we are done transferring...
  206.                     this.completed = true;
  207.                 }
  208.             }
  209.             catch (e) {
  210.             }
  211.         }
  212.     },
  213.  
  214.     // Handle progress notifications.
  215.     onProgressChange: function( aWebProgress,
  216.                                 aRequest,
  217.                                 aCurSelfProgress,
  218.                                 aMaxSelfProgress,
  219.                                 aCurTotalProgress,
  220.                                 aMaxTotalProgress,
  221.                                 aDownload ) {
  222.       return this.onProgressChange64(aWebProgress, aRequest, aCurSelfProgress,
  223.               aMaxSelfProgress, aCurTotalProgress, aMaxTotalProgress, aDownload);
  224.     },
  225.  
  226.     onProgressChange64: function( aWebProgress,
  227.                                   aRequest,
  228.                                   aCurSelfProgress,
  229.                                   aMaxSelfProgress,
  230.                                   aCurTotalProgress,
  231.                                   aMaxTotalProgress,
  232.                                   aDownload ) {
  233.         // Get current time.
  234.         var now = ( new Date() ).getTime();
  235.  
  236.         // If interval hasn't elapsed, ignore it.
  237.         if ( now - this.lastUpdate < this.interval ) {
  238.             return;
  239.         }
  240.  
  241.         // Update this time.
  242.         this.lastUpdate = now;
  243.  
  244.         // Update elapsed time.
  245.         this.elapsed = now - this.startTime;
  246.  
  247.         // Calculate percentage.
  248.         if ( aMaxTotalProgress > 0) {
  249.             this.percent = Math.floor( ( aCurTotalProgress * 100.0 ) / aMaxTotalProgress );
  250.         } else {
  251.             this.percent = -1;
  252.         }
  253.  
  254.         // If dialog not loaded, then don't bother trying to update display.
  255.         if ( !this.loaded ) {
  256.             return;
  257.         }
  258.  
  259.         // Update dialog's display of elapsed time.
  260.         this.setValue( "timeElapsed", this.formatSeconds( this.elapsed / 1000 ) );
  261.  
  262.         // Now that we've set the progress and the time, update # bytes downloaded...
  263.         // Update status (nn KB of mm KB at xx.x KB/sec)
  264.         var status = this.getString( "progressMsg" );
  265.  
  266.         // Insert 1 is the number of kilobytes downloaded so far.
  267.         status = this.replaceInsert( status, 1, parseInt( aCurTotalProgress/1024 + .5 ) );
  268.  
  269.         // Insert 2 is the total number of kilobytes to be downloaded (if known).
  270.         if ( aMaxTotalProgress != "-1" ) {
  271.             status = this.replaceInsert( status, 2, parseInt( aMaxTotalProgress/1024 + .5 ) );
  272.         } else {
  273.             status = this.replaceInsert( status, 2, "??" );
  274.         }
  275.  
  276.         // Insert 3 is the download rate.
  277.         if ( this.elapsed ) {
  278.             // Use the download speed where available, otherwise calculate
  279.             // rate using current progress and elapsed time.
  280.             if ( aDownload ) {
  281.                 this.rate = aDownload.speed;
  282.             } else {
  283.                 this.rate = ( aCurTotalProgress * 1000 ) / this.elapsed;
  284.             }
  285.             status = this.replaceInsert( status, 3, this.kRate.toFixed(1) );
  286.         } else {
  287.             // Rate not established, yet.
  288.             status = this.replaceInsert( status, 3, "??.?" );
  289.         }
  290.  
  291.         // All 3 inserts are taken care of, now update status msg.
  292.         this.setValue( "status", status );
  293.  
  294.         // Update time remaining.
  295.         if ( this.rate && ( aMaxTotalProgress > 0 ) ) {
  296.             // Calculate how much time to download remaining at this rate.
  297.             var rem = Math.round( ( aMaxTotalProgress - aCurTotalProgress ) / this.rate );
  298.             this.setValue( "timeLeft", this.formatSeconds( rem ) );
  299.         } else {
  300.             // We don't know how much time remains.
  301.             this.setValue( "timeLeft", this.getString( "unknownTime" ) );
  302.         }
  303.     },
  304.  
  305.     // Look for error notifications and display alert to user.
  306.     onStatusChange: function( aWebProgress, aRequest, aStatus, aMessage, aDownload ) {
  307.         // Check for error condition (only if dialog is still open).
  308.         if ( aStatus != Components.results.NS_OK ) {
  309.             if ( this.loaded ) {
  310.                 // Get prompt service.
  311.                 var prompter = Components.classes[ "@mozilla.org/embedcomp/prompt-service;1" ]
  312.                                    .getService( Components.interfaces.nsIPromptService );
  313.                 // Display error alert (using text supplied by back-end).
  314.                 var title = this.getProperty( this.saving ? "savingAlertTitle" : "openingAlertTitle",
  315.                                               [ this.fileName() ],
  316.                                               1 );
  317.                 prompter.alert( this.dialog, title, aMessage );
  318.  
  319.                 // Close the dialog.
  320.                 if ( !this.completed ) {
  321.                     this.onCancel();
  322.                 }
  323.             } else {
  324.                 // Error occurred prior to onload even firing.
  325.                 // We can't handle this error until we're done loading, so
  326.                 // defer the handling of this call.
  327.                 this.dialog.setTimeout( function(obj,wp,req,stat,msg){obj.onStatusChange(wp,req,stat,msg)},
  328.                                         100, this, aWebProgress, aRequest, aStatus, aMessage );
  329.             }
  330.         }
  331.     },
  332.  
  333.     // Ignore onLocationChange and onSecurityChange notifications.
  334.     onLocationChange: function( aWebProgress, aRequest, aLocation, aDownload ) {
  335.     },
  336.  
  337.     onSecurityChange: function( aWebProgress, aRequest, aState, aDownload ) {
  338.     },
  339.  
  340.     // ---------- nsIObserver methods ----------
  341.     observe: function( anObject, aTopic, aData ) {
  342.         // Something of interest occured on the dialog.
  343.         // Dispatch to corresponding implementation method.
  344.         switch ( aTopic ) {
  345.         case "onload":
  346.             this.onLoad();
  347.             break;
  348.         case "oncancel":
  349.             this.onCancel();
  350.             break;
  351.         case "onpause":
  352.             this.onPause();
  353.             break;
  354.         case "onlaunch":
  355.             this.onLaunch();
  356.             break;
  357.         case "onreveal":
  358.             this.onReveal();
  359.             break;
  360.         case "onunload":
  361.             this.onUnload();
  362.             break;
  363.         case "oncompleted":
  364.             // This event comes in when setCompleted needs to be deferred because
  365.             // the dialog isn't loaded yet.
  366.             this.completed = true;
  367.             break;
  368.         default:
  369.             break;
  370.         }
  371.     },
  372.  
  373.     // ---------- nsISupports methods ----------
  374.  
  375.     // This "class" supports nsIProgressDialog, nsIWebProgressListener (by virtue
  376.     // of interface inheritance), nsIObserver, and nsISupports.
  377.     QueryInterface: function (iid) {
  378.         if (iid.equals(Components.interfaces.nsIProgressDialog) ||
  379.             iid.equals(Components.interfaces.nsIDownload) ||
  380.             iid.equals(Components.interfaces.nsITransfer) ||
  381.             iid.equals(Components.interfaces.nsIWebProgressListener) ||
  382.             iid.equals(Components.interfaces.nsIWebProgressListener2) ||
  383.             iid.equals(Components.interfaces.nsIDownloadProgressListener) ||
  384.             iid.equals(Components.interfaces.nsIObserver) ||
  385.             iid.equals(Components.interfaces.nsIInterfaceRequestor) ||
  386.             iid.equals(Components.interfaces.nsISupports))
  387.             return this;
  388.  
  389.         throw Components.results.NS_ERROR_NO_INTERFACE;
  390.     },
  391.  
  392.     // ---------- nsIInterfaceRequestor methods ----------
  393.  
  394.     getInterface: function(iid) {
  395.         if (iid.equals(Components.interfaces.nsIPrompt) ||
  396.             iid.equals(Components.interfaces.nsIAuthPrompt)) {
  397.             // use the window watcher service to get a nsIPrompt/nsIAuthPrompt impl
  398.             var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  399.                                .getService(Components.interfaces.nsIWindowWatcher);
  400.             var prompt;
  401.             if (iid.equals(Components.interfaces.nsIPrompt))
  402.                 prompt = ww.getNewPrompter(this.parent);
  403.             else
  404.                 prompt = ww.getNewAuthPrompter(this.parent);
  405.             return prompt;
  406.         }
  407.         throw Components.results.NS_ERROR_NO_INTERFACE;
  408.     },
  409.  
  410.     // ---------- implementation methods ----------
  411.  
  412.     // Initialize the dialog.
  413.     onLoad: function() {
  414.         // Note that onLoad has finished.
  415.         this.loaded = true;
  416.  
  417.         // Fill dialog.
  418.         this.loadDialog();
  419.  
  420.         // Position dialog.
  421.         if ( this.dialog.opener ) {
  422.             this.dialog.moveToAlertPosition();
  423.         } else {
  424.             this.dialog.centerWindowOnScreen();
  425.         }
  426.  
  427.         // Set initial focus on "keep open" box.  If that box is hidden, or, if
  428.         // the download is already complete, then focus is on the cancel/close
  429.         // button.  The download may be complete if it was really short and the
  430.         // dialog took longer to open than to download the data.
  431.         if ( !this.completed && !this.saving ) {
  432.             this.dialogElement( "keep" ).focus();
  433.         } else {
  434.             this.dialogElement( "cancel" ).focus();
  435.         }
  436.     },
  437.  
  438.     // load dialog with initial contents
  439.     loadDialog: function() {
  440.         // Check whether we're saving versus opening with a helper app.
  441.         if ( !this.saving ) {
  442.             // Put proper label on source field.
  443.             this.setValue( "sourceLabel", this.getString( "openingSource" ) );
  444.  
  445.             // Target is the "preferred" application.  Hide if empty.
  446.             if ( this.MIMEInfo && 
  447.                  this.MIMEInfo.preferredApplicationHandler &&
  448.                  this.MIMEInfo.preferredApplicationHandler.executable ) {
  449.                 var appName = 
  450.                   this.MIMEInfo.preferredApplicationHandler.executable.leafName;
  451.                 if ( appName == null || appName.length == 0 ) {
  452.                     this.hide( "targetRow" );
  453.                 } else {
  454.                     // Use the "with:" label.
  455.                     this.setValue( "targetLabel", this.getString( "openingTarget" ) );
  456.                     // Name of application.
  457.                     this.setValue( "target", appName );
  458.                 }
  459.            } else {
  460.                this.hide( "targetRow" );
  461.            }
  462.         } else {
  463.             // If target is not a local file, then hide extra dialog controls.
  464.             if (this.targetFile != null) {
  465.                 this.setValue( "target", this.targetFile.path );
  466.             } else {
  467.                 this.setValue( "target", this.target.spec );
  468.                 this.hide( "pauseResume" );
  469.                 this.hide( "launch" );
  470.                 this.hide( "reveal" );
  471.             }
  472.         }
  473.  
  474.         // Set source field.
  475.         this.setValue( "source", this.source.spec );
  476.  
  477.         var now = ( new Date() ).getTime();
  478.  
  479.         // Initialize the elapsed time.
  480.         if ( !this.elapsed ) {
  481.             this.elapsed = now - this.startTime;
  482.         }
  483.  
  484.         // Update elapsed time display.
  485.         this.setValue( "timeElapsed", this.formatSeconds( this.elapsed / 1000 ) );
  486.         this.setValue( "timeLeft", this.getString( "unknownTime" ) );
  487.  
  488.         // Initialize the "keep open" box.  Hide this if we're opening a helper app
  489.         // or if we are uploading.
  490.         if ( !this.saving || !this.targetFile ) {
  491.             // Hide this in this case.
  492.             this.hide( "keep" );
  493.         } else {
  494.             // Initialize using last-set value from prefs.
  495.             var prefs = Components.classes[ "@mozilla.org/preferences-service;1" ]
  496.                             .getService( Components.interfaces.nsIPrefBranch );
  497.             if ( prefs ) {
  498.                 this.dialogElement( "keep" ).checked = prefs.getBoolPref( "browser.download.progressDnldDialog.keepAlive" );
  499.             }
  500.         }
  501.  
  502.         // Initialize title.
  503.         this.setTitle();
  504.     },
  505.  
  506.     // Cancel button stops the download (if not completed),
  507.     // and closes the dialog.
  508.     onCancel: function() {
  509.         // Cancel the download, if not completed.
  510.         if ( !this.completed ) {
  511.             if ( this.operation ) {
  512.                 const NS_BINDING_ABORTED = 0x804b0002;
  513.                 this.operation.cancel(NS_BINDING_ABORTED);
  514.                 // XXX We're supposed to clean up files/directories.
  515.             }
  516.             if ( this.observer ) {
  517.                 this.observer.observe( this, "oncancel", "" );
  518.             }
  519.             this.paused = false;
  520.         }
  521.         // Test whether the dialog is already closed.
  522.         // This will be the case if we've come through onUnload.
  523.         if ( this.dialog ) {
  524.             // Close the dialog.
  525.             this.dialog.close();
  526.         }
  527.     },
  528.  
  529.     // onunload event means the dialog has closed.
  530.     // We go through our onCancel logic to stop the download if still in progress.
  531.     onUnload: function() {
  532.         // Remember "keep dialog open" setting, if visible.
  533.         if ( this.saving ) {
  534.             var prefs = Components.classes["@mozilla.org/preferences-service;1"]
  535.                           .getService( Components.interfaces.nsIPrefBranch );
  536.             if ( prefs ) {
  537.                 prefs.setBoolPref( "browser.download.progressDnldDialog.keepAlive", this.dialogElement( "keep" ).checked );
  538.             }
  539.          }
  540.          this.dialog = null; // The dialog is history.
  541.          if ( this.mCancelDownloadOnClose ) {
  542.              this.onCancel();
  543.          }
  544.     },
  545.  
  546.     // onpause event means the user pressed the pause/resume button
  547.     // Toggle the pause/resume state (see the function setPause(), below).i
  548.     onPause: function() {
  549.          this.paused = !this.paused;
  550.     },
  551.  
  552.     // onlaunch event means the user pressed the launch button
  553.     // Invoke the launch method of the target file.
  554.     onLaunch: function() {
  555.          try {
  556.            const kDontAskAgainPref  = "browser.download.progressDnlgDialog.dontAskForLaunch";
  557.            try {
  558.              var pref = Components.classes["@mozilla.org/preferences-service;1"]
  559.                               .getService(Components.interfaces.nsIPrefBranch);
  560.              var dontAskAgain = pref.getBoolPref(kDontAskAgainPref);
  561.            } catch (e) {
  562.              // we need to ask if we're unsure
  563.              dontAskAgain = false;
  564.            }
  565.            if ( !dontAskAgain && this.targetFile.isExecutable() ) {
  566.              try {
  567.                var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
  568.                                                .getService( Components.interfaces.nsIPromptService );
  569.              } catch (ex) {
  570.                // getService doesn't return null, it throws
  571.                return;
  572.              }
  573.              var title = this.getProperty( "openingAlertTitle",
  574.                                            [ this.fileName() ],
  575.                                            1 );
  576.              var msg = this.getProperty( "securityAlertMsg",
  577.                                          [ this.fileName() ],
  578.                                          1 );
  579.              var dontaskmsg = this.getProperty( "dontAskAgain",
  580.                                                 [ ], 0 );
  581.              var checkbox = {value:0};
  582.              var okToProceed = promptService.confirmCheck(this.dialog, title, msg, dontaskmsg, checkbox);
  583.              try {
  584.                if (checkbox.value != dontAskAgain)
  585.                  pref.setBoolPref(kDontAskAgainPref, checkbox.value);
  586.              } catch (ex) {}
  587.  
  588.              if ( !okToProceed )
  589.                return;
  590.            }
  591.            this.targetFile.launch();
  592.            this.dialog.close();
  593.          } catch ( exception ) {
  594.              // XXX Need code here to tell user the launch failed!
  595.              dump( "nsProgressDialog::onLaunch failed: " + exception + "\n" );
  596.          }
  597.     },
  598.  
  599.     // onreveal event means the user pressed the "reveal location" button
  600.     // Invoke the reveal method of the target file.
  601.     onReveal: function() {
  602.          try {
  603.              this.targetFile.reveal();
  604.              this.dialog.close();
  605.          } catch ( exception ) {
  606.          }
  607.     },
  608.  
  609.     // Get filename from the target.
  610.     fileName: function() {
  611.         if ( this.targetFile != null )
  612.             return this.targetFile.leafName;
  613.         try {
  614.             var escapedFileName = this.target.QueryInterface(nsIURL).fileName;
  615.             var textToSubURI = Components.classes["@mozilla.org/intl/texttosuburi;1"]
  616.                                          .getService(nsITextToSubURI);
  617.             return textToSubURI.unEscapeURIForUI(this.target.originCharset, escapedFileName);
  618.         } catch (e) {}
  619.         return "";
  620.     },
  621.  
  622.     // Set the dialog title.
  623.     setTitle: function() {
  624.         // Start with saving/opening template.
  625.         // If percentage is not known (-1), use alternate template
  626.         var title = this.saving
  627.             ? ( this.percent != -1 ? this.getString( "savingTitle" ) : this.getString( "unknownSavingTitle" ) )
  628.             : ( this.percent != -1 ? this.getString( "openingTitle" ) : this.getString( "unknownOpeningTitle" ) );
  629.  
  630.  
  631.         // Use file name as insert 1.
  632.         title = this.replaceInsert( title, 1, this.fileName() );
  633.  
  634.         // Use percentage as insert 2 (if known).
  635.         if ( this.percent != -1 ) {
  636.             title = this.replaceInsert( title, 2, this.percent );
  637.         }
  638.  
  639.         // Set dialog's title property.
  640.         if ( this.dialog ) {
  641.             this.dialog.document.title = title;
  642.         }
  643.     },
  644.  
  645.     // Update the dialog to indicate specified percent complete.
  646.     setPercent: function( percent ) {
  647.         // Maximum percentage is 100.
  648.         if ( percent > 100 ) {
  649.             percent = 100;
  650.         }
  651.         // Test if percentage is changing.
  652.         if ( this.percent != percent ) {
  653.             this.mPercent = percent;
  654.  
  655.             // If dialog not opened yet, bail early.
  656.             if ( !this.loaded ) {
  657.                 return this.mPercent;
  658.             }
  659.  
  660.             if ( percent == -1 ) {
  661.                 // Progress meter needs to be in "undetermined" mode.
  662.                 this.mode = "undetermined";
  663.  
  664.                 // Update progress meter percentage text.
  665.                 this.setValue( "progressText", "" );
  666.             } else {
  667.                 // Progress meter needs to be in normal mode.
  668.                 this.mode = "normal";
  669.  
  670.                 // Set progress meter thermometer.
  671.                 this.setValue( "progress", percent );
  672.  
  673.                 // Update progress meter percentage text.
  674.                 this.setValue( "progressText", this.replaceInsert( this.getString( "percentMsg" ), 1, percent ) );
  675.             }
  676.  
  677.             // Update title.
  678.             this.setTitle();
  679.         }
  680.         return this.mPercent;
  681.     },
  682.  
  683.     // Update download rate and dialog display.
  684.     setRate: function( rate ) {
  685.         this.mRate = rate;
  686.         return this.mRate;
  687.     },
  688.  
  689.     // Handle download completion.
  690.     setCompleted: function() {
  691.         // If dialog hasn't loaded yet, defer this.
  692.         if ( !this.loaded ) {
  693.             this.dialog.setTimeout( function(obj){obj.setCompleted()}, 100, this );
  694.             return false;
  695.         }
  696.         if ( !this.mCompleted ) {
  697.             this.mCompleted = true;
  698.  
  699.             // If the "keep dialog open" box is checked, then update dialog.
  700.             if ( this.dialog && this.dialogElement( "keep" ).checked ) {
  701.                 // Indicate completion in status area.
  702.                 var string = this.getString( "completeMsg" );
  703.                 string = this.replaceInsert( string,
  704.                                              1,
  705.                                              this.formatSeconds( this.elapsed/1000 ) );
  706.                 string = this.replaceInsert( string,
  707.                                              2,
  708.                                              this.targetFile.fileSize >> 10 );
  709.  
  710.                 this.setValue( "status", string);
  711.                 // Put progress meter at 100%.
  712.                 this.percent = 100;
  713.  
  714.                 // Set time remaining to 00:00.
  715.                 this.setValue( "timeLeft", this.formatSeconds( 0 ) );
  716.  
  717.                 // Change Cancel button to Close, and give it focus.
  718.                 var cancelButton = this.dialogElement( "cancel" );
  719.                 cancelButton.label = this.getString( "close" );
  720.                 cancelButton.focus();
  721.  
  722.                 // Activate reveal/launch buttons if we enable them.
  723.                 var enableButtons = true;
  724.                 try {
  725.                   var prefs = Components.classes[ "@mozilla.org/preferences-service;1" ]
  726.                                   .getService( Components.interfaces.nsIPrefBranch );
  727.                   enableButtons = prefs.getBoolPref( "browser.download.progressDnldDialog.enable_launch_reveal_buttons" );
  728.                 } catch ( e ) {
  729.                 }
  730.  
  731.                 if ( enableButtons ) {
  732.                     this.enable( "reveal" );
  733.                     try {
  734.                         if ( this.targetFile != null ) {
  735.                             this.enable( "launch" );
  736.                         }
  737.                     } catch(e) {
  738.                     }
  739.                 }
  740.  
  741.                 // Disable the Pause/Resume buttons.
  742.                 this.dialogElement( "pauseResume" ).disabled = true;
  743.  
  744.                 // Fix up dialog layout (which gets messed up sometimes).
  745.                 this.dialog.sizeToContent();
  746.  
  747.                 // GetAttention to show the user that we're done
  748.                this.dialog.getAttention();
  749.             } else if ( this.dialog ) {
  750.                 this.dialog.close();
  751.             }
  752.         }
  753.         return this.mCompleted;
  754.     },
  755.  
  756.     // Set progress meter to given mode ("normal" or "undetermined").
  757.     setMode: function( newMode ) {
  758.         if ( this.mode != newMode ) {
  759.             // Need to update progress meter.
  760.             this.dialogElement( "progress" ).setAttribute( "mode", newMode );
  761.         }
  762.         return this.mMode = newMode;
  763.     },
  764.  
  765.     // Set pause/resume state.
  766.     setPaused: function( pausing ) {
  767.         // If state changing, then update stuff.
  768.         if ( this.paused != pausing ) {
  769.             var string = pausing ? "resume" : "pause";
  770.             this.dialogElement( "pauseResume" ).label = this.getString(string);
  771.  
  772.             // If we have an observer, tell it to suspend/resume
  773.             if ( this.observer ) {
  774.                 this.observer.observe( this, pausing ? "onpause" : "onresume" , "" );
  775.             }
  776.         }
  777.         return this.mPaused = pausing;
  778.     },
  779.  
  780.     // Format number of seconds in hh:mm:ss form.
  781.     formatSeconds: function( secs ) {
  782.         // Round the number of seconds to remove fractions.
  783.         secs = parseInt( secs + .5 );
  784.         var hours = parseInt( secs/3600 );
  785.         secs -= hours*3600;
  786.         var mins = parseInt( secs/60 );
  787.         secs -= mins*60;
  788.         var result;
  789.         if ( hours )
  790.             result = this.getString( "longTimeFormat" );
  791.         else
  792.             result = this.getString( "shortTimeFormat" );
  793.  
  794.         if ( hours < 10 )
  795.             hours = "0" + hours;
  796.         if ( mins < 10 )
  797.             mins = "0" + mins;
  798.         if ( secs < 10 )
  799.             secs = "0" + secs;
  800.  
  801.         // Insert hours, minutes, and seconds into result string.
  802.         result = this.replaceInsert( result, 1, hours );
  803.         result = this.replaceInsert( result, 2, mins );
  804.         result = this.replaceInsert( result, 3, secs );
  805.  
  806.         return result;
  807.     },
  808.  
  809.     // Get dialog element using argument as id.
  810.     dialogElement: function( id ) {
  811.         // Check if we've already fetched it.
  812.         if ( !( id in this.fields ) ) {
  813.             // No, then get it from dialog.
  814.             try {
  815.                 this.fields[ id ] = this.dialog.document.getElementById( id );
  816.             } catch(e) {
  817.                 this.fields[ id ] = {
  818.                     value: "",
  819.                     setAttribute: function(id,val) {},
  820.                     removeAttribute: function(id) {}
  821.                     }
  822.             }
  823.         }
  824.         return this.fields[ id ];
  825.     },
  826.  
  827.     // Set dialog element value for given dialog element.
  828.     setValue: function( id, val ) {
  829.         this.dialogElement( id ).value = val;
  830.     },
  831.  
  832.     // Enable dialog element.
  833.     enable: function( field ) {
  834.         this.dialogElement( field ).removeAttribute( "disabled" );
  835.     },
  836.  
  837.     // Get localizable string from properties file.
  838.     getProperty: function( propertyId, strings, len ) {
  839.         if ( !this.mBundle ) {
  840.             this.mBundle = Components.classes[ "@mozilla.org/intl/stringbundle;1" ]
  841.                              .getService( Components.interfaces.nsIStringBundleService )
  842.                                .createBundle( "chrome://global/locale/nsProgressDialog.properties");
  843.         }
  844.         return len ? this.mBundle.formatStringFromName( propertyId, strings, len )
  845.                    : this.mBundle.getStringFromName( propertyId );
  846.     },
  847.  
  848.     // Get localizable string (from dialog <data> elements).
  849.     getString: function ( stringId ) {
  850.         // Check if we've fetched this string already.
  851.         if ( !( this.strings && stringId in this.strings ) ) {
  852.             // Presume the string is empty if we can't get it.
  853.             this.strings[ stringId ] = "";
  854.             // Try to get it.
  855.             try {
  856.                 this.strings[ stringId ] = this.dialog.document.getElementById( "string."+stringId ).childNodes[0].nodeValue;
  857.             } catch (e) {}
  858.        }
  859.        return this.strings[ stringId ];
  860.     },
  861.  
  862.     // Replaces insert ("#n") with input text.
  863.     replaceInsert: function( text, index, value ) {
  864.         var result = text;
  865.         var regExp = new RegExp( "#"+index );
  866.         result = result.replace( regExp, value );
  867.         return result;
  868.     },
  869.  
  870.     // Hide a given dialog field.
  871.     hide: function( field ) {
  872.         this.dialogElement( field ).hidden = true;
  873.  
  874.         // Also hide any related separator element...
  875.         var sep = this.dialogElement( field+"Separator" );
  876.         if (sep)
  877.             sep.hidden = true;
  878.     },
  879.  
  880.     // Return input in hex, prepended with "0x" and leading zeros (to 8 digits).
  881.     hex: function( x ) {
  882.         return "0x" + ("0000000" + Number(x).toString(16)).slice(-8);
  883.     },
  884.  
  885.     // Dump text (if debug is on).
  886.     dump: function( text ) {
  887.         if ( this.debug ) {
  888.             dump( text );
  889.         }
  890.     }
  891. }
  892.  
  893. // This Component's module implementation.  All the code below is used to get this
  894. // component registered and accessible via XPCOM.
  895. var module = {
  896.     // registerSelf: Register this component.
  897.     registerSelf: function (compMgr, fileSpec, location, type) {
  898.         var compReg = compMgr.QueryInterface( Components.interfaces.nsIComponentRegistrar );
  899.         compReg.registerFactoryLocation( this.cid,
  900.                                          "Mozilla Download Progress Dialog",
  901.                                          this.contractId,
  902.                                          fileSpec,
  903.                                          location,
  904.                                          type );
  905.     },
  906.  
  907.     // getClassObject: Return this component's factory object.
  908.     getClassObject: function (compMgr, cid, iid) {
  909.         if (!cid.equals(this.cid))
  910.             throw Components.results.NS_ERROR_NO_INTERFACE;
  911.  
  912.         if (!iid.equals(Components.interfaces.nsIFactory))
  913.             throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  914.  
  915.         return this.factory;
  916.     },
  917.  
  918.     /* CID for this class */
  919.     cid: Components.ID("{F5D248FD-024C-4f30-B208-F3003B85BC92}"),
  920.  
  921.     /* Contract ID for this class */
  922.     contractId: "@mozilla.org/progressdialog;1",
  923.  
  924.     /* factory object */
  925.     factory: {
  926.         // createInstance: Return a new nsProgressDialog object.
  927.         createInstance: function (outer, iid) {
  928.             if (outer != null)
  929.                 throw Components.results.NS_ERROR_NO_AGGREGATION;
  930.  
  931.             return (new nsProgressDialog()).QueryInterface(iid);
  932.         }
  933.     },
  934.  
  935.     // canUnload: n/a (returns true)
  936.     canUnload: function(compMgr) {
  937.         return true;
  938.     }
  939. };
  940.  
  941. // NSGetModule: Return the nsIModule object.
  942. function NSGetModule(compMgr, fileSpec) {
  943.     return module;
  944. }
  945.