initial import
[vuplus_webkit] / Source / WebCore / html / LinkRelAttribute.cpp
1 /*
2  * Copyright (C) 2011 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
32 #include "config.h"
33 #include "LinkRelAttribute.h"
34
35 namespace WebCore {
36
37 LinkRelAttribute::LinkRelAttribute()
38     : m_isStyleSheet(false)
39     , m_iconType(InvalidIcon)
40     , m_isAlternate(false)
41     , m_isDNSPrefetch(false)
42 #if ENABLE(LINK_PREFETCH)
43     , m_isLinkPrefetch(false)
44     , m_isLinkPrerender(false)
45     , m_isLinkSubresource(false)
46 #endif
47 {
48 }
49
50 LinkRelAttribute::LinkRelAttribute(const String& rel)
51     : m_isStyleSheet(false)
52     , m_iconType(InvalidIcon)
53     , m_isAlternate(false)
54     , m_isDNSPrefetch(false)
55 #if ENABLE(LINK_PREFETCH)
56     , m_isLinkPrefetch(false)
57     , m_isLinkPrerender(false)
58     , m_isLinkSubresource(false)
59 #endif
60 {
61     if (equalIgnoringCase(rel, "stylesheet"))
62         m_isStyleSheet = true;
63     else if (equalIgnoringCase(rel, "icon") || equalIgnoringCase(rel, "shortcut icon"))
64         m_iconType = Favicon;
65 #if ENABLE(TOUCH_ICON_LOADING)
66     else if (equalIgnoringCase(rel, "apple-touch-icon"))
67         m_iconType = TouchIcon;
68     else if (equalIgnoringCase(rel, "apple-touch-icon-precomposed"))
69         m_iconType = TouchPrecomposedIcon;
70 #endif
71     else if (equalIgnoringCase(rel, "dns-prefetch"))
72         m_isDNSPrefetch = true;
73     else if (equalIgnoringCase(rel, "alternate stylesheet") || equalIgnoringCase(rel, "stylesheet alternate")) {
74         m_isStyleSheet = true;
75         m_isAlternate = true;
76     } else {
77         // Tokenize the rel attribute and set bits based on specific keywords that we find.
78         String relCopy = rel;
79         relCopy.replace('\n', ' ');
80         Vector<String> list;
81         relCopy.split(' ', list);
82         Vector<String>::const_iterator end = list.end();
83         for (Vector<String>::const_iterator it = list.begin(); it != end; ++it) {
84             if (equalIgnoringCase(*it, "stylesheet"))
85                 m_isStyleSheet = true;
86             else if (equalIgnoringCase(*it, "alternate"))
87                 m_isAlternate = true;
88             else if (equalIgnoringCase(*it, "icon"))
89                 m_iconType = Favicon;
90 #if ENABLE(TOUCH_ICON_LOADING)
91             else if (equalIgnoringCase(*it, "apple-touch-icon"))
92                 m_iconType = TouchIcon;
93             else if (equalIgnoringCase(*it, "apple-touch-icon-precomposed"))
94                 m_iconType = TouchPrecomposedIcon;
95 #endif
96 #if ENABLE(LINK_PREFETCH)
97             else if (equalIgnoringCase(*it, "prefetch"))
98               m_isLinkPrefetch = true;
99             else if (equalIgnoringCase(*it, "prerender"))
100               m_isLinkPrerender = true;
101             else if (equalIgnoringCase(*it, "subresource"))
102               m_isLinkSubresource = true;
103 #endif
104         }
105     }
106 }
107
108 }