mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
bb3b80359f
- Backed out changeset b7653e3d5f91 (bug 1174381) for widespread assertion failures. (f529b680d) - Bug 1174381 - ServiceWorkerManager::TeardownRunnable should be called when xpcom-shutdown notification is received, r=nsm (c744d9a80) - Bug 1134671 Keep sqlite connection open between Cache API operations. r=ehsan (43a57decc) - Bug 1134671: Add 'override' keyword to method Context::Data::GetConnection() (in DOM Cache code). rs=ehsan (669c6eac3) - Bug 1164100 P1 Cache API should use correct base dir even when reusing sqlite connection. r=ehsan (c1bdf85d3) - Bug 1164100 P2 Fix defunct assertion in Cache API ActionRunnable. r=ehsan (e345b2a76) - Bug 1161288 - Support app:// origins on Fetch API. r=baku,nsm (9c237bcdd) - Bug 1168135 P1 Execute Cache init Action on same target thread used for other Actions. r=ehsan (30fcee443) - Bug 1168135 P2 Add Cache Context::Init() method. r=ehsan (41dfd427a) - Bug 1168135 P3 Cache Context should pass shared Data container to init Action. r=ehsan (2e8f19d7c) - Bug 1169994 Fix Cache to close connection on right thread when init is canceled. r=ehsan (ca7b96b24) - Bug 1174768 Cache should check if QuotaManager is shutting down before calling GetOrCreate. r=janv (7b06ad874) - Bug 1110446 P1 Create marker files when Cache API context is open. r=ehsan (bb94b92ff) - Bug 1146612 - Add a test to ensure that Cache.put() with an existing request will reorder it in the DB; r=bkelly (228ff808c) - Bug 1162365 - Cache API does not calculate usage in QuotaClient::InitOrigin(). r=bkelly (3fa71ee24) - Bug 1156033 - Add some missing error handling to the DOM Cache code; r=bkelly (67cd67987) - Bug 1118298 - Client uses unknown command property session_id. r=ato (081eb8f2d)
106 lines
3.4 KiB
C++
106 lines
3.4 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_cache_Action_h
|
|
#define mozilla_dom_cache_Action_h
|
|
|
|
#include "mozilla/Atomics.h"
|
|
#include "mozilla/dom/cache/Types.h"
|
|
#include "nsISupportsImpl.h"
|
|
|
|
class mozIStorageConnection;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace cache {
|
|
|
|
class Action
|
|
{
|
|
public:
|
|
class Resolver
|
|
{
|
|
public:
|
|
// Note: Action must drop Resolver ref after calling Resolve()!
|
|
// Note: Must be called on the same thread used to execute
|
|
// Action::RunOnTarget().
|
|
virtual void Resolve(nsresult aRv) = 0;
|
|
|
|
NS_IMETHOD_(MozExternalRefCountType)
|
|
AddRef(void) = 0;
|
|
|
|
NS_IMETHOD_(MozExternalRefCountType)
|
|
Release(void) = 0;
|
|
};
|
|
|
|
// Class containing data that can be opportunistically shared between
|
|
// multiple Actions running on the same thread/Context. In theory
|
|
// this could be abstracted to a generic key/value map, but for now
|
|
// just explicitly provide accessors for the data we need.
|
|
class Data
|
|
{
|
|
public:
|
|
virtual mozIStorageConnection*
|
|
GetConnection() const = 0;
|
|
|
|
virtual void
|
|
SetConnection(mozIStorageConnection* aConn) = 0;
|
|
};
|
|
|
|
// Execute operations on the target thread. Once complete call
|
|
// Resolver::Resolve(). This can be done sync or async.
|
|
// Note: Action should hold Resolver ref until its ready to call Resolve().
|
|
// Note: The "target" thread is determined when the Action is scheduled on
|
|
// Context. The Action should not assume any particular thread is used.
|
|
virtual void RunOnTarget(Resolver* aResolver, const QuotaInfo& aQuotaInfo,
|
|
Data* aOptionalData) = 0;
|
|
|
|
// Called on initiating thread when the Action is canceled. The Action is
|
|
// responsible for calling Resolver::Resolve() as normal; either with a
|
|
// normal error code or NS_ERROR_ABORT. If CancelOnInitiatingThread() is
|
|
// called after Resolve() has already occurred, then the cancel can be
|
|
// ignored.
|
|
//
|
|
// Cancellation is a best effort to stop processing as soon as possible, but
|
|
// does not guarantee the Action will not run.
|
|
//
|
|
// CancelOnInitiatingThread() may be called more than once. Subsequent
|
|
// calls should have no effect.
|
|
//
|
|
// Default implementation sets an internal cancellation flag that can be
|
|
// queried with IsCanceled().
|
|
virtual void CancelOnInitiatingThread();
|
|
|
|
// Executed on the initiating thread and is passed the nsresult given to
|
|
// Resolver::Resolve().
|
|
virtual void CompleteOnInitiatingThread(nsresult aRv) { }
|
|
|
|
// Executed on the initiating thread. If this Action will operate on the
|
|
// given cache ID then override this to return true.
|
|
virtual bool MatchesCacheId(CacheId aCacheId) const { return false; }
|
|
|
|
NS_INLINE_DECL_REFCOUNTING(cache::Action)
|
|
|
|
protected:
|
|
Action();
|
|
|
|
// virtual because deleted through base class pointer
|
|
virtual ~Action();
|
|
|
|
// Check if this Action has been canceled. May be called from any thread,
|
|
// but typically used from the target thread.
|
|
bool IsCanceled() const;
|
|
|
|
private:
|
|
// Accessible from any thread.
|
|
Atomic<bool> mCanceled;
|
|
};
|
|
|
|
} // namespace cache
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_cache_Action_h
|