-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: RPC: add useAbortSignal option (#731)
* chore: remove unused variables Remove some unused variables triggering "unused variable" warnings. Signed-off-by: Christian Stewart <christian@paral.in> * feat: RPC: add useAbortSignal option Adds a new option "useAbortSignal" which adds an optional AbortSignal parameter to RPC functions. AbortController and AbortSignal are built-ins in both Node.JS and all web browsers, which implement aborting long-lived processes. For example: const abortController = new AbortController() const responsePromise = rpcClient.DoSomething(request, abortController.signal) // abort the RPC call early abortController.abort() Fixes #730 Signed-off-by: Christian Stewart <christian@paral.in> Signed-off-by: Christian Stewart <christian@paral.in>
- Loading branch information
Showing
10 changed files
with
225 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
integration/async-iterable-services-abort-signal/parameters.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
useAsyncIterable=true,useAbortSignal=true |
Binary file not shown.
19 changes: 19 additions & 0 deletions
19
integration/async-iterable-services-abort-signal/simple.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
syntax = "proto3"; | ||
package simple; | ||
|
||
// Echoer service returns the given message. | ||
service Echoer { | ||
// Echo returns the given message. | ||
rpc Echo(EchoMsg) returns (EchoMsg); | ||
// EchoServerStream is an example of a server -> client one-way stream. | ||
rpc EchoServerStream(EchoMsg) returns (stream EchoMsg); | ||
// EchoClientStream is an example of client->server one-way stream. | ||
rpc EchoClientStream(stream EchoMsg) returns (EchoMsg); | ||
// EchoBidiStream is an example of a two-way stream. | ||
rpc EchoBidiStream(stream EchoMsg) returns (stream EchoMsg); | ||
} | ||
|
||
// EchoMsg is the message body for Echo. | ||
message EchoMsg { | ||
string body = 1; | ||
} |
178 changes: 178 additions & 0 deletions
178
integration/async-iterable-services-abort-signal/simple.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
/* eslint-disable */ | ||
import * as _m0 from "protobufjs/minimal"; | ||
|
||
export const protobufPackage = "simple"; | ||
|
||
/** EchoMsg is the message body for Echo. */ | ||
export interface EchoMsg { | ||
body: string; | ||
} | ||
|
||
function createBaseEchoMsg(): EchoMsg { | ||
return { body: "" }; | ||
} | ||
|
||
export const EchoMsg = { | ||
encode(message: EchoMsg, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { | ||
if (message.body !== "") { | ||
writer.uint32(10).string(message.body); | ||
} | ||
return writer; | ||
}, | ||
|
||
decode(input: _m0.Reader | Uint8Array, length?: number): EchoMsg { | ||
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input); | ||
let end = length === undefined ? reader.len : reader.pos + length; | ||
const message = createBaseEchoMsg(); | ||
while (reader.pos < end) { | ||
const tag = reader.uint32(); | ||
switch (tag >>> 3) { | ||
case 1: | ||
message.body = reader.string(); | ||
break; | ||
default: | ||
reader.skipType(tag & 7); | ||
break; | ||
} | ||
} | ||
return message; | ||
}, | ||
|
||
// encodeTransform encodes a source of message objects. | ||
// Transform<EchoMsg, Uint8Array> | ||
async *encodeTransform( | ||
source: AsyncIterable<EchoMsg | EchoMsg[]> | Iterable<EchoMsg | EchoMsg[]>, | ||
): AsyncIterable<Uint8Array> { | ||
for await (const pkt of source) { | ||
if (Array.isArray(pkt)) { | ||
for (const p of pkt) { | ||
yield* [EchoMsg.encode(p).finish()]; | ||
} | ||
} else { | ||
yield* [EchoMsg.encode(pkt).finish()]; | ||
} | ||
} | ||
}, | ||
|
||
// decodeTransform decodes a source of encoded messages. | ||
// Transform<Uint8Array, EchoMsg> | ||
async *decodeTransform( | ||
source: AsyncIterable<Uint8Array | Uint8Array[]> | Iterable<Uint8Array | Uint8Array[]>, | ||
): AsyncIterable<EchoMsg> { | ||
for await (const pkt of source) { | ||
if (Array.isArray(pkt)) { | ||
for (const p of pkt) { | ||
yield* [EchoMsg.decode(p)]; | ||
} | ||
} else { | ||
yield* [EchoMsg.decode(pkt)]; | ||
} | ||
} | ||
}, | ||
|
||
fromJSON(object: any): EchoMsg { | ||
return { body: isSet(object.body) ? String(object.body) : "" }; | ||
}, | ||
|
||
toJSON(message: EchoMsg): unknown { | ||
const obj: any = {}; | ||
message.body !== undefined && (obj.body = message.body); | ||
return obj; | ||
}, | ||
|
||
fromPartial<I extends Exact<DeepPartial<EchoMsg>, I>>(object: I): EchoMsg { | ||
const message = createBaseEchoMsg(); | ||
message.body = object.body ?? ""; | ||
return message; | ||
}, | ||
}; | ||
|
||
/** Echoer service returns the given message. */ | ||
export interface Echoer { | ||
/** Echo returns the given message. */ | ||
Echo(request: EchoMsg, abortSignal?: AbortSignal): Promise<EchoMsg>; | ||
/** EchoServerStream is an example of a server -> client one-way stream. */ | ||
EchoServerStream(request: EchoMsg, abortSignal?: AbortSignal): AsyncIterable<EchoMsg>; | ||
/** EchoClientStream is an example of client->server one-way stream. */ | ||
EchoClientStream(request: AsyncIterable<EchoMsg>, abortSignal?: AbortSignal): Promise<EchoMsg>; | ||
/** EchoBidiStream is an example of a two-way stream. */ | ||
EchoBidiStream(request: AsyncIterable<EchoMsg>, abortSignal?: AbortSignal): AsyncIterable<EchoMsg>; | ||
} | ||
|
||
export class EchoerClientImpl implements Echoer { | ||
private readonly rpc: Rpc; | ||
private readonly service: string; | ||
constructor(rpc: Rpc, opts?: { service?: string }) { | ||
this.service = opts?.service || "simple.Echoer"; | ||
this.rpc = rpc; | ||
this.Echo = this.Echo.bind(this); | ||
this.EchoServerStream = this.EchoServerStream.bind(this); | ||
this.EchoClientStream = this.EchoClientStream.bind(this); | ||
this.EchoBidiStream = this.EchoBidiStream.bind(this); | ||
} | ||
Echo(request: EchoMsg, abortSignal?: AbortSignal): Promise<EchoMsg> { | ||
const data = EchoMsg.encode(request).finish(); | ||
const promise = this.rpc.request(this.service, "Echo", data, abortSignal || undefined); | ||
return promise.then((data) => EchoMsg.decode(new _m0.Reader(data))); | ||
} | ||
|
||
EchoServerStream(request: EchoMsg, abortSignal?: AbortSignal): AsyncIterable<EchoMsg> { | ||
const data = EchoMsg.encode(request).finish(); | ||
const result = this.rpc.serverStreamingRequest(this.service, "EchoServerStream", data, abortSignal || undefined); | ||
return EchoMsg.decodeTransform(result); | ||
} | ||
|
||
EchoClientStream(request: AsyncIterable<EchoMsg>, abortSignal?: AbortSignal): Promise<EchoMsg> { | ||
const data = EchoMsg.encodeTransform(request); | ||
const promise = this.rpc.clientStreamingRequest(this.service, "EchoClientStream", data, abortSignal || undefined); | ||
return promise.then((data) => EchoMsg.decode(new _m0.Reader(data))); | ||
} | ||
|
||
EchoBidiStream(request: AsyncIterable<EchoMsg>, abortSignal?: AbortSignal): AsyncIterable<EchoMsg> { | ||
const data = EchoMsg.encodeTransform(request); | ||
const result = this.rpc.bidirectionalStreamingRequest( | ||
this.service, | ||
"EchoBidiStream", | ||
data, | ||
abortSignal || undefined, | ||
); | ||
return EchoMsg.decodeTransform(result); | ||
} | ||
} | ||
|
||
interface Rpc { | ||
request(service: string, method: string, data: Uint8Array, abortSignal?: AbortSignal): Promise<Uint8Array>; | ||
clientStreamingRequest( | ||
service: string, | ||
method: string, | ||
data: AsyncIterable<Uint8Array>, | ||
abortSignal?: AbortSignal, | ||
): Promise<Uint8Array>; | ||
serverStreamingRequest( | ||
service: string, | ||
method: string, | ||
data: Uint8Array, | ||
abortSignal?: AbortSignal, | ||
): AsyncIterable<Uint8Array>; | ||
bidirectionalStreamingRequest( | ||
service: string, | ||
method: string, | ||
data: AsyncIterable<Uint8Array>, | ||
abortSignal?: AbortSignal, | ||
): AsyncIterable<Uint8Array>; | ||
} | ||
|
||
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; | ||
|
||
export type DeepPartial<T> = T extends Builtin ? T | ||
: T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> | ||
: T extends {} ? { [K in keyof T]?: DeepPartial<T[K]> } | ||
: Partial<T>; | ||
|
||
type KeysOfUnion<T> = T extends T ? keyof T : never; | ||
export type Exact<P, I extends P> = P extends Builtin ? P | ||
: P & { [K in keyof P]: Exact<P[K], I[K]> } & { [K in Exclude<keyof I, KeysOfUnion<P>>]: never }; | ||
|
||
function isSet(value: any): boolean { | ||
return value !== null && value !== undefined; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters