You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
2.5 KiB
105 lines
2.5 KiB
/* |
|
Copyright (c) 2014-2016, Matteo Collina <hello@matteocollina.com> |
|
|
|
Permission to use, copy, modify, and/or distribute this software for any |
|
purpose with or without fee is hereby granted, provided that the above |
|
copyright notice and this permission notice appear in all copies. |
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR |
|
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
|
*/ |
|
|
|
'use strict'; |
|
|
|
var through = require('through2') |
|
|
|
function transform(chunk, enc, cb) { |
|
var list = chunk.toString('utf8').split(this.matcher) |
|
, remaining = list.pop() |
|
, i |
|
|
|
if (list.length >= 1) { |
|
push(this, this.mapper((this._last + list.shift()))) |
|
} else { |
|
remaining = this._last + remaining |
|
} |
|
|
|
for (i = 0; i < list.length; i++) { |
|
push(this, this.mapper(list[i])) |
|
} |
|
|
|
this._last = remaining |
|
|
|
cb() |
|
} |
|
|
|
function flush(cb) { |
|
if (this._last) |
|
push(this, this.mapper(this._last)) |
|
|
|
cb() |
|
} |
|
|
|
function push(self, val) { |
|
if (val !== undefined) |
|
self.push(val) |
|
} |
|
|
|
function noop(incoming) { |
|
return incoming |
|
} |
|
|
|
function split(matcher, mapper, options) { |
|
|
|
// Set defaults for any arguments not supplied. |
|
matcher = matcher || /\r?\n/ |
|
mapper = mapper || noop |
|
options = options || {} |
|
|
|
// Test arguments explicitly. |
|
switch (arguments.length) { |
|
case 1: |
|
// If mapper is only argument. |
|
if (typeof matcher === 'function') { |
|
mapper = matcher |
|
matcher = /\r?\n/ |
|
} |
|
// If options is only argument. |
|
else if (typeof matcher === 'object' && !(matcher instanceof RegExp)) { |
|
options = matcher |
|
matcher = /\r?\n/ |
|
} |
|
break |
|
|
|
case 2: |
|
// If mapper and options are arguments. |
|
if (typeof matcher === 'function') { |
|
options = mapper |
|
mapper = matcher |
|
matcher = /\r?\n/ |
|
} |
|
// If matcher and options are arguments. |
|
else if (typeof mapper === 'object') { |
|
options = mapper |
|
mapper = noop |
|
} |
|
} |
|
|
|
var stream = through(options, transform, flush) |
|
|
|
// this stream is in objectMode only in the readable part |
|
stream._readableState.objectMode = true; |
|
|
|
stream._last = '' |
|
stream.matcher = matcher |
|
stream.mapper = mapper |
|
|
|
return stream |
|
} |
|
|
|
module.exports = split
|
|
|