]>
Commit | Line | Data |
---|---|---|
5526e819 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: htmltag.cpp | |
3 | // Purpose: wxHtmlTag class (represents single tag) | |
4 | // Author: Vaclav Slavik | |
69941f05 | 5 | // RCS-ID: $Id$ |
5526e819 VS |
6 | // Copyright: (c) 1999 Vaclav Slavik |
7 | // Licence: wxWindows Licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
14f355c2 | 11 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
1aedb1dd | 12 | #pragma implementation "htmltag.h" |
5526e819 VS |
13 | #endif |
14 | ||
3096bd2f | 15 | #include "wx/wxprec.h" |
5526e819 VS |
16 | |
17 | #include "wx/defs.h" | |
18 | #if wxUSE_HTML | |
19 | ||
2b5f62a0 | 20 | #ifdef __BORLANDC__ |
5526e819 VS |
21 | #pragma hdrstop |
22 | #endif | |
23 | ||
24 | #ifndef WXPRECOMP | |
5526e819 VS |
25 | #endif |
26 | ||
69941f05 | 27 | #include "wx/html/htmltag.h" |
daa616fc | 28 | #include "wx/html/htmlpars.h" |
fc1f2125 | 29 | #include "wx/colour.h" |
7e1e0960 | 30 | #include <stdio.h> // for vsscanf |
5526e819 VS |
31 | #include <stdarg.h> |
32 | ||
33 | ||
5526e819 VS |
34 | //----------------------------------------------------------------------------- |
35 | // wxHtmlTagsCache | |
36 | //----------------------------------------------------------------------------- | |
37 | ||
5e8e25e7 VS |
38 | struct wxHtmlCacheItem |
39 | { | |
40 | // this is "pos" value passed to wxHtmlTag's constructor. | |
41 | // it is position of '<' character of the tag | |
42 | int Key; | |
43 | ||
44 | // end positions for the tag: | |
45 | // end1 is '<' of ending tag, | |
46 | // end2 is '>' or both are | |
47 | // -1 if there is no ending tag for this one... | |
48 | // or -2 if this is ending tag </...> | |
49 | int End1, End2; | |
50 | ||
51 | // name of this tag | |
52 | wxChar *Name; | |
53 | }; | |
54 | ||
55 | ||
5526e819 VS |
56 | IMPLEMENT_CLASS(wxHtmlTagsCache,wxObject) |
57 | ||
58 | #define CACHE_INCREMENT 64 | |
59 | ||
07cc7ddc | 60 | bool wxIsCDATAElement(const wxChar *tag) |
7c6cd4a8 VS |
61 | { |
62 | return (wxStrcmp(tag, _T("SCRIPT")) == 0) || | |
63 | (wxStrcmp(tag, _T("STYLE")) == 0); | |
64 | } | |
65 | ||
5526e819 VS |
66 | wxHtmlTagsCache::wxHtmlTagsCache(const wxString& source) |
67 | { | |
66a77a74 | 68 | const wxChar *src = source.c_str(); |
5526e819 | 69 | int lng = source.Length(); |
8cd82622 | 70 | wxChar tagBuffer[256]; |
5526e819 VS |
71 | |
72 | m_Cache = NULL; | |
73 | m_CacheSize = 0; | |
74 | m_CachePos = 0; | |
75 | ||
14d36de8 | 76 | int pos = 0; |
8cd82622 | 77 | while (pos < lng) |
4f9297b0 VS |
78 | { |
79 | if (src[pos] == wxT('<')) // tag found: | |
a914db0f | 80 | { |
5526e819 | 81 | if (m_CacheSize % CACHE_INCREMENT == 0) |
5e8e25e7 | 82 | m_Cache = (wxHtmlCacheItem*) realloc(m_Cache, (m_CacheSize + CACHE_INCREMENT) * sizeof(wxHtmlCacheItem)); |
999836aa VZ |
83 | int tg = m_CacheSize++; |
84 | int stpos = pos++; | |
85 | m_Cache[tg].Key = stpos; | |
8cd82622 | 86 | |
4f22f506 | 87 | int i; |
8cd82622 | 88 | for ( i = 0; |
4f22f506 | 89 | pos < lng && i < (int)WXSIZEOF(tagBuffer) - 1 && |
8cd82622 VZ |
90 | src[pos] != wxT('>') && !wxIsspace(src[pos]); |
91 | i++, pos++ ) | |
a914db0f | 92 | { |
8cd82622 | 93 | tagBuffer[i] = wxToupper(src[pos]); |
5526e819 | 94 | } |
8cd82622 VZ |
95 | tagBuffer[i] = _T('\0'); |
96 | ||
66a77a74 | 97 | m_Cache[tg].Name = new wxChar[i+1]; |
8cd82622 | 98 | memcpy(m_Cache[tg].Name, tagBuffer, (i+1)*sizeof(wxChar)); |
5526e819 | 99 | |
15db3cf5 | 100 | while (pos < lng && src[pos] != wxT('>')) pos++; |
5526e819 | 101 | |
4f9297b0 | 102 | if (src[stpos+1] == wxT('/')) // ending tag: |
a914db0f | 103 | { |
5526e819 VS |
104 | m_Cache[tg].End1 = m_Cache[tg].End2 = -2; |
105 | // find matching begin tag: | |
106 | for (i = tg; i >= 0; i--) | |
8cd82622 | 107 | if ((m_Cache[i].End1 == -1) && (wxStrcmp(m_Cache[i].Name, tagBuffer+1) == 0)) |
a914db0f | 108 | { |
5526e819 VS |
109 | m_Cache[i].End1 = stpos; |
110 | m_Cache[i].End2 = pos + 1; | |
111 | break; | |
112 | } | |
113 | } | |
8cd82622 | 114 | else |
a914db0f | 115 | { |
5526e819 | 116 | m_Cache[tg].End1 = m_Cache[tg].End2 = -1; |
7c6cd4a8 VS |
117 | |
118 | if (wxIsCDATAElement(tagBuffer)) | |
119 | { | |
120 | // find next matching tag | |
121 | int tag_len = wxStrlen(tagBuffer); | |
122 | while (pos < lng) | |
123 | { | |
124 | // find the ending tag | |
125 | while (pos + 1 < lng && | |
126 | (src[pos] != '<' || src[pos+1] != '/')) | |
127 | ++pos; | |
128 | if (src[pos] == '<') | |
129 | ++pos; | |
130 | ||
131 | // see if it matches | |
132 | int match_pos = 0; | |
133 | while (pos < lng && match_pos < tag_len && src[pos] != '>' && src[pos] != '<') { | |
5447d1b4 VZ |
134 | // cast to wxChar needed to suppress warning in |
135 | // Unicode build | |
136 | if ((wxChar)wxToupper(src[pos]) == tagBuffer[match_pos]) { | |
7c6cd4a8 VS |
137 | ++match_pos; |
138 | } | |
139 | else if (src[pos] == wxT(' ') || src[pos] == wxT('\n') || | |
140 | src[pos] == wxT('\r') || src[pos] == wxT('\t')) { | |
141 | // need to skip over these | |
142 | } | |
143 | else { | |
144 | match_pos = 0; | |
145 | } | |
146 | ++pos; | |
147 | } | |
148 | ||
149 | // found a match | |
150 | if (match_pos == tag_len) { | |
b5d464b9 | 151 | pos = pos - tag_len - 3; |
7c6cd4a8 VS |
152 | break; |
153 | } | |
154 | else { | |
155 | ++pos; | |
156 | } | |
157 | } | |
158 | } | |
5526e819 VS |
159 | } |
160 | } | |
161 | ||
162 | pos++; | |
163 | } | |
164 | ||
165 | // ok, we're done, now we'll free .Name members of cache - we don't need it anymore: | |
14d36de8 | 166 | for (int i = 0; i < m_CacheSize; i++) |
4f9297b0 | 167 | { |
2776d7c3 | 168 | delete[] m_Cache[i].Name; |
5526e819 VS |
169 | m_Cache[i].Name = NULL; |
170 | } | |
171 | } | |
172 | ||
5526e819 VS |
173 | void wxHtmlTagsCache::QueryTag(int at, int* end1, int* end2) |
174 | { | |
175 | if (m_Cache == NULL) return; | |
8cd82622 | 176 | if (m_Cache[m_CachePos].Key != at) |
4f9297b0 | 177 | { |
5526e819 | 178 | int delta = (at < m_Cache[m_CachePos].Key) ? -1 : 1; |
8cd82622 VZ |
179 | do |
180 | { | |
181 | m_CachePos += delta; | |
daa616fc VS |
182 | } |
183 | while (m_Cache[m_CachePos].Key != at); | |
5526e819 VS |
184 | } |
185 | *end1 = m_Cache[m_CachePos].End1; | |
186 | *end2 = m_Cache[m_CachePos].End2; | |
187 | } | |
188 | ||
189 | ||
190 | ||
191 | ||
192 | //----------------------------------------------------------------------------- | |
193 | // wxHtmlTag | |
194 | //----------------------------------------------------------------------------- | |
195 | ||
196 | IMPLEMENT_CLASS(wxHtmlTag,wxObject) | |
197 | ||
211dfedd | 198 | wxHtmlTag::wxHtmlTag(wxHtmlTag *parent, |
8cd82622 | 199 | const wxString& source, int pos, int end_pos, |
daa616fc VS |
200 | wxHtmlTagsCache *cache, |
201 | wxHtmlEntitiesParser *entParser) : wxObject() | |
5526e819 | 202 | { |
211dfedd VS |
203 | /* Setup DOM relations */ |
204 | ||
205 | m_Next = NULL; | |
206 | m_FirstChild = m_LastChild = NULL; | |
207 | m_Parent = parent; | |
208 | if (parent) | |
209 | { | |
210 | m_Prev = m_Parent->m_LastChild; | |
211 | if (m_Prev == NULL) | |
212 | m_Parent->m_FirstChild = this; | |
213 | else | |
214 | m_Prev->m_Next = this; | |
215 | m_Parent->m_LastChild = this; | |
216 | } | |
217 | else | |
218 | m_Prev = NULL; | |
219 | ||
220 | /* Find parameters and their values: */ | |
8cd82622 | 221 | |
5526e819 | 222 | int i; |
daa616fc | 223 | wxChar c; |
5526e819 VS |
224 | |
225 | // fill-in name, params and begin pos: | |
5526e819 | 226 | i = pos+1; |
5526e819 | 227 | |
b076dc01 | 228 | // find tag's name and convert it to uppercase: |
8cd82622 VZ |
229 | while ((i < end_pos) && |
230 | ((c = source[i++]) != wxT(' ') && c != wxT('\r') && | |
daa616fc | 231 | c != wxT('\n') && c != wxT('\t') && |
8cd82622 | 232 | c != wxT('>'))) |
a914db0f | 233 | { |
8cd82622 | 234 | if ((c >= wxT('a')) && (c <= wxT('z'))) |
daa616fc VS |
235 | c -= (wxT('a') - wxT('A')); |
236 | m_Name << c; | |
5526e819 VS |
237 | } |
238 | ||
b076dc01 | 239 | // if the tag has parameters, read them and "normalize" them, |
8cd82622 | 240 | // i.e. convert to uppercase, replace whitespaces by spaces and |
b076dc01 | 241 | // remove whitespaces around '=': |
c9893146 | 242 | if (source[i-1] != wxT('>')) |
daa616fc VS |
243 | { |
244 | #define IS_WHITE(c) (c == wxT(' ') || c == wxT('\r') || \ | |
245 | c == wxT('\n') || c == wxT('\t')) | |
246 | wxString pname, pvalue; | |
247 | wxChar quote; | |
8cd82622 | 248 | enum |
a914db0f | 249 | { |
8cd82622 | 250 | ST_BEFORE_NAME = 1, |
daa616fc VS |
251 | ST_NAME, |
252 | ST_BEFORE_EQ, | |
253 | ST_BEFORE_VALUE, | |
254 | ST_VALUE | |
255 | } state; | |
8cd82622 | 256 | |
daa616fc VS |
257 | quote = 0; |
258 | state = ST_BEFORE_NAME; | |
259 | while (i < end_pos) | |
260 | { | |
261 | c = source[i++]; | |
262 | ||
8cd82622 | 263 | if (c == wxT('>') && !(state == ST_VALUE && quote != 0)) |
a914db0f | 264 | { |
daa616fc | 265 | if (state == ST_BEFORE_EQ || state == ST_NAME) |
b076dc01 | 266 | { |
daa616fc VS |
267 | m_ParamNames.Add(pname); |
268 | m_ParamValues.Add(wxEmptyString); | |
b076dc01 | 269 | } |
daa616fc VS |
270 | else if (state == ST_VALUE && quote == 0) |
271 | { | |
272 | m_ParamNames.Add(pname); | |
367c84b9 VS |
273 | if (entParser) |
274 | m_ParamValues.Add(entParser->Parse(pvalue)); | |
275 | else | |
276 | m_ParamValues.Add(pvalue); | |
daa616fc VS |
277 | } |
278 | break; | |
5526e819 | 279 | } |
daa616fc | 280 | switch (state) |
a914db0f | 281 | { |
daa616fc VS |
282 | case ST_BEFORE_NAME: |
283 | if (!IS_WHITE(c)) | |
284 | { | |
285 | pname = c; | |
286 | state = ST_NAME; | |
287 | } | |
288 | break; | |
289 | case ST_NAME: | |
290 | if (IS_WHITE(c)) | |
291 | state = ST_BEFORE_EQ; | |
292 | else if (c == wxT('=')) | |
293 | state = ST_BEFORE_VALUE; | |
294 | else | |
295 | pname << c; | |
296 | break; | |
297 | case ST_BEFORE_EQ: | |
298 | if (c == wxT('=')) | |
299 | state = ST_BEFORE_VALUE; | |
300 | else if (!IS_WHITE(c)) | |
301 | { | |
302 | m_ParamNames.Add(pname); | |
303 | m_ParamValues.Add(wxEmptyString); | |
304 | pname = c; | |
305 | state = ST_NAME; | |
306 | } | |
307 | break; | |
308 | case ST_BEFORE_VALUE: | |
309 | if (!IS_WHITE(c)) | |
310 | { | |
311 | if (c == wxT('"') || c == wxT('\'')) | |
312 | quote = c, pvalue = wxEmptyString; | |
313 | else | |
314 | quote = 0, pvalue = c; | |
315 | state = ST_VALUE; | |
316 | } | |
317 | break; | |
318 | case ST_VALUE: | |
319 | if ((quote != 0 && c == quote) || | |
320 | (quote == 0 && IS_WHITE(c))) | |
321 | { | |
322 | m_ParamNames.Add(pname); | |
323 | if (quote == 0) | |
324 | { | |
325 | // VS: backward compatibility, no real reason, | |
326 | // but wxHTML code relies on this... :( | |
327 | pvalue.MakeUpper(); | |
328 | } | |
367c84b9 VS |
329 | if (entParser) |
330 | m_ParamValues.Add(entParser->Parse(pvalue)); | |
331 | else | |
332 | m_ParamValues.Add(pvalue); | |
daa616fc VS |
333 | state = ST_BEFORE_NAME; |
334 | } | |
335 | else | |
336 | pvalue << c; | |
337 | break; | |
72aa4a98 | 338 | } |
5526e819 | 339 | } |
8cd82622 | 340 | |
daa616fc VS |
341 | #undef IS_WHITE |
342 | } | |
5526e819 VS |
343 | m_Begin = i; |
344 | ||
4f9297b0 | 345 | cache->QueryTag(pos, &m_End1, &m_End2); |
5526e819 VS |
346 | if (m_End1 > end_pos) m_End1 = end_pos; |
347 | if (m_End2 > end_pos) m_End2 = end_pos; | |
348 | } | |
349 | ||
211dfedd VS |
350 | wxHtmlTag::~wxHtmlTag() |
351 | { | |
0d58bb65 VS |
352 | wxHtmlTag *t1, *t2; |
353 | t1 = m_FirstChild; | |
354 | while (t1) | |
355 | { | |
356 | t2 = t1->GetNextSibling(); | |
357 | delete t1; | |
358 | t1 = t2; | |
359 | } | |
211dfedd VS |
360 | } |
361 | ||
5526e819 VS |
362 | bool wxHtmlTag::HasParam(const wxString& par) const |
363 | { | |
8703bc01 | 364 | return (m_ParamNames.Index(par, false) != wxNOT_FOUND); |
5526e819 VS |
365 | } |
366 | ||
5526e819 VS |
367 | wxString wxHtmlTag::GetParam(const wxString& par, bool with_commas) const |
368 | { | |
8703bc01 | 369 | int index = m_ParamNames.Index(par, false); |
daa616fc VS |
370 | if (index == wxNOT_FOUND) |
371 | return wxEmptyString; | |
372 | if (with_commas) | |
4f9297b0 | 373 | { |
daa616fc VS |
374 | // VS: backward compatibility, seems to be never used by wxHTML... |
375 | wxString s; | |
376 | s << wxT('"') << m_ParamValues[index] << wxT('"'); | |
377 | return s; | |
5526e819 | 378 | } |
daa616fc VS |
379 | else |
380 | return m_ParamValues[index]; | |
5526e819 VS |
381 | } |
382 | ||
90350682 VZ |
383 | int wxHtmlTag::ScanParam(const wxString& par, |
384 | const wxChar *format, | |
385 | void *param) const | |
5526e819 | 386 | { |
5526e819 | 387 | wxString parval = GetParam(par); |
161f4f73 | 388 | return wxSscanf(parval, format, param); |
5526e819 VS |
389 | } |
390 | ||
8bd72d90 VS |
391 | bool wxHtmlTag::GetParamAsColour(const wxString& par, wxColour *clr) const |
392 | { | |
393 | wxString str = GetParam(par); | |
8cd82622 | 394 | |
8703bc01 | 395 | if (str.IsEmpty()) return false; |
8bd72d90 VS |
396 | if (str.GetChar(0) == wxT('#')) |
397 | { | |
398 | unsigned long tmp; | |
399 | if (ScanParam(par, wxT("#%lX"), &tmp) != 1) | |
8703bc01 | 400 | return false; |
8bd72d90 | 401 | *clr = wxColour((unsigned char)((tmp & 0xFF0000) >> 16), |
8703bc01 DS |
402 | (unsigned char)((tmp & 0x00FF00) >> 8), |
403 | (unsigned char)(tmp & 0x0000FF)); | |
404 | return true; | |
8bd72d90 VS |
405 | } |
406 | else | |
407 | { | |
408 | // Handle colours defined in HTML 4.0: | |
409 | #define HTML_COLOUR(name,r,g,b) \ | |
8703bc01 DS |
410 | if (str.IsSameAs(wxT(name), false)) \ |
411 | { *clr = wxColour(r,g,b); return true; } | |
8bd72d90 VS |
412 | HTML_COLOUR("black", 0x00,0x00,0x00) |
413 | HTML_COLOUR("silver", 0xC0,0xC0,0xC0) | |
414 | HTML_COLOUR("gray", 0x80,0x80,0x80) | |
415 | HTML_COLOUR("white", 0xFF,0xFF,0xFF) | |
416 | HTML_COLOUR("maroon", 0x80,0x00,0x00) | |
417 | HTML_COLOUR("red", 0xFF,0x00,0x00) | |
418 | HTML_COLOUR("purple", 0x80,0x00,0x80) | |
419 | HTML_COLOUR("fuchsia", 0xFF,0x00,0xFF) | |
420 | HTML_COLOUR("green", 0x00,0x80,0x00) | |
421 | HTML_COLOUR("lime", 0x00,0xFF,0x00) | |
422 | HTML_COLOUR("olive", 0x80,0x80,0x00) | |
423 | HTML_COLOUR("yellow", 0xFF,0xFF,0x00) | |
424 | HTML_COLOUR("navy", 0x00,0x00,0x80) | |
425 | HTML_COLOUR("blue", 0x00,0x00,0xFF) | |
426 | HTML_COLOUR("teal", 0x00,0x80,0x80) | |
427 | HTML_COLOUR("aqua", 0x00,0xFF,0xFF) | |
428 | #undef HTML_COLOUR | |
8bd72d90 | 429 | } |
5716a1ab | 430 | |
8703bc01 | 431 | return false; |
8bd72d90 VS |
432 | } |
433 | ||
434 | bool wxHtmlTag::GetParamAsInt(const wxString& par, int *clr) const | |
435 | { | |
8703bc01 | 436 | if (!HasParam(par)) return false; |
8bd72d90 VS |
437 | long i; |
438 | bool succ = GetParam(par).ToLong(&i); | |
439 | *clr = (int)i; | |
440 | return succ; | |
441 | } | |
442 | ||
daa616fc VS |
443 | wxString wxHtmlTag::GetAllParams() const |
444 | { | |
8cd82622 | 445 | // VS: this function is for backward compatiblity only, |
daa616fc VS |
446 | // never used by wxHTML |
447 | wxString s; | |
448 | size_t cnt = m_ParamNames.GetCount(); | |
449 | for (size_t i = 0; i < cnt; i++) | |
450 | { | |
451 | s << m_ParamNames[i]; | |
452 | s << wxT('='); | |
453 | if (m_ParamValues[i].Find(wxT('"')) != wxNOT_FOUND) | |
454 | s << wxT('\'') << m_ParamValues[i] << wxT('\''); | |
455 | else | |
456 | s << wxT('"') << m_ParamValues[i] << wxT('"'); | |
457 | } | |
458 | return s; | |
459 | } | |
460 | ||
211dfedd VS |
461 | wxHtmlTag *wxHtmlTag::GetFirstSibling() const |
462 | { | |
463 | if (m_Parent) | |
464 | return m_Parent->m_FirstChild; | |
465 | else | |
466 | { | |
467 | wxHtmlTag *cur = (wxHtmlTag*)this; | |
8cd82622 | 468 | while (cur->m_Prev) |
211dfedd VS |
469 | cur = cur->m_Prev; |
470 | return cur; | |
471 | } | |
472 | } | |
473 | ||
474 | wxHtmlTag *wxHtmlTag::GetLastSibling() const | |
475 | { | |
476 | if (m_Parent) | |
477 | return m_Parent->m_LastChild; | |
478 | else | |
479 | { | |
480 | wxHtmlTag *cur = (wxHtmlTag*)this; | |
8cd82622 | 481 | while (cur->m_Next) |
211dfedd VS |
482 | cur = cur->m_Next; |
483 | return cur; | |
484 | } | |
485 | } | |
486 | ||
487 | wxHtmlTag *wxHtmlTag::GetNextTag() const | |
488 | { | |
489 | if (m_FirstChild) return m_FirstChild; | |
490 | if (m_Next) return m_Next; | |
491 | wxHtmlTag *cur = m_Parent; | |
492 | if (!cur) return NULL; | |
8cd82622 | 493 | while (cur->m_Parent && !cur->m_Next) |
211dfedd VS |
494 | cur = cur->m_Parent; |
495 | return cur->m_Next; | |
496 | } | |
497 | ||
4d223b67 | 498 | #endif |