Index: Source/core/css/parser/CSSInputStream.cpp |
diff --git a/Source/core/css/parser/CSSInputStream.cpp b/Source/core/css/parser/CSSInputStream.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3192885fb9786b366ff2dc4509a166cd8c65b679 |
--- /dev/null |
+++ b/Source/core/css/parser/CSSInputStream.cpp |
@@ -0,0 +1,76 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "config.h" |
+#include "core/css/parser/CSSInputStream.h" |
+ |
+#include "core/html/parser/InputStreamPreprocessor.h" |
+ |
+namespace WebCore { |
+ |
+CSSInputStream::CSSInputStream(String input) |
+ : m_offset(0) |
+ , m_string(input) |
+{ |
+} |
+ |
+UChar CSSInputStream::currentInputChar() |
+{ |
+ if (m_offset >= m_string.length()) |
+ return kEndOfFileMarker; |
+ return m_string[m_offset]; |
+} |
+ |
+UChar CSSInputStream::peek(unsigned lookaheadOffset) |
+{ |
+ if ((m_offset + lookaheadOffset) >= m_string.length()) |
+ return kEndOfFileMarker; |
+ return m_string[m_offset + lookaheadOffset]; |
+} |
+ |
+void CSSInputStream::advance(unsigned offset) |
+{ |
+ ASSERT(m_offset + offset <= m_string.length() + 1); |
+ m_offset += offset; |
+} |
+ |
+void CSSInputStream::pushBack(UChar cc) |
+{ |
+ --m_offset; |
+ ASSERT(currentInputChar() == cc); |
+} |
+ |
+unsigned long long CSSInputStream::getUInt(unsigned start, unsigned end) |
+{ |
+ ASSERT(start <= end && ((m_offset + end) <= m_string.length())); |
+ bool isResultOK = false; |
+ if (start < end) { |
+ unsigned long long result; |
+ if (m_string.is8Bit()) |
+ result = charactersToUInt64Strict(m_string.characters8() + m_offset + start, end - start, &isResultOK); |
+ else |
+ result = charactersToUInt64Strict(m_string.characters16() + m_offset + start, end - start, &isResultOK); |
+ if (isResultOK) |
+ return result; |
+ } |
+ return 0; |
+} |
+ |
+double CSSInputStream::getDouble(unsigned start, unsigned end) |
+{ |
+ ASSERT(start <= end && ((m_offset + end) <= m_string.length())); |
+ bool isResultOK = false; |
+ if (start < end) { |
+ double result; |
+ if (m_string.is8Bit()) |
+ result = charactersToDouble(m_string.characters8() + m_offset + start, end - start, &isResultOK); |
+ else |
+ result = charactersToDouble(m_string.characters16() + m_offset + start, end - start, &isResultOK); |
+ if (isResultOK) |
+ return result; |
+ } |
+ return 0.0; |
+} |
+ |
+} // namespace WebCore |