📄 htmltokenizer.cpp
字号:
/* This file is part of the KDE libraries Copyright (C) 1997 Martin Jones (mjones@kde.org) (C) 1997 Torben Weis (weis@kde.org) (C) 1998 Waldo Bastian (bastian@kde.org) (C) 1999 Lars Knoll (knoll@kde.org) (C) 1999 Antti Koivisto (koivisto@kde.org) (C) 2001 Dirk Mueller (mueller@kde.org) Copyright (C) 2003 Apple Computer, Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.*///----------------------------------------------------------------------------//// KDE HTML Widget - Tokenizers//#define TOKEN_DEBUG 1//#define TOKEN_DEBUG 2#ifdef HAVE_CONFIG_H#include "config.h"#endif//#include <string.h>#include "html/htmltokenizer.h"#include "html/html_documentimpl.h"#include "html/htmlparser.h"#include "html/dtd.h"#include "misc/loader.h"#include "misc/htmlhashes.h"#include "khtmlview.h"#include "khtml_part.h"#include "xml/dom_docimpl.h"#include "css/csshelper.h"#include "ecma/kjs_proxy.h"#include <kcharsets.h>#include <kglobal.h>#include <ctype.h>#include <assert.h>#include <qvariant.h>#include <kdebug.h>#include <stdlib.h>using DOM::AtomicString;using DOM::AttributeImpl;using DOM::DOMString;using DOM::DOMStringImpl;using DOM::DocumentImpl;using DOM::FORBIDDEN;using DOM::Node;using DOM::emptyAtom;using DOM::endTag;// turn off inlining to void warning with newer gcc#undef __inline#define __inline#include "kentities.c"#undef __inlinenamespace khtml {static const char commentStart [] = "<!--";static const char scriptEnd [] = "</script";static const char xmpEnd [] = "</xmp";static const char styleEnd [] = "</style";static const char textareaEnd [] = "</textarea";static const char titleEnd [] = "</title";#define KHTML_ALLOC_QCHAR_VEC( N ) (QChar*) malloc( sizeof(QChar)*( N ) )#define KHTML_REALLOC_QCHAR_VEC(P, N ) (QChar*) P = realloc(p, sizeof(QChar)*( N ))#define KHTML_DELETE_QCHAR_VEC( P ) free((char*)( P ))// Full support for MS Windows extensions to Latin-1.// Technically these extensions should only be activated for pages// marked "windows-1252" or "cp1252", but// in the standard Microsoft way, these extensions infect hundreds of thousands// of web pages. Note that people with non-latin-1 Microsoft extensions// are SOL.//// See: http://www.microsoft.com/globaldev/reference/WinCP.asp// http://www.bbsinc.com/iso8859.html// http://www.obviously.com///// There may be better equivalents#if APPLE_CHANGES// Note that we have more Unicode characters than Qt, so we use the// official mapping table from the Unicode 2.0 standard here instead of// one with hacks to avoid certain Unicode characters. Also, we don't// need the unrelated hacks to avoid Unicode characters that are in the// original version.// We need this for entities at least. For non-entity text, we could// handle this in the text codec.// To cover non-entity text, I think this function would need to be called// in more places. There seem to be many places that don't call fixUpChar.inline void fixUpChar(QChar& c) { switch (c.unicode()) { case 0x0080: c = 0x20AC; break; case 0x0081: break; case 0x0082: c = 0x201A; break; case 0x0083: c = 0x0192; break; case 0x0084: c = 0x201E; break; case 0x0085: c = 0x2026; break; case 0x0086: c = 0x2020; break; case 0x0087: c = 0x2021; break; case 0x0088: c = 0x02C6; break; case 0x0089: c = 0x2030; break; case 0x008A: c = 0x0160; break; case 0x008B: c = 0x2039; break; case 0x008C: c = 0x0152; break; case 0x008D: break; case 0x008E: c = 0x017D; break; case 0x008F: break; case 0x0090: break; case 0x0091: c = 0x2018; break; case 0x0092: c = 0x2019; break; case 0x0093: c = 0x201C; break; case 0x0094: c = 0x201D; break; case 0x0095: c = 0x2022; break; case 0x0096: c = 0x2013; break; case 0x0097: c = 0x2014; break; case 0x0098: c = 0x02DC; break; case 0x0099: c = 0x2122; break; case 0x009A: c = 0x0161; break; case 0x009B: c = 0x203A; break; case 0x009C: c = 0x0153; break; case 0x009D: break; case 0x009E: c = 0x017E; break; case 0x009F: c = 0x0178; break; }}#else // APPLE_CHANGES#define fixUpChar(x) \ if (!(x).row() ) { \ switch ((x).cell()) \ { \ /* ALL of these should be changed to Unicode SOON */ \ case 0x80: (x) = 0x20ac; break; \ case 0x82: (x) = ','; break; \ case 0x83: (x) = 0x0192; break; \ case 0x84: (x) = '"'; break; \ case 0x85: (x) = 0x2026; break; \ case 0x86: (x) = 0x2020; break; \ case 0x87: (x) = 0x2021; break; \ case 0x88: (x) = 0x02C6; break; \ case 0x89: (x) = 0x2030; break; \ case 0x8A: (x) = 0x0160; break; \ case 0x8b: (x) = '<'; break; \ case 0x8C: (x) = 0x0152; break; \\ case 0x8E: (x) = 0x017D; break; \\\ case 0x91: (x) = '\''; break; \ case 0x92: (x) = '\''; break; \ case 0x93: (x) = '"'; break; \ case 0x94: (x) = '"'; break; \ case 0x95: (x) = '*'; break; \ case 0x96: (x) = '-'; break; \ case 0x97: (x) = '-'; break; \ case 0x98: (x) = '~'; break; \ case 0x99: (x) = 0x2122; break; \ case 0x9A: (x) = 0x0161; break; \ case 0x9b: (x) = '>'; break; \ case 0x9C: (x) = 0x0153; break; \\ case 0x9E: (x) = 0x017E; break; \ case 0x9F: (x) = 0x0178; break; \ /* This one should die */ \ case 0xb7: (x) = '*'; break; \ default: break; \ } \ } \ else { \ /* These should all die sooner rather than later */ \ switch( (x).unicode() ) { \ case 0x2013: (x) = '-'; break; \ case 0x2014: (x) = '-'; break; \ case 0x2018: (x) = '\''; break; \ case 0x2019: (x) = '\''; break; \ case 0x201c: (x) = '"'; break; \ case 0x201d: (x) = '"'; break; \ case 0x2022: (x) = '*'; break; \ case 0x2122: (x) = 0x2122; break; \ default: break; \ } \ }#endif // APPLE_CHANGESinline bool tagMatch(const char *s1, const QChar *s2, uint length){ for (uint i = 0; i != length; ++i) { char c1 = s1[i]; char uc1 = toupper(c1); QChar c2 = s2[i]; if (c1 != c2 && uc1 != c2) return false; } return true;}// ----------------------------------------------------------------------------HTMLTokenizer::HTMLTokenizer(DOM::DocumentPtr *_doc, KHTMLView *_view)#ifndef NDEBUG : inWrite(false)#endif{ view = _view; buffer = 0; scriptCode = 0; scriptCodeSize = scriptCodeMaxSize = scriptCodeResync = 0; charsets = KGlobal::charsets(); parser = new KHTMLParser(_view, _doc); m_executingScript = 0; loadingExtScript = false; onHold = false; attrNamePresent = false; reset();}HTMLTokenizer::HTMLTokenizer(DOM::DocumentPtr *_doc, DOM::DocumentFragmentImpl *i)#ifndef NDEBUG : inWrite(false)#endif{ view = 0; buffer = 0; scriptCode = 0; scriptCodeSize = scriptCodeMaxSize = scriptCodeResync = 0; charsets = KGlobal::charsets(); parser = new KHTMLParser( i, _doc ); m_executingScript = 0; loadingExtScript = false; onHold = false; reset();}void HTMLTokenizer::reset(){ assert(m_executingScript == 0); assert(onHold == false); while (!cachedScript.isEmpty()) cachedScript.dequeue()->deref(this); if ( buffer ) KHTML_DELETE_QCHAR_VEC(buffer); buffer = dest = 0; size = 0; if ( scriptCode ) KHTML_DELETE_QCHAR_VEC(scriptCode); scriptCode = 0; scriptCodeSize = scriptCodeMaxSize = scriptCodeResync = 0; currToken.reset();}void HTMLTokenizer::begin(){ m_executingScript = 0; loadingExtScript = false; onHold = false; reset(); size = 254; buffer = KHTML_ALLOC_QCHAR_VEC( 255 ); dest = buffer; tag = NoTag; pending = NonePending; discard = NoneDiscard; pre = false; prePos = 0; plaintext = false; xmp = false; processingInstruction = false; script = false; escaped = false; style = false; skipLF = false; select = false; comment = false; server = false; textarea = false; title = false; startTag = false; tquote = NoQuote; searchCount = 0; Entity = NoEntity; loadingExtScript = false; scriptSrc = QString::null; pendingSrc.clear(); noMoreData = false; brokenComments = false; brokenServer = false; lineno = 0; scriptStartLineno = 0; tagStartLineno = 0;}void HTMLTokenizer::processListing(TokenizerString list){ bool old_pre = pre; // This function adds the listing 'list' as // preformatted text-tokens to the token-collection // thereby converting TABs. if(!style) pre = true; prePos = 0; while ( !list.isEmpty() ) { checkBuffer(3*TAB_SIZE); if (skipLF && ( *list != '\n' )) { skipLF = false; } if (skipLF) { skipLF = false; ++list; } else if (( *list == '\n' ) || ( *list == '\r' )) { if (discard == LFDiscard) { // Ignore this LF discard = NoneDiscard; // We have discarded 1 LF } else { // Process this LF if (pending) addPending(); pending = LFPending; } /* Check for MS-DOS CRLF sequence */ if (*list == '\r') { skipLF = true; } ++list; } else if (( *list == ' ' ) || ( *list == '\t')) { if (pending) addPending(); if (*list == ' ') pending = SpacePending; else pending = TabPending; ++list; } else { discard = NoneDiscard; if (pending) addPending(); prePos++; *dest++ = *list; ++list; } } if ((pending == SpacePending) || (pending == TabPending)) addPending(); pending = NonePending; prePos = 0; pre = old_pre;}void HTMLTokenizer::parseSpecial(TokenizerString &src){ assert( textarea || title || !Entity ); assert( !tag ); assert( xmp+textarea+title+style+script == 1 ); if (script) scriptStartLineno = lineno+src.lineCount(); if ( comment ) parseComment( src ); while ( !src.isEmpty() ) { checkScriptBuffer(); unsigned char ch = src->latin1(); if ( !scriptCodeResync && !brokenComments && !textarea && !xmp && !title && ch == '-' && scriptCodeSize >= 3 && !src.escaped() && scriptCode[scriptCodeSize-3] == '<' && scriptCode[scriptCodeSize-2] == '!' && scriptCode[scriptCodeSize-1] == '-' ) { comment = true; parseComment( src ); continue; } if ( scriptCodeResync && !tquote && ( ch == '>' ) ) { ++src; scriptCodeSize = scriptCodeResync-1; scriptCodeResync = 0; scriptCode[ scriptCodeSize ] = scriptCode[ scriptCodeSize + 1 ] = 0; if ( script ) scriptHandler(); else { processListing(TokenizerString(scriptCode, scriptCodeSize)); processToken(); if ( style ) { currToken.id = ID_STYLE + ID_CLOSE_TAG; } else if ( textarea ) { currToken.id = ID_TEXTAREA + ID_CLOSE_TAG; } else if ( title ) { currToken.id = ID_TITLE + ID_CLOSE_TAG; } else if ( xmp ) { currToken.id = ID_XMP + ID_CLOSE_TAG; } processToken(); style = script = style = textarea = title = xmp = false; tquote = NoQuote; scriptCodeSize = scriptCodeResync = 0; } return; } // possible end of tagname, lets check. if ( !scriptCodeResync && !escaped && !src.escaped() && ( ch == '>' || ch == '/' || ch <= ' ' ) && ch && scriptCodeSize >= searchStopperLen && tagMatch( searchStopper, scriptCode+scriptCodeSize-searchStopperLen, searchStopperLen )) { scriptCodeResync = scriptCodeSize-searchStopperLen+1; tquote = NoQuote; continue; } if ( scriptCodeResync && !escaped ) { if(ch == '\"') tquote = (tquote == NoQuote) ? DoubleQuote : ((tquote == SingleQuote) ? SingleQuote : NoQuote); else if(ch == '\'') tquote = (tquote == NoQuote) ? SingleQuote : (tquote == DoubleQuote) ? DoubleQuote : NoQuote; else if (tquote != NoQuote && (ch == '\r' || ch == '\n')) tquote = NoQuote; } escaped = ( !escaped && ch == '\\' ); if (!scriptCodeResync && (textarea||title) && !src.escaped() && ch == '&') { QChar *scriptCodeDest = scriptCode+scriptCodeSize; ++src; parseEntity(src,scriptCodeDest,true);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -