node-sdk/examples/exec.ts

71 строка
2.2 KiB
TypeScript

/*
Copyright 2020 Docker CLI JavaScript SDK 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.
*/
import * as grpc from '@grpc/grpc-js';
import * as readline from 'readline';
import { ExecRequest, ExecResponse } from '../src/containers';
import { Containers, Streams } from '../src/index';
import { BytesMessage } from '../src/streams';
const containerId = process.argv[2];
const client = new Containers();
const streamsClient = new Streams();
// We ask for a stream first
const stream = streamsClient.newStream();
stream.on('metadata', (metadata: grpc.Metadata) => {
// the stream id is returned in a gRPC header, we get it
const streamId = metadata.get('id')[0] as string;
// Put the streamId into the exec request in order to
// be able to have an interactive session
const request = new ExecRequest()
.setCommand('/bin/bash')
.setStreamId(streamId)
.setId(containerId)
.setTty(true);
client.exec(request, (err: grpc.ServiceError | null, _: ExecResponse) => {
if (err != null) {
throw err;
}
// The `exec` request finishes once the stream is closed, we can exit now.
process.exit();
});
});
readline.emitKeypressEvents(process.stdin);
process.stdin.setRawMode(true);
// Send each keypress over the stream
process.stdin.on('keypress', (_, key) => {
const mess = new BytesMessage();
const a = new Uint8Array(key.sequence.length);
for (let i = 0; i <= key.sequence.length; i++) {
a[i] = key.sequence.charCodeAt(i);
}
mess.setValue(a);
stream.write(mess.toAny());
});
// Print everything we receive on the stream
stream.on('data', (chunk: any) => {
const m = BytesMessage.fromAny(chunk);
process.stdout.write(m.getValue());
});