2019-03-12 22:07:57 +00:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright 2019 Balena Ltd.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2018-01-11 09:22:26 +00:00
|
|
|
import fs = require('fs');
|
|
|
|
|
|
|
|
export function buffer(
|
2018-01-09 15:05:24 +00:00
|
|
|
stream: NodeJS.ReadableStream,
|
|
|
|
bufferFile: string,
|
2020-06-30 20:24:35 +00:00
|
|
|
): Promise<NodeJS.ReadableStream> {
|
2017-12-20 21:46:01 +00:00
|
|
|
const fileWriteStream = fs.createWriteStream(bufferFile);
|
|
|
|
|
2020-06-30 20:24:35 +00:00
|
|
|
return new Promise(function (resolve, reject) {
|
2020-06-15 22:53:07 +00:00
|
|
|
stream.on('error', reject).on('end', resolve).pipe(fileWriteStream);
|
2018-01-09 15:05:24 +00:00
|
|
|
}).then(
|
|
|
|
() =>
|
2020-06-30 20:24:35 +00:00
|
|
|
new Promise(function (resolve, reject) {
|
2019-03-12 22:07:57 +00:00
|
|
|
const fstream = fs.createReadStream(bufferFile);
|
2018-01-04 16:17:43 +00:00
|
|
|
|
2019-03-12 22:07:57 +00:00
|
|
|
fstream.on('open', () => resolve(fstream)).on('error', reject);
|
2018-01-09 15:05:24 +00:00
|
|
|
}),
|
|
|
|
);
|
2018-01-04 14:07:55 +00:00
|
|
|
}
|