home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / audio-video / songbird / Songbird_0.3_windows-i686.exe / xulrunner / components / nsUpdateService.js < prev    next >
Text File  |  2007-10-26  |  106KB  |  3,155 lines

  1. //@line 43 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  2.  
  3. const PREF_APP_UPDATE_ENABLED             = "app.update.enabled";
  4. const PREF_APP_UPDATE_AUTO                = "app.update.auto";
  5. const PREF_APP_UPDATE_MODE                = "app.update.mode";
  6. const PREF_APP_UPDATE_SILENT              = "app.update.silent";
  7. const PREF_APP_UPDATE_INTERVAL            = "app.update.interval";
  8. const PREF_APP_UPDATE_TIMER               = "app.update.timer";
  9. const PREF_APP_UPDATE_LOG_BRANCH          = "app.update.log.";
  10. const PREF_APP_UPDATE_URL                 = "app.update.url";
  11. const PREF_APP_UPDATE_URL_OVERRIDE        = "app.update.url.override";
  12. const PREF_APP_UPDATE_URL_DETAILS         = "app.update.url.details";
  13. const PREF_APP_UPDATE_CHANNEL             = "app.update.channel";
  14. const PREF_APP_UPDATE_SHOW_INSTALLED_UI   = "app.update.showInstalledUI";
  15. const PREF_APP_UPDATE_LASTUPDATETIME_FMT  = "app.update.lastUpdateTime.%ID%";
  16. const PREF_GENERAL_USERAGENT_LOCALE       = "general.useragent.locale";
  17. const PREF_APP_UPDATE_INCOMPATIBLE_MODE   = "app.update.incompatible.mode";
  18. const PREF_UPDATE_NEVER_BRANCH            = "app.update.never.";
  19. const PREF_PARTNER_BRANCH                 = "app.partner.";
  20. const PREF_APP_DISTRIBUTION               = "distribution.id";
  21. const PREF_APP_DISTRIBUTION_VERSION       = "distribution.version";
  22.  
  23. const URI_UPDATE_PROMPT_DIALOG  = "chrome://mozapps/content/update/updates.xul";
  24. const URI_UPDATE_HISTORY_DIALOG = "chrome://mozapps/content/update/history.xul";
  25. const URI_BRAND_PROPERTIES      = "chrome://branding/locale/brand.properties";
  26. const URI_UPDATES_PROPERTIES    = "chrome://mozapps/locale/update/updates.properties";
  27. const URI_UPDATE_NS             = "http://www.mozilla.org/2005/app-update";
  28.  
  29. const KEY_APPDIR          = "XCurProcD";
  30. //@line 72 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  31. const KEY_UPDROOT         = "UpdRootD";
  32. const KEY_UAPPDATA        = "UAppData";
  33. //@line 75 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  34.  
  35. const DIR_UPDATES         = "updates";
  36. const FILE_UPDATE_STATUS  = "update.status";
  37. const FILE_UPDATE_ARCHIVE = "update.mar";
  38. const FILE_UPDATE_LOG     = "update.log"
  39. const FILE_UPDATES_DB     = "updates.xml";
  40. const FILE_UPDATE_ACTIVE  = "active-update.xml";
  41. const FILE_PERMS_TEST     = "update.test";
  42. const FILE_LAST_LOG       = "last-update.log";
  43.  
  44. const MODE_RDONLY   = 0x01;
  45. const MODE_WRONLY   = 0x02;
  46. const MODE_CREATE   = 0x08;
  47. const MODE_APPEND   = 0x10;
  48. const MODE_TRUNCATE = 0x20;
  49.  
  50. const PERMS_FILE      = 0644;
  51. const PERMS_DIRECTORY = 0755;
  52.  
  53. const STATE_NONE            = "null";
  54. const STATE_DOWNLOADING     = "downloading";
  55. const STATE_PENDING         = "pending";
  56. const STATE_APPLYING        = "applying";
  57. const STATE_SUCCEEDED       = "succeeded";
  58. const STATE_DOWNLOAD_FAILED = "download-failed";
  59. const STATE_FAILED          = "failed";
  60.  
  61. // From updater/errors.h:
  62. const WRITE_ERROR = 7;
  63.  
  64. const DOWNLOAD_CHUNK_SIZE           = 300000; // bytes
  65. const DOWNLOAD_BACKGROUND_INTERVAL  = 600;    // seconds
  66. const DOWNLOAD_FOREGROUND_INTERVAL  = 0;
  67.  
  68. const TOOLKIT_ID              = "toolkit@mozilla.org";
  69.  
  70. const POST_UPDATE_CONTRACTID = "@mozilla.org/updates/post-update;1";
  71.  
  72. const nsIExtensionManager     = Components.interfaces.nsIExtensionManager;
  73. const nsILocalFile            = Components.interfaces.nsILocalFile;
  74. const nsIUpdateService        = Components.interfaces.nsIUpdateService;
  75. const nsIUpdateItem           = Components.interfaces.nsIUpdateItem;
  76. const nsIPrefLocalizedString  = Components.interfaces.nsIPrefLocalizedString;
  77. const nsIIncrementalDownload  = Components.interfaces.nsIIncrementalDownload;
  78. const nsIFileInputStream      = Components.interfaces.nsIFileInputStream;
  79. const nsIFileOutputStream     = Components.interfaces.nsIFileOutputStream;
  80. const nsICryptoHash           = Components.interfaces.nsICryptoHash;
  81.  
  82. const Node = Components.interfaces.nsIDOMNode;
  83.  
  84. var gApp        = null;
  85. var gPref       = null;
  86. var gABI        = null;
  87. var gOSVersion  = null;
  88. var gConsole    = null;
  89. var gLogEnabled = { };
  90.  
  91. // shared code for suppressing bad cert dialogs
  92. //@line 40 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\shared\src\badCertHandler.js"
  93.  
  94. /**
  95.  * Only allow built-in certs for HTTPS connections.  See bug 340198.
  96.  */
  97. function checkCert(channel) {
  98.   if (!channel.originalURI.schemeIs("https"))  // bypass
  99.     return;
  100.  
  101.   const Ci = Components.interfaces;  
  102.   var cert =
  103.       channel.securityInfo.QueryInterface(Ci.nsISSLStatusProvider).
  104.       SSLStatus.QueryInterface(Ci.nsISSLStatus).serverCert;
  105.  
  106.   var issuer = cert.issuer;
  107.   while (issuer && !cert.equals(issuer)) {
  108.     cert = issuer;
  109.     issuer = cert.issuer;
  110.   }
  111.  
  112.   if (!issuer || issuer.tokenName != "Builtin Object Token")
  113.     throw "cert issuer is not built-in";
  114. }
  115.  
  116. /**
  117.  * This class implements nsIBadCertListener.  It's job is to prevent "bad cert"
  118.  * security dialogs from being shown to the user.  It is better to simply fail
  119.  * if the certificate is bad. See bug 304286.
  120.  */
  121. function BadCertHandler() {
  122. }
  123. BadCertHandler.prototype = {
  124.  
  125.   // nsIChannelEventSink
  126.   onChannelRedirect: function(oldChannel, newChannel, flags) {
  127.     // make sure the certificate of the old channel checks out before we follow
  128.     // a redirect from it.  See bug 340198.
  129.     checkCert(oldChannel);
  130.   },
  131.  
  132.   // nsIInterfaceRequestor
  133.   getInterface: function(iid) {
  134.     return this.QueryInterface(iid);
  135.   },
  136.  
  137.   // nsISupports
  138.   QueryInterface: function(iid) {
  139.     if (!iid.equals(Components.interfaces.nsIChannelEventSink) &&
  140.         !iid.equals(Components.interfaces.nsIInterfaceRequestor) &&
  141.         !iid.equals(Components.interfaces.nsISupports))
  142.       throw Components.results.NS_ERROR_NO_INTERFACE;
  143.     return this;
  144.   }
  145. };
  146. //@line 134 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  147.  
  148. /**
  149.  * Logs a string to the error console.
  150.  * @param   string
  151.  *          The string to write to the error console..
  152.  */
  153. function LOG(module, string) {
  154.   if (module in gLogEnabled || "all" in gLogEnabled) {
  155.     dump("*** " + module + ": " + string + "\n");
  156.     gConsole.logStringMessage(string);
  157.   }
  158. }
  159.  
  160. /**
  161.  * Convert a string containing binary values to hex.
  162.  */
  163. function binaryToHex(input) {
  164.   var result = "";
  165.   for (var i = 0; i < input.length; ++i) {
  166.     var hex = input.charCodeAt(i).toString(16);
  167.     if (hex.length == 1)
  168.       hex = "0" + hex;
  169.     result += hex;
  170.   }
  171.   return result;
  172. }
  173.  
  174. /**
  175.  * Gets a File URL spec for a nsIFile
  176.  * @param   file
  177.  *          The file to get a file URL spec to
  178.  * @returns The file URL spec to the file
  179.  */
  180. function getURLSpecFromFile(file) {
  181.   var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
  182.                          .getService(Components.interfaces.nsIIOService);
  183.   var fph = ioServ.getProtocolHandler("file")
  184.                   .QueryInterface(Components.interfaces.nsIFileProtocolHandler);
  185.   return fph.getURLSpecFromFile(file);
  186. }
  187.  
  188. /**
  189.  * Gets the specified directory at the specified hierarchy under a
  190.  * Directory Service key.
  191.  * @param   key
  192.  *          The Directory Service Key to start from
  193.  * @param   pathArray
  194.  *          An array of path components to locate beneath the directory
  195.  *          specified by |key|
  196.  * @return  nsIFile object for the location specified. If the directory
  197.  *          requested does not exist, it is created, along with any
  198.  *          parent directories that need to be created.
  199.  */
  200. function getDir(key, pathArray) {
  201.   return getDirInternal(key, pathArray, true, false);
  202. }
  203.  
  204. /**
  205.  * Gets the specified directory at the specified hierarchy under a
  206.  * Directory Service key.
  207.  * @param   key
  208.  *          The Directory Service Key to start from
  209.  * @param   pathArray
  210.  *          An array of path components to locate beneath the directory
  211.  *          specified by |key|
  212.  * @return  nsIFile object for the location specified. If the directory
  213.  *          requested does not exist, it is NOT created.
  214.  */
  215. function getDirNoCreate(key, pathArray) {
  216.   return getDirInternal(key, pathArray, false, false);
  217. }
  218.  
  219. /**
  220.  * Gets the specified directory at the specified hierarchy under the
  221.  * update root directory.
  222.  * @param   pathArray
  223.  *          An array of path components to locate beneath the directory
  224.  *          specified by |key|
  225.  * @return  nsIFile object for the location specified. If the directory
  226.  *          requested does not exist, it is created, along with any
  227.  *          parent directories that need to be created.
  228.  */
  229. function getUpdateDir(pathArray) {
  230.   return getDirInternal(KEY_APPDIR, pathArray, true, true);
  231. }
  232.  
  233. /**
  234.  * Gets the specified directory at the specified hierarchy under a
  235.  * Directory Service key.
  236.  * @param   key
  237.  *          The Directory Service Key to start from
  238.  * @param   pathArray
  239.  *          An array of path components to locate beneath the directory
  240.  *          specified by |key|
  241.  * @param   shouldCreate
  242.  *          true if the directory hierarchy specified in |pathArray|
  243.  *          should be created if it does not exist,
  244.  *          false otherwise.
  245.  * @param   update
  246.  *          true if finding the update directory,
  247.  *          false otherwise.
  248.  * @return  nsIFile object for the location specified.
  249.  */
  250. function getDirInternal(key, pathArray, shouldCreate, update) {
  251.   var fileLocator = Components.classes["@mozilla.org/file/directory_service;1"]
  252.                               .getService(Components.interfaces.nsIProperties);
  253.   var dir = fileLocator.get(key, Components.interfaces.nsIFile);
  254. //@line 242 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  255.   if (update) {
  256.     try {
  257.       dir = fileLocator.get(KEY_UPDROOT, Components.interfaces.nsIFile);
  258.     } catch (e) {
  259.     }
  260.   }
  261. //@line 249 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  262.   for (var i = 0; i < pathArray.length; ++i) {
  263.     dir.append(pathArray[i]);
  264.     if (shouldCreate && !dir.exists())
  265.       dir.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  266.   }
  267.   return dir;
  268. }
  269.  
  270. /**
  271.  * Gets the file at the specified hierarchy under a Directory Service key.
  272.  * @param   key
  273.  *          The Directory Service Key to start from
  274.  * @param   pathArray
  275.  *          An array of path components to locate beneath the directory
  276.  *          specified by |key|. The last item in this array must be the
  277.  *          leaf name of a file.
  278.  * @return  nsIFile object for the file specified. The file is NOT created
  279.  *          if it does not exist, however all required directories along
  280.  *          the way are.
  281.  */
  282. function getFile(key, pathArray) {
  283.   var file = getDir(key, pathArray.slice(0, -1));
  284.   file.append(pathArray[pathArray.length - 1]);
  285.   return file;
  286. }
  287.  
  288. /**
  289.  * Gets the file at the specified hierarchy under the update root directory.
  290.  * @param   pathArray
  291.  *          An array of path components to locate beneath the directory
  292.  *          specified by |key|. The last item in this array must be the
  293.  *          leaf name of a file.
  294.  * @return  nsIFile object for the file specified. The file is NOT created
  295.  *          if it does not exist, however all required directories along
  296.  *          the way are.
  297.  */
  298. function getUpdateFile(pathArray) {
  299.   var file = getUpdateDir(pathArray.slice(0, -1));
  300.   file.append(pathArray[pathArray.length - 1]);
  301.   return file;
  302. }
  303.  
  304. /**
  305.  * Closes a Safe Output Stream
  306.  * @param   fos
  307.  *          The Safe Output Stream to close
  308.  */
  309. function closeSafeOutputStream(fos) {
  310.   if (fos instanceof Components.interfaces.nsISafeOutputStream) {
  311.     try {
  312.       fos.finish();
  313.     }
  314.     catch (e) {
  315.       fos.close();
  316.     }
  317.   }
  318.   else
  319.     fos.close();
  320. }
  321.  
  322. /**
  323.  * Returns human readable status text from the updates.properties bundle
  324.  * based on an error code
  325.  * @param   code
  326.  *          The error code to look up human readable status text for
  327.  * @param   defaultCode
  328.  *          The default code to look up should human readable status text
  329.  *          not exist for |code|
  330.  * @returns A human readable status text string
  331.  */
  332. function getStatusTextFromCode(code, defaultCode) {
  333.   var sbs =
  334.       Components.classes["@mozilla.org/intl/stringbundle;1"].
  335.       getService(Components.interfaces.nsIStringBundleService);
  336.   var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  337.   var reason = updateBundle.GetStringFromName("checker_error-" + defaultCode);
  338.   try {
  339.     reason = updateBundle.GetStringFromName("checker_error-" + code);
  340.     LOG("General", "Transfer Error: " + reason + ", code: " + code);
  341.   }
  342.   catch (e) {
  343.     // Use the default reason
  344.     LOG("General", "Transfer Error: " + reason + ", code: " + defaultCode);
  345.   }
  346.   return reason;
  347. }
  348.  
  349. /**
  350.  * Get the Active Updates directory
  351.  * @param   key
  352.  *          The Directory Service Key (optional).
  353.  *          If used, don't search local appdata on Win32 and don't create dir.
  354.  * @returns The active updates directory, as a nsIFile object
  355.  */
  356. function getUpdatesDir(key) {
  357.   // Right now, we only support downloading one patch at a time, so we always
  358.   // use the same target directory.
  359.   var fileLocator =
  360.       Components.classes["@mozilla.org/file/directory_service;1"].
  361.       getService(Components.interfaces.nsIProperties);
  362.   var appDir;
  363.   if (key)
  364.     appDir = fileLocator.get(key, Components.interfaces.nsIFile);
  365.   else {
  366.     appDir = fileLocator.get(KEY_APPDIR, Components.interfaces.nsIFile);
  367. //@line 355 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  368.     try {
  369.       appDir = fileLocator.get(KEY_UPDROOT, Components.interfaces.nsIFile);
  370.     } catch (e) {
  371.     }
  372. //@line 360 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  373.   }
  374.   appDir.append(DIR_UPDATES);
  375.   appDir.append("0");
  376.   if (!appDir.exists() && !key)
  377.     appDir.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  378.   return appDir;
  379. }
  380.  
  381. /**
  382.  * Reads the update state from the update.status file in the specified
  383.  * directory.
  384.  * @param   dir
  385.  *          The dir to look for an update.status file in
  386.  * @returns The status value of the update.
  387.  */
  388. function readStatusFile(dir) {
  389.   var statusFile = dir.clone();
  390.   statusFile.append(FILE_UPDATE_STATUS);
  391.   LOG("General", "Reading Status File: " + statusFile.path);
  392.   return readStringFromFile(statusFile) || STATE_NONE;
  393. }
  394.  
  395. /**
  396.  * Writes the current update operation/state to a file in the patch
  397.  * directory, indicating to the patching system that operations need
  398.  * to be performed.
  399.  * @param   dir
  400.  *          The patch directory where the update.status file should be
  401.  *          written.
  402.  * @param   state
  403.  *          The state value to write.
  404.  */
  405. function writeStatusFile(dir, state) {
  406.   var statusFile = dir.clone();
  407.   statusFile.append(FILE_UPDATE_STATUS);
  408.   writeStringToFile(statusFile, state);
  409. }
  410.  
  411. /**
  412.  * Removes the Updates Directory
  413.  * @param   key
  414.  *          The Directory Service Key under which update directory resides
  415.  *          (optional).
  416.  */
  417. function cleanUpUpdatesDir(key) {
  418.   // Bail out if we don't have appropriate permissions
  419.   var updateDir;
  420.   try {
  421.     updateDir = getUpdatesDir(key);
  422.   }
  423.   catch (e) {
  424.     return;
  425.   }
  426.  
  427.   var e = updateDir.directoryEntries;
  428.   while (e.hasMoreElements()) {
  429.     var f = e.getNext().QueryInterface(Components.interfaces.nsIFile);
  430.     // Preserve the last update log file for debugging purposes
  431.     if (f.leafName == FILE_UPDATE_LOG) {
  432.       try {
  433.         var dir = f.parent.parent;
  434.         var logFile = dir.clone();
  435.         logFile.append(FILE_LAST_LOG);
  436.         if (logFile.exists())
  437.           logFile.remove(false);
  438.         f.copyTo(dir, FILE_LAST_LOG);
  439.       }
  440.       catch (e) {
  441.         LOG("General", "Failed to copy file: " + f.path);
  442.       }
  443.     }
  444.     // Now, recursively remove this file.  The recusive removal is really
  445.     // only needed on Mac OSX because this directory will contain a copy of
  446.     // updater.app, which is itself a directory.
  447.     try {
  448.       f.remove(true);
  449.     }
  450.     catch (e) {
  451.       LOG("General", "Failed to remove file: " + f.path);
  452.     }
  453.   }
  454.   try {
  455.     updateDir.remove(false);
  456.   } catch (e) {
  457.     LOG("General", "Failed to remove update directory: " + updateDir.path +
  458.         " - This is almost always bad. Exception = " + e);
  459.     throw e;
  460.   }
  461. }
  462.  
  463. /**
  464.  * Clean up updates list and the updates directory.
  465.  * @param   key
  466.  *          The Directory Service Key under which update directory resides
  467.  *          (optional).
  468.  */
  469. function cleanupActiveUpdate(key) {
  470.   // Move the update from the Active Update list into the Past Updates list.
  471.   var um =
  472.       Components.classes["@mozilla.org/updates/update-manager;1"].
  473.       getService(Components.interfaces.nsIUpdateManager);
  474.   um.activeUpdate = null;
  475.   um.saveUpdates();
  476.  
  477.   // Now trash the updates directory, since we're done with it
  478.   cleanUpUpdatesDir(key);
  479. }
  480.  
  481. /**
  482.  * Gets a preference value, handling the case where there is no default.
  483.  * @param   func
  484.  *          The name of the preference function to call, on nsIPrefBranch
  485.  * @param   preference
  486.  *          The name of the preference
  487.  * @param   defaultValue
  488.  *          The default value to return in the event the preference has
  489.  *          no setting
  490.  * @returns The value of the preference, or undefined if there was no
  491.  *          user or default value.
  492.  */
  493. function getPref(func, preference, defaultValue) {
  494.   try {
  495.     return gPref[func](preference);
  496.   }
  497.   catch (e) {
  498.   }
  499.   return defaultValue;
  500. }
  501.  
  502. /**
  503.  * Gets the current value of the locale.  It's possible for this preference to
  504.  * be localized, so we have to do a little extra work here.  Similar code
  505.  * exists in nsHttpHandler.cpp when building the UA string.
  506.  */
  507. function getLocale() {
  508.   try {
  509.       // Get the default branch
  510.       var prefs = Components.classes["@mozilla.org/preferences-service;1"]
  511.           .getService(Components.interfaces.nsIPrefService);
  512.       var defaultPrefs = prefs.getDefaultBranch(null);
  513.       return defaultPrefs.getCharPref(PREF_GENERAL_USERAGENT_LOCALE);
  514.   } catch (e) {}
  515.  
  516.   return gPref.getCharPref(PREF_GENERAL_USERAGENT_LOCALE);
  517. }
  518.  
  519. /**
  520.  * Read the update channel from defaults only.  We do this to ensure that
  521.  * the channel is tightly coupled with the application and does not apply
  522.  * to other instances of the application that may use the same profile.
  523.  */
  524. function getUpdateChannel() {
  525.   var channel = "default";
  526.   var prefName;
  527.   var prefValue;
  528.  
  529.   var defaults =
  530.       gPref.QueryInterface(Components.interfaces.nsIPrefService).
  531.       getDefaultBranch(null);
  532.   try {
  533.     channel = defaults.getCharPref(PREF_APP_UPDATE_CHANNEL);
  534.   } catch (e) {
  535.     // use default when pref not found
  536.   }
  537.  
  538.   try {
  539.     var partners = gPref.getChildList(PREF_PARTNER_BRANCH, { });
  540.     if (partners.length) {
  541.       channel += "-cck";
  542.       partners.sort();
  543.  
  544.       for each (prefName in partners) {
  545.         prefValue = gPref.getCharPref(prefName);
  546.         channel += "-" + prefValue;
  547.       }
  548.     }
  549.   }
  550.   catch (e) {
  551.     Components.utils.reportError(e);
  552.   }
  553.  
  554.   return channel;
  555. }
  556.  
  557. /* Get the distribution pref values, from defaults only */
  558. function getDistributionPrefValue(aPrefName) {
  559.   var prefValue = "default";
  560.  
  561.   var defaults =
  562.       gPref.QueryInterface(Components.interfaces.nsIPrefService).
  563.       getDefaultBranch(null);
  564.   try {
  565.     prefValue = defaults.getCharPref(aPrefName);
  566.   } catch (e) {
  567.     // use default when pref not found
  568.   }
  569.  
  570.   return prefValue;
  571. }
  572.  
  573. /**
  574.  * An enumeration of items in a JS array.
  575.  * @constructor
  576.  */
  577. function ArrayEnumerator(aItems) {
  578.   this._index = 0;
  579.   if (aItems) {
  580.     for (var i = 0; i < aItems.length; ++i) {
  581.       if (!aItems[i])
  582.         aItems.splice(i, 1);
  583.     }
  584.   }
  585.   this._contents = aItems;
  586. }
  587.  
  588. ArrayEnumerator.prototype = {
  589.   _index: 0,
  590.   _contents: [],
  591.  
  592.   hasMoreElements: function() {
  593.     return this._index < this._contents.length;
  594.   },
  595.  
  596.   getNext: function() {
  597.     return this._contents[this._index++];
  598.   }
  599. };
  600.  
  601. /**
  602.  * Trims a prefix from a string.
  603.  * @param   string
  604.  *          The source string
  605.  * @param   prefix
  606.  *          The prefix to remove.
  607.  * @returns The suffix (string - prefix)
  608.  */
  609. function stripPrefix(string, prefix) {
  610.   return string.substr(prefix.length);
  611. }
  612.  
  613. /**
  614.  * Writes a string of text to a file.  A newline will be appended to the data
  615.  * written to the file.  This function only works with ASCII text.
  616.  */
  617. function writeStringToFile(file, text) {
  618.   var fos =
  619.       Components.classes["@mozilla.org/network/safe-file-output-stream;1"].
  620.       createInstance(nsIFileOutputStream);
  621.   var modeFlags = MODE_WRONLY | MODE_CREATE | MODE_TRUNCATE;
  622.   if (!file.exists())
  623.     file.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  624.   fos.init(file, modeFlags, PERMS_FILE, 0);
  625.   text += "\n";
  626.   fos.write(text, text.length);
  627.   closeSafeOutputStream(fos);
  628. }
  629.  
  630. /**
  631.  * Reads a string of text from a file.  A trailing newline will be removed
  632.  * before the result is returned.  This function only works with ASCII text.
  633.  */
  634. function readStringFromFile(file) {
  635.   var fis =
  636.       Components.classes["@mozilla.org/network/file-input-stream;1"].
  637.       createInstance(nsIFileInputStream);
  638.   var modeFlags = MODE_RDONLY;
  639.   if (!file.exists())
  640.     return null;
  641.   fis.init(file, modeFlags, PERMS_FILE, 0);
  642.   var sis =
  643.       Components.classes["@mozilla.org/scriptableinputstream;1"].
  644.       createInstance(Components.interfaces.nsIScriptableInputStream);
  645.   sis.init(fis);
  646.   var text = sis.read(sis.available());
  647.   sis.close();
  648.   if (text[text.length - 1] == "\n")
  649.     text = text.slice(0, -1);
  650.   return text;
  651. }
  652.  
  653. function getObserverService()
  654. {
  655.   return Components.classes["@mozilla.org/observer-service;1"]
  656.                    .getService(Components.interfaces.nsIObserverService);
  657. }
  658.  
  659. /**
  660.  * Update Patch
  661.  * @param   patch
  662.  *          A <patch> element to initialize this object with
  663.  * @throws if patch has a size of 0
  664.  * @constructor
  665.  */
  666. function UpdatePatch(patch) {
  667.   this._properties = {};
  668.   for (var i = 0; i < patch.attributes.length; ++i) {
  669.     var attr = patch.attributes.item(i);
  670.     attr.QueryInterface(Components.interfaces.nsIDOMAttr);
  671.     switch (attr.name) {
  672.     case "selected":
  673.       this.selected = attr.value == "true";
  674.       break;
  675.     case "size":
  676.       if (0 == parseInt(attr.value)) {
  677.         LOG("UpdatePatch", "0-sized patch!");
  678.         throw Components.results.NS_ERROR_ILLEGAL_VALUE;
  679.       }
  680.       // fall through
  681.     default:
  682.       this[attr.name] = attr.value;
  683.       break;
  684.     };
  685.   }
  686. }
  687. UpdatePatch.prototype = {
  688.   /**
  689.    * See nsIUpdateService.idl
  690.    */
  691.   serialize: function(updates) {
  692.     var patch = updates.createElementNS(URI_UPDATE_NS, "patch");
  693.     patch.setAttribute("type", this.type);
  694.     patch.setAttribute("URL", this.URL);
  695.     patch.setAttribute("hashFunction", this.hashFunction);
  696.     patch.setAttribute("hashValue", this.hashValue);
  697.     patch.setAttribute("size", this.size);
  698.     patch.setAttribute("selected", this.selected);
  699.     patch.setAttribute("state", this.state);
  700.  
  701.     for (var p in this._properties) {
  702.       if (this._properties[p].present)
  703.         patch.setAttribute(p, this._properties[p].data);
  704.     }
  705.  
  706.     return patch;
  707.   },
  708.  
  709.   /**
  710.    * A hash of custom properties
  711.    */
  712.   _properties: null,
  713.  
  714.   /**
  715.    * See nsIWritablePropertyBag.idl
  716.    */
  717.   setProperty: function(name, value) {
  718.     this._properties[name] = { data: value, present: true };
  719.   },
  720.  
  721.   /**
  722.    * See nsIWritablePropertyBag.idl
  723.    */
  724.   deleteProperty: function(name) {
  725.     if (name in this._properties)
  726.       this._properties[name].present = false;
  727.     else
  728.       throw Components.results.NS_ERROR_FAILURE;
  729.   },
  730.  
  731.   /**
  732.    * See nsIPropertyBag.idl
  733.    */
  734.   get enumerator() {
  735.     var properties = [];
  736.     for (var p in this._properties)
  737.       properties.push(this._properties[p].data);
  738.     return new ArrayEnumerator(properties);
  739.   },
  740.  
  741.   /**
  742.    * See nsIPropertyBag.idl
  743.    */
  744.   getProperty: function(name) {
  745.     if (name in this._properties &&
  746.         this._properties[name].present)
  747.       return this._properties[name].data;
  748.     throw Components.results.NS_ERROR_FAILURE;
  749.   },
  750.  
  751.   /**
  752.    * Returns whether or not the update.status file for this patch exists at the
  753.    * appropriate location.
  754.    */
  755.   get statusFileExists() {
  756.     var statusFile = getUpdatesDir();
  757.     statusFile.append(FILE_UPDATE_STATUS);
  758.     return statusFile.exists();
  759.   },
  760.  
  761.   /**
  762.    * See nsIUpdateService.idl
  763.    */
  764.   get state() {
  765.     if (!this.statusFileExists)
  766.       return STATE_NONE;
  767.     return this._properties.state;
  768.   },
  769.   set state(val) {
  770.     this._properties.state = val;
  771.   },
  772.  
  773.   /**
  774.    * See nsISupports.idl
  775.    */
  776.   QueryInterface: function(iid) {
  777.     if (!iid.equals(Components.interfaces.nsIUpdatePatch) &&
  778.         !iid.equals(Components.interfaces.nsIPropertyBag) &&
  779.         !iid.equals(Components.interfaces.nsIWritablePropertyBag) &&
  780.         !iid.equals(Components.interfaces.nsISupports))
  781.       throw Components.results.NS_ERROR_NO_INTERFACE;
  782.     return this;
  783.   }
  784. };
  785.  
  786. /**
  787.  * Update
  788.  * Implements nsIUpdate
  789.  * @param   update
  790.  *          An <update> element to initialize this object with
  791.  * @throws if the update contains no patches
  792.  * @constructor
  793.  */
  794. function Update(update) {
  795.   this._properties = {};
  796.   this._patches = [];
  797.   this.installDate = 0;
  798.   this.isCompleteUpdate = false;
  799.   this.channel = "default"
  800.  
  801.   // Null <update>, assume this is a message container and do no
  802.   // further initialization
  803.   if (!update)
  804.     return;
  805.  
  806.   for (var i = 0; i < update.childNodes.length; ++i) {
  807.     var patchElement = update.childNodes.item(i);
  808.     if (patchElement.nodeType != Node.ELEMENT_NODE ||
  809.         patchElement.localName != "patch")
  810.       continue;
  811.  
  812.     patchElement.QueryInterface(Components.interfaces.nsIDOMElement);
  813.     try {
  814.       var patch = new UpdatePatch(patchElement);
  815.     } catch (e) {
  816.       continue;
  817.     }
  818.     this._patches.push(patch);
  819.   }
  820.  
  821.   if (0 == this._patches.length)
  822.     throw Components.results.NS_ERROR_ILLEGAL_VALUE;
  823.  
  824.   for (var i = 0; i < update.attributes.length; ++i) {
  825.     var attr = update.attributes.item(i);
  826.     attr.QueryInterface(Components.interfaces.nsIDOMAttr);
  827.     if (attr.name == "installDate" && attr.value)
  828.       this.installDate = parseInt(attr.value);
  829.     else if (attr.name == "isCompleteUpdate")
  830.       this.isCompleteUpdate = attr.value == "true";
  831.     else if (attr.name == "isSecurityUpdate")
  832.       this.isSecurityUpdate = attr.value == "true";
  833.     else if (attr.name == "detailsURL")
  834.       this._detailsURL = attr.value;
  835.     else if (attr.name == "channel")
  836.       this.channel = attr.value;
  837.     else
  838.       this[attr.name] = attr.value;
  839.   }
  840.  
  841.   // The Update Name is either the string provided by the <update> element, or
  842.   // the string: "<App Name> <Update App Version>"
  843.   var name = "";
  844.   if (update.hasAttribute("name"))
  845.     name = update.getAttribute("name");
  846.   else {
  847.     var sbs = Components.classes["@mozilla.org/intl/stringbundle;1"]
  848.                         .getService(Components.interfaces.nsIStringBundleService);
  849.     var brandBundle = sbs.createBundle(URI_BRAND_PROPERTIES);
  850.     var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  851.     var appName = brandBundle.GetStringFromName("brandShortName");
  852.     name = updateBundle.formatStringFromName("updateName",
  853.                                              [appName, this.version], 2);
  854.   }
  855.   this.name = name;
  856. }
  857. Update.prototype = {
  858.   /**
  859.    * See nsIUpdateService.idl
  860.    */
  861.   get patchCount() {
  862.     return this._patches.length;
  863.   },
  864.  
  865.   /**
  866.    * See nsIUpdateService.idl
  867.    */
  868.   getPatchAt: function(index) {
  869.     return this._patches[index];
  870.   },
  871.  
  872.   /**
  873.    * See nsIUpdateService.idl
  874.    *
  875.    * We use a copy of the state cached on this object in |_state| only when
  876.    * there is no selected patch, i.e. in the case when we could not load
  877.    * |.activeUpdate| from the update manager for some reason but still have
  878.    * the update.status file to work with.
  879.    */
  880.   _state: "",
  881.   set state(state) {
  882.     if (this.selectedPatch)
  883.       this.selectedPatch.state = state;
  884.     this._state = state;
  885.     return state;
  886.   },
  887.   get state() {
  888.     if (this.selectedPatch)
  889.       return this.selectedPatch.state;
  890.     return this._state;
  891.   },
  892.  
  893.   /**
  894.    * See nsIUpdateService.idl
  895.    */
  896.   errorCode: 0,
  897.  
  898.   /**
  899.    * See nsIUpdateService.idl
  900.    */
  901.   get selectedPatch() {
  902.     for (var i = 0; i < this.patchCount; ++i) {
  903.       if (this._patches[i].selected)
  904.         return this._patches[i];
  905.     }
  906.     return null;
  907.   },
  908.  
  909.   /**
  910.    * See nsIUpdateService.idl
  911.    */
  912.   get detailsURL() {
  913.     if (!this._detailsURL) {
  914.       try {
  915.         // Try using a default details URL supplied by the distribution
  916.         // if the update XML does not supply one.
  917.         var formatter = Components.classes["@mozilla.org/toolkit/URLFormatterService;1"]
  918.                                   .getService(Components.interfaces.nsIURLFormatter);
  919.         return formatter.formatURLPref(PREF_APP_UPDATE_URL_DETAILS);
  920.       }
  921.       catch (e) {
  922.       }
  923.     }
  924.     return this._detailsURL || "";
  925.   },
  926.  
  927.   /**
  928.    * See nsIUpdateService.idl
  929.    */
  930.   serialize: function(updates) {
  931.     var update = updates.createElementNS(URI_UPDATE_NS, "update");
  932.     update.setAttribute("type", this.type);
  933.     update.setAttribute("name", this.name);
  934.     update.setAttribute("version", this.version);
  935.     update.setAttribute("platformVersion", this.platformVersion);
  936.     update.setAttribute("extensionVersion", this.extensionVersion);
  937.     update.setAttribute("detailsURL", this.detailsURL);
  938.     update.setAttribute("licenseURL", this.licenseURL);
  939.     update.setAttribute("serviceURL", this.serviceURL);
  940.     update.setAttribute("installDate", this.installDate);
  941.     update.setAttribute("statusText", this.statusText);
  942.     update.setAttribute("buildID", this.buildID);
  943.     update.setAttribute("isCompleteUpdate", this.isCompleteUpdate);
  944.     update.setAttribute("channel", this.channel);
  945.     updates.documentElement.appendChild(update);
  946.  
  947.     for (var p in this._properties) {
  948.       if (this._properties[p].present)
  949.         update.setAttribute(p, this._properties[p].data);
  950.     }
  951.  
  952.     for (var i = 0; i < this.patchCount; ++i)
  953.       update.appendChild(this.getPatchAt(i).serialize(updates));
  954.  
  955.     return update;
  956.   },
  957.  
  958.   /**
  959.    * A hash of custom properties
  960.    */
  961.   _properties: null,
  962.  
  963.   /**
  964.    * See nsIWritablePropertyBag.idl
  965.    */
  966.   setProperty: function(name, value) {
  967.     this._properties[name] = { data: value, present: true };
  968.   },
  969.  
  970.   /**
  971.    * See nsIWritablePropertyBag.idl
  972.    */
  973.   deleteProperty: function(name) {
  974.     if (name in this._properties)
  975.       this._properties[name].present = false;
  976.     else
  977.       throw Components.results.NS_ERROR_FAILURE;
  978.   },
  979.  
  980.   /**
  981.    * See nsIPropertyBag.idl
  982.    */
  983.   get enumerator() {
  984.     var properties = [];
  985.     for (var p in this._properties)
  986.       properties.push(this._properties[p].data);
  987.     return new ArrayEnumerator(properties);
  988.   },
  989.  
  990.   /**
  991.    * See nsIPropertyBag.idl
  992.    */
  993.   getProperty: function(name) {
  994.     if (name in this._properties &&
  995.         this._properties[name].present)
  996.       return this._properties[name].data;
  997.     throw Components.results.NS_ERROR_FAILURE;
  998.   },
  999.  
  1000.   /**
  1001.    * See nsISupports.idl
  1002.    */
  1003.   QueryInterface: function(iid) {
  1004.     if (!iid.equals(Components.interfaces.nsIUpdate) &&
  1005.         !iid.equals(Components.interfaces.nsIPropertyBag) &&
  1006.         !iid.equals(Components.interfaces.nsIWritablePropertyBag) &&
  1007.         !iid.equals(Components.interfaces.nsISupports))
  1008.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1009.     return this;
  1010.   }
  1011. };
  1012.  
  1013. /**
  1014.  * UpdateService
  1015.  * A Service for managing the discovery and installation of software updates.
  1016.  * @constructor
  1017.  */
  1018. function UpdateService() {
  1019.   gApp  = Components.classes["@mozilla.org/xre/app-info;1"]
  1020.                     .getService(Components.interfaces.nsIXULAppInfo)
  1021.                     .QueryInterface(Components.interfaces.nsIXULRuntime);
  1022.   gPref = Components.classes["@mozilla.org/preferences-service;1"]
  1023.                     .getService(Components.interfaces.nsIPrefBranch2);
  1024.   gConsole = Components.classes["@mozilla.org/consoleservice;1"]
  1025.                        .getService(Components.interfaces.nsIConsoleService);
  1026.  
  1027.   // Not all builds have a known ABI
  1028.   try {
  1029.     gABI = gApp.XPCOMABI;
  1030.   }
  1031.   catch (e) {
  1032.     LOG("UpdateService", "XPCOM ABI unknown: updates are not possible.");
  1033.   }
  1034.  
  1035.   try {
  1036.     var sysInfo =
  1037.       Components.classes["@mozilla.org/system-info;1"]
  1038.                 .getService(Components.interfaces.nsIPropertyBag2);
  1039.  
  1040.     gOSVersion = encodeURIComponent(sysInfo.getProperty("name") + " " +
  1041.                                     sysInfo.getProperty("version"));
  1042.   }
  1043.   catch (e) {
  1044.     LOG("UpdateService", "OS Version unknown: updates are not possible.");
  1045.   }
  1046.  
  1047. //@line 1043 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  1048.  
  1049.   // Start the update timer only after a profile has been selected so that the
  1050.   // appropriate values for the update check are read from the user's profile.
  1051.   var os = getObserverService();
  1052.  
  1053.   os.addObserver(this, "profile-after-change", false);
  1054.  
  1055.   // Observe xpcom-shutdown to unhook pref branch observers above to avoid
  1056.   // shutdown leaks.
  1057.   os.addObserver(this, "xpcom-shutdown", false);
  1058. }
  1059.  
  1060. UpdateService.prototype = {
  1061.   /**
  1062.    * The downloader we are using to download updates. There is only ever one of
  1063.    * these.
  1064.    */
  1065.   _downloader: null,
  1066.  
  1067.   /**
  1068.    * Handle Observer Service notifications
  1069.    * @param   subject
  1070.    *          The subject of the notification
  1071.    * @param   topic
  1072.    *          The notification name
  1073.    * @param   data
  1074.    *          Additional data
  1075.    */
  1076.   observe: function(subject, topic, data) {
  1077.     var os = getObserverService();
  1078.  
  1079.     switch (topic) {
  1080.     case "profile-after-change":
  1081.       os.removeObserver(this, "profile-after-change");
  1082.       this._start();
  1083.       break;
  1084.     case "xpcom-shutdown":
  1085.       os.removeObserver(this, "xpcom-shutdown");
  1086.  
  1087.       // Release Services
  1088.       gApp      = null;
  1089.       gPref     = null;
  1090.       gConsole  = null;
  1091.       break;
  1092.     }
  1093.   },
  1094.  
  1095.   /**
  1096.    * Start the Update Service
  1097.    */
  1098.   _start: function() {
  1099.     // Start logging
  1100.     this._initLoggingPrefs();
  1101.  
  1102.     // Clean up any extant updates
  1103.     this._postUpdateProcessing();
  1104.  
  1105.     // Register a background update check timer
  1106.     var tm =
  1107.         Components.classes["@mozilla.org/updates/timer-manager;1"]
  1108.                   .getService(Components.interfaces.nsIUpdateTimerManager);
  1109.     var interval = getPref("getIntPref", PREF_APP_UPDATE_INTERVAL, 86400);
  1110.     tm.registerTimer("background-update-timer", this, interval);
  1111.  
  1112.     // Resume fetching...
  1113.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  1114.                         .getService(Components.interfaces.nsIUpdateManager);
  1115.     var activeUpdate = um.activeUpdate;
  1116.     if (activeUpdate) {
  1117.       var status = this.downloadUpdate(activeUpdate, true);
  1118.       if (status == STATE_NONE)
  1119.         cleanupActiveUpdate();
  1120.     }
  1121.   },
  1122.  
  1123.   /**
  1124.    * Perform post-processing on updates lingering in the updates directory
  1125.    * from a previous browser session - either report install failures (and
  1126.    * optionally attempt to fetch a different version if appropriate) or
  1127.    * notify the user of install success.
  1128.    */
  1129.   _postUpdateProcessing: function() {
  1130.     // Detect installation failures and notify
  1131.  
  1132.     // Bail out if we don't have appropriate permissions
  1133.     if (!this.canUpdate)
  1134.       return;
  1135.  
  1136.     var status = readStatusFile(getUpdatesDir());
  1137.  
  1138.     // Make sure to cleanup after an update that failed for an unknown reason
  1139.     if (status == "null")
  1140.       status = null;
  1141.  
  1142.     var updRootKey = null;
  1143. //@line 1139 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  1144.     function findPreviousUpdate(key) {
  1145.       var updateDir = getUpdatesDir(key);
  1146.       if (updateDir.exists()) {
  1147.         status = readStatusFile(updateDir);
  1148.         // Previous download should succeed. Otherwise, we will not be here!
  1149.         if (status == STATE_SUCCEEDED)
  1150.           updRootKey = key;
  1151.         else
  1152.           status = null;
  1153.       }
  1154.     }
  1155.  
  1156.     // required when updating from Fx 2.0.0.1 to 2.0.0.3 (or later)
  1157.     // on Windows Vista.
  1158.     if (status == null)
  1159.       findPreviousUpdate(KEY_UAPPDATA);
  1160.  
  1161.     // required to migrate from older versions.
  1162.     if (status == null)
  1163.       findPreviousUpdate(KEY_APPDIR);
  1164. //@line 1160 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  1165.  
  1166.     if (status == STATE_DOWNLOADING) {
  1167.       LOG("UpdateService", "_postUpdateProcessing: Downloading patch, resuming...");
  1168.     }
  1169.     else if (status != null) {
  1170.       // null status means the update.status file is not present, because either:
  1171.       // 1) no update was performed, and so there's no UI to show
  1172.       // 2) an update was attempted but failed during checking, transfer or
  1173.       //    verification, and was cleaned up at that point, and UI notifying of
  1174.       //    that error was shown at that stage.
  1175.       var um =
  1176.           Components.classes["@mozilla.org/updates/update-manager;1"].
  1177.           getService(Components.interfaces.nsIUpdateManager);
  1178.       var prompter =
  1179.           Components.classes["@mozilla.org/updates/update-prompt;1"].
  1180.           createInstance(Components.interfaces.nsIUpdatePrompt);
  1181.  
  1182.       var shouldCleanup = true;
  1183.       var update = um.activeUpdate;
  1184.       if (!update) {
  1185.         update = new Update(null);
  1186.       }
  1187.       update.state = status;
  1188.       var sbs =
  1189.           Components.classes["@mozilla.org/intl/stringbundle;1"].
  1190.           getService(Components.interfaces.nsIStringBundleService);
  1191.       var bundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  1192.       if (status == STATE_SUCCEEDED) {
  1193.         update.statusText = bundle.GetStringFromName("installSuccess");
  1194.  
  1195.         // Dig through the update history to find the patch that was just
  1196.         // installed and update its metadata.
  1197.         for (var i = 0; i < um.updateCount; ++i) {
  1198.           var umUpdate = um.getUpdateAt(i);
  1199.           if (umUpdate && umUpdate.version == update.version &&
  1200.                           umUpdate.buildID == update.buildID) {
  1201.             umUpdate.statusText = update.statusText;
  1202.             break;
  1203.           }
  1204.         }
  1205.  
  1206.         LOG("UpdateService", "_postUpdateProcessing: Install Succeeded, Showing UI");
  1207.         prompter.showUpdateInstalled(update);
  1208. //@line 1207 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  1209.         // Perform platform-specific post-update processing.
  1210.         if (POST_UPDATE_CONTRACTID in Components.classes) {
  1211.           Components.classes[POST_UPDATE_CONTRACTID].
  1212.               createInstance(Components.interfaces.nsIRunnable).run();
  1213.         }
  1214. //@line 1213 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  1215.  
  1216.         // Done with this update. Clean it up.
  1217.         cleanupActiveUpdate(updRootKey);
  1218.       }
  1219.       else {
  1220.         // If we hit an error, then the error code will be included in the
  1221.         // status string following a colon.  If we had an I/O error, then we
  1222.         // assume that the patch is not invalid, and we restage the patch so
  1223.         // that it can be attempted again the next time we restart.
  1224.         var ary = status.split(": ");
  1225.         update.state = ary[0];
  1226.         if (update.state == STATE_FAILED && ary[1]) {
  1227.           update.errorCode = ary[1];
  1228.           if (update.errorCode == WRITE_ERROR) {
  1229.             prompter.showUpdateError(update);
  1230.             writeStatusFile(getUpdatesDir(), update.state = STATE_PENDING);
  1231.             return;
  1232.           }
  1233.         }
  1234.  
  1235.         // Something went wrong with the patch application process.
  1236.         cleanupActiveUpdate();
  1237.  
  1238.         update.statusText = bundle.GetStringFromName("patchApplyFailure");
  1239.         var oldType = update.selectedPatch ? update.selectedPatch.type
  1240.                                            : "complete";
  1241.         if (update.selectedPatch && oldType == "partial") {
  1242.           // Partial patch application failed, try downloading the complete
  1243.           // update in the background instead.
  1244.           LOG("UpdateService", "_postUpdateProcessing: Install of Partial Patch " +
  1245.               "failed, downloading Complete Patch and maybe showing UI");
  1246.           var status = this.downloadUpdate(update, true);
  1247.           if (status == STATE_NONE)
  1248.             cleanupActiveUpdate();
  1249.         }
  1250.         else {
  1251.           LOG("UpdateService", "_postUpdateProcessing: Install of Complete or " +
  1252.               "only patch failed. Showing error.");
  1253.         }
  1254.         update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  1255.         update.setProperty("patchingFailed", oldType);
  1256.         prompter.showUpdateError(update);
  1257.       }
  1258.     }
  1259.     else {
  1260.       LOG("UpdateService", "_postUpdateProcessing: No Status, No Update");
  1261.     }
  1262.   },
  1263.  
  1264.   /**
  1265.    * Initialize Logging preferences, formatted like so:
  1266.    *  app.update.log.<moduleName> = <true|false>
  1267.    */
  1268.   _initLoggingPrefs: function() {
  1269.     try {
  1270.       var ps = Components.classes["@mozilla.org/preferences-service;1"]
  1271.                         .getService(Components.interfaces.nsIPrefService);
  1272.       var logBranch = ps.getBranch(PREF_APP_UPDATE_LOG_BRANCH);
  1273.       var modules = logBranch.getChildList("", { value: 0 });
  1274.  
  1275.       for (var i = 0; i < modules.length; ++i) {
  1276.         if (logBranch.prefHasUserValue(modules[i]))
  1277.           gLogEnabled[modules[i]] = logBranch.getBoolPref(modules[i]);
  1278.       }
  1279.     }
  1280.     catch (e) {
  1281.     }
  1282.   },
  1283.  
  1284.   /**
  1285.    * Notified when a timer fires
  1286.    * @param   timer
  1287.    *          The timer that fired
  1288.    */
  1289.   notify: function(timer) {
  1290.     // If a download is in progress, then do nothing.
  1291.     if (this.isDownloading || this._downloader && this._downloader.patchIsStaged)
  1292.       return;
  1293.  
  1294.     var self = this;
  1295.     var listener = {
  1296.       /**
  1297.        * See nsIUpdateService.idl
  1298.        */
  1299.       onProgress: function(request, position, totalSize) {
  1300.       },
  1301.  
  1302.       /**
  1303.        * See nsIUpdateService.idl
  1304.        */
  1305.       onCheckComplete: function(request, updates, updateCount) {
  1306.         self._selectAndInstallUpdate(updates);
  1307.       },
  1308.  
  1309.       /**
  1310.        * See nsIUpdateService.idl
  1311.        */
  1312.       onError: function(request, update) {
  1313.         LOG("Checker", "Error during background update: " + update.statusText);
  1314.       },
  1315.     }
  1316.     this.backgroundChecker.checkForUpdates(listener, false);
  1317.   },
  1318.  
  1319.   /**
  1320.    * Determine whether or not an update requires user confirmation before it
  1321.    * can be installed.
  1322.    * @param   update
  1323.    *          The update to be installed
  1324.    * @returns true if a prompt UI should be shown asking the user if they want
  1325.    *          to install the update, false if the update should just be
  1326.    *          silently downloaded and installed.
  1327.    */
  1328.   _shouldPrompt: function(update) {
  1329.     // There are two possible outcomes here:
  1330.     // 1. download and install the update automatically
  1331.     // 2. alert the user about the presence of an update before doing anything
  1332.     //
  1333.     // The outcome we follow is determined as follows:
  1334.     //
  1335.     // Note:  all Major updates require notification and confirmation
  1336.     //
  1337.     // Update Type      Mode      Incompatible    Outcome
  1338.     // Major            0         Yes or No       Notify and Confirm
  1339.     // Major            1         No              Notify and Confirm
  1340.     // Major            1         Yes             Notify and Confirm
  1341.     // Major            2         Yes or No       Notify and Confirm
  1342.     // Minor            0         Yes or No       Auto Install
  1343.     // Minor            1         No              Auto Install
  1344.     // Minor            1         Yes             Notify and Confirm
  1345.     // Minor            2         No              Auto Install
  1346.     // Minor            2         Yes             Notify and Confirm
  1347.     //
  1348.     // In addition, if there is a license associated with an update, regardless
  1349.     // of type it must be agreed to.
  1350.     //
  1351.     // If app.update.enabled is set to false, an update check is not performed
  1352.     // at all, and so none of the decision making above is entered into.
  1353.     //
  1354.     if (update.type == "major") {
  1355.       LOG("Checker", "_shouldPrompt: Prompting because it is a major update");
  1356.       return true;
  1357.     }
  1358.  
  1359.     update.QueryInterface(Components.interfaces.nsIPropertyBag);
  1360.     try {
  1361.       var licenseAccepted = update.getProperty("licenseAccepted") == "true";
  1362.     }
  1363.     catch (e) {
  1364.       licenseAccepted = false;
  1365.     }
  1366.  
  1367.     var updateEnabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true);
  1368.     if (!updateEnabled) {
  1369.       LOG("Checker", "_shouldPrompt: Not prompting because update is " +
  1370.           "disabled");
  1371.       return false;
  1372.     }
  1373.  
  1374.     // User has turned off automatic download and install
  1375.     var autoEnabled = getPref("getBoolPref", PREF_APP_UPDATE_AUTO, true);
  1376.     if (!autoEnabled) {
  1377.       LOG("Checker", "_shouldPrompt: Prompting because auto install is disabled");
  1378.       return true;
  1379.     }
  1380.  
  1381.     switch (getPref("getIntPref", PREF_APP_UPDATE_MODE, 1)) {
  1382.     case 1:
  1383.       // Mode 1 is do not prompt only if there are no incompatibilities
  1384.       // releases
  1385.       LOG("Checker", "_shouldPrompt: Prompting if there are incompatibilities");
  1386.       return !isCompatible(update);
  1387.     case 2:
  1388.       // Mode 2 is do not prompt only if there are no incompatibilities
  1389.       LOG("Checker", "_shouldPrompt: Prompting if there are incompatibilities");
  1390.       return !isCompatible(update);
  1391.     }
  1392.     // Mode 0 is do not prompt regardless of incompatibilities
  1393.     LOG("Checker", "_shouldPrompt: Not prompting the user - they choose to " +
  1394.         "ignore incompatibilities");
  1395.     return false;
  1396.   },
  1397.  
  1398.   /**
  1399.    * Determine which of the specified updates should be installed.
  1400.    * @param   updates
  1401.    *          An array of available updates
  1402.    */
  1403.   selectUpdate: function(updates) {
  1404.     if (updates.length == 0)
  1405.       return null;
  1406.  
  1407.     // Choose the newest of the available minor and major updates.
  1408.     var majorUpdate = null, minorUpdate = null;
  1409.     var newestMinor = updates[0], newestMajor = updates[0];
  1410.  
  1411.     var vc = Components.classes["@mozilla.org/xpcom/version-comparator;1"]
  1412.                        .getService(Components.interfaces.nsIVersionComparator);
  1413.     for (var i = 0; i < updates.length; ++i) {
  1414.       if (updates[i].type == "major" &&
  1415.           vc.compare(newestMajor.version, updates[i].version) <= 0)
  1416.         majorUpdate = newestMajor = updates[i];
  1417.       if (updates[i].type == "minor" &&
  1418.           vc.compare(newestMinor.version, updates[i].version) <= 0)
  1419.         minorUpdate = newestMinor = updates[i];
  1420.     }
  1421.  
  1422.     // IMPORTANT
  1423.     // If there's a minor update, always try and fetch that one first,
  1424.     // otherwise use the newest major update.
  1425.     // selectUpdate() only returns one update.
  1426.     // if major were to trump minor, and we said "never" to the major
  1427.     // we'd never get the minor update, since selectUpdate()
  1428.     // would return the major update that the user said "never" to
  1429.     // (shadowing the important minor update with security fixes)
  1430.     return minorUpdate || majorUpdate;
  1431.   },
  1432.  
  1433.   /**
  1434.    * Determine which of the specified updates should be installed and
  1435.    * begin the download/installation process, optionally prompting the
  1436.    * user for permission if required.
  1437.    * @param   updates
  1438.    *          An array of available updates
  1439.    */
  1440.   _selectAndInstallUpdate: function(updates) {
  1441.     // Don't prompt if there's an active update - the user is already
  1442.     // aware and is downloading, or performed some user action to prevent
  1443.     // notification.
  1444.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  1445.                        .getService(Components.interfaces.nsIUpdateManager);
  1446.     if (um.activeUpdate)
  1447.       return;
  1448.  
  1449.     var update = this.selectUpdate(updates, updates.length);
  1450.     if (!update)
  1451.       return;
  1452.  
  1453.     // check if the user said "never" to this version
  1454.     // this check is done here, and not in selectUpdate() so that
  1455.     // the user can get an upgrade they said "never" to if they
  1456.     // manually do "Check for Updates..."
  1457.     // note, selectUpdate() only returns one update.
  1458.     // but in selectUpdate(), minor updates trump major updates
  1459.     // if major trumps minor, and we said "never" to the major
  1460.     // we'd never see the minor update.
  1461.     //
  1462.     // note, the never decision should only apply to major updates
  1463.     // see bug #350636 for a scenario where this could potentially
  1464.     // be an issue
  1465.     //
  1466.     // fix for bug #359093
  1467.     // version might one day come back from AUS as an
  1468.     // arbitrary (and possibly non ascii) string, so we need to encode it
  1469.     var neverPrefName = PREF_UPDATE_NEVER_BRANCH + encodeURIComponent(update.version);
  1470.     var never = getPref("getBoolPref", neverPrefName, false);
  1471.     if (never && update.type == "major")
  1472.       return;
  1473.  
  1474.     if (this._shouldPrompt(update))
  1475.       showPromptIfNoIncompatibilities(update);
  1476.     else {
  1477.       LOG("UpdateService", "_selectAndInstallUpdate: No need to show prompt, just download update");
  1478.       var status = this.downloadUpdate(update, true);
  1479.       if (status == STATE_NONE)
  1480.         cleanupActiveUpdate();
  1481.     }
  1482.   },
  1483.  
  1484.   /**
  1485.    * The Checker used for background update checks.
  1486.    */
  1487.   _backgroundChecker: null,
  1488.  
  1489.   /**
  1490.    * See nsIUpdateService.idl
  1491.    */
  1492.   get backgroundChecker() {
  1493.     if (!this._backgroundChecker)
  1494.       this._backgroundChecker = new Checker();
  1495.     return this._backgroundChecker;
  1496.   },
  1497.  
  1498.   /**
  1499.    * See nsIUpdateService.idl
  1500.    */
  1501.   get canUpdate() {
  1502.     try {
  1503.       var appDirFile = getUpdateFile([FILE_PERMS_TEST]);
  1504.       LOG("UpdateService", "canUpdate?  testing " + appDirFile.path);
  1505.       if (!appDirFile.exists()) {
  1506.         appDirFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1507.         appDirFile.remove(false);
  1508.       }
  1509.       var updateDir = getUpdatesDir();
  1510.       var upDirFile = updateDir.clone();
  1511.       upDirFile.append(FILE_PERMS_TEST);
  1512.       LOG("UpdateService", "canUpdate?  testing " + upDirFile.path);
  1513.       if (!upDirFile.exists()) {
  1514.         upDirFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1515.         upDirFile.remove(false);
  1516.       }
  1517. //@line 1516 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  1518.       var sysInfo =
  1519.         Components.classes["@mozilla.org/system-info;1"]
  1520.                   .getService(Components.interfaces.nsIPropertyBag2);
  1521.  
  1522.       // Example windowsVersion:  Windows XP == 5.1
  1523.       var windowsVersion = sysInfo.getProperty("version");
  1524.       LOG("UpdateService", "canUpdate?  windowsVersion = " + windowsVersion);
  1525.  
  1526.       // For Vista, updates can be performed to a location requiring 
  1527.       // admin privileges by requesting elevation via the UAC prompt when 
  1528.       // launching updater.exe if the appDir is under the Program Files 
  1529.       // directory (e.g. C:\Program Files\) and UAC is turned on and 
  1530.       // we can elevate (e.g. user has a split token)
  1531.       //
  1532.       // Note: this does note attempt to handle the case where UAC is
  1533.       // turned on and the installation directory is in a restricted
  1534.       // location that requires admin privileges to update other than 
  1535.       // Program Files.
  1536.  
  1537.       var userCanElevate = false;
  1538.  
  1539.       if (parseFloat(windowsVersion) >= 6) {
  1540.         try {
  1541.           var fileLocator = 
  1542.             Components.classes["@mozilla.org/file/directory_service;1"]
  1543.                       .getService(Components.interfaces.nsIProperties);
  1544.           // KEY_UPDROOT will fail and throw an exception if
  1545.           // appDir is not under the Program Files, so we rely on that
  1546.           var dir = fileLocator.get(KEY_UPDROOT, Components.interfaces.nsIFile);
  1547.           // appDir is under Program Files, so check if the user can elevate
  1548.           userCanElevate = 
  1549.             gApp.QueryInterface(Components.interfaces.nsIWinAppHelper)
  1550.                 .userCanElevate;
  1551.           LOG("UpdateService", 
  1552.               "canUpdate?  on Vista, userCanElevate = " + userCanElevate);
  1553.         }
  1554.         catch (ex) {
  1555.           // When the installation directory is not under Program Files,
  1556.           // fall through to checking if write access to the 
  1557.           // installation directory is available.
  1558.           LOG("UpdateService", 
  1559.               "canUpdate?  on Vista, appDir is not under the Program Files");
  1560.         }
  1561.       }
  1562.  
  1563.       // On Windows, we no longer store the update under the app dir
  1564.       // if the app dir is under C:\Program Files.
  1565.       //
  1566.       // If we are on Windows (including Vista, if we can't elevate)
  1567.       // we need to check that
  1568.       // we can create and remove files from the actual app directory
  1569.       // (like C:\Program Files\Mozilla Firefox).  If we can't
  1570.       // (because this user is not an adminstrator, for example)
  1571.       // canUpdate() should return false.
  1572.       //
  1573.       // For Vista, we perform this check to enable updating the 
  1574.       // application when the user has write access to the installation 
  1575.       // directory under the following scenarios:
  1576.       // 1) the installation directory is not under Program Files 
  1577.       //    (e.g. C:\Program Files)
  1578.       // 2) UAC is turned off
  1579.       // 3) UAC is turned on and the user is not an admin 
  1580.       //    (e.g. the user does not have a split token)
  1581.       // 4) UAC is turned on and the user is already elevated,
  1582.       //    so they can't be elevated again.
  1583.       if (!userCanElevate) {
  1584.         // if we're unable to create the test file
  1585.         // the code below will throw an exception 
  1586.         var actualAppDir = getDir(KEY_APPDIR, []);
  1587.         var actualAppDirFile = actualAppDir.clone();
  1588.         actualAppDirFile.append(FILE_PERMS_TEST);
  1589.         LOG("UpdateService", "canUpdate?  testing " + actualAppDirFile.path);
  1590.         if (!actualAppDirFile.exists()) {
  1591.           actualAppDirFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1592.           actualAppDirFile.remove(false);
  1593.         }
  1594.       }
  1595. //@line 1594 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  1596.     }
  1597.     catch (e) {
  1598.        LOG("UpdateService", "can't update, no privileges: " + e);
  1599.       // No write privileges to install directory
  1600.       return false;
  1601.     }
  1602.     // If the administrator has locked the app update functionality
  1603.     // OFF - this is not just a user setting, so disable the manual
  1604.     // UI too.
  1605.     var enabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true);
  1606.     if (!enabled && gPref.prefIsLocked(PREF_APP_UPDATE_ENABLED)) {
  1607.       LOG("UpdateService", "can't update, disabled by pref");
  1608.       return false;
  1609.     }
  1610.  
  1611.     // If we don't know the binary platform we're updating, we can't update.
  1612.     if (!gABI) {
  1613.       LOG("UpdateService", "can't update, unknown ABI");
  1614.       return false;
  1615.     }
  1616.  
  1617.     // If we don't know the OS version we're updating, we can't update.
  1618.     if (!gOSVersion) {
  1619.       LOG("UpdateService", "can't update, unknown OS version");
  1620.       return false;
  1621.     }
  1622.  
  1623.     LOG("UpdateService", "can update");
  1624.     return true;
  1625.   },
  1626.  
  1627.   /**
  1628.    * See nsIUpdateService.idl
  1629.    */
  1630.   addDownloadListener: function(listener) {
  1631.     if (!this._downloader) {
  1632.       LOG("UpdateService", "addDownloadListener: no downloader!\n");
  1633.       return;
  1634.     }
  1635.     this._downloader.addDownloadListener(listener);
  1636.   },
  1637.  
  1638.   /**
  1639.    * See nsIUpdateService.idl
  1640.    */
  1641.   removeDownloadListener: function(listener) {
  1642.     if (!this._downloader) {
  1643.       LOG("UpdateService", "removeDownloadListener: no downloader!\n");
  1644.       return;
  1645.     }
  1646.     this._downloader.removeDownloadListener(listener);
  1647.   },
  1648.  
  1649.   /**
  1650.    * See nsIUpdateService.idl
  1651.    */
  1652.   downloadUpdate: function(update, background) {
  1653.     if (!update)
  1654.       throw Components.results.NS_ERROR_NULL_POINTER;
  1655.     if (this.isDownloading) {
  1656.       if (update.isCompleteUpdate == this._downloader.isCompleteUpdate &&
  1657.           background == this._downloader.background) {
  1658.         LOG("UpdateService", "no support for downloading more than one update at a time");
  1659.         return readStatusFile(getUpdatesDir());
  1660.       }
  1661.       this._downloader.cancel();
  1662.     }
  1663.     this._downloader = new Downloader(background);
  1664.     return this._downloader.downloadUpdate(update);
  1665.   },
  1666.  
  1667.   /**
  1668.    * See nsIUpdateService.idl
  1669.    */
  1670.   pauseDownload: function() {
  1671.     if (this.isDownloading)
  1672.       this._downloader.cancel();
  1673.   },
  1674.  
  1675.   /**
  1676.    * See nsIUpdateService.idl
  1677.    */
  1678.   get isDownloading() {
  1679.     return this._downloader && this._downloader.isBusy;
  1680.   },
  1681.  
  1682.   /**
  1683.    * See nsISupports.idl
  1684.    */
  1685.   QueryInterface: function(iid) {
  1686.     if (!iid.equals(Components.interfaces.nsIApplicationUpdateService) &&
  1687.         !iid.equals(Components.interfaces.nsITimerCallback) &&
  1688.         !iid.equals(Components.interfaces.nsIObserver) &&
  1689.         !iid.equals(Components.interfaces.nsISupports))
  1690.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1691.     return this;
  1692.   }
  1693. };
  1694.  
  1695. /**
  1696.  * A service to manage active and past updates.
  1697.  * @constructor
  1698.  */
  1699. function UpdateManager() {
  1700.   // Ensure the Active Update file is loaded
  1701.   var updates = this._loadXMLFileIntoArray(getUpdateFile([FILE_UPDATE_ACTIVE]));
  1702.   if (updates.length > 0)
  1703.     this._activeUpdate = updates[0];
  1704. }
  1705. UpdateManager.prototype = {
  1706.   /**
  1707.    * All previously downloaded and installed updates, as an array of nsIUpdate
  1708.    * objects.
  1709.    */
  1710.   _updates: null,
  1711.  
  1712.   /**
  1713.    * The current actively downloading/installing update, as a nsIUpdate object.
  1714.    */
  1715.   _activeUpdate: null,
  1716.  
  1717.   /**
  1718.    * Loads an updates.xml formatted file into an array of nsIUpdate items.
  1719.    * @param   file
  1720.    *          A nsIFile for the updates.xml file
  1721.    * @returns The array of nsIUpdate items held in the file.
  1722.    */
  1723.   _loadXMLFileIntoArray: function(file) {
  1724.     if (!file.exists()) {
  1725.       LOG("UpdateManager", "_loadXMLFileIntoArray: XML File does not exist");
  1726.       return [];
  1727.     }
  1728.  
  1729.     var result = [];
  1730.     var fileStream = Components.classes["@mozilla.org/network/file-input-stream;1"]
  1731.                                .createInstance(Components.interfaces.nsIFileInputStream);
  1732.     fileStream.init(file, MODE_RDONLY, PERMS_FILE, 0);
  1733.     try {
  1734.       var parser = Components.classes["@mozilla.org/xmlextras/domparser;1"]
  1735.                             .createInstance(Components.interfaces.nsIDOMParser);
  1736.       var doc = parser.parseFromStream(fileStream, "UTF-8", fileStream.available(), "text/xml");
  1737.  
  1738.       var updateCount = doc.documentElement.childNodes.length;
  1739.       for (var i = 0; i < updateCount; ++i) {
  1740.         var updateElement = doc.documentElement.childNodes.item(i);
  1741.         if (updateElement.nodeType != Node.ELEMENT_NODE ||
  1742.             updateElement.localName != "update")
  1743.           continue;
  1744.  
  1745.         updateElement.QueryInterface(Components.interfaces.nsIDOMElement);
  1746.         try {
  1747.           var update = new Update(updateElement);
  1748.         } catch (e) {
  1749.           LOG("UpdateManager", "_loadXMLFileIntoArray: invalid update");
  1750.           continue;
  1751.         }
  1752.         result.push(new Update(updateElement));
  1753.       }
  1754.     }
  1755.     catch (e) {
  1756.       LOG("UpdateManager", "_loadXMLFileIntoArray: Error constructing update list " +
  1757.           e);
  1758.     }
  1759.     fileStream.close();
  1760.     return result;
  1761.   },
  1762.  
  1763.   /**
  1764.    * Load the update manager, initializing state from state files.
  1765.    */
  1766.   _ensureUpdates: function() {
  1767.     if (!this._updates) {
  1768.       this._updates = this._loadXMLFileIntoArray(getUpdateFile(
  1769.                         [FILE_UPDATES_DB]));
  1770.  
  1771.       // Make sure that any active update is part of our updates list
  1772.       var active = this.activeUpdate;
  1773.       if (active)
  1774.         this._addUpdate(active);
  1775.     }
  1776.   },
  1777.  
  1778.   /**
  1779.    * See nsIUpdateService.idl
  1780.    */
  1781.   getUpdateAt: function(index) {
  1782.     this._ensureUpdates();
  1783.     return this._updates[index];
  1784.   },
  1785.  
  1786.   /**
  1787.    * See nsIUpdateService.idl
  1788.    */
  1789.   get updateCount() {
  1790.     this._ensureUpdates();
  1791.     return this._updates.length;
  1792.   },
  1793.  
  1794.   /**
  1795.    * See nsIUpdateService.idl
  1796.    */
  1797.   get activeUpdate() {
  1798.     if (this._activeUpdate &&
  1799.         this._activeUpdate.channel != getUpdateChannel()) {
  1800.       // User switched channels, clear out any old active updates and remove
  1801.       // partial downloads
  1802.       this._activeUpdate = null;
  1803.  
  1804.       // Destroy the updates directory, since we're done with it.
  1805.       cleanUpUpdatesDir();
  1806.     }
  1807.     return this._activeUpdate;
  1808.   },
  1809.   set activeUpdate(activeUpdate) {
  1810.     this._addUpdate(activeUpdate);
  1811.     this._activeUpdate = activeUpdate;
  1812.     if (!activeUpdate) {
  1813.       // If |activeUpdate| is null, we have updated both lists - the active list
  1814.       // and the history list, so we want to write both files.
  1815.       this.saveUpdates();
  1816.     }
  1817.     else
  1818.       this._writeUpdatesToXMLFile([this._activeUpdate],
  1819.                                   getUpdateFile([FILE_UPDATE_ACTIVE]));
  1820.     return activeUpdate;
  1821.   },
  1822.  
  1823.   /**
  1824.    * Add an update to the Updates list. If the item already exists in the list,
  1825.    * replace the existing value with the new value.
  1826.    * @param   update
  1827.    *          The nsIUpdate object to add.
  1828.    */
  1829.   _addUpdate: function(update) {
  1830.     if (!update)
  1831.       return;
  1832.     this._ensureUpdates();
  1833.     if (this._updates) {
  1834.       for (var i = 0; i < this._updates.length; ++i) {
  1835.         if (this._updates[i] &&
  1836.             this._updates[i].version == update.version &&
  1837.             this._updates[i].buildID == update.buildID) {
  1838.           // Replace the existing entry with the new value, updating
  1839.           // all metadata.
  1840.           this._updates[i] = update;
  1841.           return;
  1842.         }
  1843.       }
  1844.     }
  1845.     // Otherwise add it to the front of the list.
  1846.     if (update)
  1847.       this._updates = [update].concat(this._updates);
  1848.   },
  1849.  
  1850.   /**
  1851.    * Serializes an array of updates to an XML file
  1852.    * @param   updates
  1853.    *          An array of nsIUpdate objects
  1854.    * @param   file
  1855.    *          The nsIFile object to serialize to
  1856.    */
  1857.   _writeUpdatesToXMLFile: function(updates, file) {
  1858.     var fos = Components.classes["@mozilla.org/network/safe-file-output-stream;1"]
  1859.                         .createInstance(Components.interfaces.nsIFileOutputStream);
  1860.     var modeFlags = MODE_WRONLY | MODE_CREATE | MODE_TRUNCATE;
  1861.     if (!file.exists())
  1862.       file.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1863.     fos.init(file, modeFlags, PERMS_FILE, 0);
  1864.  
  1865.     try {
  1866.       var parser = Components.classes["@mozilla.org/xmlextras/domparser;1"]
  1867.                             .createInstance(Components.interfaces.nsIDOMParser);
  1868.       const EMPTY_UPDATES_DOCUMENT = "<?xml version=\"1.0\"?><updates xmlns=\"http://www.mozilla.org/2005/app-update\"></updates>";
  1869.       var doc = parser.parseFromString(EMPTY_UPDATES_DOCUMENT, "text/xml");
  1870.  
  1871.       for (var i = 0; i < updates.length; ++i) {
  1872.         if (updates[i])
  1873.           doc.documentElement.appendChild(updates[i].serialize(doc));
  1874.       }
  1875.  
  1876.       var serializer = Components.classes["@mozilla.org/xmlextras/xmlserializer;1"]
  1877.                                 .createInstance(Components.interfaces.nsIDOMSerializer);
  1878.       serializer.serializeToStream(doc.documentElement, fos, null);
  1879.     }
  1880.     catch (e) {
  1881.     }
  1882.  
  1883.     closeSafeOutputStream(fos);
  1884.   },
  1885.  
  1886.   /**
  1887.    * See nsIUpdateService.idl
  1888.    */
  1889.   saveUpdates: function() {
  1890.     this._writeUpdatesToXMLFile([this._activeUpdate],
  1891.                                 getUpdateFile([FILE_UPDATE_ACTIVE]));
  1892.     if (this._updates) {
  1893.       this._writeUpdatesToXMLFile(this._updates.slice(0, 10),
  1894.                                   getUpdateFile([FILE_UPDATES_DB]));
  1895.     }
  1896.   },
  1897.  
  1898.   /**
  1899.    * See nsISupports.idl
  1900.    */
  1901.   QueryInterface: function(iid) {
  1902.     if (!iid.equals(Components.interfaces.nsIUpdateManager) &&
  1903.         !iid.equals(Components.interfaces.nsISupports))
  1904.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1905.     return this;
  1906.   }
  1907. };
  1908.  
  1909.  
  1910. /**
  1911.  * Checker
  1912.  * Checks for new Updates
  1913.  * @constructor
  1914.  */
  1915. function Checker() {
  1916. }
  1917. Checker.prototype = {
  1918.   /**
  1919.    * The XMLHttpRequest object that performs the connection.
  1920.    */
  1921.   _request  : null,
  1922.  
  1923.   /**
  1924.    * The nsIUpdateCheckListener callback
  1925.    */
  1926.   _callback : null,
  1927.  
  1928.   /**
  1929.    * The URL of the update service XML file to connect to that contains details
  1930.    * about available updates.
  1931.    */
  1932.   getUpdateURL: function(force) {
  1933.     this._forced = force;
  1934.  
  1935.     var defaults =
  1936.         gPref.QueryInterface(Components.interfaces.nsIPrefService).
  1937.         getDefaultBranch(null);
  1938.  
  1939.     // Use the override URL if specified.
  1940.     var url = getPref("getCharPref", PREF_APP_UPDATE_URL_OVERRIDE, null);
  1941.  
  1942.     // Otherwise, construct the update URL from component parts.
  1943.     if (!url) {
  1944.       try {
  1945.         url = defaults.getCharPref(PREF_APP_UPDATE_URL);
  1946.       } catch (e) {
  1947.       }
  1948.     }
  1949.  
  1950.     if (!url || url == "") {
  1951.       LOG("Checker", "Update URL not defined");
  1952.       return null;
  1953.     }
  1954.  
  1955.     url = url.replace(/%PRODUCT%/g, gApp.name);
  1956.     url = url.replace(/%VERSION%/g, gApp.version);
  1957.     url = url.replace(/%BUILD_ID%/g, gApp.appBuildID);
  1958.     url = url.replace(/%BUILD_TARGET%/g, gApp.OS + "_" + gABI);
  1959.     url = url.replace(/%OS_VERSION%/g, gOSVersion);
  1960.     url = url.replace(/%LOCALE%/g, getLocale());
  1961.     url = url.replace(/%CHANNEL%/g, getUpdateChannel());
  1962.     url = url.replace(/%PLATFORM_VERSION%/g, gApp.platformVersion);
  1963.     url = url.replace(/%DISTRIBUTION%/g,
  1964.                       getDistributionPrefValue(PREF_APP_DISTRIBUTION));
  1965.     url = url.replace(/%DISTRIBUTION_VERSION%/g,
  1966.                       getDistributionPrefValue(PREF_APP_DISTRIBUTION_VERSION));
  1967.     url = url.replace(/\+/g, "%2B");
  1968.  
  1969.     if (force)
  1970.     url += "?force=1"
  1971.  
  1972.     LOG("Checker", "update url: " + url);
  1973.     return url;
  1974.   },
  1975.  
  1976.   /**
  1977.    * See nsIUpdateService.idl
  1978.    */
  1979.   checkForUpdates: function(listener, force) {
  1980.     if (!listener)
  1981.       throw Components.results.NS_ERROR_NULL_POINTER;
  1982.  
  1983.     if (!this.getUpdateURL(force) || (!this.enabled && !force))
  1984.       return;
  1985.  
  1986.     this._request =
  1987.       Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"].
  1988.       createInstance(Components.interfaces.nsIXMLHttpRequest);
  1989.     this._request.open("GET", this.getUpdateURL(force), true);
  1990.     this._request.channel.notificationCallbacks = new BadCertHandler();
  1991.     this._request.overrideMimeType("text/xml");
  1992.     this._request.setRequestHeader("Cache-Control", "no-cache");
  1993.  
  1994.     var self = this;
  1995.     this._request.onerror     = function(event) { self.onError(event);    };
  1996.     this._request.onload      = function(event) { self.onLoad(event);     };
  1997.     this._request.onprogress  = function(event) { self.onProgress(event); };
  1998.  
  1999.     LOG("Checker", "checkForUpdates: sending request to " + this.getUpdateURL(force));
  2000.     this._request.send(null);
  2001.  
  2002.     this._callback = listener;
  2003.   },
  2004.  
  2005.   /**
  2006.    * When progress associated with the XMLHttpRequest is received.
  2007.    * @param   event
  2008.    *          The nsIDOMLSProgressEvent for the load.
  2009.    */
  2010.   onProgress: function(event) {
  2011.     LOG("Checker", "onProgress: " + event.position + "/" + event.totalSize);
  2012.     this._callback.onProgress(event.target, event.position, event.totalSize);
  2013.   },
  2014.  
  2015.   /**
  2016.    * Returns an array of nsIUpdate objects discovered by the update check.
  2017.    */
  2018.   get _updates() {
  2019.     var updatesElement = this._request.responseXML.documentElement;
  2020.     if (!updatesElement) {
  2021.       LOG("Checker", "get_updates: empty updates document?!");
  2022.       return [];
  2023.     }
  2024.  
  2025.     if (updatesElement.nodeName != "updates") {
  2026.       LOG("Checker", "get_updates: unexpected node name!");
  2027.       throw "";
  2028.     }
  2029.  
  2030.     var updates = [];
  2031.     for (var i = 0; i < updatesElement.childNodes.length; ++i) {
  2032.       var updateElement = updatesElement.childNodes.item(i);
  2033.       if (updateElement.nodeType != Node.ELEMENT_NODE ||
  2034.           updateElement.localName != "update")
  2035.         continue;
  2036.  
  2037.       updateElement.QueryInterface(Components.interfaces.nsIDOMElement);
  2038.       try {
  2039.         var update = new Update(updateElement);
  2040.       } catch (e) {
  2041.         LOG("Checker", "Invalid <update/>, ignoring...");
  2042.         continue;
  2043.       }
  2044.       update.serviceURL = this.getUpdateURL(this._forced);
  2045.       update.channel = getUpdateChannel();
  2046.       updates.push(update);
  2047.     }
  2048.  
  2049.     return updates;
  2050.   },
  2051.  
  2052.   /**
  2053.    * The XMLHttpRequest succeeded and the document was loaded.
  2054.    * @param   event
  2055.    *          The nsIDOMLSEvent for the load
  2056.    */
  2057.   onLoad: function(event) {
  2058.     LOG("Checker", "onLoad: request completed downloading document");
  2059.  
  2060.     try {
  2061.       checkCert(this._request.channel);
  2062.  
  2063.       // Analyze the resulting DOM and determine the set of updates to install
  2064.       var updates = this._updates;
  2065.  
  2066.       LOG("Checker", "Updates available: " + updates.length);
  2067.  
  2068.       // ... and tell the Update Service about what we discovered.
  2069.       this._callback.onCheckComplete(event.target, updates, updates.length);
  2070.     }
  2071.     catch (e) {
  2072.       LOG("Checker", "There was a problem with the update service URL specified, " +
  2073.           "either the XML file was malformed or it does not exist at the location " +
  2074.           "specified. Exception: " + e);
  2075.       var update = new Update(null);
  2076.       update.statusText = getStatusTextFromCode(404, 404);
  2077.       this._callback.onError(event.target, update);
  2078.     }
  2079.  
  2080.     this._request = null;
  2081.   },
  2082.  
  2083.   /**
  2084.    * There was an error of some kind during the XMLHttpRequest
  2085.    * @param   event
  2086.    *          The nsIDOMLSEvent for the load
  2087.    */
  2088.   onError: function(event) {
  2089.     LOG("Checker", "onError: error during load");
  2090.  
  2091.     var request = event.target;
  2092.     try {
  2093.       var status = request.status;
  2094.     }
  2095.     catch (e) {
  2096.       var req = request.channel.QueryInterface(Components.interfaces.nsIRequest);
  2097.       status = req.status;
  2098.     }
  2099.  
  2100.     // If we can't find an error string specific to this status code,
  2101.     // just use the 200 message from above, which means everything
  2102.     // "looks" fine but there was probably an XML error or a bogus file.
  2103.     var update = new Update(null);
  2104.     update.statusText = getStatusTextFromCode(status, 200);
  2105.     this._callback.onError(request, update);
  2106.  
  2107.     this._request = null;
  2108.   },
  2109.  
  2110.   /**
  2111.    * Whether or not we are allowed to do update checking.
  2112.    */
  2113.   _enabled: true,
  2114.  
  2115.   /**
  2116.    * See nsIUpdateService.idl
  2117.    */
  2118.   get enabled() {
  2119.     var aus =
  2120.         Components.classes["@mozilla.org/updates/update-service;1"].
  2121.         getService(Components.interfaces.nsIApplicationUpdateService);
  2122.     var enabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true) &&
  2123.                   aus.canUpdate && this._enabled;
  2124.     return enabled;
  2125.   },
  2126.  
  2127.   /**
  2128.    * See nsIUpdateService.idl
  2129.    */
  2130.   stopChecking: function(duration) {
  2131.     // Always stop the current check
  2132.     if (this._request)
  2133.       this._request.abort();
  2134.  
  2135.     const nsIUpdateChecker = Components.interfaces.nsIUpdateChecker;
  2136.     switch (duration) {
  2137.     case nsIUpdateChecker.CURRENT_SESSION:
  2138.       this._enabled = false;
  2139.       break;
  2140.     case nsIUpdateChecker.ANY_CHECKS:
  2141.       this._enabled = false;
  2142.       gPref.setBoolPref(PREF_APP_UPDATE_ENABLED, this._enabled);
  2143.       break;
  2144.     }
  2145.   },
  2146.  
  2147.   /**
  2148.    * See nsISupports.idl
  2149.    */
  2150.   QueryInterface: function(iid) {
  2151.     if (!iid.equals(Components.interfaces.nsIUpdateChecker) &&
  2152.         !iid.equals(Components.interfaces.nsISupports))
  2153.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2154.     return this;
  2155.   }
  2156. };
  2157.  
  2158. /**
  2159.  * Manages the download of updates
  2160.  * @param   background
  2161.  *          Whether or not this downloader is operating in background
  2162.  *          update mode.
  2163.  * @constructor
  2164.  */
  2165. function Downloader(background) {
  2166.   this.background = background;
  2167. }
  2168. Downloader.prototype = {
  2169.   /**
  2170.    * The nsIUpdatePatch that we are downloading
  2171.    */
  2172.   _patch: null,
  2173.  
  2174.   /**
  2175.    * The nsIUpdate that we are downloading
  2176.    */
  2177.   _update: null,
  2178.  
  2179.   /**
  2180.    * The nsIIncrementalDownload object handling the download
  2181.    */
  2182.   _request: null,
  2183.  
  2184.   /**
  2185.    * Whether or not the update being downloaded is a complete replacement of
  2186.    * the user's existing installation or a patch representing the difference
  2187.    * between the new version and the previous version.
  2188.    */
  2189.   isCompleteUpdate: null,
  2190.  
  2191.   /**
  2192.    * Cancels the active download.
  2193.    */
  2194.   cancel: function() {
  2195.     if (this._request &&
  2196.         this._request instanceof Components.interfaces.nsIRequest) {
  2197.       const NS_BINDING_ABORTED = 0x804b0002;
  2198.       this._request.cancel(NS_BINDING_ABORTED);
  2199.     }
  2200.   },
  2201.  
  2202.   /**
  2203.    * Whether or not a patch has been downloaded and staged for installation.
  2204.    */
  2205.   get patchIsStaged() {
  2206.     return readStatusFile(getUpdatesDir()) == STATE_PENDING;
  2207.   },
  2208.  
  2209.   /**
  2210.    * Verify the downloaded file.  We assume that the download is complete at
  2211.    * this point.
  2212.    */
  2213.   _verifyDownload: function() {
  2214.     if (!this._request)
  2215.       return false;
  2216.  
  2217.     var destination = this._request.destination;
  2218.  
  2219.     // Ensure that the file size matches the expected file size.
  2220.     if (destination.fileSize != this._patch.size)
  2221.       return false;
  2222.  
  2223.     var fileStream = Components.classes["@mozilla.org/network/file-input-stream;1"].
  2224.         createInstance(nsIFileInputStream);
  2225.     fileStream.init(destination, MODE_RDONLY, PERMS_FILE, 0);
  2226.  
  2227.     try {
  2228.       var hash = Components.classes["@mozilla.org/security/hash;1"].
  2229.           createInstance(nsICryptoHash);
  2230.       var hashFunction = nsICryptoHash[this._patch.hashFunction.toUpperCase()];
  2231.       if (hashFunction == undefined)
  2232.         throw Components.results.NS_ERROR_UNEXPECTED;
  2233.       hash.init(hashFunction);
  2234.       hash.updateFromStream(fileStream, -1);
  2235.       // NOTE: For now, we assume that the format of _patch.hashValue is hex
  2236.       // encoded binary (such as what is typically output by programs like
  2237.       // sha1sum).  In the future, this may change to base64 depending on how
  2238.       // we choose to compute these hashes.
  2239.       digest = binaryToHex(hash.finish(false));
  2240.     } catch (e) {
  2241.       LOG("Downloader", "failed to compute hash of downloaded update archive");
  2242.       digest = "";
  2243.     }
  2244.  
  2245.     fileStream.close();
  2246.  
  2247.     return digest == this._patch.hashValue.toLowerCase();
  2248.   },
  2249.  
  2250.   /**
  2251.    * Select the patch to use given the current state of updateDir and the given
  2252.    * set of update patches.
  2253.    * @param   update
  2254.    *          A nsIUpdate object to select a patch from
  2255.    * @param   updateDir
  2256.    *          A nsIFile representing the update directory
  2257.    * @returns A nsIUpdatePatch object to download
  2258.    */
  2259.   _selectPatch: function(update, updateDir) {
  2260.     // Given an update to download, we will always try to download the patch
  2261.     // for a partial update over the patch for a full update.
  2262.  
  2263.     /**
  2264.      * Return the first UpdatePatch with the given type.
  2265.      * @param   type
  2266.      *          The type of the patch ("complete" or "partial")
  2267.      * @returns A nsIUpdatePatch object matching the type specified
  2268.      */
  2269.     function getPatchOfType(type) {
  2270.       for (var i = 0; i < update.patchCount; ++i) {
  2271.         var patch = update.getPatchAt(i);
  2272.         if (patch && patch.type == type)
  2273.           return patch;
  2274.       }
  2275.       return null;
  2276.     }
  2277.  
  2278.     // Look to see if any of the patches in the Update object has been
  2279.     // pre-selected for download, otherwise we must figure out which one
  2280.     // to select ourselves.
  2281.     var selectedPatch = update.selectedPatch;
  2282.  
  2283.     var state = readStatusFile(updateDir);
  2284.  
  2285.     // If this is a patch that we know about, then select it.  If it is a patch
  2286.     // that we do not know about, then remove it and use our default logic.
  2287.     var useComplete = false;
  2288.     if (selectedPatch) {
  2289.       LOG("Downloader", "found existing patch [state="+state+"]");
  2290.       switch (state) {
  2291.       case STATE_DOWNLOADING:
  2292.         LOG("Downloader", "resuming download");
  2293.         return selectedPatch;
  2294.       case STATE_PENDING:
  2295.         LOG("Downloader", "already downloaded and staged");
  2296.         return null;
  2297.       default:
  2298.         // Something went wrong when we tried to apply the previous patch.
  2299.         // Try the complete patch next time.
  2300.         if (update && selectedPatch.type == "partial") {
  2301.           useComplete = true;
  2302.         } else {
  2303.           // This is a pretty fatal error.  Just bail.
  2304.           LOG("Downloader", "failed to apply complete patch!");
  2305.           writeStatusFile(updateDir, STATE_NONE);
  2306.           return null;
  2307.         }
  2308.       }
  2309.  
  2310.       selectedPatch = null;
  2311.     }
  2312.  
  2313.     // If we were not able to discover an update from a previous download, we
  2314.     // select the best patch from the given set.
  2315.     var partialPatch = getPatchOfType("partial");
  2316.     if (!useComplete)
  2317.       selectedPatch = partialPatch;
  2318.     if (!selectedPatch) {
  2319.       if (partialPatch)
  2320.         partialPatch.selected = false;
  2321.       selectedPatch = getPatchOfType("complete");
  2322.     }
  2323.  
  2324.     // Restore the updateDir since we may have deleted it.
  2325.     updateDir = getUpdatesDir();
  2326.  
  2327.     // if update only contains a partial patch, selectedPatch == null here if
  2328.     // the partial patch has been attempted and fails and we're trying to get a
  2329.     // complete patch
  2330.     if (selectedPatch)
  2331.       selectedPatch.selected = true;
  2332.  
  2333.     update.isCompleteUpdate = useComplete;
  2334.  
  2335.     // Reset the Active Update object on the Update Manager and flush the
  2336.     // Active Update DB.
  2337.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  2338.                        .getService(Components.interfaces.nsIUpdateManager);
  2339.     um.activeUpdate = update;
  2340.  
  2341.     return selectedPatch;
  2342.   },
  2343.  
  2344.   /**
  2345.    * Whether or not we are currently downloading something.
  2346.    */
  2347.   get isBusy() {
  2348.     return this._request != null;
  2349.   },
  2350.  
  2351.   /**
  2352.    * Download and stage the given update.
  2353.    * @param   update
  2354.    *          A nsIUpdate object to download a patch for. Cannot be null.
  2355.    */
  2356.   downloadUpdate: function(update) {
  2357.     if (!update)
  2358.       throw Components.results.NS_ERROR_NULL_POINTER;
  2359.  
  2360.     var updateDir = getUpdatesDir();
  2361.  
  2362.     this._update = update;
  2363.  
  2364.     // This function may return null, which indicates that there are no patches
  2365.     // to download.
  2366.     this._patch = this._selectPatch(update, updateDir);
  2367.     if (!this._patch) {
  2368.       LOG("Downloader", "no patch to download");
  2369.       return readStatusFile(updateDir);
  2370.     }
  2371.     this.isCompleteUpdate = this._patch.type == "complete";
  2372.  
  2373.     var patchFile = updateDir.clone();
  2374.     patchFile.append(FILE_UPDATE_ARCHIVE);
  2375.  
  2376.     var ios = Components.classes["@mozilla.org/network/io-service;1"].
  2377.         getService(Components.interfaces.nsIIOService);
  2378.     var uri = ios.newURI(this._patch.URL, null, null);
  2379.  
  2380.     this._request =
  2381.         Components.classes["@mozilla.org/network/incremental-download;1"].
  2382.         createInstance(nsIIncrementalDownload);
  2383.  
  2384.     LOG("Downloader", "downloadUpdate: Downloading from " + uri.spec + " to " +
  2385.         patchFile.path);
  2386.  
  2387.     var interval = this.background ? DOWNLOAD_BACKGROUND_INTERVAL
  2388.                                    : DOWNLOAD_FOREGROUND_INTERVAL;
  2389.     this._request.init(uri, patchFile, DOWNLOAD_CHUNK_SIZE, interval);
  2390.     this._request.start(this, null);
  2391.  
  2392.     writeStatusFile(updateDir, STATE_DOWNLOADING);
  2393.     this._patch.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2394.     this._patch.state = STATE_DOWNLOADING;
  2395.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  2396.                        .getService(Components.interfaces.nsIUpdateManager);
  2397.     um.saveUpdates();
  2398.     return STATE_DOWNLOADING;
  2399.   },
  2400.  
  2401.   /**
  2402.    * An array of download listeners to notify when we receive
  2403.    * nsIRequestObserver or nsIProgressEventSink method calls.
  2404.    */
  2405.   _listeners: [],
  2406.  
  2407.   /**
  2408.    * Adds a listener to the download process
  2409.    * @param   listener
  2410.    *          A download listener, implementing nsIRequestObserver and
  2411.    *          nsIProgressEventSink
  2412.    */
  2413.   addDownloadListener: function(listener) {
  2414.     for (var i = 0; i < this._listeners.length; ++i) {
  2415.       if (this._listeners[i] == listener)
  2416.         return;
  2417.     }
  2418.     this._listeners.push(listener);
  2419.   },
  2420.  
  2421.   /**
  2422.    * Removes a download listener
  2423.    * @param   listener
  2424.    *          The listener to remove.
  2425.    */
  2426.   removeDownloadListener: function(listener) {
  2427.     for (var i = 0; i < this._listeners.length; ++i) {
  2428.       if (this._listeners[i] == listener) {
  2429.         this._listeners.splice(i, 1);
  2430.         return;
  2431.       }
  2432.     }
  2433.   },
  2434.  
  2435.   /**
  2436.    * When the async request begins
  2437.    * @param   request
  2438.    *          The nsIRequest object for the transfer
  2439.    * @param   context
  2440.    *          Additional data
  2441.    */
  2442.   onStartRequest: function(request, context) {
  2443.     request.QueryInterface(nsIIncrementalDownload);
  2444.     LOG("Downloader", "onStartRequest: " + request.URI.spec);
  2445.  
  2446.     var listenerCount = this._listeners.length;
  2447.     for (var i = 0; i < listenerCount; ++i)
  2448.       this._listeners[i].onStartRequest(request, context);
  2449.   },
  2450.  
  2451.   /**
  2452.    * When new data has been downloaded
  2453.    * @param   request
  2454.    *          The nsIRequest object for the transfer
  2455.    * @param   context
  2456.    *          Additional data
  2457.    * @param   progress
  2458.    *          The current number of bytes transferred
  2459.    * @param   maxProgress
  2460.    *          The total number of bytes that must be transferred
  2461.    */
  2462.   onProgress: function(request, context, progress, maxProgress) {
  2463.     request.QueryInterface(nsIIncrementalDownload);
  2464.     LOG("Downloader.onProgress", "onProgress: " + request.URI.spec + ", " + progress + "/" + maxProgress);
  2465.  
  2466.     var listenerCount = this._listeners.length;
  2467.     for (var i = 0; i < listenerCount; ++i) {
  2468.       var listener = this._listeners[i];
  2469.       if (listener instanceof Components.interfaces.nsIProgressEventSink)
  2470.         listener.onProgress(request, context, progress, maxProgress);
  2471.     }
  2472.   },
  2473.  
  2474.   /**
  2475.    * When we have new status text
  2476.    * @param   request
  2477.    *          The nsIRequest object for the transfer
  2478.    * @param   context
  2479.    *          Additional data
  2480.    * @param   status
  2481.    *          A status code
  2482.    * @param   statusText
  2483.    *          Human readable version of |status|
  2484.    */
  2485.   onStatus: function(request, context, status, statusText) {
  2486.     request.QueryInterface(nsIIncrementalDownload);
  2487.     LOG("Downloader", "onStatus: " + request.URI.spec + " status = " + status + ", text = " + statusText);
  2488.     var listenerCount = this._listeners.length;
  2489.     for (var i = 0; i < listenerCount; ++i) {
  2490.       var listener = this._listeners[i];
  2491.       if (listener instanceof Components.interfaces.nsIProgressEventSink)
  2492.         listener.onStatus(request, context, status, statusText);
  2493.     }
  2494.   },
  2495.  
  2496.   /**
  2497.    * When data transfer ceases
  2498.    * @param   request
  2499.    *          The nsIRequest object for the transfer
  2500.    * @param   context
  2501.    *          Additional data
  2502.    * @param   status
  2503.    *          Status code containing the reason for the cessation.
  2504.    */
  2505.   onStopRequest: function(request, context, status) {
  2506.     request.QueryInterface(nsIIncrementalDownload);
  2507.     LOG("Downloader", "onStopRequest: " + request.URI.spec + ", status = " + status);
  2508.  
  2509.     var state = this._patch.state;
  2510.     var shouldShowPrompt = false;
  2511.     var deleteActiveUpdate = false;
  2512.     const NS_BINDING_ABORTED = 0x804b0002;
  2513.     const NS_ERROR_ABORT = 0x80004004;
  2514.     if (Components.isSuccessCode(status)) {
  2515.       var sbs =
  2516.           Components.classes["@mozilla.org/intl/stringbundle;1"].
  2517.           getService(Components.interfaces.nsIStringBundleService);
  2518.       var updateStrings = sbs.createBundle(URI_UPDATES_PROPERTIES);
  2519.       if (this._verifyDownload()) {
  2520.         state = STATE_PENDING;
  2521.  
  2522.         // We only need to explicitly show the prompt if this is a backround
  2523.         // download, since otherwise some kind of UI is already visible and
  2524.         // that UI will notify.
  2525.         if (this.background)
  2526.           shouldShowPrompt = true;
  2527.  
  2528.         // Tell the updater.exe we're ready to apply.
  2529.         writeStatusFile(getUpdatesDir(), state);
  2530.         this._update.installDate = (new Date()).getTime();
  2531.         this._update.statusText = updateStrings.
  2532.           GetStringFromName("installPending");
  2533.       } else {
  2534.         LOG("Downloader", "onStopRequest: download verification failed");
  2535.         state = STATE_DOWNLOAD_FAILED;
  2536.  
  2537.         var brandStrings = sbs.createBundle(URI_BRAND_PROPERTIES);
  2538.         var brandShortName = brandStrings.GetStringFromName("brandShortName");
  2539.         this._update.statusText = updateStrings.
  2540.           formatStringFromName("verificationError", [brandShortName], 1);
  2541.  
  2542.         // TODO: use more informative error code here
  2543.         status = Components.results.NS_ERROR_UNEXPECTED;
  2544.  
  2545.         var message = getStatusTextFromCode("verification_failed",
  2546.           "verification_failed");
  2547.         this._update.statusText = message;
  2548.  
  2549.         if (this._update.isCompleteUpdate)
  2550.           deleteActiveUpdate = true;
  2551.  
  2552.         // Destroy the updates directory, since we're done with it.
  2553.         cleanUpUpdatesDir();
  2554.       }
  2555.     }
  2556.     else if (status != NS_BINDING_ABORTED &&
  2557.              status != NS_ERROR_ABORT) {
  2558.       LOG("Downloader", "onStopRequest: Non-verification failure");
  2559.       // Some sort of other failure, log this in the |statusText| property
  2560.       state = STATE_DOWNLOAD_FAILED;
  2561.  
  2562.       // XXXben - if |request| (The Incremental Download) provided a means
  2563.       // for accessing the http channel we could do more here.
  2564.  
  2565.       const NS_BINDING_FAILED = 2152398849;
  2566.       this._update.statusText = getStatusTextFromCode(status,
  2567.         NS_BINDING_FAILED);
  2568.  
  2569.       // Destroy the updates directory, since we're done with it.
  2570.       cleanUpUpdatesDir();
  2571.  
  2572.       deleteActiveUpdate = true;
  2573.     }
  2574.     LOG("Downloader", "Setting state to: " + state);
  2575.     this._patch.state = state;
  2576.     var um =
  2577.         Components.classes["@mozilla.org/updates/update-manager;1"].
  2578.         getService(Components.interfaces.nsIUpdateManager);
  2579.     if (deleteActiveUpdate) {
  2580.       this._update.installDate = (new Date()).getTime();
  2581.       um.activeUpdate = null;
  2582.     }
  2583.     um.saveUpdates();
  2584.  
  2585.     var listenerCount = this._listeners.length;
  2586.     for (var i = 0; i < listenerCount; ++i)
  2587.       this._listeners[i].onStopRequest(request, context, status);
  2588.  
  2589.     this._request = null;
  2590.  
  2591.     if (state == STATE_DOWNLOAD_FAILED) {
  2592.       if (!this._update.isCompleteUpdate) {
  2593.         var allFailed = true;
  2594.  
  2595.         // If we were downloading a patch and the patch verification phase
  2596.         // failed, log this and then commence downloading the complete update.
  2597.         LOG("Downloader", "onStopRequest: Verification of patch failed, downloading complete update");
  2598.         this._update.isCompleteUpdate = true;
  2599.         var status = this.downloadUpdate(this._update);
  2600.  
  2601.         if (status == STATE_NONE) {
  2602.           cleanupActiveUpdate();
  2603.         } else {
  2604.           allFailed = false;
  2605.         }
  2606.         // This will reset the |.state| property on this._update if a new
  2607.         // download initiates.
  2608.       }
  2609.  
  2610.       // if we still fail after trying a complete download, give up completely
  2611.       if (allFailed) {
  2612.         // In all other failure cases, i.e. we're S.O.L. - no more failing over
  2613.         // ...
  2614.  
  2615.         // If this was ever a foreground download, and now there is no UI active
  2616.         // (e.g. because the user closed the download window) and there was an
  2617.         // error, we must notify now. Otherwise we can keep the failure to
  2618.         // ourselves since the user won't be expecting it.
  2619.         try {
  2620.           this._update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2621.           var fgdl = this._update.getProperty("foregroundDownload");
  2622.         }
  2623.         catch (e) {
  2624.         }
  2625.  
  2626.         if (fgdl == "true") {
  2627.           var prompter =
  2628.               Components.classes["@mozilla.org/updates/update-prompt;1"].
  2629.               createInstance(Components.interfaces.nsIUpdatePrompt);
  2630.           this._update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2631.           this._update.setProperty("downloadFailed", "true");
  2632.           prompter.showUpdateError(this._update);
  2633.         }
  2634.       }
  2635.  
  2636.       // the complete download succeeded or total failure was handled, so exit
  2637.       return;
  2638.     }
  2639.  
  2640.     // Do this after *everything* else, since it will likely cause the app
  2641.     // to shut down.
  2642.     if (shouldShowPrompt) {
  2643.       // Notify the user that an update has been downloaded and is ready for
  2644.       // installation (i.e. that they should restart the application). We do
  2645.       // not notify on failed update attempts.
  2646.       var prompter =
  2647.           Components.classes["@mozilla.org/updates/update-prompt;1"].
  2648.           createInstance(Components.interfaces.nsIUpdatePrompt);
  2649.       prompter.showUpdateDownloaded(this._update);
  2650.     }
  2651.   },
  2652.  
  2653.   /**
  2654.    * See nsIInterfaceRequestor.idl
  2655.    */
  2656.   getInterface: function(iid) {
  2657.     // The network request may require proxy authentication, so provide the
  2658.     // default nsIAuthPrompt if requested.
  2659.     if (iid.equals(Components.interfaces.nsIAuthPrompt)) {
  2660.       var prompt =
  2661.           Components.classes["@mozilla.org/network/default-auth-prompt;1"].
  2662.           createInstance();
  2663.       return prompt.QueryInterface(iid);
  2664.     }
  2665.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2666.   },
  2667.  
  2668.   /**
  2669.    * See nsISupports.idl
  2670.    */
  2671.   QueryInterface: function(iid) {
  2672.     if (!iid.equals(Components.interfaces.nsIRequestObserver) &&
  2673.         !iid.equals(Components.interfaces.nsIProgressEventSink) &&
  2674.         !iid.equals(Components.interfaces.nsIInterfaceRequestor) &&
  2675.         !iid.equals(Components.interfaces.nsISupports))
  2676.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2677.     return this;
  2678.   }
  2679. };
  2680.  
  2681. /**
  2682.  * A manager for update check timers. Manages timers that fire over long
  2683.  * periods of time (e.g. days, weeks).
  2684.  * @constructor
  2685.  */
  2686. function TimerManager() {
  2687.   getObserverService().addObserver(this, "xpcom-shutdown", false);
  2688.  
  2689.   const nsITimer = Components.interfaces.nsITimer;
  2690.   this._timer = Components.classes["@mozilla.org/timer;1"]
  2691.                           .createInstance(nsITimer);
  2692.   var timerInterval = getPref("getIntPref", PREF_APP_UPDATE_TIMER, 600000);
  2693.   this._timer.initWithCallback(this, timerInterval,
  2694.                                nsITimer.TYPE_REPEATING_SLACK);
  2695. }
  2696. TimerManager.prototype = {
  2697.   /**
  2698.    * See nsIObserver.idl
  2699.    */
  2700.   observe: function(subject, topic, data) {
  2701.     if (topic == "xpcom-shutdown") {
  2702.      getObserverService().removeObserver(this, "xpcom-shutdown");
  2703.  
  2704.       // Release everything we hold onto.
  2705.       for (var timerID in this._timers)
  2706.         delete this._timers[timerID];
  2707.       this._timer = null;
  2708.       this._timers = null;
  2709.     }
  2710.   },
  2711.  
  2712.   /**
  2713.    * The Checker Timer
  2714.    */
  2715.   _timer: null,
  2716.  
  2717.   /**
  2718.    * The set of registered timers.
  2719.    */
  2720.   _timers: { },
  2721.  
  2722.   /**
  2723.    * Called when the checking timer fires.
  2724.    * @param   timer
  2725.    *          The checking timer that fired.
  2726.    */
  2727.   notify: function(timer) {
  2728.     for (var timerID in this._timers) {
  2729.       var timerData = this._timers[timerID];
  2730.       var lastUpdateTime = timerData.lastUpdateTime;
  2731.       var now = Math.round(Date.now() / 1000);
  2732.  
  2733.       // Fudge the lastUpdateTime by some random increment of the update
  2734.       // check interval (e.g. some random slice of 10 minutes) so that when
  2735.       // the time comes to check, we offset each client request by a random
  2736.       // amount so they don't all hit at once. app.update.timer is in milliseconds,
  2737.       // whereas app.update.lastUpdateTime is in seconds
  2738.       var timerInterval = getPref("getIntPref", PREF_APP_UPDATE_TIMER, 600000);
  2739.       lastUpdateTime += Math.round(Math.random() * timerInterval / 1000);
  2740.  
  2741.       if ((now - lastUpdateTime) > timerData.interval &&
  2742.           timerData.callback instanceof Components.interfaces.nsITimerCallback) {
  2743.         timerData.callback.notify(timer);
  2744.         timerData.lastUpdateTime = now;
  2745.         var preference = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(/%ID%/, timerID);
  2746.         gPref.setIntPref(preference, now);
  2747.       }
  2748.     }
  2749.   },
  2750.  
  2751.   /**
  2752.    * See nsIUpdateService.idl
  2753.    */
  2754.   registerTimer: function(id, callback, interval) {
  2755.     var preference = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(/%ID%/, id);
  2756.     var now = Math.round(Date.now() / 1000);
  2757.     var lastUpdateTime = null;
  2758.     if (gPref.prefHasUserValue(preference)) {
  2759.       lastUpdateTime = gPref.getIntPref(preference);
  2760.     } else {
  2761.       gPref.setIntPref(preference, now);
  2762.       lastUpdateTime = now;
  2763.     }
  2764.     this._timers[id] = { callback       : callback,
  2765.                          interval       : interval,
  2766.                          lastUpdateTime : lastUpdateTime };
  2767.   },
  2768.  
  2769.   /**
  2770.    * See nsISupports.idl
  2771.    */
  2772.   QueryInterface: function(iid) {
  2773.     if (!iid.equals(Components.interfaces.nsIUpdateTimerManager) &&
  2774.         !iid.equals(Components.interfaces.nsITimerCallback) &&
  2775.         !iid.equals(Components.interfaces.nsIObserver) &&
  2776.         !iid.equals(Components.interfaces.nsISupports))
  2777.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2778.     return this;
  2779.   }
  2780. };
  2781.  
  2782. //@line 2781 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  2783. /**
  2784.  * UpdatePrompt
  2785.  * An object which can prompt the user with information about updates, request
  2786.  * action, etc. Embedding clients can override this component with one that
  2787.  * invokes a native front end.
  2788.  * @constructor
  2789.  */
  2790. function UpdatePrompt() {
  2791. }
  2792. UpdatePrompt.prototype = {
  2793.   /**
  2794.    * See nsIUpdateService.idl
  2795.    */
  2796.   checkForUpdates: function() {
  2797.     this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard",
  2798.                  null, null);
  2799.   },
  2800.  
  2801.   /**
  2802.    * See nsIUpdateService.idl
  2803.    */
  2804.   showUpdateAvailable: function(update) {
  2805.     if (this._enabled) {
  2806.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard",
  2807.                    "updatesavailable", update);
  2808.     }
  2809.   },
  2810.  
  2811.   /**
  2812.    * See nsIUpdateService.idl
  2813.    */
  2814.   showUpdateDownloaded: function(update) {
  2815.     if (this._enabled) {
  2816.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard",
  2817.                    "finishedBackground", update);
  2818.     }
  2819.   },
  2820.  
  2821.   /**
  2822.    * See nsIUpdateService.idl
  2823.    */
  2824.   showUpdateInstalled: function(update) {
  2825.     var showUpdateInstalledUI = getPref("getBoolPref",
  2826.       PREF_APP_UPDATE_SHOW_INSTALLED_UI, true);
  2827.     if (this._enabled && showUpdateInstalledUI) {
  2828.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard",
  2829.                    "installed", update);
  2830.     }
  2831.   },
  2832.  
  2833.   /**
  2834.    * See nsIUpdateService.idl
  2835.    */
  2836.   showUpdateError: function(update) {
  2837.     if (this._enabled) {
  2838.       // In some cases, we want to just show a simple alert dialog:
  2839.       if (update.state == STATE_FAILED && update.errorCode == WRITE_ERROR) {
  2840.         var sbs =
  2841.             Components.classes["@mozilla.org/intl/stringbundle;1"].
  2842.             getService(Components.interfaces.nsIStringBundleService);
  2843.         var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  2844.         var title = updateBundle.GetStringFromName("updaterIOErrorTitle");
  2845.         var text = updateBundle.formatStringFromName("updaterIOErrorMsg",
  2846.                                                      [gApp.name, gApp.name], 2);
  2847.         var ww =
  2848.             Components.classes["@mozilla.org/embedcomp/window-watcher;1"].
  2849.             getService(Components.interfaces.nsIWindowWatcher);
  2850.         ww.getNewPrompter(null).alert(title, text);
  2851.       } else {
  2852.         this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard",
  2853.                      "errors", update);
  2854.       }
  2855.     }
  2856.   },
  2857.  
  2858.   /**
  2859.    * See nsIUpdateService.idl
  2860.    */
  2861.   showUpdateHistory: function(parent) {
  2862.     this._showUI(parent, URI_UPDATE_HISTORY_DIALOG, "modal,dialog=yes", "Update:History",
  2863.                  null, null);
  2864.   },
  2865.  
  2866.   /**
  2867.    * Whether or not we are enabled (i.e. not in Silent mode)
  2868.    */
  2869.   get _enabled() {
  2870.     return !getPref("getBoolPref", PREF_APP_UPDATE_SILENT, false);
  2871.   },
  2872.  
  2873.   /**
  2874.    * Show the Update Checking UI
  2875.    * @param   parent
  2876.    *          A parent window, can be null
  2877.    * @param   uri
  2878.    *          The URI string of the dialog to show
  2879.    * @param   name
  2880.    *          The Window Name of the dialog to show, in case it is already open
  2881.    *          and can merely be focused
  2882.    * @param   page
  2883.    *          The page of the wizard to be displayed, if one is already open.
  2884.    * @param   update
  2885.    *          An update to pass to the UI in the window arguments.
  2886.    *          Can be null
  2887.    */
  2888.   _showUI: function(parent, uri, features, name, page, update) {
  2889.     var ary = null;
  2890.     if (update) {
  2891.       ary = Components.classes["@mozilla.org/supports-array;1"]
  2892.                       .createInstance(Components.interfaces.nsISupportsArray);
  2893.       ary.AppendElement(update);
  2894.     }
  2895.  
  2896.     var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  2897.                        .getService(Components.interfaces.nsIWindowMediator);
  2898.     var win = wm.getMostRecentWindow(name);
  2899.     if (win) {
  2900.       if (page && "setCurrentPage" in win)
  2901.         win.setCurrentPage(page);
  2902.       win.focus();
  2903.     }
  2904.     else {
  2905.       var openFeatures = "chrome,centerscreen,dialog=no,resizable=no,titlebar,toolbar=no";
  2906.       if (features)
  2907.         openFeatures += "," + features;
  2908.       var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  2909.                          .getService(Components.interfaces.nsIWindowWatcher);
  2910.       ww.openWindow(parent, uri, "", openFeatures, ary);
  2911.     }
  2912.   },
  2913.  
  2914.   /**
  2915.    * See nsISupports.idl
  2916.    */
  2917.   QueryInterface: function(iid) {
  2918.     if (!iid.equals(Components.interfaces.nsIUpdatePrompt) &&
  2919.         !iid.equals(Components.interfaces.nsISupports))
  2920.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2921.     return this;
  2922.   }
  2923. };
  2924. //@line 2923 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  2925.  
  2926. var gModule = {
  2927.   registerSelf: function(componentManager, fileSpec, location, type) {
  2928.     componentManager = componentManager.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  2929.  
  2930.     for (var key in this._objects) {
  2931.       var obj = this._objects[key];
  2932.       componentManager.registerFactoryLocation(obj.CID, obj.className, obj.contractID,
  2933.                                                fileSpec, location, type);
  2934.     }
  2935.  
  2936.     // Make the Update Service a startup observer
  2937.     var categoryManager = Components.classes["@mozilla.org/categorymanager;1"]
  2938.                                     .getService(Components.interfaces.nsICategoryManager);
  2939.     categoryManager.addCategoryEntry("app-startup", this._objects.service.className,
  2940.                                      "service," + this._objects.service.contractID,
  2941.                                      true, true);
  2942.   },
  2943.  
  2944.   getClassObject: function(componentManager, cid, iid) {
  2945.     if (!iid.equals(Components.interfaces.nsIFactory))
  2946.       throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  2947.  
  2948.     for (var key in this._objects) {
  2949.       if (cid.equals(this._objects[key].CID))
  2950.         return this._objects[key].factory;
  2951.     }
  2952.  
  2953.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2954.   },
  2955.  
  2956.   _objects: {
  2957.     service: { CID        : Components.ID("{B3C290A6-3943-4B89-8BBE-C01EB7B3B311}"),
  2958.                contractID : "@mozilla.org/updates/update-service;1",
  2959.                className  : "Update Service",
  2960.                factory    : makeFactory(UpdateService)
  2961.              },
  2962.     checker: { CID        : Components.ID("{898CDC9B-E43F-422F-9CC4-2F6291B415A3}"),
  2963.                contractID : "@mozilla.org/updates/update-checker;1",
  2964.                className  : "Update Checker",
  2965.                factory    : makeFactory(Checker)
  2966.              },
  2967. //@line 2966 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  2968.     prompt:  { CID        : Components.ID("{27ABA825-35B5-4018-9FDD-F99250A0E722}"),
  2969.                contractID : "@mozilla.org/updates/update-prompt;1",
  2970.                className  : "Update Prompt",
  2971.                factory    : makeFactory(UpdatePrompt)
  2972.              },
  2973. //@line 2972 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  2974.     timers:  { CID        : Components.ID("{B322A5C0-A419-484E-96BA-D7182163899F}"),
  2975.                contractID : "@mozilla.org/updates/timer-manager;1",
  2976.                className  : "Timer Manager",
  2977.                factory    : makeFactory(TimerManager)
  2978.              },
  2979.     manager: { CID        : Components.ID("{093C2356-4843-4C65-8709-D7DBCBBE7DFB}"),
  2980.                contractID : "@mozilla.org/updates/update-manager;1",
  2981.                className  : "Update Manager",
  2982.                factory    : makeFactory(UpdateManager)
  2983.              },
  2984.   },
  2985.  
  2986.   canUnload: function(componentManager) {
  2987.     return true;
  2988.   }
  2989. };
  2990.  
  2991. /**
  2992.  * Creates a factory for instances of an object created using the passed-in
  2993.  * constructor.
  2994.  */
  2995. function makeFactory(ctor) {
  2996.   function ci(outer, iid) {
  2997.     if (outer != null)
  2998.       throw Components.results.NS_ERROR_NO_AGGREGATION;
  2999.     return (new ctor()).QueryInterface(iid);
  3000.   }
  3001.   return { createInstance: ci };
  3002. }
  3003.  
  3004. function NSGetModule(compMgr, fileSpec) {
  3005.   return gModule;
  3006. }
  3007.  
  3008. /**
  3009.  * Determines whether or there are installed addons which are incompatible
  3010.  * with this update.
  3011.  * @param   update
  3012.  *          The update to check compatibility against
  3013.  * @returns true if there are no addons installed that are incompatible with
  3014.  *          the specified update, false otherwise.
  3015.  */
  3016. function isCompatible(update) {
  3017. //@line 3016 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  3018.   var em =
  3019.       Components.classes["@mozilla.org/extensions/manager;1"].
  3020.       getService(nsIExtensionManager);
  3021.   var items = em.getIncompatibleItemList("", update.extensionVersion,
  3022.     update.platformVersion, nsIUpdateItem.TYPE_ADDON, false, { });
  3023.   return items.length == 0;
  3024. //@line 3025 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  3025. }
  3026.  
  3027. /**
  3028.  * Shows a prompt for an update, provided there are no incompatible addons.
  3029.  * If there are, kick off an update check and see if updates are available
  3030.  * that will resolve the incompatibilities.
  3031.  * @param   update
  3032.  *          The available update to show
  3033.  */
  3034. function showPromptIfNoIncompatibilities(update) {
  3035.   function showPrompt(update) {
  3036.     LOG("UpdateService", "_selectAndInstallUpdate: need to prompt user before continuing...");
  3037.     var prompter =
  3038.         Components.classes["@mozilla.org/updates/update-prompt;1"].
  3039.         createInstance(Components.interfaces.nsIUpdatePrompt);
  3040.     prompter.showUpdateAvailable(update);
  3041.   }
  3042.  
  3043. //@line 3044 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  3044.   /**
  3045.    * Determines if an addon is compatible with a particular update.
  3046.    * @param   addon
  3047.    *          The addon to check
  3048.    * @param   version
  3049.    *          The extensionVersion of the update to check for compatibility
  3050.    *          against.
  3051.    * @returns true if the addon is compatible, false otherwise
  3052.    */
  3053.   function addonIsCompatible(addon, version) {
  3054.     var vc =
  3055.         Components.classes["@mozilla.org/xpcom/version-comparator;1"].
  3056.         getService(Components.interfaces.nsIVersionComparator);
  3057.     return (vc.compare(version, addon.minAppVersion) >= 0) &&
  3058.            (vc.compare(version, addon.maxAppVersion) <= 0);
  3059.   }
  3060.  
  3061.   /**
  3062.    * An object implementing nsIAddonUpdateCheckListener that looks for
  3063.    * available updates to addons and if updates are found that will make the
  3064.    * user's installed addon set compatible with the update, suppresses the
  3065.    * prompt that would otherwise be shown.
  3066.    * @param   addons
  3067.    *          An array of incompatible addons that are installed.
  3068.    * @constructor
  3069.    */
  3070.   function Listener(addons) {
  3071.     this._addons = addons;
  3072.   }
  3073.   Listener.prototype = {
  3074.     _addons: null,
  3075.  
  3076.     /**
  3077.      * See nsIUpdateService.idl
  3078.      */
  3079.     onUpdateStarted: function() {
  3080.     },
  3081.     onUpdateEnded: function() {
  3082.       // There are still incompatibilities, even after an extension update
  3083.       // check to see if there were newer, compatible versions available, so
  3084.       // we have to prompt.
  3085.       //
  3086.       // PREF_APP_UPDATE_INCOMPATIBLE_MODE controls the mode in which we
  3087.       // handle incompatibilities:
  3088.       // UPDATE_CHECK_NEWVERSION    We count both VersionInfo updates _and_
  3089.       //      NewerVersion updates against the list of incompatible addons
  3090.       //      installed - i.e. if Foo 1.2 is installed and it is incompatible
  3091.       //      with the update, and we find Foo 2.0 which is but which is not
  3092.       //      yet downloaded or installed, then we do NOT prompt because the
  3093.       //      user can download Foo 2.0 when they restart after the update
  3094.       //      during the mismatch checking UI. This is the default, since it
  3095.       //      suppresses most prompt dialogs.
  3096.       // UPDATE_CHECK_COMPATIBILITY    We count only VersionInfo updates
  3097.       //      against the list of incompatible addons installed - i.e. if the
  3098.       //      situation above with Foo 1.2 and available update to 2.0
  3099.       //      applies, we DO show the prompt since a download operation will
  3100.       //      be required after the update. This is not the default and is
  3101.       //      supplied only as a hidden option for those that want it.
  3102.       var mode = getPref("getIntPref", PREF_APP_UPDATE_INCOMPATIBLE_MODE,
  3103.                          nsIExtensionManager.UPDATE_CHECK_NEWVERSION);
  3104.       if ((mode == nsIExtensionManager.UPDATE_CHECK_NEWVERSION
  3105.            && this._addons.length) || !isCompatible(update))
  3106.         showPrompt(update);
  3107.     },
  3108.     onAddonUpdateStarted: function(addon) {
  3109.     },
  3110.     onAddonUpdateEnded: function(addon, status) {
  3111.       const Ci = Components.interfaces;
  3112.       if (status != Ci.nsIAddonUpdateCheckListener.STATUS_UPDATE)
  3113.         return;
  3114.  
  3115.       var reqVersion = addon.targetAppID == TOOLKIT_ID ?
  3116.                        update.platformVersion :
  3117.                        update.extensionVersion;
  3118.       if (!addonIsCompatible(addon, reqVersion))
  3119.         return;
  3120.  
  3121.       for (var i = 0; i < this._addons.length; ++i) {
  3122.         if (this._addons[i] == addon) {
  3123.           this._addons.splice(i, 1);
  3124.           break;
  3125.         }
  3126.       }
  3127.     },
  3128.     /**
  3129.      * See nsISupports.idl
  3130.      */
  3131.     QueryInterface: function(iid) {
  3132.       if (!iid.equals(Components.interfaces.nsIAddonUpdateCheckListener) &&
  3133.           !iid.equals(Components.interfaces.nsISupports))
  3134.         throw Components.results.NS_ERROR_NO_INTERFACE;
  3135.       return this;
  3136.     }
  3137.   };
  3138.  
  3139.   if (!isCompatible(update)) {
  3140.     var em =
  3141.         Components.classes["@mozilla.org/extensions/manager;1"].
  3142.         getService(nsIExtensionManager);
  3143.     var items = em.getIncompatibleItemList("", update.extensionVersion,
  3144.       update.platformVersion, nsIUpdateItem.TYPE_ADDON, false, { });
  3145.     var listener = new Listener(items);
  3146.     // See documentation on |mode| above.
  3147.     var mode = getPref("getIntPref", PREF_APP_UPDATE_INCOMPATIBLE_MODE,
  3148.                        nsIExtensionManager.UPDATE_CHECK_NEWVERSION);
  3149.     em.update([], 0, mode, listener);
  3150.   }
  3151.   else
  3152. //@line 3153 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\update\src\nsUpdateService.js.in"
  3153.     showPrompt(update);
  3154. }
  3155.