2 * Copyright 2008 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
32 #include "mshtml_private.h"
33 #include "htmlevent.h"
35 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
46 #define IE_MAJOR_VERSION 7
47 #define IE_MINOR_VERSION 0
49 static BOOL
handle_insert_comment(HTMLDocumentNode
*doc
, const PRUnichar
*comment
)
52 int majorv
= 0, minorv
= 0;
53 const PRUnichar
*ptr
, *end
;
66 static const PRUnichar endifW
[] = {'<','!','[','e','n','d','i','f',']'};
68 if(comment
[0] != '[' || comment
[1] != 'i' || comment
[2] != 'f')
75 if(ptr
[0] == 'l' && ptr
[1] == 't') {
83 }else if(ptr
[0] == 'g' && ptr
[1] == 't') {
98 if(ptr
[0] != 'I' || ptr
[1] != 'E')
102 if(!isspaceW(*ptr
++))
104 while(isspaceW(*ptr
))
109 while(isdigitW(*ptr
))
110 majorv
= majorv
*10 + (*ptr
++ - '0');
116 while(isdigitW(*ptr
))
117 minorv
= minorv
*10 + (*ptr
++ - '0');
120 while(isspaceW(*ptr
))
122 if(ptr
[0] != ']' || ptr
[1] != '>')
127 if(len
< sizeof(endifW
)/sizeof(WCHAR
))
130 end
= ptr
+ len
-sizeof(endifW
)/sizeof(WCHAR
);
131 if(memcmp(end
, endifW
, sizeof(endifW
)))
136 if(majorv
== IE_MAJOR_VERSION
&& minorv
== IE_MINOR_VERSION
)
140 if(majorv
> IE_MAJOR_VERSION
)
142 if(majorv
== IE_MAJOR_VERSION
&& minorv
> IE_MINOR_VERSION
)
146 if(majorv
> IE_MAJOR_VERSION
)
148 if(majorv
== IE_MAJOR_VERSION
&& minorv
>= IE_MINOR_VERSION
)
152 if(majorv
< IE_MAJOR_VERSION
)
154 if(majorv
== IE_MAJOR_VERSION
&& minorv
< IE_MINOR_VERSION
)
158 if(majorv
< IE_MAJOR_VERSION
)
160 if(majorv
== IE_MAJOR_VERSION
&& minorv
<= IE_MINOR_VERSION
)
165 buf
= heap_alloc((end
-ptr
+1)*sizeof(WCHAR
));
169 memcpy(buf
, ptr
, (end
-ptr
)*sizeof(WCHAR
));
171 nsAString_InitDepend(&nsstr
, buf
);
173 /* FIXME: Find better way to insert HTML to document. */
174 nsres
= nsIDOMHTMLDocument_Write(doc
->nsdoc
, &nsstr
);
175 nsAString_Finish(&nsstr
);
177 if(NS_FAILED(nsres
)) {
178 ERR("Write failed: %08x\n", nsres
);
185 static void add_script_runner(HTMLDocumentNode
*This
)
187 nsIDOMNSDocument
*nsdoc
;
190 nsres
= nsIDOMHTMLDocument_QueryInterface(This
->nsdoc
, &IID_nsIDOMNSDocument
, (void**)&nsdoc
);
191 if(NS_FAILED(nsres
)) {
192 ERR("Could not get nsIDOMNSDocument: %08x\n", nsres
);
196 nsIDOMNSDocument_WineAddScriptRunner(nsdoc
, NSRUNNABLE(This
));
197 nsIDOMNSDocument_Release(nsdoc
);
200 #define NSRUNNABLE_THIS(iface) DEFINE_THIS(HTMLDocumentNode, IRunnable, iface)
202 static nsresult NSAPI
nsRunnable_QueryInterface(nsIRunnable
*iface
,
203 nsIIDRef riid
, nsQIResult result
)
205 HTMLDocumentNode
*This
= NSRUNNABLE_THIS(iface
);
207 if(IsEqualGUID(riid
, &IID_nsISupports
)) {
208 TRACE("(%p)->(IID_nsISupports %p)\n", This
, result
);
209 *result
= NSRUNNABLE(This
);
210 }else if(IsEqualGUID(riid
, &IID_nsIRunnable
)) {
211 TRACE("(%p)->(IID_nsIRunnable %p)\n", This
, result
);
212 *result
= NSRUNNABLE(This
);
215 WARN("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), result
);
216 return NS_NOINTERFACE
;
219 nsISupports_AddRef((nsISupports
*)*result
);
223 static nsrefcnt NSAPI
nsRunnable_AddRef(nsIRunnable
*iface
)
225 HTMLDocumentNode
*This
= NSRUNNABLE_THIS(iface
);
226 return htmldoc_addref(&This
->basedoc
);
229 static nsrefcnt NSAPI
nsRunnable_Release(nsIRunnable
*iface
)
231 HTMLDocumentNode
*This
= NSRUNNABLE_THIS(iface
);
232 return htmldoc_release(&This
->basedoc
);
235 static void push_mutation_queue(HTMLDocumentNode
*doc
, DWORD type
, nsISupports
*nsiface
)
237 mutation_queue_t
*elem
;
239 elem
= heap_alloc(sizeof(mutation_queue_t
));
245 elem
->nsiface
= nsiface
;
247 nsISupports_AddRef(nsiface
);
249 if(doc
->mutation_queue_tail
) {
250 doc
->mutation_queue_tail
= doc
->mutation_queue_tail
->next
= elem
;
252 doc
->mutation_queue
= doc
->mutation_queue_tail
= elem
;
253 add_script_runner(doc
);
257 static void pop_mutation_queue(HTMLDocumentNode
*doc
)
259 mutation_queue_t
*tmp
= doc
->mutation_queue
;
264 doc
->mutation_queue
= tmp
->next
;
266 doc
->mutation_queue_tail
= NULL
;
269 nsISupports_Release(tmp
->nsiface
);
273 static void bind_to_tree(HTMLDocumentNode
*doc
, nsISupports
*nsiface
)
279 nsres
= nsISupports_QueryInterface(nsiface
, &IID_nsIDOMNode
, (void**)&nsnode
);
283 node
= get_node(doc
, nsnode
, TRUE
);
284 nsIDOMNode_Release(nsnode
);
286 ERR("Could not get node\n");
290 if(node
->vtbl
->bind_to_tree
)
291 node
->vtbl
->bind_to_tree(node
);
294 /* Calls undocumented 69 cmd of CGID_Explorer */
295 static void call_explorer_69(HTMLDocumentObj
*doc
)
297 IOleCommandTarget
*olecmd
;
304 hres
= IOleClientSite_QueryInterface(doc
->client
, &IID_IOleCommandTarget
, (void**)&olecmd
);
309 hres
= IOleCommandTarget_Exec(olecmd
, &CGID_Explorer
, 69, 0, NULL
, &var
);
310 IOleCommandTarget_Release(olecmd
);
311 if(SUCCEEDED(hres
) && V_VT(&var
) != VT_NULL
)
312 FIXME("handle result\n");
315 static void parse_complete_proc(task_t
*task
)
317 HTMLDocumentObj
*doc
= ((docobj_task_t
*)task
)->doc
;
319 TRACE("(%p)\n", doc
);
321 if(doc
->usermode
== EDITMODE
)
322 init_editor(&doc
->basedoc
);
324 call_explorer_69(doc
);
326 IAdviseSink_OnViewChange(doc
->view_sink
, DVASPECT_CONTENT
, -1);
327 call_property_onchanged(&doc
->basedoc
.cp_propnotif
, 1005);
328 call_explorer_69(doc
);
330 /* FIXME: IE7 calls EnableModelless(TRUE), EnableModelless(FALSE) and sets interactive state here */
332 set_ready_state(doc
->basedoc
.window
, READYSTATE_INTERACTIVE
);
335 static void handle_end_load(HTMLDocumentNode
*This
)
341 if(This
!= This
->basedoc
.doc_obj
->basedoc
.doc_node
) {
342 set_ready_state(This
->basedoc
.window
, READYSTATE_INTERACTIVE
);
346 task
= heap_alloc(sizeof(docobj_task_t
));
350 task
->doc
= This
->basedoc
.doc_obj
;
353 * This should be done in the worker thread that parses HTML,
354 * but we don't have such thread (Gecko parses HTML for us).
356 push_task(&task
->header
, &parse_complete_proc
, This
->basedoc
.doc_obj
->basedoc
.task_magic
);
359 static nsresult NSAPI
nsRunnable_Run(nsIRunnable
*iface
)
361 HTMLDocumentNode
*This
= NSRUNNABLE_THIS(iface
);
364 TRACE("(%p)\n", This
);
366 while(This
->mutation_queue
) {
367 switch(This
->mutation_queue
->type
) {
368 case MUTATION_BINDTOTREE
:
369 bind_to_tree(This
, This
->mutation_queue
->nsiface
);
372 case MUTATION_COMMENT
: {
373 nsIDOMComment
*nscomment
;
374 nsAString comment_str
;
375 BOOL remove_comment
= FALSE
;
377 nsres
= nsISupports_QueryInterface(This
->mutation_queue
->nsiface
, &IID_nsIDOMComment
, (void**)&nscomment
);
378 if(NS_FAILED(nsres
)) {
379 ERR("Could not get nsIDOMComment iface:%08x\n", nsres
);
383 nsAString_Init(&comment_str
, NULL
);
384 nsres
= nsIDOMComment_GetData(nscomment
, &comment_str
);
385 if(NS_SUCCEEDED(nsres
)) {
386 const PRUnichar
*comment
;
388 nsAString_GetData(&comment_str
, &comment
);
389 remove_comment
= handle_insert_comment(This
, comment
);
392 nsAString_Finish(&comment_str
);
395 nsIDOMNode
*nsparent
, *tmp
;
398 static const PRUnichar remove_comment_magicW
[] =
399 {'#','!','w','i','n','e', 'r','e','m','o','v','e','!','#',0};
401 nsAString_InitDepend(&magic_str
, remove_comment_magicW
);
402 nsres
= nsIDOMComment_SetData(nscomment
, &magic_str
);
403 nsAString_Finish(&magic_str
);
405 ERR("SetData failed: %08x\n", nsres
);
407 nsIDOMComment_GetParentNode(nscomment
, &nsparent
);
409 nsIDOMNode_RemoveChild(nsparent
, (nsIDOMNode
*)nscomment
, &tmp
);
410 nsIDOMNode_Release(nsparent
);
411 nsIDOMNode_Release(tmp
);
415 nsIDOMComment_Release(nscomment
);
419 case MUTATION_ENDLOAD
:
420 handle_end_load(This
);
423 case MUTATION_SCRIPT
: {
424 nsIDOMHTMLScriptElement
*nsscript
;
426 nsres
= nsISupports_QueryInterface(This
->mutation_queue
->nsiface
, &IID_nsIDOMHTMLScriptElement
,
428 if(NS_FAILED(nsres
)) {
429 ERR("Could not get nsIDOMHTMLScriptElement: %08x\n", nsres
);
433 doc_insert_script(This
->basedoc
.window
, nsscript
);
434 nsIDOMHTMLScriptElement_Release(nsscript
);
439 ERR("invalid type %d\n", This
->mutation_queue
->type
);
442 pop_mutation_queue(This
);
448 #undef NSRUNNABLE_THIS
450 static const nsIRunnableVtbl nsRunnableVtbl
= {
451 nsRunnable_QueryInterface
,
457 #define NSDOCOBS_THIS(iface) DEFINE_THIS(HTMLDocumentNode, IDocumentObserver, iface)
459 static nsresult NSAPI
nsDocumentObserver_QueryInterface(nsIDocumentObserver
*iface
,
460 nsIIDRef riid
, nsQIResult result
)
462 HTMLDocumentNode
*This
= NSDOCOBS_THIS(iface
);
464 if(IsEqualGUID(&IID_nsISupports
, riid
)) {
465 TRACE("(%p)->(IID_nsISupports, %p)\n", This
, result
);
466 *result
= NSDOCOBS(This
);
467 }else if(IsEqualGUID(&IID_nsIMutationObserver
, riid
)) {
468 TRACE("(%p)->(IID_nsIMutationObserver %p)\n", This
, result
);
469 *result
= NSDOCOBS(This
);
470 }else if(IsEqualGUID(&IID_nsIDocumentObserver
, riid
)) {
471 TRACE("(%p)->(IID_nsIDocumentObserver %p)\n", This
, result
);
472 *result
= NSDOCOBS(This
);
475 TRACE("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), result
);
476 return NS_NOINTERFACE
;
479 htmldoc_addref(&This
->basedoc
);
483 static nsrefcnt NSAPI
nsDocumentObserver_AddRef(nsIDocumentObserver
*iface
)
485 HTMLDocumentNode
*This
= NSDOCOBS_THIS(iface
);
486 return htmldoc_addref(&This
->basedoc
);
489 static nsrefcnt NSAPI
nsDocumentObserver_Release(nsIDocumentObserver
*iface
)
491 HTMLDocumentNode
*This
= NSDOCOBS_THIS(iface
);
492 return htmldoc_release(&This
->basedoc
);
495 static void NSAPI
nsDocumentObserver_CharacterDataWillChange(nsIDocumentObserver
*iface
,
496 nsIDocument
*aDocument
, nsIContent
*aContent
, void /*CharacterDataChangeInfo*/ *aInfo
)
500 static void NSAPI
nsDocumentObserver_CharacterDataChanged(nsIDocumentObserver
*iface
,
501 nsIDocument
*aDocument
, nsIContent
*aContent
, void /*CharacterDataChangeInfo*/ *aInfo
)
505 static void NSAPI
nsDocumentObserver_AttributeWillChange(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
506 nsIContent
*aContent
, PRInt32 aNameSpaceID
, nsIAtom
*aAttribute
, PRInt32 aModType
)
510 static void NSAPI
nsDocumentObserver_AttributeChanged(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
511 nsIContent
*aContent
, PRInt32 aNameSpaceID
, nsIAtom
*aAttribute
, PRInt32 aModType
, PRUint32 aStateMask
)
515 static void NSAPI
nsDocumentObserver_ContentAppended(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
516 nsIContent
*aContainer
, PRInt32 aNewIndexInContainer
)
520 static void NSAPI
nsDocumentObserver_ContentInserted(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
521 nsIContent
*aContainer
, nsIContent
*aChild
, PRInt32 aIndexInContainer
)
525 static void NSAPI
nsDocumentObserver_ContentRemoved(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
526 nsIContent
*aContainer
, nsIContent
*aChild
, PRInt32 aIndexInContainer
)
530 static void NSAPI
nsDocumentObserver_NodeWillBeDestroyed(nsIDocumentObserver
*iface
, const nsINode
*aNode
)
534 static void NSAPI
nsDocumentObserver_ParentChainChanged(nsIDocumentObserver
*iface
, nsIContent
*aContent
)
538 static void NSAPI
nsDocumentObserver_BeginUpdate(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
539 nsUpdateType aUpdateType
)
543 static void NSAPI
nsDocumentObserver_EndUpdate(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
544 nsUpdateType aUpdateType
)
548 static void NSAPI
nsDocumentObserver_BeginLoad(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
)
552 static void NSAPI
nsDocumentObserver_EndLoad(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
)
554 HTMLDocumentNode
*This
= NSDOCOBS_THIS(iface
);
558 This
->content_ready
= TRUE
;
559 push_mutation_queue(This
, MUTATION_ENDLOAD
, NULL
);
562 static void NSAPI
nsDocumentObserver_ContentStatesChanged(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
563 nsIContent
*aContent1
, nsIContent
*aContent2
, PRInt32 aStateMask
)
567 static void NSAPI
nsDocumentObserver_StyleSheetAdded(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
568 nsIStyleSheet
*aStyleSheet
, PRBool aDocumentSheet
)
572 static void NSAPI
nsDocumentObserver_StyleSheetRemoved(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
573 nsIStyleSheet
*aStyleSheet
, PRBool aDocumentSheet
)
577 static void NSAPI
nsDocumentObserver_StyleSheetApplicableStateChanged(nsIDocumentObserver
*iface
,
578 nsIDocument
*aDocument
, nsIStyleSheet
*aStyleSheet
, PRBool aApplicable
)
582 static void NSAPI
nsDocumentObserver_StyleRuleChanged(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
583 nsIStyleSheet
*aStyleSheet
, nsIStyleRule
*aOldStyleRule
, nsIStyleSheet
*aNewStyleRule
)
587 static void NSAPI
nsDocumentObserver_StyleRuleAdded(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
588 nsIStyleSheet
*aStyleSheet
, nsIStyleRule
*aStyleRule
)
592 static void NSAPI
nsDocumentObserver_StyleRuleRemoved(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
593 nsIStyleSheet
*aStyleSheet
, nsIStyleRule
*aStyleRule
)
597 static void NSAPI
nsDocumentObserver_BindToDocument(nsIDocumentObserver
*iface
, nsIDocument
*aDocument
,
598 nsIContent
*aContent
)
600 HTMLDocumentNode
*This
= NSDOCOBS_THIS(iface
);
601 nsIDOMHTMLIFrameElement
*nsiframe
;
602 nsIDOMHTMLFrameElement
*nsframe
;
603 nsIDOMComment
*nscomment
;
604 nsIDOMElement
*nselem
;
607 TRACE("(%p)\n", This
);
609 nsres
= nsISupports_QueryInterface(aContent
, &IID_nsIDOMElement
, (void**)&nselem
);
610 if(NS_SUCCEEDED(nsres
)) {
611 check_event_attr(This
, nselem
);
612 nsIDOMElement_Release(nselem
);
615 nsres
= nsISupports_QueryInterface(aContent
, &IID_nsIDOMComment
, (void**)&nscomment
);
616 if(NS_SUCCEEDED(nsres
)) {
617 TRACE("comment node\n");
619 push_mutation_queue(This
, MUTATION_COMMENT
, (nsISupports
*)nscomment
);
620 nsIDOMComment_Release(nscomment
);
623 nsres
= nsISupports_QueryInterface(aContent
, &IID_nsIDOMHTMLIFrameElement
, (void**)&nsiframe
);
624 if(NS_SUCCEEDED(nsres
)) {
625 TRACE("iframe node\n");
627 push_mutation_queue(This
, MUTATION_BINDTOTREE
, (nsISupports
*)nsiframe
);
628 nsIDOMHTMLIFrameElement_Release(nsiframe
);
631 nsres
= nsISupports_QueryInterface(aContent
, &IID_nsIDOMHTMLFrameElement
, (void**)&nsframe
);
632 if(NS_SUCCEEDED(nsres
)) {
633 TRACE("frame node\n");
635 push_mutation_queue(This
, MUTATION_BINDTOTREE
, (nsISupports
*)nsframe
);
636 nsIDOMHTMLFrameElement_Release(nsframe
);
640 static void NSAPI
nsDocumentObserver_DoneAddingChildren(nsIDocumentObserver
*iface
, nsIContent
*aContent
,
641 PRBool aHaveNotified
)
643 HTMLDocumentNode
*This
= NSDOCOBS_THIS(iface
);
644 nsIDOMHTMLScriptElement
*nsscript
;
647 TRACE("(%p)->(%p %x)\n", This
, aContent
, aHaveNotified
);
649 nsres
= nsISupports_QueryInterface(aContent
, &IID_nsIDOMHTMLScriptElement
, (void**)&nsscript
);
650 if(NS_SUCCEEDED(nsres
)) {
651 TRACE("script node\n");
653 push_mutation_queue(This
, MUTATION_SCRIPT
, (nsISupports
*)nsscript
);
654 nsIDOMHTMLScriptElement_Release(nsscript
);
658 #undef NSMUTATIONOBS_THIS
660 static const nsIDocumentObserverVtbl nsDocumentObserverVtbl
= {
661 nsDocumentObserver_QueryInterface
,
662 nsDocumentObserver_AddRef
,
663 nsDocumentObserver_Release
,
664 nsDocumentObserver_CharacterDataWillChange
,
665 nsDocumentObserver_CharacterDataChanged
,
666 nsDocumentObserver_AttributeWillChange
,
667 nsDocumentObserver_AttributeChanged
,
668 nsDocumentObserver_ContentAppended
,
669 nsDocumentObserver_ContentInserted
,
670 nsDocumentObserver_ContentRemoved
,
671 nsDocumentObserver_NodeWillBeDestroyed
,
672 nsDocumentObserver_ParentChainChanged
,
673 nsDocumentObserver_BeginUpdate
,
674 nsDocumentObserver_EndUpdate
,
675 nsDocumentObserver_BeginLoad
,
676 nsDocumentObserver_EndLoad
,
677 nsDocumentObserver_ContentStatesChanged
,
678 nsDocumentObserver_StyleSheetAdded
,
679 nsDocumentObserver_StyleSheetRemoved
,
680 nsDocumentObserver_StyleSheetApplicableStateChanged
,
681 nsDocumentObserver_StyleRuleChanged
,
682 nsDocumentObserver_StyleRuleAdded
,
683 nsDocumentObserver_StyleRuleRemoved
,
684 nsDocumentObserver_BindToDocument
,
685 nsDocumentObserver_DoneAddingChildren
688 void init_mutation(HTMLDocumentNode
*doc
)
690 nsIDOMNSDocument
*nsdoc
;
693 doc
->lpIDocumentObserverVtbl
= &nsDocumentObserverVtbl
;
694 doc
->lpIRunnableVtbl
= &nsRunnableVtbl
;
696 nsres
= nsIDOMHTMLDocument_QueryInterface(doc
->nsdoc
, &IID_nsIDOMNSDocument
, (void**)&nsdoc
);
697 if(NS_FAILED(nsres
)) {
698 ERR("Could not get nsIDOMNSDocument: %08x\n", nsres
);
702 nsIDOMNSDocument_WineAddObserver(nsdoc
, NSDOCOBS(doc
));
703 nsIDOMNSDocument_Release(nsdoc
);
706 void release_mutation(HTMLDocumentNode
*doc
)
708 nsIDOMNSDocument
*nsdoc
;
711 nsres
= nsIDOMHTMLDocument_QueryInterface(doc
->nsdoc
, &IID_nsIDOMNSDocument
, (void**)&nsdoc
);
712 if(NS_FAILED(nsres
)) {
713 ERR("Could not get nsIDOMNSDocument: %08x\n", nsres
);
717 nsIDOMNSDocument_WineRemoveObserver(nsdoc
, NSDOCOBS(doc
));
718 nsIDOMNSDocument_Release(nsdoc
);