UNPKG

@stdlib/streams

Version:
88 lines (77 loc) 2.59 kB
/** * @license Apache-2.0 * * Copyright (c) 2018 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ 'use strict'; // MODULES // var isObject = require( '@stdlib/assert/is-plain-object' ); var format = require( '@stdlib/string/format' ); var assign = require( '@stdlib/object/assign' ); var Stream = require( './main.js' ); // MAIN // /** * Creates a reusable stream factory. * * @param {Options} [options] - stream options * @param {(string|RegExp)} [options.sep=/\r?\n/] - separator used to split streamed data * @param {boolean} [options.objectMode=false] - specifies whether a stream should operate in object mode * @param {(string|null)} [options.encoding=null] - specifies how `Buffer` objects should be decoded to `strings` * @param {NonNegativeNumber} [options.highWaterMark] - specifies the `Buffer` level for when `write()` starts returning `false` * @param {boolean} [options.allowHalfOpen=false] - specifies whether the stream should remain open even if one side ends * @param {boolean} [options.writableObjectMode=false] - specifies whether the writable side should be in object mode * @throws {TypeError} options argument must be an object * @returns {Function} stream factory * * @example * var opts = { * 'sep': '\t', * 'objectMode': true, * 'encoding': 'utf8' * }; * * var factory = streamFactory( opts ); * * // Create 10 identically configured streams... * var streams = []; * var i; * for ( i = 0; i < 10; i++ ) { * streams.push( factory() ); * } */ function streamFactory( options ) { var opts; if ( arguments.length ) { if ( !isObject( options ) ) { throw new TypeError( format( 'invalid argument. Options argument must be an object. Value: `%s`.', options ) ); } opts = assign( {}, options ); } else { opts = {}; } return splitStream; /** * Creates a transform stream for splitting streamed data. * * @private * @throws {TypeError} must provide valid options * @returns {SplitStream} split stream */ function splitStream() { return new Stream( opts ); } } // EXPORTS // module.exports = streamFactory;