-
Notifications
You must be signed in to change notification settings - Fork 2
/
example.ts
111 lines (91 loc) · 2.69 KB
/
example.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import debug from 'debug';
import { Type, Field, Message } from 'protobufjs';
import { load } from '@grpc/proto-loader';
import { Server, ServiceDefinition, ServerCredentials } from 'grpc';
import { Observable, from } from 'rxjs';
import * as Ops from 'rxjs/operators';
import { Service, Method, generateProto, wrapServiceMethods } from '.';
const log = debug('typescript-grpc:example');
@Type.d()
class Movie extends Message<Movie> {
@Field.d(1, 'string')
name: string;
@Field.d(2, 'int32')
year: number;
@Field.d(3, 'float')
rating: number;
@Field.d(4, 'string', 'repeated')
cast: string[];
}
@Type.d()
class MoviesResult extends Message<MoviesResult> {
@Field.d(1, Movie, 'repeated')
result: Movie[];
}
@Type.d()
class EmptyRequest extends Message<EmptyRequest> {}
@Type.d()
class SearchByCastInput extends Message<SearchByCastInput> {
@Field.d(1, 'string')
castName: string;
}
@Service()
class ExampleService {
@Method({
requestType: 'EmptyRequest',
requestStream: false,
responseType: 'MoviesResult',
responseStream: false,
})
async getMovies(req: EmptyRequest): Promise<MoviesResult> {
log('get movies called');
return new MoviesResult({ result: [] });
}
@Method({
requestType: 'SearchByCastInput',
requestStream: false,
responseType: 'Movie',
responseStream: true,
})
searchMoviesByCast(req: SearchByCastInput): Observable<Movie> {
log(req);
const movies = [
{
cast: ['Tom Cruise', 'Simon Pegg', 'Jeremy Renner'],
name: 'Mission: Impossible Rogue Nation',
rating: 0.97,
year: 2015,
},
{
cast: ['Tom Cruise', 'Simon Pegg', 'Henry Cavill'],
name: 'Mission: Impossible - Fallout',
rating: 0.93,
year: 2018,
},
{
cast: ['Leonardo DiCaprio', 'Jonah Hill', 'Margot Robbie'],
name: 'The Wolf of Wall Street',
rating: 0.78,
year: 2013,
},
];
return from(movies.filter(movie => movie.cast.indexOf(req.castName) > -1).map(m => new Movie(m))).pipe(
Ops.tap((movie: Movie) => log(movie.toJSON())),
);
}
}
async function main(): Promise<void> {
const service = new ExampleService();
log(service);
const protoPath = await generateProto('example');
const packageDefinition = await load(protoPath);
const server = new Server({
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
});
server.addService(packageDefinition[service.constructor.name] as ServiceDefinition<any>, wrapServiceMethods(service));
server.bind('0.0.0.0:50051', ServerCredentials.createInsecure());
server.start();
log(`grpc server for ${service.constructor.name} started`);
}
main();