initial import
[vuplus_webkit] / Source / WebCore / html / parser / HTMLToken.h
1 /*
2  * Copyright (C) 2010 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
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
24  */
25
26 #ifndef HTMLToken_h
27 #define HTMLToken_h
28
29 #include "MarkupTokenBase.h"
30
31 namespace WebCore {
32
33 class HTMLTokenTypes {
34 public:
35     enum Type {
36         Uninitialized,
37         DOCTYPE,
38         StartTag,
39         EndTag,
40         Comment,
41         Character,
42         EndOfFile,
43     };
44
45     class DoctypeData : public DoctypeDataBase {
46         WTF_MAKE_NONCOPYABLE(DoctypeData);
47     public:
48         DoctypeData()
49             : DoctypeDataBase()
50             , m_forceQuirks(false)
51         {
52         }
53
54         bool m_forceQuirks;
55     };
56 };
57
58 class HTMLToken : public MarkupTokenBase<HTMLTokenTypes, HTMLTokenTypes::DoctypeData> {
59 public:
60     void appendToName(UChar character)
61     {
62         ASSERT(m_type == HTMLTokenTypes::StartTag || m_type == HTMLTokenTypes::EndTag || m_type == HTMLTokenTypes::DOCTYPE);
63         MarkupTokenBase<HTMLTokenTypes, HTMLTokenTypes::DoctypeData>::appendToName(character);
64     }
65     
66     const DataVector& name() const
67     {
68         ASSERT(m_type == HTMLTokenTypes::StartTag || m_type == HTMLTokenTypes::EndTag || m_type == HTMLTokenTypes::DOCTYPE);
69         return MarkupTokenBase<HTMLTokenTypes, HTMLTokenTypes::DoctypeData>::name();
70     }
71
72     bool forceQuirks() const
73     {
74         ASSERT(m_type == HTMLTokenTypes::DOCTYPE);
75         return m_doctypeData->m_forceQuirks;
76     }
77
78     void setForceQuirks()
79     {
80         ASSERT(m_type == HTMLTokenTypes::DOCTYPE);
81         m_doctypeData->m_forceQuirks = true;
82     }
83 };
84
85 class AtomicHTMLToken : public AtomicMarkupTokenBase<HTMLToken> {
86     WTF_MAKE_NONCOPYABLE(AtomicHTMLToken);
87 public:
88     AtomicHTMLToken(HTMLToken& token) : AtomicMarkupTokenBase<HTMLToken>(&token) { }
89
90     AtomicHTMLToken(HTMLTokenTypes::Type type, AtomicString name, PassRefPtr<NamedNodeMap> attributes = 0)
91         : AtomicMarkupTokenBase<HTMLToken>(type, name, attributes)
92     {
93     }
94
95     bool forceQuirks() const
96     {
97         ASSERT(m_type == HTMLTokenTypes::DOCTYPE);
98         return m_doctypeData->m_forceQuirks;
99     }
100 };
101
102 }
103
104 #endif