Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / bindings / v8 / ScriptPromise.h
1 /*
2  * Copyright (C) 2013 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #ifndef ScriptPromise_h
32 #define ScriptPromise_h
33
34 #include "bindings/v8/ScopedPersistent.h"
35 #include "bindings/v8/ScriptFunction.h"
36 #include "bindings/v8/ScriptValue.h"
37 #include "bindings/v8/V8ScriptRunner.h"
38 #include "wtf/Forward.h"
39 #include <v8.h>
40
41 namespace WebCore {
42
43 class ExecutionContext;
44
45 // ScriptPromise is the class for representing Promise values in C++ world.
46 // ScriptPromise holds a Promise.
47 // So holding a ScriptPromise as a member variable in DOM object causes
48 // memory leaks since it has a reference from C++ to V8.
49 //
50 class ScriptPromise {
51 public:
52     // Constructs an empty promise.
53     ScriptPromise() { }
54
55     // Constructs a ScriptPromise from |value|.
56     // i.e. the constructed ScriptPromise holds |Promise.cast(value)|.
57     // Note: if |value| is a non-Promise value, two ScriptPromises constructed
58     // with it hold different Promises each other.
59     explicit ScriptPromise(const ScriptValue& /* value */);
60
61     ScriptPromise(v8::Handle<v8::Value> promise, v8::Isolate* isolate)
62         : m_promise(promise, isolate)
63     {
64         ASSERT(!m_promise.hasNoValue());
65     }
66
67     ScriptPromise then(PassOwnPtr<ScriptFunction> onFulfilled, PassOwnPtr<ScriptFunction> onRejected = PassOwnPtr<ScriptFunction>());
68
69     bool isObject() const
70     {
71         return m_promise.isObject();
72     }
73
74     bool isNull() const
75     {
76         return m_promise.isNull();
77     }
78
79     bool isUndefinedOrNull() const
80     {
81         return m_promise.isUndefined() || m_promise.isNull();
82     }
83
84     v8::Handle<v8::Value> v8Value() const
85     {
86         return m_promise.v8Value();
87     }
88
89     v8::Isolate* isolate() const
90     {
91         return m_promise.isolate();
92     }
93
94     bool hasNoValue() const
95     {
96         return m_promise.hasNoValue();
97     }
98
99     void clear()
100     {
101         m_promise.clear();
102     }
103
104     static ScriptPromise createPending();
105     static ScriptPromise createPending(ExecutionContext*);
106
107 private:
108     ScriptValue m_promise;
109 };
110
111 } // namespace WebCore
112
113
114 #endif // ScriptPromise_h