blob: 4b8e194267a3141f21c189bc23c6a0a405575cca [file] [log] [blame]
/*
* Copyright (C) Research In Motion Limited 2011. All rights reserved.
*
* 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., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef UTF16TextIterator_h
#define UTF16TextIterator_h
#include "platform/PlatformExport.h"
#include "wtf/Allocator.h"
#include "wtf/text/CharacterNames.h"
#include "wtf/text/WTFString.h"
namespace blink {
class PLATFORM_EXPORT UTF16TextIterator {
USING_FAST_MALLOC(UTF16TextIterator);
WTF_MAKE_NONCOPYABLE(UTF16TextIterator);
public:
// The passed in UChar pointer starts at 'offset'. The iterator operates on
// the range [offset, endOffset].
// 'length' denotes the maximum length of the UChar array, which might exceed
// 'endOffset'.
UTF16TextIterator(const UChar*, int length);
inline bool consume(UChar32& character) {
if (m_offset >= m_length)
return false;
character = *m_characters;
m_currentGlyphLength = 1;
if (!U16_IS_SURROGATE(character))
return true;
return consumeSurrogatePair(character);
}
void advance() {
m_characters += m_currentGlyphLength;
m_offset += m_currentGlyphLength;
}
int offset() const { return m_offset; }
const UChar* characters() const { return m_characters; }
const UChar* glyphEnd() const { return m_characters + m_currentGlyphLength; }
private:
bool isValidSurrogatePair(UChar32&);
bool consumeSurrogatePair(UChar32&);
void consumeMultipleUChar();
const UChar* m_characters;
const UChar* m_charactersEnd;
int m_offset;
int m_length;
unsigned m_currentGlyphLength;
};
} // namespace blink
#endif