summaryrefslogtreecommitdiffstats
path: root/js/ipc/CrossProcessObjectWrappers.h
blob: cb0db53e917072e22771717a3d7f4129e657ba72 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 * vim: set ts=8 sw=4 et 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_jsipc_CrossProcessObjectWrappers_h__
#define mozilla_jsipc_CrossProcessObjectWrappers_h__

#include "js/TypeDecls.h"
#include "mozilla/jsipc/CpowHolder.h"
#include "mozilla/jsipc/JavaScriptTypes.h"
#include "nsID.h"
#include "nsString.h"
#include "nsTArray.h"

#ifdef XP_WIN
#undef GetClassName
#undef GetClassInfo
#endif

namespace mozilla {

namespace dom {
class CPOWManagerGetter;
} // namespace dom

namespace jsipc {

class PJavaScriptParent;
class PJavaScriptChild;

class CPOWManager
{
  public:
    virtual bool Unwrap(JSContext* cx,
                        const InfallibleTArray<CpowEntry>& aCpows,
                        JS::MutableHandleObject objp) = 0;

    virtual bool Wrap(JSContext* cx,
                      JS::HandleObject aObj,
                      InfallibleTArray<CpowEntry>* outCpows) = 0;
};

class CrossProcessCpowHolder : public CpowHolder
{
  public:
    CrossProcessCpowHolder(dom::CPOWManagerGetter* managerGetter,
                           const InfallibleTArray<CpowEntry>& cpows);

    ~CrossProcessCpowHolder();

    bool ToObject(JSContext* cx, JS::MutableHandleObject objp);

  private:
    CPOWManager* js_;
    const InfallibleTArray<CpowEntry>& cpows_;
    bool unwrapped_;
};

CPOWManager*
CPOWManagerFor(PJavaScriptParent* aParent);

CPOWManager*
CPOWManagerFor(PJavaScriptChild* aChild);

bool
IsCPOW(JSObject* obj);

bool
IsWrappedCPOW(JSObject* obj);

nsresult
InstanceOf(JSObject* obj, const nsID* id, bool* bp);

bool
DOMInstanceOf(JSContext* cx, JSObject* obj, int prototypeID, int depth, bool* bp);

void
GetWrappedCPOWTag(JSObject* obj, nsACString& out);

PJavaScriptParent*
NewJavaScriptParent();

void
ReleaseJavaScriptParent(PJavaScriptParent* parent);

PJavaScriptChild*
NewJavaScriptChild();

void
ReleaseJavaScriptChild(PJavaScriptChild* child);

void
AfterProcessTask();

} // namespace jsipc
} // namespace mozilla

#endif // mozilla_jsipc_CrossProcessObjectWrappers_h__