Home | History | Annotate | Download | only in svg
      1 /*
      2     Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann (at) kde.org>
      3                   2004, 2005, 2006 Rob Buis <buis (at) kde.org>
      4 
      5     This library is free software; you can redistribute it and/or
      6     modify it under the terms of the GNU Library General Public
      7     License as published by the Free Software Foundation; either
      8     version 2 of the License, or (at your option) any later version.
      9 
     10     This library is distributed in the hope that it will be useful,
     11     but WITHOUT ANY WARRANTY; without even the implied warranty of
     12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     13     Library General Public License for more details.
     14 
     15     You should have received a copy of the GNU Library General Public License
     16     along with this library; see the file COPYING.LIB.  If not, write to
     17     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     18     Boston, MA 02110-1301, USA.
     19 */
     20 
     21 #include "config.h"
     22 
     23 #if ENABLE(SVG)
     24 #include "SVGStringList.h"
     25 
     26 #include "SVGParserUtilities.h"
     27 
     28 namespace WebCore {
     29 
     30 SVGStringList::SVGStringList(const QualifiedName& attributeName)
     31     : SVGList<String>(attributeName)
     32 {
     33 }
     34 
     35 SVGStringList::~SVGStringList()
     36 {
     37 }
     38 
     39 void SVGStringList::reset(const String& str)
     40 {
     41     ExceptionCode ec = 0;
     42 
     43     parse(str, ' ');
     44     if (numberOfItems() == 0)
     45         appendItem(String(""), ec); // Create empty string...
     46 }
     47 
     48 void SVGStringList::parse(const String& data, UChar delimiter)
     49 {
     50     // TODO : more error checking/reporting
     51     ExceptionCode ec = 0;
     52     clear(ec);
     53 
     54     const UChar* ptr = data.characters();
     55     const UChar* end = ptr + data.length();
     56     while (ptr < end) {
     57         const UChar* start = ptr;
     58         while (ptr < end && *ptr != delimiter && !isWhitespace(*ptr))
     59             ptr++;
     60         if (ptr == start)
     61             break;
     62         appendItem(String(start, ptr - start), ec);
     63         skipOptionalSpacesOrDelimiter(ptr, end, delimiter);
     64     }
     65 }
     66 
     67 }
     68 
     69 #endif // ENABLE(SVG)
     70