1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHtmlParser class (generic parser)
4 // Author: Vaclav Slavik
6 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "htmlpars.h"
15 #include "wx/wxprec.h"
18 #if wxUSE_HTML && wxUSE_STREAMS
29 #include "wx/tokenzr.h"
30 #include "wx/wfstream.h"
32 #include "wx/fontmap.h"
33 #include "wx/html/htmldefs.h"
34 #include "wx/html/htmlpars.h"
35 #include "wx/dynarray.h"
36 #include "wx/arrimpl.cpp"
39 // DLL options compatibility check:
41 WX_CHECK_BUILD_OPTIONS("wxHTML")
42 //static wxBuildOptionsChecker gs_optionsChecker;
44 //-----------------------------------------------------------------------------
45 // wxHtmlParser helpers
46 //-----------------------------------------------------------------------------
51 wxHtmlTextPiece(int pos
, int lng
) : m_pos(pos
), m_lng(lng
) {}
55 WX_DECLARE_OBJARRAY(wxHtmlTextPiece
, wxHtmlTextPieces
);
56 WX_DEFINE_OBJARRAY(wxHtmlTextPieces
);
58 class wxHtmlParserState
63 wxHtmlTextPieces
*m_textPieces
;
66 wxHtmlParserState
*m_nextState
;
69 //-----------------------------------------------------------------------------
71 //-----------------------------------------------------------------------------
73 IMPLEMENT_ABSTRACT_CLASS(wxHtmlParser
,wxObject
)
75 wxHtmlParser::wxHtmlParser()
76 : wxObject(), m_HandlersHash(wxKEY_STRING
),
77 m_FS(NULL
), m_HandlersStack(NULL
)
79 m_entitiesParser
= new wxHtmlEntitiesParser
;
87 wxHtmlParser::~wxHtmlParser()
89 while (RestoreState()) {}
94 wxList
& tmp
= *m_HandlersStack
;
95 wxList::iterator it
, en
;
96 for( it
= tmp
.begin(), en
= tmp
.end(); it
!= en
; ++it
)
97 delete (wxHashTable
*)*it
;
100 delete m_HandlersStack
;
101 m_HandlersHash
.Clear();
102 WX_CLEAR_LIST(wxList
, m_HandlersList
);
103 delete m_entitiesParser
;
106 wxObject
* wxHtmlParser::Parse(const wxString
& source
)
110 wxObject
*result
= GetProduct();
115 void wxHtmlParser::InitParser(const wxString
& source
)
118 m_stopParsing
= FALSE
;
121 void wxHtmlParser::DoneParser()
126 void wxHtmlParser::SetSource(const wxString
& src
)
135 void wxHtmlParser::CreateDOMTree()
137 wxHtmlTagsCache
cache(m_Source
);
138 m_TextPieces
= new wxHtmlTextPieces
;
139 CreateDOMSubTree(NULL
, 0, m_Source
.Length(), &cache
);
143 extern bool wxIsCDATAElement(const wxChar
*tag
);
145 void wxHtmlParser::CreateDOMSubTree(wxHtmlTag
*cur
,
146 int begin_pos
, int end_pos
,
147 wxHtmlTagsCache
*cache
)
149 if (end_pos
<= begin_pos
) return;
153 int textBeginning
= begin_pos
;
155 // If the tag contains CDATA text, we include the text between beginning
156 // and ending tag verbosely. Setting i=end_pos will skip to the very
157 // end of this function where text piece is added, bypassing any child
158 // tags parsing (CDATA element can't have child elements by definition):
159 if (cur
!= NULL
&& wxIsCDATAElement(cur
->GetName().c_str()))
166 c
= m_Source
.GetChar(i
);
170 // add text to m_TextPieces:
171 if (i
- textBeginning
> 0)
173 wxHtmlTextPiece(textBeginning
, i
- textBeginning
));
175 // if it is a comment, skip it:
176 if (i
< end_pos
-6 && m_Source
.GetChar(i
+1) == wxT('!') &&
177 m_Source
.GetChar(i
+2) == wxT('-') &&
178 m_Source
.GetChar(i
+3) == wxT('-'))
180 // Comments begin with "<!--" and end with "--[ \t\r\n]*>"
181 // according to HTML 4.0
186 c
= m_Source
.GetChar(i
++);
187 if ((c
== wxT(' ') || c
== wxT('\n') ||
188 c
== wxT('\r') || c
== wxT('\t')) && dashes
>= 2) {}
189 else if (c
== wxT('>') && dashes
>= 2)
194 else if (c
== wxT('-'))
201 // add another tag to the tree:
202 else if (i
< end_pos
-1 && m_Source
.GetChar(i
+1) != wxT('/'))
206 chd
= new wxHtmlTag(cur
, m_Source
,
207 i
, end_pos
, cache
, m_entitiesParser
);
210 chd
= new wxHtmlTag(NULL
, m_Source
,
211 i
, end_pos
, cache
, m_entitiesParser
);
214 // if this is the first tag to be created make the root
215 // m_Tags point to it:
220 // if there is already a root tag add this tag as
222 chd
->m_Prev
= m_Tags
->GetLastSibling();
223 chd
->m_Prev
->m_Next
= chd
;
227 if (chd
->HasEnding())
229 CreateDOMSubTree(chd
,
230 chd
->GetBeginPos(), chd
->GetEndPos1(),
232 i
= chd
->GetEndPos2();
235 i
= chd
->GetBeginPos();
240 // ... or skip ending tag:
243 while (i
< end_pos
&& m_Source
.GetChar(i
) != wxT('>')) i
++;
250 // add remaining text to m_TextPieces:
251 if (end_pos
- textBeginning
> 0)
253 wxHtmlTextPiece(textBeginning
, end_pos
- textBeginning
));
256 void wxHtmlParser::DestroyDOMTree()
262 t2
= t1
->GetNextSibling();
266 m_Tags
= m_CurTag
= NULL
;
272 void wxHtmlParser::DoParsing()
276 DoParsing(0, m_Source
.Length());
279 void wxHtmlParser::DoParsing(int begin_pos
, int end_pos
)
281 if (end_pos
<= begin_pos
) return;
283 wxHtmlTextPieces
& pieces
= *m_TextPieces
;
284 size_t piecesCnt
= pieces
.GetCount();
286 while (begin_pos
< end_pos
)
288 while (m_CurTag
&& m_CurTag
->GetBeginPos() < begin_pos
)
289 m_CurTag
= m_CurTag
->GetNextTag();
290 while (m_CurTextPiece
< piecesCnt
&&
291 pieces
[m_CurTextPiece
].m_pos
< begin_pos
)
294 if (m_CurTextPiece
< piecesCnt
&&
296 pieces
[m_CurTextPiece
].m_pos
< m_CurTag
->GetBeginPos()))
299 AddText(GetEntitiesParser()->Parse(
300 m_Source
.Mid(pieces
[m_CurTextPiece
].m_pos
,
301 pieces
[m_CurTextPiece
].m_lng
)));
302 begin_pos
= pieces
[m_CurTextPiece
].m_pos
+
303 pieces
[m_CurTextPiece
].m_lng
;
311 if (m_CurTag
->HasEnding())
312 begin_pos
= m_CurTag
->GetEndPos2();
314 begin_pos
= m_CurTag
->GetBeginPos();
316 wxHtmlTag
*t
= m_CurTag
;
317 m_CurTag
= m_CurTag
->GetNextTag();
326 void wxHtmlParser::AddTag(const wxHtmlTag
& tag
)
331 h
= (wxHtmlTagHandler
*) m_HandlersHash
.Get(tag
.GetName());
334 inner
= h
->HandleTag(tag
);
341 DoParsing(tag
.GetBeginPos(), tag
.GetEndPos1());
345 void wxHtmlParser::AddTagHandler(wxHtmlTagHandler
*handler
)
347 wxString
s(handler
->GetSupportedTags());
348 wxStringTokenizer
tokenizer(s
, wxT(", "));
350 while (tokenizer
.HasMoreTokens())
351 m_HandlersHash
.Put(tokenizer
.GetNextToken(), handler
);
353 if (m_HandlersList
.IndexOf(handler
) == wxNOT_FOUND
)
354 m_HandlersList
.Append(handler
);
356 handler
->SetParser(this);
359 void wxHtmlParser::PushTagHandler(wxHtmlTagHandler
*handler
, wxString tags
)
361 wxStringTokenizer
tokenizer(tags
, wxT(", "));
364 if (m_HandlersStack
== NULL
)
366 m_HandlersStack
= new wxList
;
369 m_HandlersStack
->Insert((wxObject
*)new wxHashTable(m_HandlersHash
));
371 while (tokenizer
.HasMoreTokens())
373 key
= tokenizer
.GetNextToken();
374 m_HandlersHash
.Delete(key
);
375 m_HandlersHash
.Put(key
, handler
);
379 void wxHtmlParser::PopTagHandler()
381 wxList::compatibility_iterator first
;
383 if ( !m_HandlersStack
||
385 !(first
= m_HandlersStack
->GetFirst())
387 ((first
= m_HandlersStack
->GetFirst()) == NULL
)
388 #endif // wxUSE_STL/!wxUSE_STL
391 wxLogWarning(_("Warning: attempt to remove HTML tag handler from empty stack."));
394 m_HandlersHash
= *((wxHashTable
*) first
->GetData());
395 delete (wxHashTable
*) first
->GetData();
396 m_HandlersStack
->Erase(first
);
399 void wxHtmlParser::SetSourceAndSaveState(const wxString
& src
)
401 wxHtmlParserState
*s
= new wxHtmlParserState
;
403 s
->m_curTag
= m_CurTag
;
405 s
->m_textPieces
= m_TextPieces
;
406 s
->m_curTextPiece
= m_CurTextPiece
;
407 s
->m_source
= m_Source
;
409 s
->m_nextState
= m_SavedStates
;
416 m_Source
= wxEmptyString
;
421 bool wxHtmlParser::RestoreState()
423 if (!m_SavedStates
) return FALSE
;
427 wxHtmlParserState
*s
= m_SavedStates
;
428 m_SavedStates
= s
->m_nextState
;
430 m_CurTag
= s
->m_curTag
;
432 m_TextPieces
= s
->m_textPieces
;
433 m_CurTextPiece
= s
->m_curTextPiece
;
434 m_Source
= s
->m_source
;
440 //-----------------------------------------------------------------------------
442 //-----------------------------------------------------------------------------
444 IMPLEMENT_ABSTRACT_CLASS(wxHtmlTagHandler
,wxObject
)
447 //-----------------------------------------------------------------------------
448 // wxHtmlEntitiesParser
449 //-----------------------------------------------------------------------------
451 IMPLEMENT_DYNAMIC_CLASS(wxHtmlEntitiesParser
,wxObject
)
453 wxHtmlEntitiesParser::wxHtmlEntitiesParser()
454 #if wxUSE_WCHAR_T && !wxUSE_UNICODE
455 : m_conv(NULL
), m_encoding(wxFONTENCODING_SYSTEM
)
460 wxHtmlEntitiesParser::~wxHtmlEntitiesParser()
462 #if wxUSE_WCHAR_T && !wxUSE_UNICODE
467 void wxHtmlEntitiesParser::SetEncoding(wxFontEncoding encoding
)
469 #if wxUSE_WCHAR_T && !wxUSE_UNICODE
470 if (encoding
== m_encoding
)
475 m_encoding
= encoding
;
476 if (m_encoding
== wxFONTENCODING_SYSTEM
)
479 m_conv
= new wxCSConv(wxFontMapper::GetEncodingName(m_encoding
));
485 wxString
wxHtmlEntitiesParser::Parse(const wxString
& input
)
487 const wxChar
*c
, *last
;
488 const wxChar
*in_str
= input
.c_str();
491 output
.reserve(input
.length());
493 for (c
= in_str
, last
= in_str
; *c
!= wxT('\0'); c
++)
498 output
.append(last
, c
- last
);
499 if (++c
== wxT('\0')) break;
502 const wxChar
*ent_s
= c
;
505 for (; (*c
>= wxT('a') && *c
<= wxT('z')) ||
506 (*c
>= wxT('A') && *c
<= wxT('Z')) ||
507 (*c
>= wxT('0') && *c
<= wxT('9')) ||
508 *c
== wxT('_') || *c
== wxT('#'); c
++) {}
509 entity
.append(ent_s
, c
- ent_s
);
510 if (*c
!= wxT(';')) c
--;
512 entity_char
= GetEntityChar(entity
);
514 output
<< entity_char
;
517 output
.append(ent_s
-1, c
-ent_s
+2);
518 wxLogDebug(wxT("Unrecognized HTML entity: '%s'"), entity
.c_str());
522 if (*last
!= wxT('\0'))
527 struct wxHtmlEntityInfo
533 extern "C" int LINKAGEMODE
wxHtmlEntityCompare(const void *key
, const void *item
)
535 return wxStrcmp((wxChar
*)key
, ((wxHtmlEntityInfo
*)item
)->name
);
539 wxChar
wxHtmlEntitiesParser::GetCharForCode(unsigned code
)
544 wbuf
[0] = (wchar_t)code
;
546 wxMBConv
*conv
= m_conv
? m_conv
: &wxConvLocal
;
547 if (conv
->WC2MB(buf
, wbuf
, 2) == (size_t)-1)
551 return (code
< 256) ? (wxChar
)code
: '?';
556 wxChar
wxHtmlEntitiesParser::GetEntityChar(const wxString
& entity
)
560 if (entity
[0] == wxT('#'))
562 const wxChar
*ent_s
= entity
.c_str();
563 const wxChar
*format
;
565 if (ent_s
[1] == wxT('x') || ent_s
[1] == wxT('X'))
574 if (wxSscanf(ent_s
, format
, &code
) != 1)
579 static wxHtmlEntityInfo substitutions
[] = {
580 { wxT("AElig"),198 },
581 { wxT("Aacute"),193 },
582 { wxT("Acirc"),194 },
583 { wxT("Agrave"),192 },
584 { wxT("Alpha"),913 },
585 { wxT("Aring"),197 },
586 { wxT("Atilde"),195 },
589 { wxT("Ccedil"),199 },
591 { wxT("Dagger"),8225 },
592 { wxT("Delta"),916 },
594 { wxT("Eacute"),201 },
595 { wxT("Ecirc"),202 },
596 { wxT("Egrave"),200 },
597 { wxT("Epsilon"),917 },
600 { wxT("Gamma"),915 },
601 { wxT("Iacute"),205 },
602 { wxT("Icirc"),206 },
603 { wxT("Igrave"),204 },
606 { wxT("Kappa"),922 },
607 { wxT("Lambda"),923 },
609 { wxT("Ntilde"),209 },
611 { wxT("OElig"),338 },
612 { wxT("Oacute"),211 },
613 { wxT("Ocirc"),212 },
614 { wxT("Ograve"),210 },
615 { wxT("Omega"),937 },
616 { wxT("Omicron"),927 },
617 { wxT("Oslash"),216 },
618 { wxT("Otilde"),213 },
622 { wxT("Prime"),8243 },
625 { wxT("Scaron"),352 },
626 { wxT("Sigma"),931 },
627 { wxT("THORN"),222 },
629 { wxT("Theta"),920 },
630 { wxT("Uacute"),218 },
631 { wxT("Ucirc"),219 },
632 { wxT("Ugrave"),217 },
633 { wxT("Upsilon"),933 },
636 { wxT("Yacute"),221 },
639 { wxT("aacute"),225 },
640 { wxT("acirc"),226 },
641 { wxT("acute"),180 },
642 { wxT("aelig"),230 },
643 { wxT("agrave"),224 },
644 { wxT("alefsym"),8501 },
645 { wxT("alpha"),945 },
649 { wxT("aring"),229 },
650 { wxT("asymp"),8776 },
651 { wxT("atilde"),227 },
653 { wxT("bdquo"),8222 },
655 { wxT("brvbar"),166 },
656 { wxT("bull"),8226 },
658 { wxT("ccedil"),231 },
659 { wxT("cedil"),184 },
663 { wxT("clubs"),9827 },
664 { wxT("cong"),8773 },
666 { wxT("crarr"),8629 },
668 { wxT("curren"),164 },
669 { wxT("dArr"),8659 },
670 { wxT("dagger"),8224 },
671 { wxT("darr"),8595 },
673 { wxT("delta"),948 },
674 { wxT("diams"),9830 },
675 { wxT("divide"),247 },
676 { wxT("eacute"),233 },
677 { wxT("ecirc"),234 },
678 { wxT("egrave"),232 },
679 { wxT("empty"),8709 },
680 { wxT("emsp"),8195 },
681 { wxT("ensp"),8194 },
682 { wxT("epsilon"),949 },
683 { wxT("equiv"),8801 },
687 { wxT("euro"),8364 },
688 { wxT("exist"),8707 },
690 { wxT("forall"),8704 },
691 { wxT("frac12"),189 },
692 { wxT("frac14"),188 },
693 { wxT("frac34"),190 },
694 { wxT("frasl"),8260 },
695 { wxT("gamma"),947 },
698 { wxT("hArr"),8660 },
699 { wxT("harr"),8596 },
700 { wxT("hearts"),9829 },
701 { wxT("hellip"),8230 },
702 { wxT("iacute"),237 },
703 { wxT("icirc"),238 },
704 { wxT("iexcl"),161 },
705 { wxT("igrave"),236 },
706 { wxT("image"),8465 },
707 { wxT("infin"),8734 },
710 { wxT("iquest"),191 },
711 { wxT("isin"),8712 },
713 { wxT("kappa"),954 },
714 { wxT("lArr"),8656 },
715 { wxT("lambda"),955 },
716 { wxT("lang"),9001 },
717 { wxT("laquo"),171 },
718 { wxT("larr"),8592 },
719 { wxT("lceil"),8968 },
720 { wxT("ldquo"),8220 },
722 { wxT("lfloor"),8970 },
723 { wxT("lowast"),8727 },
726 { wxT("lsaquo"),8249 },
727 { wxT("lsquo"),8216 },
730 { wxT("mdash"),8212 },
731 { wxT("micro"),181 },
732 { wxT("middot"),183 },
733 { wxT("minus"),8722 },
735 { wxT("nabla"),8711 },
737 { wxT("ndash"),8211 },
741 { wxT("notin"),8713 },
742 { wxT("nsub"),8836 },
743 { wxT("ntilde"),241 },
745 { wxT("oacute"),243 },
746 { wxT("ocirc"),244 },
747 { wxT("oelig"),339 },
748 { wxT("ograve"),242 },
749 { wxT("oline"),8254 },
750 { wxT("omega"),969 },
751 { wxT("omicron"),959 },
752 { wxT("oplus"),8853 },
756 { wxT("oslash"),248 },
757 { wxT("otilde"),245 },
758 { wxT("otimes"),8855 },
761 { wxT("part"),8706 },
762 { wxT("permil"),8240 },
763 { wxT("perp"),8869 },
767 { wxT("plusmn"),177 },
768 { wxT("pound"),163 },
769 { wxT("prime"),8242 },
770 { wxT("prod"),8719 },
771 { wxT("prop"),8733 },
774 { wxT("rArr"),8658 },
775 { wxT("radic"),8730 },
776 { wxT("rang"),9002 },
777 { wxT("raquo"),187 },
778 { wxT("rarr"),8594 },
779 { wxT("rceil"),8969 },
780 { wxT("rdquo"),8221 },
781 { wxT("real"),8476 },
783 { wxT("rfloor"),8971 },
786 { wxT("rsaquo"),8250 },
787 { wxT("rsquo"),8217 },
788 { wxT("sbquo"),8218 },
789 { wxT("scaron"),353 },
790 { wxT("sdot"),8901 },
793 { wxT("sigma"),963 },
794 { wxT("sigmaf"),962 },
796 { wxT("spades"),9824 },
798 { wxT("sube"),8838 },
804 { wxT("supe"),8839 },
805 { wxT("szlig"),223 },
807 { wxT("there4"),8756 },
808 { wxT("theta"),952 },
809 { wxT("thetasym"),977 },
810 { wxT("thinsp"),8201 },
811 { wxT("thorn"),254 },
812 { wxT("tilde"),732 },
813 { wxT("times"),215 },
814 { wxT("trade"),8482 },
815 { wxT("uArr"),8657 },
816 { wxT("uacute"),250 },
817 { wxT("uarr"),8593 },
818 { wxT("ucirc"),251 },
819 { wxT("ugrave"),249 },
821 { wxT("upsih"),978 },
822 { wxT("upsilon"),965 },
824 { wxT("weierp"),8472 },
826 { wxT("yacute"),253 },
831 { wxT("zwnj"),8204 },
833 static size_t substitutions_cnt
= 0;
835 if (substitutions_cnt
== 0)
836 while (substitutions
[substitutions_cnt
].code
!= 0)
839 wxHtmlEntityInfo
*info
;
840 info
= (wxHtmlEntityInfo
*) bsearch(entity
.c_str(), substitutions
,
842 sizeof(wxHtmlEntityInfo
),
843 wxHtmlEntityCompare
);
851 return GetCharForCode(code
);
854 wxFSFile
*wxHtmlParser::OpenURL(wxHtmlURLType
WXUNUSED(type
),
855 const wxString
& url
) const
857 return GetFS()->OpenFile(url
);
861 //-----------------------------------------------------------------------------
862 // wxHtmlParser::ExtractCharsetInformation
863 //-----------------------------------------------------------------------------
865 class wxMetaTagParser
: public wxHtmlParser
868 wxMetaTagParser() { }
870 wxObject
* GetProduct() { return NULL
; }
873 virtual void AddText(const wxChar
* WXUNUSED(txt
)) {}
875 DECLARE_NO_COPY_CLASS(wxMetaTagParser
)
878 class wxMetaTagHandler
: public wxHtmlTagHandler
881 wxMetaTagHandler(wxString
*retval
) : wxHtmlTagHandler(), m_retval(retval
) {}
882 wxString
GetSupportedTags() { return wxT("META,BODY"); }
883 bool HandleTag(const wxHtmlTag
& tag
);
888 DECLARE_NO_COPY_CLASS(wxMetaTagHandler
)
891 bool wxMetaTagHandler::HandleTag(const wxHtmlTag
& tag
)
893 if (tag
.GetName() == _T("BODY"))
895 m_Parser
->StopParsing();
899 if (tag
.HasParam(_T("HTTP-EQUIV")) &&
900 tag
.GetParam(_T("HTTP-EQUIV")).IsSameAs(_T("Content-Type"), false) &&
901 tag
.HasParam(_T("CONTENT")))
903 wxString content
= tag
.GetParam(_T("CONTENT"));
904 if (content
.Left(19) == _T("text/html; charset="))
906 *m_retval
= content
.Mid(19);
907 m_Parser
->StopParsing();
915 wxString
wxHtmlParser::ExtractCharsetInformation(const wxString
& markup
)
918 wxMetaTagParser parser
;
919 parser
.AddTagHandler(new wxMetaTagHandler(&charset
));
920 parser
.Parse(markup
);