This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 289
/
Copy pathspeech_client.ts
532 lines (497 loc) · 18.8 KB
/
speech_client.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **
import * as gax from 'google-gax';
import {
Callback,
CallOptions,
Descriptors,
ClientOptions,
LROperation,
} from 'google-gax';
import * as path from 'path';
import * as protos from '../../protos/protos';
import * as gapicConfig from './speech_client_config.json';
const version = require('../../../package.json').version;
/**
* Service that implements Google Cloud Speech API.
* @class
* @memberof v1
*/
export class SpeechClient {
private _terminated = false;
private _opts: ClientOptions;
private _gaxModule: typeof gax | typeof gax.fallback;
private _gaxGrpc: gax.GrpcClient | gax.fallback.GrpcClient;
private _protos: {};
private _defaults: {[method: string]: gax.CallSettings};
auth: gax.GoogleAuth;
descriptors: Descriptors = {
page: {},
stream: {},
longrunning: {},
batching: {},
};
innerApiCalls: {[name: string]: Function};
operationsClient: gax.OperationsClient;
speechStub?: Promise<{[name: string]: Function}>;
/**
* Construct an instance of SpeechClient.
*
* @param {object} [options] - The configuration object. See the subsequent
* parameters for more details.
* @param {object} [options.credentials] - Credentials object.
* @param {string} [options.credentials.client_email]
* @param {string} [options.credentials.private_key]
* @param {string} [options.email] - Account email address. Required when
* using a .pem or .p12 keyFilename.
* @param {string} [options.keyFilename] - Full path to the a .json, .pem, or
* .p12 key downloaded from the Google Developers Console. If you provide
* a path to a JSON file, the projectId option below is not necessary.
* NOTE: .pem and .p12 require you to specify options.email as well.
* @param {number} [options.port] - The port on which to connect to
* the remote host.
* @param {string} [options.projectId] - The project ID from the Google
* Developer's Console, e.g. 'grape-spaceship-123'. We will also check
* the environment variable GCLOUD_PROJECT for your project ID. If your
* app is running in an environment which supports
* {@link https://developers.google.com/identity/protocols/application-default-credentials Application Default Credentials},
* your project ID will be detected automatically.
* @param {string} [options.apiEndpoint] - The domain name of the
* API remote host.
*/
constructor(opts?: ClientOptions) {
// Ensure that options include the service address and port.
const staticMembers = this.constructor as typeof SpeechClient;
const servicePath =
opts && opts.servicePath
? opts.servicePath
: opts && opts.apiEndpoint
? opts.apiEndpoint
: staticMembers.servicePath;
const port = opts && opts.port ? opts.port : staticMembers.port;
if (!opts) {
opts = {servicePath, port};
}
opts.servicePath = opts.servicePath || servicePath;
opts.port = opts.port || port;
opts.clientConfig = opts.clientConfig || {};
const isBrowser = typeof window !== 'undefined';
if (isBrowser) {
opts.fallback = true;
}
// If we are in browser, we are already using fallback because of the
// "browser" field in package.json.
// But if we were explicitly requested to use fallback, let's do it now.
this._gaxModule = !isBrowser && opts.fallback ? gax.fallback : gax;
// Create a `gaxGrpc` object, with any grpc-specific options
// sent to the client.
opts.scopes = (this.constructor as typeof SpeechClient).scopes;
this._gaxGrpc = new this._gaxModule.GrpcClient(opts);
// Save options to use in initialize() method.
this._opts = opts;
// Save the auth object to the client, for use by other methods.
this.auth = this._gaxGrpc.auth as gax.GoogleAuth;
// Determine the client header string.
const clientHeader = [`gax/${this._gaxModule.version}`, `gapic/${version}`];
if (typeof process !== 'undefined' && 'versions' in process) {
clientHeader.push(`gl-node/${process.versions.node}`);
} else {
clientHeader.push(`gl-web/${this._gaxModule.version}`);
}
if (!opts.fallback) {
clientHeader.push(`grpc/${this._gaxGrpc.grpcVersion}`);
}
if (opts.libName && opts.libVersion) {
clientHeader.push(`${opts.libName}/${opts.libVersion}`);
}
// Load the applicable protos.
// For Node.js, pass the path to JSON proto file.
// For browsers, pass the JSON content.
const nodejsProtoPath = path.join(
__dirname,
'..',
'..',
'protos',
'protos.json'
);
this._protos = this._gaxGrpc.loadProto(
opts.fallback
? // eslint-disable-next-line @typescript-eslint/no-var-requires
require('../../protos/protos.json')
: nodejsProtoPath
);
// Some of the methods on this service provide streaming responses.
// Provide descriptors for these.
this.descriptors.stream = {
streamingRecognize: new this._gaxModule.StreamDescriptor(
gax.StreamType.BIDI_STREAMING
),
};
// This API contains "long-running operations", which return a
// an Operation object that allows for tracking of the operation,
// rather than holding a request open.
const protoFilesRoot = opts.fallback
? this._gaxModule.protobuf.Root.fromJSON(
// eslint-disable-next-line @typescript-eslint/no-var-requires
require('../../protos/protos.json')
)
: this._gaxModule.protobuf.loadSync(nodejsProtoPath);
this.operationsClient = this._gaxModule
.lro({
auth: this.auth,
grpc: 'grpc' in this._gaxGrpc ? this._gaxGrpc.grpc : undefined,
})
.operationsClient(opts);
const longRunningRecognizeResponse = protoFilesRoot.lookup(
'.google.cloud.speech.v1.LongRunningRecognizeResponse'
) as gax.protobuf.Type;
const longRunningRecognizeMetadata = protoFilesRoot.lookup(
'.google.cloud.speech.v1.LongRunningRecognizeMetadata'
) as gax.protobuf.Type;
this.descriptors.longrunning = {
longRunningRecognize: new this._gaxModule.LongrunningDescriptor(
this.operationsClient,
longRunningRecognizeResponse.decode.bind(longRunningRecognizeResponse),
longRunningRecognizeMetadata.decode.bind(longRunningRecognizeMetadata)
),
};
// Put together the default options sent with requests.
this._defaults = this._gaxGrpc.constructSettings(
'google.cloud.speech.v1.Speech',
gapicConfig as gax.ClientConfig,
opts.clientConfig || {},
{'x-goog-api-client': clientHeader.join(' ')}
);
// Set up a dictionary of "inner API calls"; the core implementation
// of calling the API is handled in `google-gax`, with this code
// merely providing the destination and request information.
this.innerApiCalls = {};
}
/**
* Initialize the client.
* Performs asynchronous operations (such as authentication) and prepares the client.
* This function will be called automatically when any class method is called for the
* first time, but if you need to initialize it before calling an actual method,
* feel free to call initialize() directly.
*
* You can await on this method if you want to make sure the client is initialized.
*
* @returns {Promise} A promise that resolves to an authenticated service stub.
*/
initialize() {
// If the client stub promise is already initialized, return immediately.
if (this.speechStub) {
return this.speechStub;
}
// Put together the "service stub" for
// google.cloud.speech.v1.Speech.
this.speechStub = this._gaxGrpc.createStub(
this._opts.fallback
? (this._protos as protobuf.Root).lookupService(
'google.cloud.speech.v1.Speech'
)
: // eslint-disable-next-line @typescript-eslint/no-explicit-any
(this._protos as any).google.cloud.speech.v1.Speech,
this._opts
) as Promise<{[method: string]: Function}>;
// Iterate over each of the methods that the service provides
// and create an API call method for each.
const speechStubMethods = [
'recognize',
'longRunningRecognize',
'streamingRecognize',
];
for (const methodName of speechStubMethods) {
const callPromise = this.speechStub.then(
stub => (...args: Array<{}>) => {
if (this._terminated) {
return Promise.reject('The client has already been closed.');
}
const func = stub[methodName];
return func.apply(stub, args);
},
(err: Error | null | undefined) => () => {
throw err;
}
);
const apiCall = this._gaxModule.createApiCall(
callPromise,
this._defaults[methodName],
this.descriptors.page[methodName] ||
this.descriptors.stream[methodName] ||
this.descriptors.longrunning[methodName]
);
this.innerApiCalls[methodName] = apiCall;
}
return this.speechStub;
}
/**
* The DNS address for this API service.
*/
static get servicePath() {
return 'speech.googleapis.com';
}
/**
* The DNS address for this API service - same as servicePath(),
* exists for compatibility reasons.
*/
static get apiEndpoint() {
return 'speech.googleapis.com';
}
/**
* The port for this API service.
*/
static get port() {
return 443;
}
/**
* The scopes needed to make gRPC calls for every method defined
* in this service.
*/
static get scopes() {
return ['https://www.googleapis.com/auth/cloud-platform'];
}
getProjectId(): Promise<string>;
getProjectId(callback: Callback<string, undefined, undefined>): void;
/**
* Return the project ID used by this class.
* @param {function(Error, string)} callback - the callback to
* be called with the current project Id.
*/
getProjectId(
callback?: Callback<string, undefined, undefined>
): Promise<string> | void {
if (callback) {
this.auth.getProjectId(callback);
return;
}
return this.auth.getProjectId();
}
// -------------------
// -- Service calls --
// -------------------
recognize(
request: protos.google.cloud.speech.v1.IRecognizeRequest,
options?: gax.CallOptions
): Promise<
[
protos.google.cloud.speech.v1.IRecognizeResponse,
protos.google.cloud.speech.v1.IRecognizeRequest | undefined,
{} | undefined
]
>;
recognize(
request: protos.google.cloud.speech.v1.IRecognizeRequest,
options: gax.CallOptions,
callback: Callback<
protos.google.cloud.speech.v1.IRecognizeResponse,
protos.google.cloud.speech.v1.IRecognizeRequest | null | undefined,
{} | null | undefined
>
): void;
recognize(
request: protos.google.cloud.speech.v1.IRecognizeRequest,
callback: Callback<
protos.google.cloud.speech.v1.IRecognizeResponse,
protos.google.cloud.speech.v1.IRecognizeRequest | null | undefined,
{} | null | undefined
>
): void;
/**
* Performs synchronous speech recognition: receive results after all audio
* has been sent and processed.
*
* @param {Object} request
* The request object that will be sent.
* @param {google.cloud.speech.v1.RecognitionConfig} request.config
* Required. Provides information to the recognizer that specifies how to
* process the request.
* @param {google.cloud.speech.v1.RecognitionAudio} request.audio
* Required. The audio data to be recognized.
* @param {object} [options]
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
* @returns {Promise} - The promise which resolves to an array.
* The first element of the array is an object representing [RecognizeResponse]{@link google.cloud.speech.v1.RecognizeResponse}.
* The promise has a method named "cancel" which cancels the ongoing API call.
*/
recognize(
request: protos.google.cloud.speech.v1.IRecognizeRequest,
optionsOrCallback?:
| gax.CallOptions
| Callback<
protos.google.cloud.speech.v1.IRecognizeResponse,
protos.google.cloud.speech.v1.IRecognizeRequest | null | undefined,
{} | null | undefined
>,
callback?: Callback<
protos.google.cloud.speech.v1.IRecognizeResponse,
protos.google.cloud.speech.v1.IRecognizeRequest | null | undefined,
{} | null | undefined
>
): Promise<
[
protos.google.cloud.speech.v1.IRecognizeResponse,
protos.google.cloud.speech.v1.IRecognizeRequest | undefined,
{} | undefined
]
> | void {
request = request || {};
let options: gax.CallOptions;
if (typeof optionsOrCallback === 'function' && callback === undefined) {
callback = optionsOrCallback;
options = {};
} else {
options = optionsOrCallback as gax.CallOptions;
}
options = options || {};
this.initialize();
return this.innerApiCalls.recognize(request, options, callback);
}
/**
* Performs bidirectional streaming speech recognition: receive results while
* sending audio. This method is only available via the gRPC API (not REST).
*
* @param {object} [options]
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
* @returns {Stream}
* An object stream which is both readable and writable. It accepts objects
* representing [StreamingRecognizeRequest]{@link google.cloud.speech.v1.StreamingRecognizeRequest} for write() method, and
* will emit objects representing [StreamingRecognizeResponse]{@link google.cloud.speech.v1.StreamingRecognizeResponse} on 'data' event asynchronously.
*/
_streamingRecognize(options?: gax.CallOptions): gax.CancellableStream {
this.initialize();
return this.innerApiCalls.streamingRecognize(options);
}
longRunningRecognize(
request: protos.google.cloud.speech.v1.ILongRunningRecognizeRequest,
options?: gax.CallOptions
): Promise<
[
LROperation<
protos.google.cloud.speech.v1.ILongRunningRecognizeResponse,
protos.google.cloud.speech.v1.ILongRunningRecognizeMetadata
>,
protos.google.longrunning.IOperation | undefined,
{} | undefined
]
>;
longRunningRecognize(
request: protos.google.cloud.speech.v1.ILongRunningRecognizeRequest,
options: gax.CallOptions,
callback: Callback<
LROperation<
protos.google.cloud.speech.v1.ILongRunningRecognizeResponse,
protos.google.cloud.speech.v1.ILongRunningRecognizeMetadata
>,
protos.google.longrunning.IOperation | null | undefined,
{} | null | undefined
>
): void;
longRunningRecognize(
request: protos.google.cloud.speech.v1.ILongRunningRecognizeRequest,
callback: Callback<
LROperation<
protos.google.cloud.speech.v1.ILongRunningRecognizeResponse,
protos.google.cloud.speech.v1.ILongRunningRecognizeMetadata
>,
protos.google.longrunning.IOperation | null | undefined,
{} | null | undefined
>
): void;
/**
* Performs asynchronous speech recognition: receive results via the
* google.longrunning.Operations interface. Returns either an
* `Operation.error` or an `Operation.response` which contains
* a `LongRunningRecognizeResponse` message.
* For more information on asynchronous speech recognition, see the
* [how-to](https://cloud.google.com/speech-to-text/docs/async-recognize).
*
* @param {Object} request
* The request object that will be sent.
* @param {google.cloud.speech.v1.RecognitionConfig} request.config
* Required. Provides information to the recognizer that specifies how to
* process the request.
* @param {google.cloud.speech.v1.RecognitionAudio} request.audio
* Required. The audio data to be recognized.
* @param {object} [options]
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
* @returns {Promise} - The promise which resolves to an array.
* The first element of the array is an object representing [Operation]{@link google.longrunning.Operation}.
* The promise has a method named "cancel" which cancels the ongoing API call.
*/
longRunningRecognize(
request: protos.google.cloud.speech.v1.ILongRunningRecognizeRequest,
optionsOrCallback?:
| gax.CallOptions
| Callback<
LROperation<
protos.google.cloud.speech.v1.ILongRunningRecognizeResponse,
protos.google.cloud.speech.v1.ILongRunningRecognizeMetadata
>,
protos.google.longrunning.IOperation | null | undefined,
{} | null | undefined
>,
callback?: Callback<
LROperation<
protos.google.cloud.speech.v1.ILongRunningRecognizeResponse,
protos.google.cloud.speech.v1.ILongRunningRecognizeMetadata
>,
protos.google.longrunning.IOperation | null | undefined,
{} | null | undefined
>
): Promise<
[
LROperation<
protos.google.cloud.speech.v1.ILongRunningRecognizeResponse,
protos.google.cloud.speech.v1.ILongRunningRecognizeMetadata
>,
protos.google.longrunning.IOperation | undefined,
{} | undefined
]
> | void {
request = request || {};
let options: gax.CallOptions;
if (typeof optionsOrCallback === 'function' && callback === undefined) {
callback = optionsOrCallback;
options = {};
} else {
options = optionsOrCallback as gax.CallOptions;
}
options = options || {};
this.initialize();
return this.innerApiCalls.longRunningRecognize(request, options, callback);
}
/**
* Terminate the GRPC channel and close the client.
*
* The client will no longer be usable and all future behavior is undefined.
*/
close(): Promise<void> {
this.initialize();
if (!this._terminated) {
return this.speechStub!.then(stub => {
this._terminated = true;
stub.close();
});
}
return Promise.resolve();
}
}
import {ImprovedStreamingClient} from '../helpers';
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface SpeechClient extends ImprovedStreamingClient {}