|
| 1 | +// Copyright 2024 Google LLC. Use of this source code is governed by an |
| 2 | +// MIT-style license that can be found in the LICENSE file or at |
| 3 | +// https://opensource.org/licenses/MIT. |
| 4 | + |
| 5 | +import {Observable} from 'rxjs'; |
| 6 | +import {takeUntil} from 'rxjs/operators'; |
| 7 | +import {create, fromBinary, toBinary} from '@bufbuild/protobuf'; |
| 8 | +import * as varint from 'varint'; |
| 9 | + |
| 10 | +import * as pkg from '../../../package.json'; |
| 11 | +import {PacketTransformer} from '../packet-transformer'; |
| 12 | +import {ReusableWorker} from './reusable_worker'; |
| 13 | +import {errorId, handleError, paramsError, parseError} from './utils'; |
| 14 | +import * as proto from '../vendor/embedded_sass_pb'; |
| 15 | + |
| 16 | +export class WorkerDispatcher { |
| 17 | + private readonly allWorkers: ReusableWorker[] = []; |
| 18 | + |
| 19 | + private readonly inactiveWorkers: ReusableWorker[] = []; |
| 20 | + |
| 21 | + private readonly activeWorkers = new Map<number, ReusableWorker>(); |
| 22 | + |
| 23 | + private readonly stdin$ = new Observable<Buffer>(observer => { |
| 24 | + process.stdin.on('data', buffer => observer.next(buffer)); |
| 25 | + }).pipe( |
| 26 | + takeUntil( |
| 27 | + new Promise(resolve => { |
| 28 | + process.stdin.on('close', () => resolve(undefined)); |
| 29 | + }) |
| 30 | + ) |
| 31 | + ); |
| 32 | + |
| 33 | + private readonly packetTransformer = new PacketTransformer( |
| 34 | + this.stdin$, |
| 35 | + buffer => process.stdout.write(buffer) |
| 36 | + ); |
| 37 | + |
| 38 | + listen(): void { |
| 39 | + this.packetTransformer.protobufs$.subscribe({ |
| 40 | + next: (buffer: Uint8Array) => { |
| 41 | + let compilationId: number; |
| 42 | + try { |
| 43 | + compilationId = varint.decode(buffer); |
| 44 | + } catch (error) { |
| 45 | + throw parseError(`Invalid compilation ID varint: ${error}`); |
| 46 | + } |
| 47 | + |
| 48 | + try { |
| 49 | + if (compilationId !== 0) { |
| 50 | + if (this.activeWorkers.has(compilationId)) { |
| 51 | + const worker = this.activeWorkers.get(compilationId)!; |
| 52 | + worker.send(buffer); |
| 53 | + } else { |
| 54 | + const worker = this.getWorker(compilationId); |
| 55 | + this.activeWorkers.set(compilationId, worker); |
| 56 | + worker.send(buffer); |
| 57 | + } |
| 58 | + return; |
| 59 | + } |
| 60 | + |
| 61 | + let message; |
| 62 | + try { |
| 63 | + message = fromBinary( |
| 64 | + proto.InboundMessageSchema, |
| 65 | + new Uint8Array(buffer.buffer, varint.decode.bytes) |
| 66 | + ); |
| 67 | + } catch (error) { |
| 68 | + throw parseError(`Invalid protobuf: ${error}`); |
| 69 | + } |
| 70 | + |
| 71 | + if (message.message.case !== 'versionRequest') { |
| 72 | + throw paramsError( |
| 73 | + `Only VersionRequest may have wire ID 0, was ${message.message.case}.` |
| 74 | + ); |
| 75 | + } |
| 76 | + const request = message.message.value; |
| 77 | + const response = WorkerDispatcher.versionResponse(); |
| 78 | + response.id = request.id; |
| 79 | + this.send( |
| 80 | + 0, |
| 81 | + create(proto.OutboundMessageSchema, { |
| 82 | + message: { |
| 83 | + case: 'versionResponse', |
| 84 | + value: response, |
| 85 | + }, |
| 86 | + }) |
| 87 | + ); |
| 88 | + } catch (error) { |
| 89 | + this.handleError(error); |
| 90 | + } |
| 91 | + }, |
| 92 | + complete: () => { |
| 93 | + this.allWorkers.forEach(worker => worker.terminate()); |
| 94 | + }, |
| 95 | + error: error => { |
| 96 | + this.handleError(parseError(error.message)); |
| 97 | + }, |
| 98 | + }); |
| 99 | + } |
| 100 | + |
| 101 | + private getWorker(compilationId: number): ReusableWorker { |
| 102 | + let worker: ReusableWorker; |
| 103 | + if (this.inactiveWorkers.length > 0) { |
| 104 | + worker = this.inactiveWorkers.pop()!; |
| 105 | + } else { |
| 106 | + worker = new ReusableWorker(process.argv[1]); |
| 107 | + this.allWorkers.push(worker); |
| 108 | + } |
| 109 | + |
| 110 | + worker.borrow(buffer => { |
| 111 | + const category = buffer.at(0); |
| 112 | + const packet = Buffer.from(buffer.buffer, 1); |
| 113 | + |
| 114 | + switch (category) { |
| 115 | + case 0: |
| 116 | + this.packetTransformer.writeProtobuf(packet); |
| 117 | + break; |
| 118 | + case 1: |
| 119 | + this.activeWorkers.delete(compilationId); |
| 120 | + worker.release(); |
| 121 | + this.inactiveWorkers.push(worker); |
| 122 | + this.packetTransformer.writeProtobuf(packet); |
| 123 | + break; |
| 124 | + case 2: { |
| 125 | + this.packetTransformer.writeProtobuf(packet); |
| 126 | + /* eslint-disable-next-line n/no-process-exit */ |
| 127 | + process.exit(); |
| 128 | + } |
| 129 | + } |
| 130 | + }); |
| 131 | + |
| 132 | + return worker; |
| 133 | + } |
| 134 | + |
| 135 | + private handleError( |
| 136 | + error: Error | proto.ProtocolError, |
| 137 | + { |
| 138 | + compilationId, |
| 139 | + messageId, |
| 140 | + }: {compilationId?: number; messageId?: number} = {} |
| 141 | + ): void { |
| 142 | + this.sendError(compilationId ?? errorId, handleError(error, {messageId})); |
| 143 | + process.stdin.destroy(); |
| 144 | + } |
| 145 | + |
| 146 | + private send(compilationId: number, message: proto.OutboundMessage): void { |
| 147 | + const compilationIdLength = varint.encodingLength(compilationId); |
| 148 | + const encodedMessage = toBinary(proto.OutboundMessageSchema, message); |
| 149 | + const buffer = new Uint8Array(compilationIdLength + encodedMessage.length); |
| 150 | + varint.encode(compilationId, buffer); |
| 151 | + buffer.set(encodedMessage, compilationIdLength); |
| 152 | + this.packetTransformer.writeProtobuf(buffer); |
| 153 | + } |
| 154 | + |
| 155 | + private sendError(compilationId: number, error: proto.ProtocolError): void { |
| 156 | + this.send( |
| 157 | + compilationId, |
| 158 | + create(proto.OutboundMessageSchema, { |
| 159 | + message: { |
| 160 | + case: 'error', |
| 161 | + value: error, |
| 162 | + }, |
| 163 | + }) |
| 164 | + ); |
| 165 | + } |
| 166 | + |
| 167 | + static versionResponse(): proto.OutboundMessage_VersionResponse { |
| 168 | + return create(proto.OutboundMessage_VersionResponseSchema, { |
| 169 | + protocolVersion: pkg['protocol-version'], |
| 170 | + compilerVersion: pkg['compiler-version'], |
| 171 | + implementationVersion: pkg['version'], |
| 172 | + implementationName: 'dart-sass', |
| 173 | + }); |
| 174 | + } |
| 175 | +} |
0 commit comments