Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Lexer#stream() #36

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 13 additions & 0 deletions moo.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,19 @@
this.stack = []
this.setState(state)
this.reset()
if (Transform) Transform.call(this, {readableObjectMode: true})
}

if (typeof module !== 'undefined' && module.exports) {
var Transform = require('stream').Transform
require('util').inherits(Lexer, Transform)

Lexer.prototype._transform = function(chunk, encoding, cb) {
this.feed(chunk.toString())
var token
while (token = this.next()) this.push(token)
cb()
}
}

Lexer.prototype.setState = function(state) {
Expand Down
67 changes: 67 additions & 0 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,73 @@ describe('errors', () => {
})


describe('streams', () => {
const lexer = compile({
word: /[a-z]+/,
space: {match: /\s+/, lineBreaks: true},
})
const {Readable, Writable} = require('stream')

const inputs = ['this is\n', 'a test']
const tokens = [
{type: 'word', value: 'this'},
{type: 'space', value: ' '},
{type: 'word', value: 'is'},
{type: 'space', value: '\n'},
{type: 'word', value: 'a'},
{type: 'space', value: ' '},
{type: 'word', value: 'test'},
]

test('can be written and read', () => new Promise((resolve, reject) => {
let index = 0
expect.assertions(tokens.length)

const s = lexer.clone()
s.write(inputs[0])
s.end(inputs[1])

s.on('data', tok => {
try {
expect(tok).toMatchObject(tokens[index++])
} catch (e) {reject(e)}
})
.on('error', reject)
.on('end', resolve)
}))

test('can be piped to/from', () => new Promise((resolve, reject) => {
let input = 0
const rs = new Readable({
read() {
try {
this.push(input < inputs.length ?
Buffer.from(inputs[input++], 'ascii') : null)
} catch (e) {console.log('read', e) || reject(e)}
}
})

let index = 0
expect.assertions(tokens.length)
const ws = new Writable({
objectMode: true,
write(tok, _, cb) {
try {
expect(tok).toMatchObject(tokens[index++])
cb()
} catch (e) {cb(e)}
}
})

rs
.on('error', reject).pipe(lexer.clone())
.on('error', reject).pipe(ws)
.on('error', reject)
.on('finish', resolve)
}))
})


describe('example: python', () => {

test('kurt tokens', () => {
Expand Down