2020-07-14 10:51:37 -07:00
|
|
|
/**
|
|
|
|
|
* Copyright (c) Microsoft Corporation.
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-08-24 14:48:03 -07:00
|
|
|
import * as channels from '../protocol/channels';
|
2020-07-14 10:51:37 -07:00
|
|
|
import { Dispatcher, DispatcherScope } from './dispatcher';
|
|
|
|
|
import * as stream from 'stream';
|
2021-02-09 09:00:00 -08:00
|
|
|
import { SdkObject } from '../server/sdkObject';
|
2020-07-14 10:51:37 -07:00
|
|
|
|
2021-02-09 09:00:00 -08:00
|
|
|
export class StreamWrapper extends SdkObject {
|
|
|
|
|
readonly stream: stream.Readable;
|
|
|
|
|
constructor(parentObject: SdkObject, stream: stream.Readable) {
|
|
|
|
|
super(parentObject);
|
|
|
|
|
this.stream = stream;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export class StreamDispatcher extends Dispatcher<StreamWrapper, channels.StreamInitializer> implements channels.StreamChannel {
|
|
|
|
|
constructor(scope: DispatcherScope, stream: StreamWrapper) {
|
2020-07-22 10:37:21 -07:00
|
|
|
super(scope, stream, 'Stream', {});
|
2020-07-14 10:51:37 -07:00
|
|
|
}
|
|
|
|
|
|
2020-08-20 11:25:33 -07:00
|
|
|
async read(params: channels.StreamReadParams): Promise<channels.StreamReadResult> {
|
2021-02-09 09:00:00 -08:00
|
|
|
const buffer = this._object.stream.read(Math.min(this._object.stream.readableLength, params.size || this._object.stream.readableLength));
|
2020-07-14 18:26:50 -07:00
|
|
|
return { binary: buffer ? buffer.toString('base64') : '' };
|
2020-07-14 10:51:37 -07:00
|
|
|
}
|
2020-08-26 12:46:30 -07:00
|
|
|
|
|
|
|
|
async close() {
|
2021-02-09 09:00:00 -08:00
|
|
|
this._object.stream.destroy();
|
2020-08-26 12:46:30 -07:00
|
|
|
}
|
2020-07-14 10:51:37 -07:00
|
|
|
}
|