1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef V8_SCANNER_CHARACTER_STREAMS_H_
6 #define V8_SCANNER_CHARACTER_STREAMS_H_
8 #include "src/scanner.h"
13 // A buffered character stream based on a random access character
14 // source (ReadBlock can be called with pos_ pointing to any position,
15 // even positions before the current).
16 class BufferedUtf16CharacterStream: public Utf16CharacterStream {
18 BufferedUtf16CharacterStream();
19 virtual ~BufferedUtf16CharacterStream();
21 virtual void PushBack(uc32 character);
24 static const size_t kBufferSize = 512;
25 static const size_t kPushBackStepSize = 16;
27 virtual size_t SlowSeekForward(size_t delta);
28 virtual bool ReadBlock();
29 virtual void SlowPushBack(uc16 character);
31 virtual size_t BufferSeekForward(size_t delta) = 0;
32 virtual size_t FillBuffer(size_t position) = 0;
34 const uc16* pushback_limit_;
35 uc16 buffer_[kBufferSize];
39 // Generic string stream.
40 class GenericStringUtf16CharacterStream: public BufferedUtf16CharacterStream {
42 GenericStringUtf16CharacterStream(Handle<String> data, size_t start_position,
44 virtual ~GenericStringUtf16CharacterStream();
46 virtual bool SetBookmark();
47 virtual void ResetToBookmark();
50 static const size_t kNoBookmark = -1;
52 virtual size_t BufferSeekForward(size_t delta);
53 virtual size_t FillBuffer(size_t position);
55 Handle<String> string_;
61 // Utf16 stream based on a literal UTF-8 string.
62 class Utf8ToUtf16CharacterStream: public BufferedUtf16CharacterStream {
64 Utf8ToUtf16CharacterStream(const byte* data, size_t length);
65 virtual ~Utf8ToUtf16CharacterStream();
67 static size_t CopyChars(uint16_t* dest, size_t length, const byte* src,
68 size_t* src_pos, size_t src_length);
71 virtual size_t BufferSeekForward(size_t delta);
72 virtual size_t FillBuffer(size_t char_position);
73 void SetRawPosition(size_t char_position);
75 const byte* raw_data_;
76 size_t raw_data_length_; // Measured in bytes, not characters.
78 // The character position of the character at raw_data[raw_data_pos_].
79 // Not necessarily the same as pos_.
80 size_t raw_character_position_;
84 // ExternalStreamingStream is a wrapper around an ExternalSourceStream (see
85 // include/v8.h) subclass implemented by the embedder.
86 class ExternalStreamingStream : public BufferedUtf16CharacterStream {
88 ExternalStreamingStream(ScriptCompiler::ExternalSourceStream* source_stream,
89 v8::ScriptCompiler::StreamedSource::Encoding encoding)
90 : source_stream_(source_stream),
93 current_data_offset_(0),
94 current_data_length_(0),
95 utf8_split_char_buffer_length_(0) {}
97 virtual ~ExternalStreamingStream() { delete[] current_data_; }
99 size_t BufferSeekForward(size_t delta) override {
100 // We never need to seek forward when streaming scripts. We only seek
101 // forward when we want to parse a function whose location we already know,
102 // and when streaming, we don't know the locations of anything we haven't
108 size_t FillBuffer(size_t position) override;
111 void HandleUtf8SplitCharacters(size_t* data_in_buffer);
113 ScriptCompiler::ExternalSourceStream* source_stream_;
114 v8::ScriptCompiler::StreamedSource::Encoding encoding_;
115 const uint8_t* current_data_;
116 size_t current_data_offset_;
117 size_t current_data_length_;
118 // For converting UTF-8 characters which are split across two data chunks.
119 uint8_t utf8_split_char_buffer_[4];
120 size_t utf8_split_char_buffer_length_;
124 // UTF16 buffer to read characters from an external string.
125 class ExternalTwoByteStringUtf16CharacterStream: public Utf16CharacterStream {
127 ExternalTwoByteStringUtf16CharacterStream(Handle<ExternalTwoByteString> data,
130 virtual ~ExternalTwoByteStringUtf16CharacterStream();
132 virtual void PushBack(uc32 character) {
133 DCHECK(buffer_cursor_ > raw_data_);
138 virtual bool SetBookmark();
139 virtual void ResetToBookmark();
142 virtual size_t SlowSeekForward(size_t delta) {
143 // Fast case always handles seeking.
146 virtual bool ReadBlock() {
147 // Entire string is read at start.
150 Handle<ExternalTwoByteString> source_;
151 const uc16* raw_data_; // Pointer to the actual array of characters.
154 static const size_t kNoBookmark = -1;
159 } } // namespace v8::internal
161 #endif // V8_SCANNER_CHARACTER_STREAMS_H_