Line data Source code
1 : /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 : /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 : /* This Source Code Form is subject to the terms of the Mozilla Public
4 : * License, v. 2.0. If a copy of the MPL was not distributed with this
5 : * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 :
7 : /*
8 : * Implementation of DOM Core's nsIDOMAttr node.
9 : */
10 :
11 : #include "mozilla/dom/Attr.h"
12 : #include "mozilla/dom/AttrBinding.h"
13 : #include "mozilla/dom/Element.h"
14 : #include "mozilla/EventDispatcher.h"
15 : #include "mozilla/InternalMutationEvent.h"
16 : #include "nsContentCreatorFunctions.h"
17 : #include "nsError.h"
18 : #include "nsUnicharUtils.h"
19 : #include "nsDOMString.h"
20 : #include "nsIContentInlines.h"
21 : #include "nsIDocument.h"
22 : #include "nsGkAtoms.h"
23 : #include "nsCOMArray.h"
24 : #include "nsNameSpaceManager.h"
25 : #include "nsNodeUtils.h"
26 : #include "nsTextNode.h"
27 : #include "mozAutoDocUpdate.h"
28 : #include "nsWrapperCacheInlines.h"
29 :
30 0 : nsIAttribute::nsIAttribute(nsDOMAttributeMap* aAttrMap,
31 0 : already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
32 0 : : nsINode(aNodeInfo), mAttrMap(aAttrMap)
33 : {
34 0 : }
35 :
36 0 : nsIAttribute::~nsIAttribute()
37 : {
38 0 : }
39 :
40 : namespace mozilla {
41 : namespace dom {
42 :
43 : //----------------------------------------------------------------------
44 : bool Attr::sInitialized;
45 :
46 0 : Attr::Attr(nsDOMAttributeMap *aAttrMap,
47 : already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo,
48 0 : const nsAString &aValue)
49 0 : : nsIAttribute(aAttrMap, aNodeInfo), mValue(aValue)
50 : {
51 0 : MOZ_ASSERT(mNodeInfo, "We must get a nodeinfo here!");
52 0 : MOZ_ASSERT(mNodeInfo->NodeType() == nsIDOMNode::ATTRIBUTE_NODE,
53 : "Wrong nodeType");
54 :
55 : // We don't add a reference to our content. It will tell us
56 : // to drop our reference when it goes away.
57 0 : }
58 :
59 : NS_IMPL_CYCLE_COLLECTION_CLASS(Attr)
60 :
61 0 : NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(Attr)
62 0 : if (!nsINode::Traverse(tmp, cb)) {
63 0 : return NS_SUCCESS_INTERRUPTED_TRAVERSE;
64 : }
65 0 : NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mAttrMap)
66 0 : NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
67 :
68 0 : NS_IMPL_CYCLE_COLLECTION_TRACE_WRAPPERCACHE(Attr)
69 :
70 0 : NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(Attr)
71 0 : nsINode::Unlink(tmp);
72 0 : NS_IMPL_CYCLE_COLLECTION_UNLINK(mAttrMap)
73 0 : NS_IMPL_CYCLE_COLLECTION_UNLINK_END
74 :
75 0 : NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_BEGIN(Attr)
76 0 : Element* ownerElement = tmp->GetElement();
77 0 : if (tmp->HasKnownLiveWrapper()) {
78 0 : if (ownerElement) {
79 : // The attribute owns the element via attribute map so we can
80 : // mark it when the attribute is certainly alive.
81 0 : mozilla::dom::FragmentOrElement::MarkNodeChildren(ownerElement);
82 : }
83 0 : return true;
84 : }
85 0 : if (ownerElement &&
86 0 : mozilla::dom::FragmentOrElement::CanSkip(ownerElement, true)) {
87 0 : return true;
88 : }
89 0 : NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_END
90 :
91 0 : NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_IN_CC_BEGIN(Attr)
92 0 : return tmp->HasKnownLiveWrapperAndDoesNotNeedTracing(static_cast<nsIAttribute*>(tmp));
93 : NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_IN_CC_END
94 :
95 0 : NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_THIS_BEGIN(Attr)
96 0 : return tmp->HasKnownLiveWrapper();
97 : NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_THIS_END
98 :
99 : // QueryInterface implementation for Attr
100 0 : NS_INTERFACE_TABLE_HEAD(Attr)
101 0 : NS_WRAPPERCACHE_INTERFACE_TABLE_ENTRY
102 0 : NS_INTERFACE_TABLE(Attr, nsINode, nsIDOMAttr, nsIAttribute, nsIDOMNode,
103 : nsIDOMEventTarget, EventTarget)
104 0 : NS_INTERFACE_TABLE_TO_MAP_SEGUE_CYCLE_COLLECTION(Attr)
105 0 : NS_INTERFACE_MAP_ENTRY_TEAROFF(nsISupportsWeakReference,
106 : new nsNodeSupportsWeakRefTearoff(this))
107 0 : NS_INTERFACE_MAP_END
108 :
109 0 : NS_IMPL_CYCLE_COLLECTING_ADDREF(Attr)
110 0 : NS_IMPL_CYCLE_COLLECTING_RELEASE_WITH_LAST_RELEASE(Attr,
111 : nsNodeUtils::LastRelease(this))
112 :
113 : void
114 0 : Attr::SetMap(nsDOMAttributeMap *aMap)
115 : {
116 0 : if (mAttrMap && !aMap && sInitialized) {
117 : // We're breaking a relationship with content and not getting a new one,
118 : // need to locally cache value. GetValue() does that.
119 0 : GetValue(mValue);
120 : }
121 :
122 0 : mAttrMap = aMap;
123 0 : }
124 :
125 : Element*
126 0 : Attr::GetElement() const
127 : {
128 0 : if (!mAttrMap) {
129 0 : return nullptr;
130 : }
131 0 : nsIContent* content = mAttrMap->GetContent();
132 0 : return content ? content->AsElement() : nullptr;
133 : }
134 :
135 : nsresult
136 0 : Attr::SetOwnerDocument(nsIDocument* aDocument)
137 : {
138 0 : NS_ASSERTION(aDocument, "Missing document");
139 :
140 0 : nsIDocument *doc = OwnerDoc();
141 0 : NS_ASSERTION(doc != aDocument, "bad call to Attr::SetOwnerDocument");
142 0 : doc->DeleteAllPropertiesFor(this);
143 :
144 0 : RefPtr<mozilla::dom::NodeInfo> newNodeInfo;
145 : newNodeInfo = aDocument->NodeInfoManager()->
146 0 : GetNodeInfo(mNodeInfo->NameAtom(), mNodeInfo->GetPrefixAtom(),
147 : mNodeInfo->NamespaceID(),
148 0 : nsIDOMNode::ATTRIBUTE_NODE);
149 0 : NS_ASSERTION(newNodeInfo, "GetNodeInfo lies");
150 0 : mNodeInfo.swap(newNodeInfo);
151 :
152 0 : return NS_OK;
153 : }
154 :
155 : NS_IMETHODIMP
156 0 : Attr::GetName(nsAString& aName)
157 : {
158 0 : aName = NodeName();
159 0 : return NS_OK;
160 : }
161 :
162 : NS_IMETHODIMP
163 0 : Attr::GetValue(nsAString& aValue)
164 : {
165 0 : Element* element = GetElement();
166 0 : if (element) {
167 0 : nsCOMPtr<nsIAtom> nameAtom = mNodeInfo->NameAtom();
168 0 : element->GetAttr(mNodeInfo->NamespaceID(), nameAtom, aValue);
169 : }
170 : else {
171 0 : aValue = mValue;
172 : }
173 :
174 0 : return NS_OK;
175 : }
176 :
177 : void
178 0 : Attr::SetValue(const nsAString& aValue, ErrorResult& aRv)
179 : {
180 0 : Element* element = GetElement();
181 0 : if (!element) {
182 0 : mValue = aValue;
183 0 : return;
184 : }
185 :
186 0 : nsCOMPtr<nsIAtom> nameAtom = mNodeInfo->NameAtom();
187 0 : aRv = element->SetAttr(mNodeInfo->NamespaceID(),
188 : nameAtom,
189 : mNodeInfo->GetPrefixAtom(),
190 : aValue,
191 0 : true);
192 : }
193 :
194 : NS_IMETHODIMP
195 0 : Attr::SetValue(const nsAString& aValue)
196 : {
197 0 : ErrorResult rv;
198 0 : SetValue(aValue, rv);
199 0 : return rv.StealNSResult();
200 : }
201 :
202 : bool
203 0 : Attr::Specified() const
204 : {
205 0 : return true;
206 : }
207 :
208 : NS_IMETHODIMP
209 0 : Attr::GetSpecified(bool* aSpecified)
210 : {
211 0 : NS_ENSURE_ARG_POINTER(aSpecified);
212 0 : *aSpecified = Specified();
213 0 : return NS_OK;
214 : }
215 :
216 : Element*
217 0 : Attr::GetOwnerElement(ErrorResult& aRv)
218 : {
219 0 : return GetElement();
220 : }
221 :
222 : NS_IMETHODIMP
223 0 : Attr::GetOwnerElement(nsIDOMElement** aOwnerElement)
224 : {
225 0 : NS_ENSURE_ARG_POINTER(aOwnerElement);
226 :
227 0 : Element* element = GetElement();
228 0 : if (element) {
229 0 : return CallQueryInterface(element, aOwnerElement);
230 : }
231 :
232 0 : *aOwnerElement = nullptr;
233 :
234 0 : return NS_OK;
235 : }
236 :
237 : void
238 0 : Attr::GetNodeValueInternal(nsAString& aNodeValue)
239 : {
240 0 : OwnerDoc()->WarnOnceAbout(nsIDocument::eNodeValue);
241 :
242 0 : GetValue(aNodeValue);
243 0 : }
244 :
245 : void
246 0 : Attr::SetNodeValueInternal(const nsAString& aNodeValue, ErrorResult& aError)
247 : {
248 0 : OwnerDoc()->WarnOnceAbout(nsIDocument::eNodeValue);
249 :
250 0 : aError = SetValue(aNodeValue);
251 0 : }
252 :
253 : nsresult
254 0 : Attr::Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
255 : bool aPreallocateChildren) const
256 : {
257 0 : nsAutoString value;
258 0 : const_cast<Attr*>(this)->GetValue(value);
259 :
260 0 : RefPtr<mozilla::dom::NodeInfo> ni = aNodeInfo;
261 0 : *aResult = new Attr(nullptr, ni.forget(), value);
262 0 : if (!*aResult) {
263 0 : return NS_ERROR_OUT_OF_MEMORY;
264 : }
265 :
266 0 : NS_ADDREF(*aResult);
267 :
268 0 : return NS_OK;
269 : }
270 :
271 : already_AddRefed<nsIURI>
272 0 : Attr::GetBaseURI(bool aTryUseXHRDocBaseURI) const
273 : {
274 0 : Element* parent = GetElement();
275 :
276 0 : return parent ? parent->GetBaseURI(aTryUseXHRDocBaseURI) : nullptr;
277 : }
278 :
279 : void
280 0 : Attr::GetTextContentInternal(nsAString& aTextContent,
281 : OOMReporter& aError)
282 : {
283 0 : OwnerDoc()->WarnOnceAbout(nsIDocument::eTextContent);
284 :
285 0 : GetValue(aTextContent);
286 0 : }
287 :
288 : void
289 0 : Attr::SetTextContentInternal(const nsAString& aTextContent,
290 : ErrorResult& aError)
291 : {
292 0 : OwnerDoc()->WarnOnceAbout(nsIDocument::eTextContent);
293 :
294 0 : SetNodeValueInternal(aTextContent, aError);
295 0 : }
296 :
297 : NS_IMETHODIMP
298 0 : Attr::GetIsId(bool* aReturn)
299 : {
300 0 : *aReturn = mNodeInfo->Equals(nsGkAtoms::id, kNameSpaceID_None);
301 0 : return NS_OK;
302 : }
303 :
304 : bool
305 0 : Attr::IsNodeOfType(uint32_t aFlags) const
306 : {
307 0 : return !(aFlags & ~eATTRIBUTE);
308 : }
309 :
310 : uint32_t
311 0 : Attr::GetChildCount() const
312 : {
313 0 : return 0;
314 : }
315 :
316 : nsIContent *
317 0 : Attr::GetChildAt(uint32_t aIndex) const
318 : {
319 0 : return nullptr;
320 : }
321 :
322 : nsIContent * const *
323 0 : Attr::GetChildArray(uint32_t* aChildCount) const
324 : {
325 0 : *aChildCount = 0;
326 0 : return nullptr;
327 : }
328 :
329 : int32_t
330 0 : Attr::IndexOf(const nsINode* aPossibleChild) const
331 : {
332 0 : return -1;
333 : }
334 :
335 : nsresult
336 0 : Attr::InsertChildAt(nsIContent* aKid, uint32_t aIndex,
337 : bool aNotify)
338 : {
339 0 : return NS_ERROR_NOT_IMPLEMENTED;
340 : }
341 :
342 : void
343 0 : Attr::RemoveChildAt(uint32_t aIndex, bool aNotify)
344 : {
345 0 : }
346 :
347 : nsresult
348 0 : Attr::GetEventTargetParent(EventChainPreVisitor& aVisitor)
349 : {
350 0 : aVisitor.mCanHandle = true;
351 0 : return NS_OK;
352 : }
353 :
354 : void
355 3 : Attr::Initialize()
356 : {
357 3 : sInitialized = true;
358 3 : }
359 :
360 : void
361 0 : Attr::Shutdown()
362 : {
363 0 : sInitialized = false;
364 0 : }
365 :
366 : JSObject*
367 0 : Attr::WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
368 : {
369 0 : return AttrBinding::Wrap(aCx, this, aGivenProto);
370 : }
371 :
372 : } // namespace dom
373 : } // namespace mozilla
|