summaryrefslogtreecommitdiffstats
path: root/dom/quota/QuotaObject.h
blob: 96397faf66e30d17dd15f16638bed041f24f197d (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
/* -*- 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 DOM_QUOTA_QUOTAOBJECT_H_
#define DOM_QUOTA_QUOTAOBJECT_H_

#include "nsISupportsImpl.h"

class nsIInterfaceRequestor;

namespace mozilla::dom::quota {

class CanonicalQuotaObject;
class IPCQuotaObject;
class RemoteQuotaObject;

// QuotaObject type is serializable, but only in a restricted manner. The type
// is only safe to serialize in the parent process and only when the type
// hasn't been previously deserialized. So the type can be serialized in the
// parent process and deserialized in a child process or it can be serialized
// in the parent process and deserialized in the parent process as well
// (non-e10s mode). The same type can never be serialized/deserialized more
// than once.
// The deserialized type (remote variant) can only be used on the thread it was
// deserialized on and it will stop working if the thread it was sent from is
// shutdown (consumers should make sure that the originating thread is kept
// alive for the necessary time).
class QuotaObject {
 public:
  NS_INLINE_DECL_PURE_VIRTUAL_REFCOUNTING

  CanonicalQuotaObject* AsCanonicalQuotaObject();

  RemoteQuotaObject* AsRemoteQuotaObject();

  // Serialize this QuotaObject. This method works only in the parent process
  // and only with objects which haven't been previously deserialized.
  // The serial event target where this method is called should be highly
  // available, as it will be used to process requests from the remote variant.
  IPCQuotaObject Serialize(nsIInterfaceRequestor* aCallbacks);

  // Deserialize a QuotaObject. This method works in both the child and parent.
  // The deserialized QuotaObject can only be used on the calling serial event
  // target.
  static RefPtr<QuotaObject> Deserialize(IPCQuotaObject& aQuotaObject);

  virtual const nsAString& Path() const = 0;

  [[nodiscard]] virtual bool MaybeUpdateSize(int64_t aSize, bool aTruncate) = 0;

  virtual bool IncreaseSize(int64_t aDelta) = 0;

  virtual void DisableQuotaCheck() = 0;

  virtual void EnableQuotaCheck() = 0;

 protected:
  QuotaObject(bool aIsRemote) : mIsRemote(aIsRemote) {}

  virtual ~QuotaObject() = default;

  const bool mIsRemote;
};

}  // namespace mozilla::dom::quota

#endif  // DOM_QUOTA_QUOTAOBJECT_H_