2007-07-25 05:35:39 +00:00
|
|
|
/* -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2007-07-25 05:35:39 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
interface mozIDOMWindow;
|
2007-07-25 05:35:39 +00:00
|
|
|
interface nsIURI;
|
|
|
|
interface nsIDOMNode;
|
|
|
|
interface nsIDOMDocument;
|
2008-01-16 21:54:33 +00:00
|
|
|
interface nsIOfflineCacheUpdate;
|
2008-10-20 04:12:25 +00:00
|
|
|
interface nsIPrincipal;
|
|
|
|
interface nsIPrefBranch;
|
2010-10-20 17:12:32 +00:00
|
|
|
interface nsIApplicationCache;
|
2012-06-06 02:08:30 +00:00
|
|
|
interface nsIFile;
|
2012-10-02 13:55:00 +00:00
|
|
|
interface nsIObserver;
|
2007-07-25 05:35:39 +00:00
|
|
|
|
2010-10-20 17:12:32 +00:00
|
|
|
[scriptable, uuid(47360d57-8ef4-4a5d-8865-1a27a739ad1a)]
|
2007-07-25 05:35:39 +00:00
|
|
|
interface nsIOfflineCacheUpdateObserver : nsISupports {
|
2010-10-20 17:12:32 +00:00
|
|
|
const unsigned long STATE_ERROR = 1;
|
|
|
|
const unsigned long STATE_CHECKING = 2;
|
|
|
|
const unsigned long STATE_NOUPDATE = 3;
|
|
|
|
const unsigned long STATE_OBSOLETE = 4;
|
|
|
|
const unsigned long STATE_DOWNLOADING = 5;
|
|
|
|
const unsigned long STATE_ITEMSTARTED = 6;
|
|
|
|
const unsigned long STATE_ITEMCOMPLETED = 7;
|
2012-05-22 20:12:40 +00:00
|
|
|
const unsigned long STATE_ITEMPROGRESS = 8;
|
2010-10-20 17:12:32 +00:00
|
|
|
const unsigned long STATE_FINISHED = 10;
|
2008-01-16 21:54:33 +00:00
|
|
|
|
2008-11-04 18:59:12 +00:00
|
|
|
/**
|
2010-10-20 17:12:32 +00:00
|
|
|
* aUpdate has changed its state.
|
2008-11-04 18:59:12 +00:00
|
|
|
*
|
|
|
|
* @param aUpdate
|
|
|
|
* The nsIOfflineCacheUpdate being processed.
|
2010-10-20 17:12:32 +00:00
|
|
|
* @param event
|
|
|
|
* See enumeration above
|
2008-11-04 18:59:12 +00:00
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
void updateStateChanged(in nsIOfflineCacheUpdate aUpdate, in uint32_t state);
|
2008-11-04 18:59:12 +00:00
|
|
|
|
2008-01-16 21:54:33 +00:00
|
|
|
/**
|
2010-10-20 17:12:32 +00:00
|
|
|
* Informs the observer about an application being available to associate.
|
2008-01-16 21:54:33 +00:00
|
|
|
*
|
2010-10-20 17:12:32 +00:00
|
|
|
* @param applicationCache
|
|
|
|
* The application cache instance that has been created or found by the
|
|
|
|
* update to associate with
|
2008-01-16 21:54:33 +00:00
|
|
|
*/
|
2010-10-20 17:12:32 +00:00
|
|
|
void applicationCacheAvailable(in nsIApplicationCache applicationCache);
|
2007-07-25 05:35:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2008-01-16 21:54:33 +00:00
|
|
|
* An nsIOfflineCacheUpdate is used to update an application's offline
|
|
|
|
* resources.
|
|
|
|
*
|
2007-07-25 05:35:39 +00:00
|
|
|
* It can be used to perform partial or complete updates.
|
|
|
|
*
|
|
|
|
* One update object will be updating at a time. The active object will
|
|
|
|
* load its items one by one, sending itemCompleted() to any registered
|
|
|
|
* observers.
|
|
|
|
*/
|
2016-01-18 19:20:08 +00:00
|
|
|
[scriptable, uuid(6e3e26ea-45b2-4db7-9e4a-93b965679298)]
|
2007-07-25 05:35:39 +00:00
|
|
|
interface nsIOfflineCacheUpdate : nsISupports {
|
2008-01-16 21:54:33 +00:00
|
|
|
/**
|
|
|
|
* Fetch the status of the running update. This will return a value
|
|
|
|
* defined in nsIDOMOfflineResourceList.
|
|
|
|
*/
|
|
|
|
readonly attribute unsigned short status;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TRUE if the update is being used to add specific resources.
|
|
|
|
* FALSE if the complete cache update process is happening.
|
|
|
|
*/
|
|
|
|
readonly attribute boolean partial;
|
|
|
|
|
2008-08-26 23:09:02 +00:00
|
|
|
/**
|
|
|
|
* TRUE if this is an upgrade attempt, FALSE if it is a new cache
|
|
|
|
* attempt.
|
|
|
|
*/
|
|
|
|
readonly attribute boolean isUpgrade;
|
|
|
|
|
2007-07-25 05:35:39 +00:00
|
|
|
/**
|
|
|
|
* The domain being updated, and the domain that will own any URIs added
|
|
|
|
* with this update.
|
|
|
|
*/
|
|
|
|
readonly attribute ACString updateDomain;
|
|
|
|
|
|
|
|
/**
|
2008-01-16 21:54:33 +00:00
|
|
|
* The manifest for the offline application being updated.
|
|
|
|
*/
|
|
|
|
readonly attribute nsIURI manifestURI;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TRUE if the cache update completed successfully.
|
2007-07-25 05:35:39 +00:00
|
|
|
*/
|
2008-01-16 21:54:33 +00:00
|
|
|
readonly attribute boolean succeeded;
|
2007-07-25 05:35:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the update.
|
|
|
|
*
|
2008-01-16 21:54:33 +00:00
|
|
|
* @param aManifestURI
|
2008-08-28 01:15:32 +00:00
|
|
|
* The manifest URI to be checked.
|
2008-01-16 21:54:33 +00:00
|
|
|
* @param aDocumentURI
|
2007-07-25 05:35:39 +00:00
|
|
|
* The page that is requesting the update.
|
2015-10-02 16:13:52 +00:00
|
|
|
* @param aLoadingPrincipal
|
|
|
|
* The principal of the page that is requesting the update.
|
2007-07-25 05:35:39 +00:00
|
|
|
*/
|
2015-10-02 16:13:52 +00:00
|
|
|
void init(in nsIURI aManifestURI,
|
|
|
|
in nsIURI aDocumentURI,
|
|
|
|
in nsIPrincipal aLoadingPrincipal,
|
|
|
|
in nsIDOMDocument aDocument,
|
2016-01-18 19:20:08 +00:00
|
|
|
[optional] in nsIFile aCustomProfileDir);
|
2007-07-25 05:35:39 +00:00
|
|
|
|
|
|
|
/**
|
2008-08-28 01:15:32 +00:00
|
|
|
* Initialize the update for partial processing.
|
|
|
|
*
|
|
|
|
* @param aManifestURI
|
|
|
|
* The manifest URI of the related cache.
|
|
|
|
* @param aClientID
|
|
|
|
* Client ID of the cache to store resource to. This ClientID
|
|
|
|
* must be ID of cache in the cache group identified by
|
|
|
|
* the manifest URI passed in the first parameter.
|
|
|
|
* @param aDocumentURI
|
|
|
|
* The page that is requesting the update. May be null
|
|
|
|
* when this information is unknown.
|
|
|
|
*/
|
2015-10-02 16:13:52 +00:00
|
|
|
void initPartial(in nsIURI aManifestURI, in ACString aClientID,
|
|
|
|
in nsIURI aDocumentURI, in nsIPrincipal aPrincipal);
|
2008-08-28 01:15:32 +00:00
|
|
|
|
2012-10-02 13:55:00 +00:00
|
|
|
/**
|
|
|
|
* Initialize the update to only check whether there is an update
|
|
|
|
* to the manifest available (if it has actually changed on the server).
|
|
|
|
*
|
|
|
|
* @param aManifestURI
|
|
|
|
* The manifest URI of the related cache.
|
|
|
|
* @param aObserver
|
|
|
|
* nsIObserver implementation that receives the result.
|
|
|
|
* When aTopic == "offline-cache-update-available" there is an update to
|
|
|
|
* to download. Update of the app cache will lead to a new version
|
|
|
|
* download.
|
|
|
|
* When aTopic == "offline-cache-update-unavailable" then there is no
|
|
|
|
* update available (the manifest has not changed on the server).
|
|
|
|
*/
|
|
|
|
void initForUpdateCheck(in nsIURI aManifestURI,
|
2015-10-02 16:13:52 +00:00
|
|
|
in nsIPrincipal aLoadingPrincipal,
|
2012-10-02 13:55:00 +00:00
|
|
|
in nsIObserver aObserver);
|
|
|
|
|
2008-08-28 01:15:32 +00:00
|
|
|
/**
|
|
|
|
* Add a dynamic URI to the offline cache as part of the update.
|
2007-07-25 05:35:39 +00:00
|
|
|
*
|
|
|
|
* @param aURI
|
|
|
|
* The URI to add.
|
|
|
|
*/
|
2008-01-16 21:54:33 +00:00
|
|
|
void addDynamicURI(in nsIURI aURI);
|
2007-07-25 05:35:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add the update to the offline update queue. An offline-cache-update-added
|
|
|
|
* event will be sent to the observer service.
|
|
|
|
*/
|
|
|
|
void schedule();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Observe loads that are added to the update.
|
|
|
|
*
|
|
|
|
* @param aObserver
|
|
|
|
* object that notifications will be sent to.
|
|
|
|
* @param aHoldWeak
|
|
|
|
* TRUE if you want the update to hold a weak reference to the
|
|
|
|
* observer, FALSE for a strong reference.
|
|
|
|
*/
|
|
|
|
void addObserver(in nsIOfflineCacheUpdateObserver aObserver,
|
|
|
|
in boolean aHoldWeak);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove an observer from the update.
|
|
|
|
*
|
|
|
|
* @param aObserver
|
|
|
|
* the observer to remove.
|
|
|
|
*/
|
|
|
|
void removeObserver(in nsIOfflineCacheUpdateObserver aObserver);
|
2012-05-22 20:12:40 +00:00
|
|
|
|
2012-12-18 21:41:15 +00:00
|
|
|
/**
|
|
|
|
* Cancel the update when still in progress. This stops all running resource
|
|
|
|
* downloads and discards the downloaded cache version. Throws when update
|
|
|
|
* has already finished and made the new cache version active.
|
|
|
|
*/
|
|
|
|
void cancel();
|
|
|
|
|
2012-05-22 20:12:40 +00:00
|
|
|
/**
|
|
|
|
* Return the number of bytes downloaded so far
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
readonly attribute uint64_t byteProgress;
|
2007-07-25 05:35:39 +00:00
|
|
|
};
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
[scriptable, uuid(44971e74-37e4-4140-8677-a4cf213a3f4b)]
|
2007-07-25 05:35:39 +00:00
|
|
|
interface nsIOfflineCacheUpdateService : nsISupports {
|
2008-01-23 02:54:06 +00:00
|
|
|
/**
|
|
|
|
* Constants for the offline-app permission.
|
|
|
|
*
|
|
|
|
* XXX: This isn't a great place for this, but it's really the only
|
|
|
|
* private offline-app-related interface
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allow the domain to use offline APIs, and don't warn about excessive
|
|
|
|
* usage.
|
|
|
|
*/
|
|
|
|
const unsigned long ALLOW_NO_WARN = 3;
|
|
|
|
|
2007-07-25 05:35:39 +00:00
|
|
|
/**
|
|
|
|
* Access to the list of cache updates that have been scheduled.
|
|
|
|
*/
|
|
|
|
readonly attribute unsigned long numUpdates;
|
|
|
|
nsIOfflineCacheUpdate getUpdate(in unsigned long index);
|
2008-01-16 21:54:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Schedule a cache update for a given offline manifest. If an
|
|
|
|
* existing update is scheduled or running, that update will be returned.
|
|
|
|
* Otherwise a new update will be scheduled.
|
|
|
|
*/
|
|
|
|
nsIOfflineCacheUpdate scheduleUpdate(in nsIURI aManifestURI,
|
2010-10-20 17:12:32 +00:00
|
|
|
in nsIURI aDocumentURI,
|
2015-10-02 16:13:52 +00:00
|
|
|
in nsIPrincipal aLoadingPrincipal,
|
2016-01-30 17:05:36 +00:00
|
|
|
in mozIDOMWindow aWindow);
|
2008-01-16 21:54:33 +00:00
|
|
|
|
2012-10-26 11:02:47 +00:00
|
|
|
/**
|
|
|
|
* Schedule a cache update for a given offline manifest using app cache
|
2016-02-05 01:42:44 +00:00
|
|
|
* bound to the given appID+inIsolatedMozBrowser flag. If an existing update
|
|
|
|
* is scheduled or running, that update will be returned. Otherwise a new
|
2012-10-26 11:02:47 +00:00
|
|
|
* update will be scheduled.
|
|
|
|
*/
|
|
|
|
nsIOfflineCacheUpdate scheduleAppUpdate(in nsIURI aManifestURI,
|
|
|
|
in nsIURI aDocumentURI,
|
2015-10-02 16:13:52 +00:00
|
|
|
in nsIPrincipal aLoadingPrincipal,
|
2014-02-04 00:52:57 +00:00
|
|
|
in nsIFile aProfileDir);
|
2012-10-26 11:02:47 +00:00
|
|
|
|
2008-01-16 21:54:33 +00:00
|
|
|
/**
|
|
|
|
* Schedule a cache update for a manifest when the document finishes
|
|
|
|
* loading.
|
|
|
|
*/
|
|
|
|
void scheduleOnDocumentStop(in nsIURI aManifestURI,
|
|
|
|
in nsIURI aDocumentURI,
|
2015-10-02 16:13:52 +00:00
|
|
|
in nsIPrincipal aLoadingPrincipal,
|
2008-01-16 21:54:33 +00:00
|
|
|
in nsIDOMDocument aDocument);
|
2008-10-20 04:12:25 +00:00
|
|
|
|
2012-10-02 13:55:00 +00:00
|
|
|
/**
|
|
|
|
* Schedule a check to see if an update is available.
|
|
|
|
*
|
|
|
|
* This will not update or make any changes to the appcache.
|
|
|
|
* It only notifies the observer to indicate whether the manifest has
|
|
|
|
* changed on the server (or not): a changed manifest means that an
|
|
|
|
* update is available.
|
|
|
|
*
|
|
|
|
* For arguments see nsIOfflineCacheUpdate.initForUpdateCheck() method
|
|
|
|
* description.
|
|
|
|
*/
|
|
|
|
void checkForUpdate(in nsIURI aManifestURI,
|
2015-10-02 16:13:52 +00:00
|
|
|
in nsIPrincipal aLoadingPrincipal,
|
2012-10-02 13:55:00 +00:00
|
|
|
in nsIObserver aObserver);
|
|
|
|
|
2008-10-20 04:12:25 +00:00
|
|
|
/**
|
|
|
|
* Checks whether a principal should have access to the offline
|
|
|
|
* cache.
|
|
|
|
* @param aPrincipal
|
|
|
|
* The principal to check.
|
|
|
|
* @param aPrefBranch
|
|
|
|
* The pref branch to use to check the
|
|
|
|
* offline-apps.allow_by_default pref. If not specified,
|
|
|
|
* the pref service will be used.
|
|
|
|
*/
|
|
|
|
boolean offlineAppAllowed(in nsIPrincipal aPrincipal,
|
|
|
|
in nsIPrefBranch aPrefBranch);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether a document at the given URI should have access
|
|
|
|
* to the offline cache.
|
|
|
|
* @param aURI
|
|
|
|
* The URI to check
|
|
|
|
* @param aPrefBranch
|
|
|
|
* The pref branch to use to check the
|
|
|
|
* offline-apps.allow_by_default pref. If not specified,
|
|
|
|
* the pref service will be used.
|
|
|
|
*/
|
|
|
|
boolean offlineAppAllowedForURI(in nsIURI aURI,
|
|
|
|
in nsIPrefBranch aPrefBranch);
|
2013-11-19 22:15:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the "offline-app" permission for the principal.
|
|
|
|
* In the single process model calls directly on permission manager.
|
|
|
|
* In the multi process model dispatches to the parent process.
|
|
|
|
*/
|
2016-01-30 17:05:36 +00:00
|
|
|
void allowOfflineApp(in nsIPrincipal aPrincipal);
|
2007-07-25 05:35:39 +00:00
|
|
|
};
|