handle partial socket data

This commit is contained in:
Benjamin Wilson 2024-07-04 17:19:58 -04:00
parent fc96b9ea45
commit e0239d2805

View File

@ -52,7 +52,8 @@ export class StratumV1Client {
public noFee: boolean;
public hashRate: number;
private buffer: string = '';
constructor(
public readonly socket: Socket,
private readonly stratumV1JobsService: StratumV1JobsService,
@ -65,19 +66,22 @@ export class StratumV1Client {
private readonly addressSettingsService: AddressSettingsService
) {
const rl = createInterface({
input: this.socket
})
this.socket.on('data', (data: Buffer) => {
this.buffer += data.toString();
let lines = this.buffer.split('\n');
this.buffer = lines.pop() || ''; // Save the last part of the data (incomplete line) to the buffer
rl.on("line", async (line) => {
try {
await this.handleMessage(line);
} catch (e) {
await this.socket.end();
console.error(e);
}
})
rl.on('error', async (error: Error) => { });
lines
.filter(m => m.length > 0)
.forEach(async (m) => {
try {
await this.handleMessage(m);
} catch (e) {
await this.socket.end();
console.error(e);
}
});
});
}