| /* |
| * Copyright (C) 2010 Google Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include "DOMTokenList.h" |
| |
| #include "ExceptionCode.h" |
| #include "HTMLParserIdioms.h" |
| #include <wtf/text/StringBuilder.h> |
| |
| namespace WebCore { |
| |
| bool DOMTokenList::validateToken(const AtomicString& token, ExceptionCode& ec) |
| { |
| if (token.isEmpty()) { |
| ec = SYNTAX_ERR; |
| return false; |
| } |
| |
| unsigned length = token.length(); |
| for (unsigned i = 0; i < length; ++i) { |
| if (isHTMLSpace(token[i])) { |
| ec = INVALID_CHARACTER_ERR; |
| return false; |
| } |
| } |
| |
| return true; |
| } |
| |
| String DOMTokenList::addToken(const AtomicString& input, const AtomicString& token) |
| { |
| if (input.isEmpty()) |
| return token; |
| |
| StringBuilder builder; |
| builder.append(input); |
| if (!isHTMLSpace(input[input.length() - 1])) |
| builder.append(' '); |
| |
| builder.append(token); |
| return builder.toString(); |
| } |
| |
| String DOMTokenList::removeToken(const AtomicString& input, const AtomicString& token) |
| { |
| // Algorithm defined at http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#remove-a-token-from-a-string |
| |
| unsigned inputLength = input.length(); |
| StringBuilder output; // 3 |
| output.reserveCapacity(inputLength); |
| unsigned position = 0; // 4 |
| |
| // Step 5 |
| while (position < inputLength) { |
| if (isHTMLSpace(input[position])) { // 6 |
| output.append(input[position++]); // 6.1, 6.2 |
| continue; // 6.3 |
| } |
| |
| // Step 7 |
| StringBuilder s; |
| while (position < inputLength && isNotHTMLSpace(input[position])) |
| s.append(input[position++]); |
| |
| // Step 8 |
| if (s.toStringPreserveCapacity() == token) { |
| // Step 8.1 |
| while (position < inputLength && isHTMLSpace(input[position])) |
| ++position; |
| |
| // Step 8.2 |
| size_t j = output.length(); |
| while (j > 0 && isHTMLSpace(output[j - 1])) |
| --j; |
| output.resize(j); |
| |
| // Step 8.3 |
| if (position < inputLength && !output.isEmpty()) |
| output.append(' '); |
| } else |
| output.append(s.toStringPreserveCapacity()); // Step 9 |
| } |
| |
| return output.toString(); |
| } |
| |
| } // namespace WebCore |