Upstream version 11.40.277.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / serviceworkers / ServiceWorkerGlobalScope.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 #ifndef ServiceWorkerGlobalScope_h
31 #define ServiceWorkerGlobalScope_h
32
33 #include "core/workers/WorkerGlobalScope.h"
34 #include "platform/heap/Handle.h"
35 #include "wtf/Assertions.h"
36 #include "wtf/PassRefPtr.h"
37 #include "wtf/RefCounted.h"
38
39 namespace blink {
40
41 class CacheStorage;
42 class Dictionary;
43 class FetchManager;
44 class Request;
45 class ScriptPromise;
46 class ScriptState;
47 class ServiceWorkerClients;
48 class ServiceWorkerThread;
49 class WaitUntilObserver;
50 class WorkerThreadStartupData;
51
52 class ServiceWorkerGlobalScope final : public WorkerGlobalScope {
53     DEFINE_WRAPPERTYPEINFO();
54 public:
55     static PassRefPtrWillBeRawPtr<ServiceWorkerGlobalScope> create(ServiceWorkerThread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>);
56
57     virtual ~ServiceWorkerGlobalScope();
58     virtual bool isServiceWorkerGlobalScope() const override { return true; }
59
60     // WorkerGlobalScope
61     virtual void stopFetch() override;
62     virtual void didEvaluateWorkerScript() override;
63
64     // ServiceWorkerGlobalScope.idl
65     ServiceWorkerClients* clients();
66     String scope(ExecutionContext*);
67
68     CacheStorage* caches(ExecutionContext*);
69
70     ScriptPromise fetch(ScriptState*, Request*);
71     ScriptPromise fetch(ScriptState*, Request*, const Dictionary&);
72     ScriptPromise fetch(ScriptState*, const String&);
73     ScriptPromise fetch(ScriptState*, const String&, const Dictionary&);
74
75     void close(ExceptionState&);
76
77     // EventTarget
78     virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override;
79     virtual const AtomicString& interfaceName() const override;
80     virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override;
81
82     void dispatchExtendableEvent(PassRefPtrWillBeRawPtr<Event>, WaitUntilObserver*);
83
84     DEFINE_ATTRIBUTE_EVENT_LISTENER(install);
85     DEFINE_ATTRIBUTE_EVENT_LISTENER(activate);
86     DEFINE_ATTRIBUTE_EVENT_LISTENER(fetch);
87     DEFINE_ATTRIBUTE_EVENT_LISTENER(message);
88     DEFINE_ATTRIBUTE_EVENT_LISTENER(sync);
89
90     virtual void trace(Visitor*) override;
91
92 private:
93     ServiceWorkerGlobalScope(const KURL&, const String& userAgent, ServiceWorkerThread*, double timeOrigin, const SecurityOrigin*, PassOwnPtrWillBeRawPtr<WorkerClients>);
94     virtual void importScripts(const Vector<String>& urls, ExceptionState&) override;
95     virtual void logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack>) override;
96
97     PersistentWillBeMember<ServiceWorkerClients> m_clients;
98     OwnPtr<FetchManager> m_fetchManager;
99     PersistentWillBeMember<CacheStorage> m_caches;
100     bool m_didEvaluateScript;
101     bool m_hadErrorInTopLevelEventHandler;
102     unsigned m_eventNestingLevel;
103 };
104
105 } // namespace blink
106
107 #endif // ServiceWorkerGlobalScope_h