first round of Intel compiler warning fixes: down from a few thousands just to slight...
[wxWidgets.git] / src / html / htmlpars.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: htmlpars.cpp
3 // Purpose: wxHtmlParser class (generic parser)
4 // Author: Vaclav Slavik
5 // RCS-ID: $Id$
6 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #include "wx/wxprec.h"
11
12 #include "wx/defs.h"
13 #if wxUSE_HTML && wxUSE_STREAMS
14
15 #ifdef __BORLANDC__
16 #pragma hdrstop
17 #endif
18
19 #ifndef WXPRECOMP
20 #include "wx/log.h"
21 #include "wx/intl.h"
22 #endif
23
24 #include "wx/tokenzr.h"
25 #include "wx/wfstream.h"
26 #include "wx/url.h"
27 #include "wx/fontmap.h"
28 #include "wx/html/htmldefs.h"
29 #include "wx/html/htmlpars.h"
30 #include "wx/dynarray.h"
31 #include "wx/arrimpl.cpp"
32
33 #ifdef __WXWINCE__
34 #include "wx/msw/wince/missing.h" // for bsearch()
35 #endif
36
37 // DLL options compatibility check:
38 #include "wx/app.h"
39 WX_CHECK_BUILD_OPTIONS("wxHTML")
40
41 const wxChar *wxTRACE_HTML_DEBUG = _T("htmldebug");
42
43 //-----------------------------------------------------------------------------
44 // wxHtmlParser helpers
45 //-----------------------------------------------------------------------------
46
47 class wxHtmlTextPiece
48 {
49 public:
50 wxHtmlTextPiece(int pos, int lng) : m_pos(pos), m_lng(lng) {}
51 int m_pos, m_lng;
52 };
53
54 WX_DECLARE_OBJARRAY(wxHtmlTextPiece, wxHtmlTextPieces);
55 WX_DEFINE_OBJARRAY(wxHtmlTextPieces)
56
57 class wxHtmlParserState
58 {
59 public:
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 };
67
68 //-----------------------------------------------------------------------------
69 // wxHtmlParser
70 //-----------------------------------------------------------------------------
71
72 IMPLEMENT_ABSTRACT_CLASS(wxHtmlParser,wxObject)
73
74 wxHtmlParser::wxHtmlParser()
75 : wxObject(), m_HandlersHash(wxKEY_STRING),
76 m_FS(NULL), m_HandlersStack(NULL)
77 {
78 m_entitiesParser = new wxHtmlEntitiesParser;
79 m_Tags = NULL;
80 m_CurTag = NULL;
81 m_TextPieces = NULL;
82 m_CurTextPiece = 0;
83 m_SavedStates = NULL;
84 }
85
86 wxHtmlParser::~wxHtmlParser()
87 {
88 while (RestoreState()) {}
89 DestroyDOMTree();
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 }
99 delete m_HandlersStack;
100 m_HandlersHash.Clear();
101 WX_CLEAR_LIST(wxList, m_HandlersList);
102 delete m_entitiesParser;
103 }
104
105 wxObject* wxHtmlParser::Parse(const wxString& source)
106 {
107 InitParser(source);
108 DoParsing();
109 wxObject *result = GetProduct();
110 DoneParser();
111 return result;
112 }
113
114 void wxHtmlParser::InitParser(const wxString& source)
115 {
116 SetSource(source);
117 m_stopParsing = false;
118 }
119
120 void wxHtmlParser::DoneParser()
121 {
122 DestroyDOMTree();
123 }
124
125 void wxHtmlParser::SetSource(const wxString& src)
126 {
127 DestroyDOMTree();
128 m_Source = src;
129 CreateDOMTree();
130 m_CurTag = NULL;
131 m_CurTextPiece = 0;
132 }
133
134 void wxHtmlParser::CreateDOMTree()
135 {
136 wxHtmlTagsCache cache(m_Source);
137 m_TextPieces = new wxHtmlTextPieces;
138 CreateDOMSubTree(NULL, 0, m_Source.Length(), &cache);
139 m_CurTextPiece = 0;
140 }
141
142 extern bool wxIsCDATAElement(const wxChar *tag);
143
144 void wxHtmlParser::CreateDOMSubTree(wxHtmlTag *cur,
145 int begin_pos, int end_pos,
146 wxHtmlTagsCache *cache)
147 {
148 if (end_pos <= begin_pos) return;
149
150 wxChar c;
151 int i = begin_pos;
152 int textBeginning = begin_pos;
153
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
163 while (i < end_pos)
164 {
165 c = m_Source.GetChar(i);
166
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++);
186 if ((c == wxT(' ') || c == wxT('\n') ||
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++;
195 else
196 dashes = 0;
197 }
198 }
199
200 // add another tag to the tree:
201 else if (i < end_pos-1 && m_Source.GetChar(i+1) != wxT('/'))
202 {
203 wxHtmlTag *chd;
204 if (cur)
205 chd = new wxHtmlTag(cur, m_Source,
206 i, end_pos, cache, m_entitiesParser);
207 else
208 {
209 chd = new wxHtmlTag(NULL, m_Source,
210 i, end_pos, cache, m_entitiesParser);
211 if (!m_Tags)
212 {
213 // if this is the first tag to be created make the root
214 // m_Tags point to it:
215 m_Tags = chd;
216 }
217 else
218 {
219 // if there is already a root tag add this tag as
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,
229 chd->GetBeginPos(), chd->GetEndPos1(),
230 cache);
231 i = chd->GetEndPos2();
232 }
233 else
234 i = chd->GetBeginPos();
235
236 textBeginning = i;
237 }
238
239 // ... or skip ending tag:
240 else
241 {
242 while (i < end_pos && m_Source.GetChar(i) != wxT('>')) i++;
243 textBeginning = i+1;
244 }
245 }
246 else i++;
247 }
248
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
255 void 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
271 void wxHtmlParser::DoParsing()
272 {
273 m_CurTag = m_Tags;
274 m_CurTextPiece = 0;
275 DoParsing(0, m_Source.Length());
276 }
277
278 void wxHtmlParser::DoParsing(int begin_pos, int end_pos)
279 {
280 if (end_pos <= begin_pos) return;
281
282 wxHtmlTextPieces& pieces = *m_TextPieces;
283 size_t piecesCnt = pieces.GetCount();
284
285 while (begin_pos < end_pos)
286 {
287 while (m_CurTag && m_CurTag->GetBeginPos() < begin_pos)
288 m_CurTag = m_CurTag->GetNextTag();
289 while (m_CurTextPiece < piecesCnt &&
290 pieces[m_CurTextPiece].m_pos < begin_pos)
291 m_CurTextPiece++;
292
293 if (m_CurTextPiece < piecesCnt &&
294 (!m_CurTag ||
295 pieces[m_CurTextPiece].m_pos < m_CurTag->GetBeginPos()))
296 {
297 // Add text:
298 AddText(GetEntitiesParser()->Parse(
299 m_Source.Mid(pieces[m_CurTextPiece].m_pos,
300 pieces[m_CurTextPiece].m_lng)));
301 begin_pos = pieces[m_CurTextPiece].m_pos +
302 pieces[m_CurTextPiece].m_lng;
303 m_CurTextPiece++;
304 }
305 else if (m_CurTag)
306 {
307 if (m_CurTag->HasEnding())
308 begin_pos = m_CurTag->GetEndPos2();
309 else
310 begin_pos = m_CurTag->GetBeginPos();
311 wxHtmlTag *t = m_CurTag;
312 m_CurTag = m_CurTag->GetNextTag();
313 AddTag(*t);
314 if (m_stopParsing)
315 return;
316 }
317 else break;
318 }
319 }
320
321 void wxHtmlParser::AddTag(const wxHtmlTag& tag)
322 {
323 wxHtmlTagHandler *h;
324 bool inner = false;
325
326 h = (wxHtmlTagHandler*) m_HandlersHash.Get(tag.GetName());
327 if (h)
328 {
329 inner = h->HandleTag(tag);
330 if (m_stopParsing)
331 return;
332 }
333 if (!inner)
334 {
335 if (tag.HasEnding())
336 DoParsing(tag.GetBeginPos(), tag.GetEndPos1());
337 }
338 }
339
340 void wxHtmlParser::AddTagHandler(wxHtmlTagHandler *handler)
341 {
342 wxString s(handler->GetSupportedTags());
343 wxStringTokenizer tokenizer(s, wxT(", "));
344
345 while (tokenizer.HasMoreTokens())
346 m_HandlersHash.Put(tokenizer.GetNextToken(), handler);
347
348 if (m_HandlersList.IndexOf(handler) == wxNOT_FOUND)
349 m_HandlersList.Append(handler);
350
351 handler->SetParser(this);
352 }
353
354 void wxHtmlParser::PushTagHandler(wxHtmlTagHandler *handler, const wxString& tags)
355 {
356 wxStringTokenizer tokenizer(tags, wxT(", "));
357 wxString key;
358
359 if (m_HandlersStack == NULL)
360 {
361 m_HandlersStack = new wxList;
362 }
363
364 m_HandlersStack->Insert((wxObject*)new wxHashTable(m_HandlersHash));
365
366 while (tokenizer.HasMoreTokens())
367 {
368 key = tokenizer.GetNextToken();
369 m_HandlersHash.Delete(key);
370 m_HandlersHash.Put(key, handler);
371 }
372 }
373
374 void wxHtmlParser::PopTagHandler()
375 {
376 wxList::compatibility_iterator first;
377
378 if ( !m_HandlersStack ||
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 )
385 {
386 wxLogWarning(_("Warning: attempt to remove HTML tag handler from empty stack."));
387 return;
388 }
389 m_HandlersHash = *((wxHashTable*) first->GetData());
390 delete (wxHashTable*) first->GetData();
391 m_HandlersStack->Erase(first);
392 }
393
394 void 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;
412
413 SetSource(src);
414 }
415
416 bool wxHtmlParser::RestoreState()
417 {
418 if (!m_SavedStates) return false;
419
420 DestroyDOMTree();
421
422 wxHtmlParserState *s = m_SavedStates;
423 m_SavedStates = s->m_nextState;
424
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;
430
431 delete s;
432 return true;
433 }
434
435 //-----------------------------------------------------------------------------
436 // wxHtmlTagHandler
437 //-----------------------------------------------------------------------------
438
439 IMPLEMENT_ABSTRACT_CLASS(wxHtmlTagHandler,wxObject)
440
441
442 //-----------------------------------------------------------------------------
443 // wxHtmlEntitiesParser
444 //-----------------------------------------------------------------------------
445
446 IMPLEMENT_DYNAMIC_CLASS(wxHtmlEntitiesParser,wxObject)
447
448 wxHtmlEntitiesParser::wxHtmlEntitiesParser()
449 #if wxUSE_WCHAR_T && !wxUSE_UNICODE
450 : m_conv(NULL), m_encoding(wxFONTENCODING_SYSTEM)
451 #endif
452 {
453 }
454
455 wxHtmlEntitiesParser::~wxHtmlEntitiesParser()
456 {
457 #if wxUSE_WCHAR_T && !wxUSE_UNICODE
458 delete m_conv;
459 #endif
460 }
461
462 void wxHtmlEntitiesParser::SetEncoding(wxFontEncoding encoding)
463 {
464 #if wxUSE_WCHAR_T && !wxUSE_UNICODE
465 if (encoding == m_encoding)
466 return;
467
468 delete m_conv;
469
470 m_encoding = encoding;
471 if (m_encoding == wxFONTENCODING_SYSTEM)
472 m_conv = NULL;
473 else
474 m_conv = new wxCSConv(wxFontMapper::GetEncodingName(m_encoding));
475 #else
476 (void) encoding;
477 #endif
478 }
479
480 wxString wxHtmlEntitiesParser::Parse(const wxString& input)
481 {
482 const wxChar *c, *last;
483 const wxChar *in_str = input.c_str();
484 wxString output;
485
486 output.reserve(input.length());
487
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;
495
496 wxString entity;
497 const wxChar *ent_s = c;
498 wxChar entity_char;
499
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);
505 if (*c != wxT(';')) c--;
506 last = c+1;
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);
513 wxLogTrace(wxTRACE_HTML_DEBUG,
514 wxT("Unrecognized HTML entity: '%s'"),
515 entity.c_str());
516 }
517 }
518 }
519 if (*last != wxT('\0'))
520 output.append(last);
521 return output;
522 }
523
524 struct wxHtmlEntityInfo
525 {
526 const wxChar *name;
527 unsigned code;
528 };
529
530 extern "C" int LINKAGEMODE wxHtmlEntityCompare(const void *key, const void *item)
531 {
532 return wxStrcmp((wxChar*)key, ((wxHtmlEntityInfo*)item)->name);
533 }
534
535 #if !wxUSE_UNICODE
536 wxChar wxHtmlEntitiesParser::GetCharForCode(unsigned code)
537 {
538 #if wxUSE_WCHAR_T
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;
544 if (conv->WC2MB(buf, wbuf, 2) == (size_t)-1)
545 return '?';
546 return buf[0];
547 #else
548 return (code < 256) ? (wxChar)code : '?';
549 #endif
550 }
551 #endif
552
553 wxChar wxHtmlEntitiesParser::GetEntityChar(const wxString& entity)
554 {
555 unsigned code = 0;
556
557 if (entity[0] == wxT('#'))
558 {
559 const wxChar *ent_s = entity.c_str();
560 const wxChar *format;
561
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;
831
832 if (substitutions_cnt == 0)
833 while (substitutions[substitutions_cnt].code != 0)
834 substitutions_cnt++;
835
836 wxHtmlEntityInfo *info;
837 info = (wxHtmlEntityInfo*) bsearch(entity.c_str(), substitutions,
838 substitutions_cnt,
839 sizeof(wxHtmlEntityInfo),
840 wxHtmlEntityCompare);
841 if (info)
842 code = info->code;
843 }
844
845 if (code == 0)
846 return 0;
847 else
848 return GetCharForCode(code);
849 }
850
851 wxFSFile *wxHtmlParser::OpenURL(wxHtmlURLType WXUNUSED(type),
852 const wxString& url) const
853 {
854 return m_FS ? m_FS->OpenFile(url) : NULL;
855
856 }
857
858
859 //-----------------------------------------------------------------------------
860 // wxHtmlParser::ExtractCharsetInformation
861 //-----------------------------------------------------------------------------
862
863 class wxMetaTagParser : public wxHtmlParser
864 {
865 public:
866 wxMetaTagParser() { }
867
868 wxObject* GetProduct() { return NULL; }
869
870 protected:
871 virtual void AddText(const wxChar* WXUNUSED(txt)) {}
872
873 DECLARE_NO_COPY_CLASS(wxMetaTagParser)
874 };
875
876 class wxMetaTagHandler : public wxHtmlTagHandler
877 {
878 public:
879 wxMetaTagHandler(wxString *retval) : wxHtmlTagHandler(), m_retval(retval) {}
880 wxString GetSupportedTags() { return wxT("META,BODY"); }
881 bool HandleTag(const wxHtmlTag& tag);
882
883 private:
884 wxString *m_retval;
885
886 DECLARE_NO_COPY_CLASS(wxMetaTagHandler)
887 };
888
889 bool wxMetaTagHandler::HandleTag(const wxHtmlTag& tag)
890 {
891 if (tag.GetName() == _T("BODY"))
892 {
893 m_Parser->StopParsing();
894 return false;
895 }
896
897 if (tag.HasParam(_T("HTTP-EQUIV")) &&
898 tag.GetParam(_T("HTTP-EQUIV")).IsSameAs(_T("Content-Type"), false) &&
899 tag.HasParam(_T("CONTENT")))
900 {
901 wxString content = tag.GetParam(_T("CONTENT")).Lower();
902 if (content.Left(19) == _T("text/html; charset="))
903 {
904 *m_retval = content.Mid(19);
905 m_Parser->StopParsing();
906 }
907 }
908 return false;
909 }
910
911
912 /*static*/
913 wxString wxHtmlParser::ExtractCharsetInformation(const wxString& markup)
914 {
915 wxString charset;
916 wxMetaTagParser *parser = new wxMetaTagParser();
917 if(parser)
918 {
919 parser->AddTagHandler(new wxMetaTagHandler(&charset));
920 parser->Parse(markup);
921 delete parser;
922 }
923 return charset;
924 }
925
926 #endif