summaryrefslogtreecommitdiffstats
path: root/dom/system/nsISystemUpdateProvider.idl
blob: 38e61eb606ad511f9716d094ecea5e3372b4ca44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "nsISupports.idl"

[scriptable, uuid(775edbf5-b4a9-400c-b0ad-ea3c3a027097)]
interface nsISystemUpdateListener : nsISupports
{
  /**
   * callback for notifying an update package is available for download.
   */
  void onUpdateAvailable(in DOMString type,
                         in DOMString version,
                         in DOMString description,
                         in unsigned long long buildDate,
                         in unsigned long long size);

  /**
   * callback for notifying the download progress.
   */
  void onProgress(in unsigned long long loaded, in unsigned long long total);

  /**
   * callback for notifying an update package is ready to apply.
   */
  void onUpdateReady();

  /**
   * callback for notifying any error while
   * checking/downloading/applying an update package.
   */
  void onError(in DOMString errMsg);
};

[scriptable, uuid(c9b7c166-b9cf-4396-a6de-39275e1c0a36)]
interface nsISystemUpdateProvider : nsISupports
{
  void checkForUpdate();
  void startDownload();
  void stopDownload();
  void applyUpdate();

  /**
   * Set the available parameter to the update provider.
   * The available parameter is implementation-dependent.
   * e.g. "update-url", "last-update-date", "update-status", "update-interval"
   *
   * @param  name      The number of languages.
   * @param  languages An array of languages.
   * @return true when setting an available parameter,
   *         false when setting an unavailable parameter.
   */
  bool setParameter(in DOMString name, in DOMString value);
  /**
   * Get the available parameter from the update provider.
   * The available parameter is implementation-dependent.
   *
   * @param  name The available parameter.
   * @return The corresponding value to the name.
   *         Return null if try to get unavailable parameter.
   */
  DOMString getParameter(in DOMString name);

  /**
   * NOTE TO IMPLEMENTORS:
   *   Need to consider if it is necessary to fire the pending event when 
   *   registering the listener.
   *   (E.g. UpdateAvailable or UpdateReady event.)
   */
  void setListener(in nsISystemUpdateListener listener);
  void unsetListener();
};