]> git.saurik.com Git - wxWidgets.git/blame - src/html/htmlpars.cpp
missing const added (patch 1295036)
[wxWidgets.git] / src / html / htmlpars.cpp
CommitLineData
5526e819 1/////////////////////////////////////////////////////////////////////////////
69941f05 2// Name: htmlpars.cpp
5526e819
VS
3// Purpose: wxHtmlParser class (generic parser)
4// Author: Vaclav Slavik
69941f05 5// RCS-ID: $Id$
5526e819 6// Copyright: (c) 1999 Vaclav Slavik
65571936 7// Licence: wxWindows licence
5526e819
VS
8/////////////////////////////////////////////////////////////////////////////
9
3096bd2f 10#include "wx/wxprec.h"
5526e819
VS
11
12#include "wx/defs.h"
f6bcfd97 13#if wxUSE_HTML && wxUSE_STREAMS
5526e819 14
2b5f62a0 15#ifdef __BORLANDC__
5526e819
VS
16#pragma hdrstop
17#endif
18
19#ifndef WXPRECOMP
04dbb646
VZ
20 #include "wx/log.h"
21 #include "wx/intl.h"
5526e819
VS
22#endif
23
69941f05
VS
24#include "wx/tokenzr.h"
25#include "wx/wfstream.h"
26#include "wx/url.h"
daa616fc 27#include "wx/fontmap.h"
69941f05
VS
28#include "wx/html/htmldefs.h"
29#include "wx/html/htmlpars.h"
211dfedd
VS
30#include "wx/dynarray.h"
31#include "wx/arrimpl.cpp"
5526e819 32
7127d129
RR
33#ifdef __WXWINCE__
34 #include "wx/msw/wince/missing.h" // for bsearch()
35#endif
34fdf762
VS
36
37// DLL options compatibility check:
38#include "wx/app.h"
39WX_CHECK_BUILD_OPTIONS("wxHTML")
34fdf762 40
25271309
VZ
41const wxChar *wxTRACE_HTML_DEBUG = _T("htmldebug");
42
211dfedd
VS
43//-----------------------------------------------------------------------------
44// wxHtmlParser helpers
45//-----------------------------------------------------------------------------
46
47class wxHtmlTextPiece
48{
49public:
50 wxHtmlTextPiece(int pos, int lng) : m_pos(pos), m_lng(lng) {}
51 int m_pos, m_lng;
52};
53
54WX_DECLARE_OBJARRAY(wxHtmlTextPiece, wxHtmlTextPieces);
55WX_DEFINE_OBJARRAY(wxHtmlTextPieces);
5526e819 56
481c879b 57class wxHtmlParserState
211dfedd 58{
481c879b 59public:
211dfedd
VS
60 wxHtmlTag *m_curTag;
61 wxHtmlTag *m_tags;
62 wxHtmlTextPieces *m_textPieces;
63 int m_curTextPiece;
64 wxString m_source;
65 wxHtmlParserState *m_nextState;
66};
5526e819
VS
67
68//-----------------------------------------------------------------------------
69// wxHtmlParser
70//-----------------------------------------------------------------------------
71
72IMPLEMENT_ABSTRACT_CLASS(wxHtmlParser,wxObject)
73
04dbb646 74wxHtmlParser::wxHtmlParser()
211dfedd 75 : wxObject(), m_HandlersHash(wxKEY_STRING),
daa616fc
VS
76 m_FS(NULL), m_HandlersStack(NULL)
77{
78 m_entitiesParser = new wxHtmlEntitiesParser;
211dfedd
VS
79 m_Tags = NULL;
80 m_CurTag = NULL;
81 m_TextPieces = NULL;
82 m_CurTextPiece = 0;
83 m_SavedStates = NULL;
daa616fc
VS
84}
85
86wxHtmlParser::~wxHtmlParser()
87{
0beefa20
VS
88 while (RestoreState()) {}
89 DestroyDOMTree();
222ed1d6
MB
90
91 if (m_HandlersStack)
92 {
93 wxList& tmp = *m_HandlersStack;
94 wxList::iterator it, en;
95 for( it = tmp.begin(), en = tmp.end(); it != en; ++it )
96 delete (wxHashTable*)*it;
97 tmp.clear();
98 }
daa616fc
VS
99 delete m_HandlersStack;
100 m_HandlersHash.Clear();
222ed1d6 101 WX_CLEAR_LIST(wxList, m_HandlersList);
daa616fc
VS
102 delete m_entitiesParser;
103}
5526e819
VS
104
105wxObject* wxHtmlParser::Parse(const wxString& source)
106{
5526e819
VS
107 InitParser(source);
108 DoParsing();
2b5f62a0 109 wxObject *result = GetProduct();
5526e819
VS
110 DoneParser();
111 return result;
112}
113
5526e819
VS
114void wxHtmlParser::InitParser(const wxString& source)
115{
1309ba6c 116 SetSource(source);
d1da8872 117 m_stopParsing = false;
5526e819 118}
1309ba6c 119
5526e819
VS
120void wxHtmlParser::DoneParser()
121{
211dfedd 122 DestroyDOMTree();
5526e819
VS
123}
124
1309ba6c
VS
125void wxHtmlParser::SetSource(const wxString& src)
126{
211dfedd 127 DestroyDOMTree();
1309ba6c 128 m_Source = src;
211dfedd
VS
129 CreateDOMTree();
130 m_CurTag = NULL;
131 m_CurTextPiece = 0;
1309ba6c 132}
5526e819 133
211dfedd 134void wxHtmlParser::CreateDOMTree()
5526e819 135{
211dfedd
VS
136 wxHtmlTagsCache cache(m_Source);
137 m_TextPieces = new wxHtmlTextPieces;
138 CreateDOMSubTree(NULL, 0, m_Source.Length(), &cache);
139 m_CurTextPiece = 0;
140}
5526e819 141
7c6cd4a8
VS
142extern bool wxIsCDATAElement(const wxChar *tag);
143
211dfedd
VS
144void wxHtmlParser::CreateDOMSubTree(wxHtmlTag *cur,
145 int begin_pos, int end_pos,
146 wxHtmlTagsCache *cache)
147{
148 if (end_pos <= begin_pos) return;
5526e819 149
211dfedd
VS
150 wxChar c;
151 int i = begin_pos;
152 int textBeginning = begin_pos;
d699f48b 153
7c6cd4a8
VS
154 // If the tag contains CDATA text, we include the text between beginning
155 // and ending tag verbosely. Setting i=end_pos will skip to the very
156 // end of this function where text piece is added, bypassing any child
157 // tags parsing (CDATA element can't have child elements by definition):
158 if (cur != NULL && wxIsCDATAElement(cur->GetName().c_str()))
159 {
160 i = end_pos;
161 }
162
04dbb646 163 while (i < end_pos)
4f9297b0 164 {
211dfedd 165 c = m_Source.GetChar(i);
5526e819 166
211dfedd
VS
167 if (c == wxT('<'))
168 {
169 // add text to m_TextPieces:
170 if (i - textBeginning > 0)
171 m_TextPieces->Add(
172 wxHtmlTextPiece(textBeginning, i - textBeginning));
173
174 // if it is a comment, skip it:
175 if (i < end_pos-6 && m_Source.GetChar(i+1) == wxT('!') &&
176 m_Source.GetChar(i+2) == wxT('-') &&
177 m_Source.GetChar(i+3) == wxT('-'))
178 {
179 // Comments begin with "<!--" and end with "--[ \t\r\n]*>"
180 // according to HTML 4.0
181 int dashes = 0;
182 i += 4;
183 while (i < end_pos)
184 {
185 c = m_Source.GetChar(i++);
d699f48b 186 if ((c == wxT(' ') || c == wxT('\n') ||
211dfedd
VS
187 c == wxT('\r') || c == wxT('\t')) && dashes >= 2) {}
188 else if (c == wxT('>') && dashes >= 2)
189 {
190 textBeginning = i;
191 break;
192 }
193 else if (c == wxT('-'))
194 dashes++;
d699f48b 195 else
211dfedd
VS
196 dashes = 0;
197 }
198 }
d699f48b 199
211dfedd
VS
200 // add another tag to the tree:
201 else if (i < end_pos-1 && m_Source.GetChar(i+1) != wxT('/'))
d1da8872 202 {
211dfedd 203 wxHtmlTag *chd;
d699f48b
KB
204 if (cur)
205 chd = new wxHtmlTag(cur, m_Source,
211dfedd 206 i, end_pos, cache, m_entitiesParser);
d699f48b 207 else
211dfedd
VS
208 {
209 chd = new wxHtmlTag(NULL, m_Source,
210 i, end_pos, cache, m_entitiesParser);
d699f48b 211 if (!m_Tags)
211dfedd 212 {
d699f48b 213 // if this is the first tag to be created make the root
211dfedd
VS
214 // m_Tags point to it:
215 m_Tags = chd;
216 }
217 else
218 {
d699f48b 219 // if there is already a root tag add this tag as
211dfedd
VS
220 // the last sibling:
221 chd->m_Prev = m_Tags->GetLastSibling();
222 chd->m_Prev->m_Next = chd;
223 }
224 }
225
226 if (chd->HasEnding())
227 {
228 CreateDOMSubTree(chd,
d699f48b 229 chd->GetBeginPos(), chd->GetEndPos1(),
211dfedd
VS
230 cache);
231 i = chd->GetEndPos2();
232 }
233 else
234 i = chd->GetBeginPos();
d1da8872 235
211dfedd
VS
236 textBeginning = i;
237 }
238
239 // ... or skip ending tag:
d699f48b 240 else
211dfedd
VS
241 {
242 while (i < end_pos && m_Source.GetChar(i) != wxT('>')) i++;
243 textBeginning = i+1;
5526e819 244 }
5526e819 245 }
211dfedd 246 else i++;
5526e819
VS
247 }
248
211dfedd
VS
249 // add remaining text to m_TextPieces:
250 if (end_pos - textBeginning > 0)
251 m_TextPieces->Add(
252 wxHtmlTextPiece(textBeginning, end_pos - textBeginning));
253}
254
255void wxHtmlParser::DestroyDOMTree()
256{
257 wxHtmlTag *t1, *t2;
258 t1 = m_Tags;
259 while (t1)
260 {
261 t2 = t1->GetNextSibling();
262 delete t1;
263 t1 = t2;
264 }
265 m_Tags = m_CurTag = NULL;
266
267 delete m_TextPieces;
268 m_TextPieces = NULL;
269}
270
d699f48b 271void wxHtmlParser::DoParsing()
211dfedd
VS
272{
273 m_CurTag = m_Tags;
274 m_CurTextPiece = 0;
d699f48b 275 DoParsing(0, m_Source.Length());
211dfedd
VS
276}
277
278void wxHtmlParser::DoParsing(int begin_pos, int end_pos)
279{
280 if (end_pos <= begin_pos) return;
d699f48b 281
211dfedd
VS
282 wxHtmlTextPieces& pieces = *m_TextPieces;
283 size_t piecesCnt = pieces.GetCount();
d699f48b 284
211dfedd
VS
285 while (begin_pos < end_pos)
286 {
287 while (m_CurTag && m_CurTag->GetBeginPos() < begin_pos)
288 m_CurTag = m_CurTag->GetNextTag();
d699f48b 289 while (m_CurTextPiece < piecesCnt &&
211dfedd
VS
290 pieces[m_CurTextPiece].m_pos < begin_pos)
291 m_CurTextPiece++;
292
d699f48b
KB
293 if (m_CurTextPiece < piecesCnt &&
294 (!m_CurTag ||
211dfedd
VS
295 pieces[m_CurTextPiece].m_pos < m_CurTag->GetBeginPos()))
296 {
297 // Add text:
f23e92e7
VS
298 AddText(GetEntitiesParser()->Parse(
299 m_Source.Mid(pieces[m_CurTextPiece].m_pos,
300 pieces[m_CurTextPiece].m_lng)));
d699f48b 301 begin_pos = pieces[m_CurTextPiece].m_pos +
211dfedd
VS
302 pieces[m_CurTextPiece].m_lng;
303 m_CurTextPiece++;
304 }
305 else if (m_CurTag)
306 {
902725ee
WS
307 if (m_CurTag->HasEnding())
308 begin_pos = m_CurTag->GetEndPos2();
309 else
310 begin_pos = m_CurTag->GetBeginPos();
211dfedd
VS
311 wxHtmlTag *t = m_CurTag;
312 m_CurTag = m_CurTag->GetNextTag();
313 AddTag(*t);
2b5f62a0
VZ
314 if (m_stopParsing)
315 return;
211dfedd
VS
316 }
317 else break;
5526e819
VS
318 }
319}
320
5526e819
VS
321void wxHtmlParser::AddTag(const wxHtmlTag& tag)
322{
323 wxHtmlTagHandler *h;
d1da8872 324 bool inner = false;
5526e819
VS
325
326 h = (wxHtmlTagHandler*) m_HandlersHash.Get(tag.GetName());
327 if (h)
2b5f62a0 328 {
4f9297b0 329 inner = h->HandleTag(tag);
2b5f62a0
VZ
330 if (m_stopParsing)
331 return;
332 }
04dbb646 333 if (!inner)
4f9297b0 334 {
5526e819
VS
335 if (tag.HasEnding())
336 DoParsing(tag.GetBeginPos(), tag.GetEndPos1());
337 }
338}
339
5526e819
VS
340void wxHtmlParser::AddTagHandler(wxHtmlTagHandler *handler)
341{
4f9297b0 342 wxString s(handler->GetSupportedTags());
211dfedd 343 wxStringTokenizer tokenizer(s, wxT(", "));
5526e819 344
5526e819 345 while (tokenizer.HasMoreTokens())
470252df 346 m_HandlersHash.Put(tokenizer.GetNextToken(), handler);
5526e819
VS
347
348 if (m_HandlersList.IndexOf(handler) == wxNOT_FOUND)
349 m_HandlersList.Append(handler);
350
4f9297b0 351 handler->SetParser(this);
5526e819
VS
352}
353
a7a4d01b
VS
354void wxHtmlParser::PushTagHandler(wxHtmlTagHandler *handler, wxString tags)
355{
211dfedd 356 wxStringTokenizer tokenizer(tags, wxT(", "));
a7a4d01b
VS
357 wxString key;
358
04dbb646 359 if (m_HandlersStack == NULL)
4f9297b0 360 {
a7a4d01b 361 m_HandlersStack = new wxList;
a7a4d01b
VS
362 }
363
222ed1d6 364 m_HandlersStack->Insert((wxObject*)new wxHashTable(m_HandlersHash));
a7a4d01b 365
04dbb646 366 while (tokenizer.HasMoreTokens())
4f9297b0 367 {
470252df 368 key = tokenizer.GetNextToken();
a7a4d01b
VS
369 m_HandlersHash.Delete(key);
370 m_HandlersHash.Put(key, handler);
371 }
372}
373
a7a4d01b
VS
374void wxHtmlParser::PopTagHandler()
375{
222ed1d6 376 wxList::compatibility_iterator first;
04dbb646 377
dfa4a244 378 if ( !m_HandlersStack ||
28b4db7f
VZ
379#if wxUSE_STL
380 !(first = m_HandlersStack->GetFirst())
381#else // !wxUSE_STL
382 ((first = m_HandlersStack->GetFirst()) == NULL)
383#endif // wxUSE_STL/!wxUSE_STL
384 )
f3c82859
VS
385 {
386 wxLogWarning(_("Warning: attempt to remove HTML tag handler from empty stack."));
387 return;
388 }
4f9297b0 389 m_HandlersHash = *((wxHashTable*) first->GetData());
222ed1d6
MB
390 delete (wxHashTable*) first->GetData();
391 m_HandlersStack->Erase(first);
a7a4d01b
VS
392}
393
211dfedd
VS
394void wxHtmlParser::SetSourceAndSaveState(const wxString& src)
395{
396 wxHtmlParserState *s = new wxHtmlParserState;
397
398 s->m_curTag = m_CurTag;
399 s->m_tags = m_Tags;
400 s->m_textPieces = m_TextPieces;
401 s->m_curTextPiece = m_CurTextPiece;
402 s->m_source = m_Source;
403
404 s->m_nextState = m_SavedStates;
405 m_SavedStates = s;
406
407 m_CurTag = NULL;
408 m_Tags = NULL;
409 m_TextPieces = NULL;
410 m_CurTextPiece = 0;
411 m_Source = wxEmptyString;
d699f48b 412
211dfedd
VS
413 SetSource(src);
414}
415
416bool wxHtmlParser::RestoreState()
417{
d1da8872 418 if (!m_SavedStates) return false;
d699f48b 419
0beefa20
VS
420 DestroyDOMTree();
421
211dfedd
VS
422 wxHtmlParserState *s = m_SavedStates;
423 m_SavedStates = s->m_nextState;
d699f48b 424
211dfedd
VS
425 m_CurTag = s->m_curTag;
426 m_Tags = s->m_tags;
427 m_TextPieces = s->m_textPieces;
428 m_CurTextPiece = s->m_curTextPiece;
429 m_Source = s->m_source;
d699f48b 430
211dfedd 431 delete s;
d1da8872 432 return true;
211dfedd
VS
433}
434
5526e819
VS
435//-----------------------------------------------------------------------------
436// wxHtmlTagHandler
437//-----------------------------------------------------------------------------
438
439IMPLEMENT_ABSTRACT_CLASS(wxHtmlTagHandler,wxObject)
daa616fc
VS
440
441
442//-----------------------------------------------------------------------------
443// wxHtmlEntitiesParser
444//-----------------------------------------------------------------------------
445
446IMPLEMENT_DYNAMIC_CLASS(wxHtmlEntitiesParser,wxObject)
447
448wxHtmlEntitiesParser::wxHtmlEntitiesParser()
449#if wxUSE_WCHAR_T && !wxUSE_UNICODE
450 : m_conv(NULL), m_encoding(wxFONTENCODING_SYSTEM)
223d09f6 451#endif
daa616fc
VS
452{
453}
454
455wxHtmlEntitiesParser::~wxHtmlEntitiesParser()
456{
5438a566 457#if wxUSE_WCHAR_T && !wxUSE_UNICODE
daa616fc 458 delete m_conv;
5438a566 459#endif
daa616fc 460}
5526e819 461
daa616fc
VS
462void wxHtmlEntitiesParser::SetEncoding(wxFontEncoding encoding)
463{
464#if wxUSE_WCHAR_T && !wxUSE_UNICODE
2b5f62a0
VZ
465 if (encoding == m_encoding)
466 return;
467
daa616fc 468 delete m_conv;
2b5f62a0 469
daa616fc 470 m_encoding = encoding;
2b5f62a0
VZ
471 if (m_encoding == wxFONTENCODING_SYSTEM)
472 m_conv = NULL;
473 else
daa616fc 474 m_conv = new wxCSConv(wxFontMapper::GetEncodingName(m_encoding));
d699f48b
KB
475#else
476 (void) encoding;
daa616fc
VS
477#endif
478}
479
480wxString wxHtmlEntitiesParser::Parse(const wxString& input)
481{
482 const wxChar *c, *last;
483 const wxChar *in_str = input.c_str();
484 wxString output;
d1da8872 485
470252df 486 output.reserve(input.length());
04dbb646 487
daa616fc
VS
488 for (c = in_str, last = in_str; *c != wxT('\0'); c++)
489 {
490 if (*c == wxT('&'))
491 {
492 if (c - last > 0)
493 output.append(last, c - last);
494 if (++c == wxT('\0')) break;
d1da8872 495
daa616fc
VS
496 wxString entity;
497 const wxChar *ent_s = c;
470252df 498 wxChar entity_char;
d1da8872 499
daa616fc
VS
500 for (; (*c >= wxT('a') && *c <= wxT('z')) ||
501 (*c >= wxT('A') && *c <= wxT('Z')) ||
502 (*c >= wxT('0') && *c <= wxT('9')) ||
503 *c == wxT('_') || *c == wxT('#'); c++) {}
504 entity.append(ent_s, c - ent_s);
211dfedd
VS
505 if (*c != wxT(';')) c--;
506 last = c+1;
470252df
VS
507 entity_char = GetEntityChar(entity);
508 if (entity_char)
509 output << entity_char;
510 else
511 {
512 output.append(ent_s-1, c-ent_s+2);
25271309
VZ
513 wxLogTrace(wxTRACE_HTML_DEBUG,
514 wxT("Unrecognized HTML entity: '%s'"),
515 entity.c_str());
470252df 516 }
daa616fc
VS
517 }
518 }
519 if (*last != wxT('\0'))
520 output.append(last);
521 return output;
522}
523
524struct wxHtmlEntityInfo
525{
526 const wxChar *name;
527 unsigned code;
528};
529
90350682 530extern "C" int LINKAGEMODE wxHtmlEntityCompare(const void *key, const void *item)
daa616fc
VS
531{
532 return wxStrcmp((wxChar*)key, ((wxHtmlEntityInfo*)item)->name);
533}
534
2b5f62a0 535#if !wxUSE_UNICODE
daa616fc
VS
536wxChar wxHtmlEntitiesParser::GetCharForCode(unsigned code)
537{
2b5f62a0 538#if wxUSE_WCHAR_T
daa616fc
VS
539 char buf[2];
540 wchar_t wbuf[2];
541 wbuf[0] = (wchar_t)code;
542 wbuf[1] = 0;
543 wxMBConv *conv = m_conv ? m_conv : &wxConvLocal;
eaf1a1d9 544 if (conv->WC2MB(buf, wbuf, 2) == (size_t)-1)
daa616fc
VS
545 return '?';
546 return buf[0];
547#else
548 return (code < 256) ? (wxChar)code : '?';
549#endif
550}
2b5f62a0 551#endif
daa616fc
VS
552
553wxChar wxHtmlEntitiesParser::GetEntityChar(const wxString& entity)
554{
555 unsigned code = 0;
04dbb646 556
daa616fc
VS
557 if (entity[0] == wxT('#'))
558 {
559 const wxChar *ent_s = entity.c_str();
560 const wxChar *format;
04dbb646 561
daa616fc
VS
562 if (ent_s[1] == wxT('x') || ent_s[1] == wxT('X'))
563 {
564 format = wxT("%x");
565 ent_s++;
566 }
567 else
568 format = wxT("%u");
569 ent_s++;
570
571 if (wxSscanf(ent_s, format, &code) != 1)
572 code = 0;
573 }
574 else
575 {
576 static wxHtmlEntityInfo substitutions[] = {
577 { wxT("AElig"),198 },
578 { wxT("Aacute"),193 },
579 { wxT("Acirc"),194 },
580 { wxT("Agrave"),192 },
581 { wxT("Alpha"),913 },
582 { wxT("Aring"),197 },
583 { wxT("Atilde"),195 },
584 { wxT("Auml"),196 },
585 { wxT("Beta"),914 },
586 { wxT("Ccedil"),199 },
587 { wxT("Chi"),935 },
588 { wxT("Dagger"),8225 },
589 { wxT("Delta"),916 },
590 { wxT("ETH"),208 },
591 { wxT("Eacute"),201 },
592 { wxT("Ecirc"),202 },
593 { wxT("Egrave"),200 },
594 { wxT("Epsilon"),917 },
595 { wxT("Eta"),919 },
596 { wxT("Euml"),203 },
597 { wxT("Gamma"),915 },
598 { wxT("Iacute"),205 },
599 { wxT("Icirc"),206 },
600 { wxT("Igrave"),204 },
601 { wxT("Iota"),921 },
602 { wxT("Iuml"),207 },
603 { wxT("Kappa"),922 },
604 { wxT("Lambda"),923 },
605 { wxT("Mu"),924 },
606 { wxT("Ntilde"),209 },
607 { wxT("Nu"),925 },
608 { wxT("OElig"),338 },
609 { wxT("Oacute"),211 },
610 { wxT("Ocirc"),212 },
611 { wxT("Ograve"),210 },
612 { wxT("Omega"),937 },
613 { wxT("Omicron"),927 },
614 { wxT("Oslash"),216 },
615 { wxT("Otilde"),213 },
616 { wxT("Ouml"),214 },
617 { wxT("Phi"),934 },
618 { wxT("Pi"),928 },
619 { wxT("Prime"),8243 },
620 { wxT("Psi"),936 },
621 { wxT("Rho"),929 },
622 { wxT("Scaron"),352 },
623 { wxT("Sigma"),931 },
624 { wxT("THORN"),222 },
625 { wxT("Tau"),932 },
626 { wxT("Theta"),920 },
627 { wxT("Uacute"),218 },
628 { wxT("Ucirc"),219 },
629 { wxT("Ugrave"),217 },
630 { wxT("Upsilon"),933 },
631 { wxT("Uuml"),220 },
632 { wxT("Xi"),926 },
633 { wxT("Yacute"),221 },
634 { wxT("Yuml"),376 },
635 { wxT("Zeta"),918 },
636 { wxT("aacute"),225 },
637 { wxT("acirc"),226 },
638 { wxT("acute"),180 },
639 { wxT("aelig"),230 },
640 { wxT("agrave"),224 },
641 { wxT("alefsym"),8501 },
642 { wxT("alpha"),945 },
643 { wxT("amp"),38 },
644 { wxT("and"),8743 },
645 { wxT("ang"),8736 },
646 { wxT("aring"),229 },
647 { wxT("asymp"),8776 },
648 { wxT("atilde"),227 },
649 { wxT("auml"),228 },
650 { wxT("bdquo"),8222 },
651 { wxT("beta"),946 },
652 { wxT("brvbar"),166 },
653 { wxT("bull"),8226 },
654 { wxT("cap"),8745 },
655 { wxT("ccedil"),231 },
656 { wxT("cedil"),184 },
657 { wxT("cent"),162 },
658 { wxT("chi"),967 },
659 { wxT("circ"),710 },
660 { wxT("clubs"),9827 },
661 { wxT("cong"),8773 },
662 { wxT("copy"),169 },
663 { wxT("crarr"),8629 },
664 { wxT("cup"),8746 },
665 { wxT("curren"),164 },
666 { wxT("dArr"),8659 },
667 { wxT("dagger"),8224 },
668 { wxT("darr"),8595 },
669 { wxT("deg"),176 },
670 { wxT("delta"),948 },
671 { wxT("diams"),9830 },
672 { wxT("divide"),247 },
673 { wxT("eacute"),233 },
674 { wxT("ecirc"),234 },
675 { wxT("egrave"),232 },
676 { wxT("empty"),8709 },
677 { wxT("emsp"),8195 },
678 { wxT("ensp"),8194 },
679 { wxT("epsilon"),949 },
680 { wxT("equiv"),8801 },
681 { wxT("eta"),951 },
682 { wxT("eth"),240 },
683 { wxT("euml"),235 },
684 { wxT("euro"),8364 },
685 { wxT("exist"),8707 },
686 { wxT("fnof"),402 },
687 { wxT("forall"),8704 },
688 { wxT("frac12"),189 },
689 { wxT("frac14"),188 },
690 { wxT("frac34"),190 },
691 { wxT("frasl"),8260 },
692 { wxT("gamma"),947 },
693 { wxT("ge"),8805 },
694 { wxT("gt"),62 },
695 { wxT("hArr"),8660 },
696 { wxT("harr"),8596 },
697 { wxT("hearts"),9829 },
698 { wxT("hellip"),8230 },
699 { wxT("iacute"),237 },
700 { wxT("icirc"),238 },
701 { wxT("iexcl"),161 },
702 { wxT("igrave"),236 },
703 { wxT("image"),8465 },
704 { wxT("infin"),8734 },
705 { wxT("int"),8747 },
706 { wxT("iota"),953 },
707 { wxT("iquest"),191 },
708 { wxT("isin"),8712 },
709 { wxT("iuml"),239 },
710 { wxT("kappa"),954 },
711 { wxT("lArr"),8656 },
712 { wxT("lambda"),955 },
713 { wxT("lang"),9001 },
714 { wxT("laquo"),171 },
715 { wxT("larr"),8592 },
716 { wxT("lceil"),8968 },
717 { wxT("ldquo"),8220 },
718 { wxT("le"),8804 },
719 { wxT("lfloor"),8970 },
720 { wxT("lowast"),8727 },
721 { wxT("loz"),9674 },
722 { wxT("lrm"),8206 },
723 { wxT("lsaquo"),8249 },
724 { wxT("lsquo"),8216 },
725 { wxT("lt"),60 },
726 { wxT("macr"),175 },
727 { wxT("mdash"),8212 },
728 { wxT("micro"),181 },
729 { wxT("middot"),183 },
730 { wxT("minus"),8722 },
731 { wxT("mu"),956 },
732 { wxT("nabla"),8711 },
733 { wxT("nbsp"),160 },
734 { wxT("ndash"),8211 },
735 { wxT("ne"),8800 },
736 { wxT("ni"),8715 },
737 { wxT("not"),172 },
738 { wxT("notin"),8713 },
739 { wxT("nsub"),8836 },
740 { wxT("ntilde"),241 },
741 { wxT("nu"),957 },
742 { wxT("oacute"),243 },
743 { wxT("ocirc"),244 },
744 { wxT("oelig"),339 },
745 { wxT("ograve"),242 },
746 { wxT("oline"),8254 },
747 { wxT("omega"),969 },
748 { wxT("omicron"),959 },
749 { wxT("oplus"),8853 },
750 { wxT("or"),8744 },
751 { wxT("ordf"),170 },
752 { wxT("ordm"),186 },
753 { wxT("oslash"),248 },
754 { wxT("otilde"),245 },
755 { wxT("otimes"),8855 },
756 { wxT("ouml"),246 },
757 { wxT("para"),182 },
758 { wxT("part"),8706 },
759 { wxT("permil"),8240 },
760 { wxT("perp"),8869 },
761 { wxT("phi"),966 },
762 { wxT("pi"),960 },
763 { wxT("piv"),982 },
764 { wxT("plusmn"),177 },
765 { wxT("pound"),163 },
766 { wxT("prime"),8242 },
767 { wxT("prod"),8719 },
768 { wxT("prop"),8733 },
769 { wxT("psi"),968 },
770 { wxT("quot"),34 },
771 { wxT("rArr"),8658 },
772 { wxT("radic"),8730 },
773 { wxT("rang"),9002 },
774 { wxT("raquo"),187 },
775 { wxT("rarr"),8594 },
776 { wxT("rceil"),8969 },
777 { wxT("rdquo"),8221 },
778 { wxT("real"),8476 },
779 { wxT("reg"),174 },
780 { wxT("rfloor"),8971 },
781 { wxT("rho"),961 },
782 { wxT("rlm"),8207 },
783 { wxT("rsaquo"),8250 },
784 { wxT("rsquo"),8217 },
785 { wxT("sbquo"),8218 },
786 { wxT("scaron"),353 },
787 { wxT("sdot"),8901 },
788 { wxT("sect"),167 },
789 { wxT("shy"),173 },
790 { wxT("sigma"),963 },
791 { wxT("sigmaf"),962 },
792 { wxT("sim"),8764 },
793 { wxT("spades"),9824 },
794 { wxT("sub"),8834 },
795 { wxT("sube"),8838 },
796 { wxT("sum"),8721 },
797 { wxT("sup"),8835 },
798 { wxT("sup1"),185 },
799 { wxT("sup2"),178 },
800 { wxT("sup3"),179 },
801 { wxT("supe"),8839 },
802 { wxT("szlig"),223 },
803 { wxT("tau"),964 },
804 { wxT("there4"),8756 },
805 { wxT("theta"),952 },
806 { wxT("thetasym"),977 },
807 { wxT("thinsp"),8201 },
808 { wxT("thorn"),254 },
809 { wxT("tilde"),732 },
810 { wxT("times"),215 },
811 { wxT("trade"),8482 },
812 { wxT("uArr"),8657 },
813 { wxT("uacute"),250 },
814 { wxT("uarr"),8593 },
815 { wxT("ucirc"),251 },
816 { wxT("ugrave"),249 },
817 { wxT("uml"),168 },
818 { wxT("upsih"),978 },
819 { wxT("upsilon"),965 },
820 { wxT("uuml"),252 },
821 { wxT("weierp"),8472 },
822 { wxT("xi"),958 },
823 { wxT("yacute"),253 },
824 { wxT("yen"),165 },
825 { wxT("yuml"),255 },
826 { wxT("zeta"),950 },
827 { wxT("zwj"),8205 },
828 { wxT("zwnj"),8204 },
829 {NULL, 0}};
830 static size_t substitutions_cnt = 0;
04dbb646 831
daa616fc
VS
832 if (substitutions_cnt == 0)
833 while (substitutions[substitutions_cnt].code != 0)
834 substitutions_cnt++;
835
836 wxHtmlEntityInfo *info;
04dbb646 837 info = (wxHtmlEntityInfo*) bsearch(entity.c_str(), substitutions,
daa616fc
VS
838 substitutions_cnt,
839 sizeof(wxHtmlEntityInfo),
90350682 840 wxHtmlEntityCompare);
daa616fc
VS
841 if (info)
842 code = info->code;
843 }
04dbb646 844
daa616fc 845 if (code == 0)
470252df 846 return 0;
daa616fc
VS
847 else
848 return GetCharForCode(code);
849}
850
d1da8872 851wxFSFile *wxHtmlParser::OpenURL(wxHtmlURLType WXUNUSED(type),
6cc4e6b8
VS
852 const wxString& url) const
853{
e02ecf7c 854 return m_FS ? m_FS->OpenFile(url) : NULL;
d1da8872 855
6cc4e6b8
VS
856}
857
2b5f62a0
VZ
858
859//-----------------------------------------------------------------------------
860// wxHtmlParser::ExtractCharsetInformation
861//-----------------------------------------------------------------------------
862
863class wxMetaTagParser : public wxHtmlParser
864{
865public:
2eb10e2a
VZ
866 wxMetaTagParser() { }
867
2b5f62a0 868 wxObject* GetProduct() { return NULL; }
2eb10e2a 869
2b5f62a0
VZ
870protected:
871 virtual void AddText(const wxChar* WXUNUSED(txt)) {}
2eb10e2a
VZ
872
873 DECLARE_NO_COPY_CLASS(wxMetaTagParser)
2b5f62a0
VZ
874};
875
876class wxMetaTagHandler : public wxHtmlTagHandler
877{
878public:
879 wxMetaTagHandler(wxString *retval) : wxHtmlTagHandler(), m_retval(retval) {}
880 wxString GetSupportedTags() { return wxT("META,BODY"); }
881 bool HandleTag(const wxHtmlTag& tag);
882
883private:
884 wxString *m_retval;
2eb10e2a
VZ
885
886 DECLARE_NO_COPY_CLASS(wxMetaTagHandler)
2b5f62a0
VZ
887};
888
889bool wxMetaTagHandler::HandleTag(const wxHtmlTag& tag)
890{
891 if (tag.GetName() == _T("BODY"))
892 {
893 m_Parser->StopParsing();
d1da8872 894 return false;
2b5f62a0
VZ
895 }
896
897 if (tag.HasParam(_T("HTTP-EQUIV")) &&
13fd234c 898 tag.GetParam(_T("HTTP-EQUIV")).IsSameAs(_T("Content-Type"), false) &&
2b5f62a0
VZ
899 tag.HasParam(_T("CONTENT")))
900 {
5af11a94 901 wxString content = tag.GetParam(_T("CONTENT")).Lower();
2b5f62a0
VZ
902 if (content.Left(19) == _T("text/html; charset="))
903 {
904 *m_retval = content.Mid(19);
905 m_Parser->StopParsing();
906 }
907 }
d1da8872 908 return false;
2b5f62a0
VZ
909}
910
911
912/*static*/
913wxString wxHtmlParser::ExtractCharsetInformation(const wxString& markup)
914{
915 wxString charset;
e7274ba2
WS
916 wxMetaTagParser *parser = new wxMetaTagParser();
917 if(parser)
918 {
919 parser->AddTagHandler(new wxMetaTagHandler(&charset));
920 parser->Parse(markup);
921 delete parser;
922 }
2b5f62a0
VZ
923 return charset;
924}
925
daa616fc 926#endif