Rocky_Mountain_Vending/.pnpm-store/v10/files/aa/1f336d4435225dc192e60a2430805eb6165f8ad328fa5d6346d8fb3014a27011ef5568ad6270c7a2f2764b1ec496c1bc50208d13abe7214fb0d159e871eb1b
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

72 lines
No EOL
2.4 KiB
Text

import { EventEmitter } from '../common/EventEmitter.js';
import { debugError } from '../common/util.js';
import { assert } from '../util/assert.js';
import { DisposableStack } from '../util/disposable.js';
/**
* @internal
*/
export class PipeTransport {
#pipeWrite;
#subscriptions = new DisposableStack();
#isClosed = false;
#pendingMessage = [];
onclose;
onmessage;
constructor(pipeWrite, pipeRead) {
this.#pipeWrite = pipeWrite;
const pipeReadEmitter = this.#subscriptions.use(
// NodeJS event emitters don't support `*` so we need to typecast
// As long as we don't use it we should be OK.
new EventEmitter(pipeRead));
pipeReadEmitter.on('data', buffer => {
return this.#dispatch(buffer);
});
pipeReadEmitter.on('close', () => {
if (this.onclose) {
this.onclose.call(null);
}
});
pipeReadEmitter.on('error', debugError);
const pipeWriteEmitter = this.#subscriptions.use(
// NodeJS event emitters don't support `*` so we need to typecast
// As long as we don't use it we should be OK.
new EventEmitter(pipeWrite));
pipeWriteEmitter.on('error', debugError);
}
send(message) {
assert(!this.#isClosed, '`PipeTransport` is closed.');
this.#pipeWrite.write(message);
this.#pipeWrite.write('\0');
}
#dispatch(buffer) {
assert(!this.#isClosed, '`PipeTransport` is closed.');
this.#pendingMessage.push(buffer);
if (buffer.indexOf('\0') === -1) {
return;
}
const concatBuffer = Buffer.concat(this.#pendingMessage);
let start = 0;
let end = concatBuffer.indexOf('\0');
while (end !== -1) {
const message = concatBuffer.toString(undefined, start, end);
setImmediate(() => {
if (this.onmessage) {
this.onmessage.call(null, message);
}
});
start = end + 1;
end = concatBuffer.indexOf('\0', start);
}
if (start >= concatBuffer.length) {
this.#pendingMessage = [];
}
else {
this.#pendingMessage = [concatBuffer.subarray(start)];
}
}
close() {
this.#isClosed = true;
this.#subscriptions.dispose();
}
}
//# sourceMappingURL=PipeTransport.js.map