📄 dom_stringimpl.cpp
字号:
/** * This file is part of the DOM implementation for KDE. * * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * (C) 2001 Dirk Mueller ( mueller@kde.org ) * * 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. * * $Id: dom_stringimpl.cpp,v 1.40 2001/07/25 08:24:59 knoll Exp $ */#include "dom_stringimpl.h"#include <qstring.h>#include <qlist.h>#include <kdebug.h>#include <string.h>using namespace DOM;using namespace khtml;#define QT_ALLOC_QCHAR_VEC( N ) (QChar*) new char[ sizeof(QChar)*( N ) ]#define QT_DELETE_QCHAR_VEC( P ) delete[] ((char*)( P ))template class QList<Length>;DOMStringImpl::DOMStringImpl(const QChar *str, uint len){ if(str && len) { s = QT_ALLOC_QCHAR_VEC( len ); memcpy( s, str, len * sizeof(QChar) ); l = len; } else { s = QT_ALLOC_QCHAR_VEC( 1 ); // crash protection s[0] = QChar::null; l = 0; }}DOMStringImpl::DOMStringImpl(const char *str){ if(str) { l = strlen(str); s = QT_ALLOC_QCHAR_VEC( l ); int i = l; QChar* ptr = s; while( i-- ) *ptr++ = *str++; } else { s = QT_ALLOC_QCHAR_VEC( 1 ); // crash protection s[0] = QChar::null; l = 0; }}DOMStringImpl::DOMStringImpl(const QChar &ch){ s = QT_ALLOC_QCHAR_VEC( 1 ); s[0] = ch; l = 1;}DOMStringImpl::~DOMStringImpl(){ if(s) QT_DELETE_QCHAR_VEC(s);}void DOMStringImpl::append(DOMStringImpl *str){ if(str && str->l != 0) { int newlen = l+str->l; QChar *c = QT_ALLOC_QCHAR_VEC(newlen); memcpy(c, s, l*sizeof(QChar)); memcpy(c+l, str->s, str->l*sizeof(QChar)); if(s) QT_DELETE_QCHAR_VEC(s); s = c; l = newlen; }}void DOMStringImpl::insert(DOMStringImpl *str, uint pos){ if(pos > l) { append(str); return; } if(str && str->l != 0) { int newlen = l+str->l; QChar *c = QT_ALLOC_QCHAR_VEC(newlen); memcpy(c, s, pos*sizeof(QChar)); memcpy(c+pos, str->s, str->l*sizeof(QChar)); memcpy(c+pos+str->l, s+pos, (l-pos)*sizeof(QChar)); if(s) QT_DELETE_QCHAR_VEC(s); s = c; l = newlen; }}void DOMStringImpl::truncate(int len){ if(len > (int)l) return; int nl = len < 1 ? 1 : len; QChar *c = QT_ALLOC_QCHAR_VEC(nl); memcpy(c, s, nl*sizeof(QChar)); if(s) QT_DELETE_QCHAR_VEC(s); s = c; l = len;}void DOMStringImpl::remove(uint pos, int len){ if(pos >= l ) return; if(pos+len > l) len = l - pos; uint newLen = l-len; QChar *c = QT_ALLOC_QCHAR_VEC(newLen); memcpy(c, s, pos*sizeof(QChar)); memcpy(c+pos, s+pos+len, (l-len-pos)*sizeof(QChar)); if(s) QT_DELETE_QCHAR_VEC(s); s = c; l = newLen;}DOMStringImpl *DOMStringImpl::split(uint pos){ if( pos >=l ) return new DOMStringImpl(); uint newLen = l-pos; QChar *c = QT_ALLOC_QCHAR_VEC(newLen); memcpy(c, s+pos, newLen*sizeof(QChar)); DOMStringImpl *str = new DOMStringImpl(s + pos, newLen); truncate(pos); return str;}DOMStringImpl *DOMStringImpl::substring(uint pos, uint len){ if( pos >=l ) return new DOMStringImpl(); if(pos+len > l) len = l - pos; return new DOMStringImpl(s + pos, len);}static Length parseLength(QChar *s, unsigned int l){ const QChar* last = s+l-1; if ( *last == QChar('%')) { // CSS allows one decimal after the point, like // 42.2%, but not 42.22% // we ignore the non-integer part for speed/space reasons int i = QConstString(s, l).string().findRev('.'); if ( i >= 0 && i < (int)l-1 ) l = i + 1; return Length(QConstString(s, l-1).string().toInt(), Percent); } if ( *last == QChar('*')) { if(l == 1) return Length(1, Relative); else return Length(QConstString(s, l-1).string().toInt(), Relative); } // should we strip of the non-integer part here also? // CSS says no, all important browsers do so, including Mozilla. sigh. bool ok; // this ugly construct helps in case someone specifies a length as "100." int v = (int) QConstString(s, l).string().toFloat(&ok); if(ok) { return Length(v, Fixed); } if(l == 4 && QConstString(s, l).string().contains("auto", false)) return Length(0, Variable); return Length(0, Undefined);}Length DOMStringImpl::toLength() const{ return parseLength(s,l);}QList<Length> *DOMStringImpl::toLengthList() const{ QString str(s, l); int pos = 0; int pos2; // web authors are so stupid. This is a workaround // to fix lists like "1,2px 3 ,4" // make sure not to break percentage or relative widths // ### what about "auto" ? QChar space(' '); for(unsigned int i=0; i < l; i++) { char cc = str[i].latin1(); if ( cc > '9' || ( cc < '0' && cc != '-' && cc != '*' && cc != '%' && cc != '.') ) str[i] = space; } str = str.simplifyWhiteSpace(); QList<Length> *list = new QList<Length>; list->setAutoDelete(true); while((pos2 = str.find(' ', pos)) != -1) { Length *l = new Length(parseLength((QChar *) str.unicode()+pos, pos2-pos)); list->append(l); pos = pos2+1; } Length *l = new Length(parseLength((QChar *) str.unicode()+pos, str.length()-pos)); list->append(l); return list;}bool DOMStringImpl::isLower() const{ unsigned int i; for (i = 0; i < l; i++) if (s[i].lower() != s[i]) return false; return true;}DOMStringImpl *DOMStringImpl::lower(){ DOMStringImpl *c = new DOMStringImpl; if(!l) return c; c->s = QT_ALLOC_QCHAR_VEC(l); c->l = l; for (unsigned int i = 0; i < l; i++) c->s[i] = s[i].lower(); return c;}DOMStringImpl *DOMStringImpl::upper(){ DOMStringImpl *c = new DOMStringImpl; if(!l) return c; c->s = QT_ALLOC_QCHAR_VEC(l); c->l = l; for (unsigned int i = 0; i < l; i++) c->s[i] = s[i].upper(); return c;}DOMStringImpl *DOMStringImpl::capitalize(){ DOMStringImpl *c = new DOMStringImpl; if(!l) return c; c->s = QT_ALLOC_QCHAR_VEC(l); c->l = l; if ( l ) c->s[0] = s[0].upper(); for (unsigned int i = 1; i < l; i++) c->s[i] = s[i-1].isLetterOrNumber() ? s[i].lower() : s[i].upper(); return c;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -