Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / imports / LinkImport.cpp
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 #include "config.h"
32 #include "core/html/imports/LinkImport.h"
33
34 #include "core/dom/Document.h"
35 #include "core/fetch/CrossOriginAccessControl.h"
36 #include "core/html/HTMLLinkElement.h"
37 #include "core/html/imports/HTMLImportChild.h"
38 #include "core/html/imports/HTMLImportLoader.h"
39 #include "core/html/imports/HTMLImportsController.h"
40
41
42 namespace WebCore {
43
44 PassOwnPtrWillBeRawPtr<LinkImport> LinkImport::create(HTMLLinkElement* owner)
45 {
46     return adoptPtrWillBeNoop(new LinkImport(owner));
47 }
48
49 LinkImport::LinkImport(HTMLLinkElement* owner)
50     : LinkResource(owner)
51     , m_child(0)
52 {
53 }
54
55 LinkImport::~LinkImport()
56 {
57     if (m_child) {
58         m_child->clearClient();
59         m_child = 0;
60     }
61 }
62
63 Document* LinkImport::importedDocument() const
64 {
65     if (!m_child || !m_owner || !m_owner->inDocument())
66         return 0;
67     return m_child->importedDocument();
68 }
69
70 void LinkImport::process()
71 {
72     if (m_child)
73         return;
74     if (!m_owner)
75         return;
76     if (!shouldLoadResource())
77         return;
78
79     if (!m_owner->document().importsController()) {
80         ASSERT(m_owner->document().frame()); // The document should be the master.
81         HTMLImportsController::provideTo(m_owner->document());
82     }
83
84     LinkRequestBuilder builder(m_owner);
85     if (!builder.isValid()) {
86         didFinish();
87         return;
88     }
89
90     HTMLImportsController* controller = m_owner->document().importsController();
91     HTMLImportLoader* loader = m_owner->document().importLoader();
92     HTMLImport* parent = loader ? static_cast<HTMLImport*>(loader->firstImport()) : static_cast<HTMLImport*>(controller);
93     m_child = controller->load(parent, this, builder.build(true));
94     if (!m_child) {
95         didFinish();
96         return;
97     }
98 }
99
100 void LinkImport::didFinish()
101 {
102     if (!m_owner || !m_owner->inDocument())
103         return;
104     m_owner->scheduleEvent();
105 }
106
107 void LinkImport::importChildWasDestroyed(HTMLImportChild* child)
108 {
109     ASSERT(m_child == child);
110     m_child = 0;
111     m_owner = nullptr;
112 }
113
114 bool LinkImport::isSync() const
115 {
116     return m_owner && !m_owner->async();
117 }
118
119 HTMLLinkElement* LinkImport::link()
120 {
121     return m_owner;
122 }
123
124 bool LinkImport::hasLoaded() const
125 {
126     return m_child && m_child->isDone() && !m_child->loaderHasError();
127 }
128
129 void LinkImport::trace(Visitor* visitor)
130 {
131     LinkResource::trace(visitor);
132 }
133
134 } // namespace WebCore