summaryrefslogtreecommitdiffstats
path: root/parser/html/nsHtml5StackNode.cpp
blob: 5576074b5259177c3d653e89d94d64b9a013752a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*
 * Copyright (c) 2007 Henri Sivonen
 * Copyright (c) 2007-2011 Mozilla Foundation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

/*
 * THIS IS A GENERATED FILE. PLEASE DO NOT EDIT.
 * Please edit StackNode.java instead and regenerate.
 */

#define nsHtml5StackNode_cpp__

#include "nsHtml5AttributeName.h"
#include "nsHtml5ElementName.h"
#include "nsHtml5Tokenizer.h"
#include "nsHtml5TreeBuilder.h"
#include "nsHtml5UTF16Buffer.h"
#include "nsHtml5StateSnapshot.h"
#include "nsHtml5Portability.h"

#include "nsHtml5StackNode.h"

int32_t nsHtml5StackNode::getGroup() {
  return flags & nsHtml5ElementName::GROUP_MASK;
}

bool nsHtml5StackNode::isScoping() {
  return (flags & nsHtml5ElementName::SCOPING);
}

bool nsHtml5StackNode::isSpecial() {
  return (flags & nsHtml5ElementName::SPECIAL);
}

bool nsHtml5StackNode::isFosterParenting() {
  return (flags & nsHtml5ElementName::FOSTER_PARENTING);
}

bool nsHtml5StackNode::isHtmlIntegrationPoint() {
  return (flags & nsHtml5ElementName::HTML_INTEGRATION_POINT);
}

nsHtml5StackNode::nsHtml5StackNode(int32_t idxInTreeBuilder)
    : idxInTreeBuilder(idxInTreeBuilder),
      flags(0),
      name(nullptr),
      popName(nullptr),
      ns(0),
      node(nullptr),
      attributes(nullptr),
      refcount(0),
      htmlCreator(nullptr) {
  MOZ_COUNT_CTOR(nsHtml5StackNode);
}

mozilla::dom::HTMLContentCreatorFunction nsHtml5StackNode::getHtmlCreator() {
  return htmlCreator;
}

void nsHtml5StackNode::setValues(
    int32_t flags, int32_t ns, nsAtom* name, nsIContentHandle* node,
    nsAtom* popName, nsHtml5HtmlAttributes* attributes,
    mozilla::dom::HTMLContentCreatorFunction htmlCreator) {
  MOZ_ASSERT(isUnused());
  this->flags = flags;
  this->name = name;
  this->popName = popName;
  this->ns = ns;
  this->node = node;
  this->attributes = attributes;
  this->refcount = 1;
  this->htmlCreator = htmlCreator;
}

void nsHtml5StackNode::setValues(nsHtml5ElementName* elementName,
                                 nsIContentHandle* node) {
  MOZ_ASSERT(isUnused());
  this->flags = elementName->getFlags();
  this->name = elementName->getName();
  this->popName = elementName->getName();
  this->ns = kNameSpaceID_XHTML;
  this->node = node;
  this->attributes = nullptr;
  this->refcount = 1;
  MOZ_ASSERT(elementName->isInterned(),
             "Don't use this constructor for custom elements.");
  this->htmlCreator = nullptr;
}

void nsHtml5StackNode::setValues(nsHtml5ElementName* elementName,
                                 nsIContentHandle* node,
                                 nsHtml5HtmlAttributes* attributes) {
  MOZ_ASSERT(isUnused());
  this->flags = elementName->getFlags();
  this->name = elementName->getName();
  this->popName = elementName->getName();
  this->ns = kNameSpaceID_XHTML;
  this->node = node;
  this->attributes = attributes;
  this->refcount = 1;
  MOZ_ASSERT(elementName->isInterned(),
             "Don't use this constructor for custom elements.");
  this->htmlCreator = elementName->getHtmlCreator();
}

void nsHtml5StackNode::setValues(nsHtml5ElementName* elementName,
                                 nsIContentHandle* node, nsAtom* popName) {
  MOZ_ASSERT(isUnused());
  this->flags = elementName->getFlags();
  this->name = elementName->getName();
  this->popName = popName;
  this->ns = kNameSpaceID_XHTML;
  this->node = node;
  this->attributes = nullptr;
  this->refcount = 1;
  this->htmlCreator = nullptr;
}

void nsHtml5StackNode::setValues(nsHtml5ElementName* elementName,
                                 nsAtom* popName, nsIContentHandle* node) {
  MOZ_ASSERT(isUnused());
  this->flags = prepareSvgFlags(elementName->getFlags());
  this->name = elementName->getName();
  this->popName = popName;
  this->ns = kNameSpaceID_SVG;
  this->node = node;
  this->attributes = nullptr;
  this->refcount = 1;
  this->htmlCreator = nullptr;
}

void nsHtml5StackNode::setValues(nsHtml5ElementName* elementName,
                                 nsIContentHandle* node, nsAtom* popName,
                                 bool markAsIntegrationPoint) {
  MOZ_ASSERT(isUnused());
  this->flags =
      prepareMathFlags(elementName->getFlags(), markAsIntegrationPoint);
  this->name = elementName->getName();
  this->popName = popName;
  this->ns = kNameSpaceID_MathML;
  this->node = node;
  this->attributes = nullptr;
  this->refcount = 1;
  this->htmlCreator = nullptr;
}

int32_t nsHtml5StackNode::prepareSvgFlags(int32_t flags) {
  flags &=
      ~(nsHtml5ElementName::FOSTER_PARENTING | nsHtml5ElementName::SCOPING |
        nsHtml5ElementName::SPECIAL | nsHtml5ElementName::OPTIONAL_END_TAG);
  if ((flags & nsHtml5ElementName::SCOPING_AS_SVG)) {
    flags |= (nsHtml5ElementName::SCOPING | nsHtml5ElementName::SPECIAL |
              nsHtml5ElementName::HTML_INTEGRATION_POINT);
  }
  return flags;
}

int32_t nsHtml5StackNode::prepareMathFlags(int32_t flags,
                                           bool markAsIntegrationPoint) {
  flags &=
      ~(nsHtml5ElementName::FOSTER_PARENTING | nsHtml5ElementName::SCOPING |
        nsHtml5ElementName::SPECIAL | nsHtml5ElementName::OPTIONAL_END_TAG);
  if ((flags & nsHtml5ElementName::SCOPING_AS_MATHML)) {
    flags |= (nsHtml5ElementName::SCOPING | nsHtml5ElementName::SPECIAL);
  }
  if (markAsIntegrationPoint) {
    flags |= nsHtml5ElementName::HTML_INTEGRATION_POINT;
  }
  return flags;
}

nsHtml5StackNode::~nsHtml5StackNode() { MOZ_COUNT_DTOR(nsHtml5StackNode); }

void nsHtml5StackNode::dropAttributes() { attributes = nullptr; }

void nsHtml5StackNode::retain() { refcount++; }

void nsHtml5StackNode::release(nsHtml5TreeBuilder* owningTreeBuilder) {
  refcount--;
  MOZ_ASSERT(refcount >= 0);
  if (!refcount) {
    delete attributes;
    if (idxInTreeBuilder >= 0) {
      owningTreeBuilder->notifyUnusedStackNode(idxInTreeBuilder);
    } else {
      MOZ_ASSERT(!owningTreeBuilder);
      delete this;
    }
  }
}

bool nsHtml5StackNode::isUnused() { return !refcount; }

void nsHtml5StackNode::initializeStatics() {}

void nsHtml5StackNode::releaseStatics() {}