-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
textAnalysisClient.ts
781 lines (759 loc) · 28.5 KB
/
textAnalysisClient.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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
import {
AnalyzeActionName,
AnalyzeActionParameters,
AnalyzeBatchAction,
AnalyzeBatchPoller,
AnalyzeResult,
BeginAnalyzeBatchOptions,
RestoreAnalyzeBatchPollerOptions,
TextAnalysisClientOptions,
TextAnalysisOperationOptions,
} from "./models";
import {
AnalyzeBatchActionUnion,
GeneratedClientOptionalParams,
LanguageDetectionInput,
TextDocumentInput,
} from "./generated/models";
import { DEFAULT_COGNITIVE_SCOPE, SDK_VERSION } from "./constants";
import { KeyCredential, TokenCredential, isTokenCredential } from "@azure/core-auth";
import { TracingClient, createTracingClient } from "@azure/core-tracing";
import {
convertToLanguageDetectionInput,
convertToTextDocumentInput,
getOperationOptions,
isStringArray,
} from "./util";
import {
createAnalyzeBatchLro,
createCreateAnalyzeBatchPollerLro,
createPollerWithCancellation,
createUpdateAnalyzeState,
getDocIDsFromState,
processAnalyzeResult,
} from "./lro";
import { throwError, transformActionResult } from "./transforms";
import { GeneratedClient } from "./generated/generatedClient";
import { bearerTokenAuthenticationPolicy } from "@azure/core-rest-pipeline";
import { createHttpPoller } from "@azure/core-lro";
import { logger } from "./logger";
import { textAnalyticsAzureKeyCredentialPolicy } from "./azureKeyCredentialPolicy";
/**
* A client for interacting with the text analysis features in Azure Cognitive
* Language Service.
*
* The client needs the endpoint of a Language resource and an authentication
* method such as an API key or AAD. The API key and endpoint can be found in
* the Language resource page in the Azure portal. They will be located in the
* resource's Keys and Endpoint page, under Resource Management.
*
* ### Examples for authentication:
*
* #### API Key
*
* ```js
* import { TextAnalysisClient, AzureKeyCredential } from "@azure/ai-language-text";
*
* const endpoint = "https://<resource name>.cognitiveservices.azure.com";
* const credential = new AzureKeyCredential("<api key>");
*
* const client = new TextAnalysisClient(endpoint, credential);
* ```
*
* #### Azure Active Directory
*
* See the [`@azure/identity`](https://npmjs.com/package/\@azure/identity)
* package for more information about authenticating with Azure Active Directory.
*
* ```js
* import { TextAnalysisClient } from "@azure/ai-language-text";
* import { DefaultAzureCredential } from "@azure/identity";
*
* const endpoint = "https://<resource name>.cognitiveservices.azure.com";
* const credential = new DefaultAzureCredential();
*
* const client = new TextAnalysisClient(endpoint, credential);
* ```
*/
export class TextAnalysisClient {
private readonly _client: GeneratedClient;
private readonly _tracing: TracingClient;
private readonly defaultCountryHint: string;
private readonly defaultLanguage: string;
/**
* Creates an instance of TextAnalysisClient with the endpoint of a Language
* resource and an authentication method such as an API key or AAD.
*
* The API key and endpoint can be found in the Language resource page in the
* Azure portal. They will be located in the resource's Keys and Endpoint page,
* under Resource Management.
*
* ### Example
*
* ```js
* import { TextAnalysisClient, AzureKeyCredential } from "@azure/ai-language-text";
*
* const endpoint = "https://<resource name>.cognitiveservices.azure.com";
* const credential = new AzureKeyCredential("<api key>");
*
* const client = new TextAnalysisClient(endpoint, credential);
* ```
*
* @param endpointUrl - The URL to the endpoint of a Cognitive Language Service resource
* @param credential - Key credential to be used to authenticate requests to the service.
* @param options - Used to configure the TextAnalytics client.
*/
constructor(endpointUrl: string, credential: KeyCredential, options?: TextAnalysisClientOptions);
/**
* Creates an instance of TextAnalysisClient with the endpoint of a Language
* resource and an authentication method such as an API key or AAD.
*
* The API key and endpoint can be found in the Language resource page in the
* Azure portal. They will be located in the resource's Keys and Endpoint page,
* under Resource Management.
*
* ### Example
*
* See the [`@azure/identity`](https://npmjs.com/package/\@azure/identity)
* package for more information about authenticating with Azure Active Directory.
*
* ```js
* import { TextAnalysisClient } from "@azure/ai-language-text";
* import { DefaultAzureCredential } from "@azure/identity";
*
* const endpoint = "https://<resource name>.cognitiveservices.azure.com";
* const credential = new DefaultAzureCredential();
*
* const client = new TextAnalysisClient(endpoint, credential);
* ```
*
* @param endpointUrl - The URL to the endpoint of a Cognitive Language Service resource
* @param credential - Token credential to be used to authenticate requests to the service.
* @param options - Used to configure the TextAnalytics client.
*/
constructor(
endpointUrl: string,
credential: TokenCredential,
options?: TextAnalysisClientOptions
);
constructor(
endpointUrl: string,
credential: TokenCredential | KeyCredential,
options: TextAnalysisClientOptions = {}
) {
const {
defaultCountryHint = "us",
defaultLanguage = "en",
serviceVersion,
...pipelineOptions
} = options;
this.defaultCountryHint = defaultCountryHint;
this.defaultLanguage = defaultLanguage;
const internalPipelineOptions: GeneratedClientOptionalParams = {
...pipelineOptions,
...{
loggingOptions: {
logger: logger.info,
additionalAllowedHeaderNames: ["x-ms-correlation-request-id", "x-ms-request-id"],
},
},
apiVersion: serviceVersion,
};
this._client = new GeneratedClient(endpointUrl, internalPipelineOptions);
const authPolicy = isTokenCredential(credential)
? bearerTokenAuthenticationPolicy({ credential, scopes: DEFAULT_COGNITIVE_SCOPE })
: textAnalyticsAzureKeyCredentialPolicy(credential);
this._client.pipeline.addPolicy(authPolicy);
this._tracing = createTracingClient({
packageName: "@azure/ai-language-text",
packageVersion: SDK_VERSION,
namespace: "Microsoft.CognitiveServices",
});
}
/**
* Runs a predictive model to determine the language that the passed-in
* input strings are written in, and returns, for each one, the detected
* language as well as a score indicating the model's confidence that the
* inferred language is correct. Scores close to 1 indicate high certainty in
* the result. 120 languages are supported.
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/concepts/data-limits}
* for data limits.
*
* ### Examples
*
* #### Language detection
*
* ```js
* const documents = [<input strings>];
* const countryHint = "us";
* const results = await client.analyze("LanguageDetection", documents, countryHint);
*
* for (let i = 0; i < results.length; i++) {
* const result = results[i];
* if (result.error) {
* // a document has an error instead of results
* } else {
* const { name, confidenceScore, iso6391Name } = result.primaryLanguage;
* }
* }
* ```
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/language-detection/overview}
* for more information on language detection.
*
* @param actionName - the name of the action to be performed on the input
* documents, see ${@link AnalyzeActionName}
* @param documents - the input documents to be analyzed
* @param options - optional action parameters and settings for the operation
*
* @returns an array of results where each element contains the primary language
* for the corresponding input document.
*/
public async analyze<ActionName extends "LanguageDetection">(
actionName: ActionName,
documents: LanguageDetectionInput[],
options?: AnalyzeActionParameters<ActionName> & TextAnalysisOperationOptions
): Promise<AnalyzeResult<ActionName>>;
/**
* Runs a predictive model to determine the language that the passed-in
* input strings are written in, and returns, for each one, the detected
* language as well as a score indicating the model's confidence that the
* inferred language is correct. Scores close to 1 indicate high certainty in
* the result. 120 languages are supported.
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/concepts/data-limits}
* for data limits.
*
* ### Examples
*
* #### Language detection
*
* ```js
* const documents = [<input strings>];
* const countryHint = "us";
* const results = await client.analyze("LanguageDetection", documents, countryHint);
*
* for (const result of results) {
* if (result.error) {
* // a document has an error instead of results
* } else {
* const { name, confidenceScore, iso6391Name } = result.primaryLanguage;
* }
* }
* ```
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/language-detection/overview}
* for more information on language detection.
*
* @param actionName - the name of the action to be performed on the input
* documents, see ${@link AnalyzeActionName}
* @param documents - the input documents to be analyzed
* @param countryHint - Indicates the country of origin for all of
* the input strings to assist the model in predicting the language they are
* written in. If unspecified, this value will be set to the default
* country hint in `TextAnalysisClientOptions`. If set to an empty string,
* or the string "none", the service will apply a model where the country is
* explicitly unset. The same country hint is applied to all strings in the
* input collection.
* @param options - optional action parameters and settings for the operation
*
* @returns an array of results where each element contains the primary language
* for the corresponding input document.
*/
public async analyze<ActionName extends "LanguageDetection">(
actionName: ActionName,
documents: string[],
countryHint?: string,
options?: AnalyzeActionParameters<ActionName> & TextAnalysisOperationOptions
): Promise<AnalyzeResult<ActionName>>;
/**
* Runs a predictive model to perform the action of choice on the input
* documents. See ${@link AnalyzeActionName} for a list of supported
* actions.
*
* The layout of each item in the results array depends on the action chosen.
* For example, each PIIEntityRecognition document result consists of both
* `entities` and `redactedText` where the former is a list of all Pii entities
* in the text and the latter is the original text after all such Pii entities
* have been redacted from it.
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/concepts/data-limits}
* for data limits.
*
* ### Examples
*
* #### Opinion mining
*
* ```js
* const documents = [{
* id: "1",
* text: "The food and service aren't the best",
* language: "en"
* }];
* const results = await client.analyze("SentimentAnalysis", documents, {
* includeOpinionMining: true,
* });
*
* for (const result of results) {
* if (result.error) {
* // a document has an error instead of results
* } else {
* const { sentiment, confidenceScores, sentences } = result;
* for (const { sentiment, confidenceScores, opinions } of sentences) {
* for (const { target, assessments } of opinions) {
* const { text, sentiment, confidenceScores } = target;
* for (const { text, sentiment } of assessments) {
* // Do something
* }
* }
* }
* }
* }
* ```
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/sentiment-opinion-mining/overview}
* for more information on opinion mining.
*
* #### Personally identifiable information
*
* ```js
* const documents = [<input documents>];
* const categoriesFilter = [KnownPiiCategory.USSocialSecurityNumber];
* const domainFilter = KnownPiiDomain.Phi;
* const results = await client.analyze("PiiEntityRecognition", documents, {
* domainFilter, categoriesFilter
* });
*
* for (const result of results) {
* if (result.error) {
* // a document has an error instead of results
* } else {
* const { entities, redactedText } = result;
* for (const { text, category, confidenceScore, length, offset } of entities) {
* // Do something
* }
* }
* }
* ```
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/personally-identifiable-information/overview}
* for more information on personally identifiable information.
*
* @param actionName - the name of the action to be performed on the input
* documents, see ${@link AnalyzeActionName}
* @param documents - the input documents to be analyzed
* @param options - optional action parameters and settings for the operation
*
* @returns an array of results corresponding to the input documents
*/
public async analyze<ActionName extends AnalyzeActionName = AnalyzeActionName>(
actionName: ActionName,
documents: TextDocumentInput[],
options?: AnalyzeActionParameters<ActionName> & TextAnalysisOperationOptions
): Promise<AnalyzeResult<ActionName>>;
/**
* Runs a predictive model to perform the action of choice on the input
* strings. See ${@link AnalyzeActionName} for a list of supported
* actions.
*
* The layout of each item in the results array depends on the action chosen.
* For example, each PIIEntityRecognition document result consists of both
* `entities` and `redactedText` where the former is a list of all Pii entities
* in the text and the latter is the original text after all such Pii entities
* have been redacted from it.
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/concepts/data-limits}
* for data limits.
*
* ### Examples
*
* #### Opinion mining
*
* ```js
* const documents = ["The food and service aren't the best"];
* const results = await client.analyze("SentimentAnalysis", documents, {
* includeOpinionMining: true,
* });
*
* for (const result of results) {
* if (result.error) {
* // a document has an error instead of results
* } else {
* const { sentiment, confidenceScores, sentences } = result;
* for (const { sentiment, confidenceScores, opinions } of sentences) {
* for (const { target, assessments } of opinions) {
* const { text, sentiment, confidenceScores } = target;
* for (const { text, sentiment } of assessments) {
* // Do something
* }
* }
* }
* }
* }
* ```
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/sentiment-opinion-mining/overview}
* for more information on opinion mining.
*
* #### Personally identifiable information
*
* ```js
* const documents = [<input strings>];
* const languageCode = "en";
* const categoriesFilter = [KnownPiiCategory.USSocialSecurityNumber];
* const domainFilter = KnownPiiDomain.Phi;
* const results = await client.analyze("PiiEntityRecognition", documents, languageCode, {
* domainFilter, categoriesFilter
* });
*
* for (const result of results) {
* if (result.error) {
* // a document has an error instead of results
* } else {
* const { entities, redactedText } = result;
* for (const { text, category, confidenceScore, length, offset } of entities) {
* // Do something
* }
* }
* }
* ```
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/personally-identifiable-information/overview}
* for more information on personally identifiable information.
*
* @param actionName - the name of the action to be performed on the input
* documents, see ${@link AnalyzeActionName}
* @param documents - the input documents to be analyzed
* @param languageCode - the code of the language that all the input strings are
* written in. If unspecified, this value will be set to the default
* language in `TextAnalysisClientOptions`. If set to an empty string,
* the service will apply a model where the language is explicitly set to
* "None". Language support varies per action, for example, more information
* about the languages supported for Entity Recognition actions can be
* found in {@link https://docs.microsoft.com//azure/cognitive-services/language-service/named-entity-recognition/language-support}.
* If set to "auto", the service will automatically infer the language from
* the input text.
* @param options - optional action parameters and settings for the operation
*
* @returns an array of results corresponding to the input documents
*/
public async analyze<ActionName extends AnalyzeActionName = AnalyzeActionName>(
actionName: ActionName,
documents: string[],
languageCode?: string,
options?: AnalyzeActionParameters<ActionName> & TextAnalysisOperationOptions
): Promise<AnalyzeResult<ActionName>>;
// implementation
public async analyze<ActionName extends AnalyzeActionName = AnalyzeActionName>(
actionName: ActionName,
documents: string[] | LanguageDetectionInput[] | TextDocumentInput[],
languageOrCountryHintOrOptions?:
| string
| (AnalyzeActionParameters<ActionName> & TextAnalysisOperationOptions),
options?: AnalyzeActionParameters<ActionName> & TextAnalysisOperationOptions
): Promise<AnalyzeResult<ActionName>> {
let realOptions: AnalyzeActionParameters<ActionName> & TextAnalysisOperationOptions;
if (documents.length === 0) {
throw new Error("'documents' must be a non-empty array");
}
let realInputs: LanguageDetectionInput[] | TextDocumentInput[];
if (isStringArray(documents)) {
if (actionName === "LanguageDetection") {
realInputs = convertToLanguageDetectionInput(
documents,
typeof languageOrCountryHintOrOptions === "string"
? languageOrCountryHintOrOptions
: this.defaultCountryHint
);
} else {
realInputs = convertToTextDocumentInput(
documents,
typeof languageOrCountryHintOrOptions === "string"
? languageOrCountryHintOrOptions
: this.defaultLanguage
);
}
realOptions = options || ({} as any);
} else {
realInputs = documents;
realOptions =
(languageOrCountryHintOrOptions as AnalyzeActionParameters<ActionName> &
TextAnalysisOperationOptions) || {};
}
const { options: operationOptions, rest: action } = getOperationOptions(realOptions);
return this._tracing.withSpan(
"TextAnalysisClient.analyze",
operationOptions,
async (updatedOptions: TextAnalysisOperationOptions) =>
throwError(
this._client
.analyze(
{
kind: actionName,
analysisInput: {
documents: realInputs,
},
parameters: action,
} as any,
updatedOptions
)
.then(
(result) =>
transformActionResult(
actionName,
realInputs.map(({ id }) => id),
result
) as AnalyzeResult<ActionName>
)
)
);
}
/**
* Performs an array (batch) of actions on the input documents. Each action has
* a `kind` field that specifies the nature of the action. See ${@link AnalyzeBatchActionNames}
* for a list of supported actions. In addition to `kind`, actions could also
* have other parameters such as `disableServiceLogs` and `modelVersion`.
*
* The results array contains the results for those input actions where each
* item also has a `kind` field that specifies the type of the results.
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/concepts/data-limits}
* for data limits.
*
* ### Examples
*
* #### Key phrase extraction and Pii entity recognition
*
* ```js
* const poller = await client.beginAnalyzeBatch(
* [{ kind: "KeyPhraseExtraction" }, { kind: "PiiEntityRecognition" }],
* documents
* );
* const actionResults = await poller.pollUntilDone();
*
* for await (const actionResult of actionResults) {
* if (actionResult.error) {
* throw new Error(`Unexpected error`);
* }
* switch (actionResult.kind) {
* case "KeyPhraseExtraction": {
* for (const doc of actionResult.results) {
* // do something
* }
* break;
* }
* case "PiiEntityRecognition": {
* for (const doc of actionResult.results) {
* // do something
* }
* break;
* }
* }
* }
* ```
*
* @param actions - an array of actions that will be run on the input documents
* @param documents - the input documents to be analyzed
* @param languageCode - the code of the language that all the input strings are
* written in. If unspecified, this value will be set to the default
* language in `TextAnalysisClientOptions`. If set to an empty string,
* the service will apply a model where the language is explicitly set to
* "None". Language support varies per action, for example, more information
* about the languages supported for Entity Recognition actions can be
* found in {@link https://docs.microsoft.com//azure/cognitive-services/language-service/named-entity-recognition/language-support}.
* If set to "auto", the service will automatically infer the language from
* the input text.
* @param options - optional settings for the operation
*
* @returns an array of results corresponding to the input actions
*/
async beginAnalyzeBatch(
actions: AnalyzeBatchAction[],
documents: string[],
languageCode?: string,
options?: BeginAnalyzeBatchOptions
): Promise<AnalyzeBatchPoller>;
/**
* Performs an array (batch) of actions on the input documents. Each action has
* a `kind` field that specifies the nature of the action. See ${@link AnalyzeBatchActionNames}
* for a list of supported actions. In addition to `kind`, actions could also
* have other parameters such as `disableServiceLogs` and `modelVersion`.
*
* The results array contains the results for those input actions where each
* item also has a `kind` field that specifies the type of the results.
*
* See {@link https://docs.microsoft.com//azure/cognitive-services/language-service/concepts/data-limits}
* for data limits.
*
* ### Examples
*
* #### Keyphrase extraction and Pii entity recognition
*
* ```js
* const poller = await client.beginAnalyzeBatch(
* [{ kind: "KeyPhraseExtraction" }, { kind: "PiiEntityRecognition" }],
* documents
* );
* const actionResults = await poller.pollUntilDone();
*
* for await (const actionResult of actionResults) {
* if (actionResult.error) {
* throw new Error(`Unexpected error`);
* }
* switch (actionResult.kind) {
* case "KeyPhraseExtraction": {
* for (const doc of actionResult.results) {
* // do something
* }
* break;
* }
* case "PiiEntityRecognition": {
* for (const doc of actionResult.results) {
* // do something
* }
* break;
* }
* }
* }
* ```
*
* @param actions - an array of actions that will be run on the input documents
* @param documents - the input documents to be analyzed
* @param options - optional settings for the operation
*
* @returns an array of results corresponding to the input actions
*/
async beginAnalyzeBatch(
actions: AnalyzeBatchAction[],
documents: TextDocumentInput[],
options?: BeginAnalyzeBatchOptions
): Promise<AnalyzeBatchPoller>;
// implementation
async beginAnalyzeBatch(
actions: AnalyzeBatchAction[],
documents: TextDocumentInput[] | string[],
languageOrOptions?: BeginAnalyzeBatchOptions | string,
options: BeginAnalyzeBatchOptions = {}
): Promise<AnalyzeBatchPoller> {
let realOptions: BeginAnalyzeBatchOptions;
let realInputs: TextDocumentInput[];
if (!Array.isArray(documents) || documents.length === 0) {
throw new Error("'documents' must be a non-empty array");
}
if (isStringArray(documents)) {
const languageCode = (languageOrOptions as string) ?? this.defaultLanguage;
realInputs = convertToTextDocumentInput(documents, languageCode);
realOptions = options;
} else {
realInputs = documents;
realOptions = languageOrOptions as BeginAnalyzeBatchOptions;
}
const realActions = actions.map(
({ kind, actionName, ...rest }): AnalyzeBatchActionUnion & { parameters: unknown } => ({
kind,
actionName,
parameters: rest,
})
);
const { includeStatistics, updateIntervalInMs, displayName, ...rest } = realOptions;
const lro = createAnalyzeBatchLro({
client: this._client,
commonOptions: rest,
documents: realInputs,
initialRequestOptions: { displayName },
pollRequestOptions: { includeStatistics },
tasks: realActions,
tracing: this._tracing,
});
const docIds = realInputs.map(({ id }) => id);
const state = { continuationToken: "" };
const poller = await createHttpPoller(lro, {
intervalInMs: updateIntervalInMs,
processResult: processAnalyzeResult({
client: this._client,
tracing: this._tracing,
docIds,
opOptions: { ...rest, includeStatistics },
state,
}),
updateState: createUpdateAnalyzeState(docIds),
withOperationLocation(operationLocation: string) {
state.continuationToken = operationLocation;
},
});
await poller.poll();
const id = poller.getOperationState().id;
return createPollerWithCancellation({
id,
client: this._client,
options,
poller,
tracing: this._tracing,
});
}
/**
* Creates a poller from the serialized state of another poller. This can be
* useful when you want to create pollers on a different host or a poller
* needs to be constructed after the original one is not in scope.
*
* @param serializedState - the serialized state of another poller. It is the
* result of `poller.toString()`
* @param options - optional settings for the operation
*
* # Example
*
* `client.beginAnalyzeBatch` returns a promise that will resolve to a poller.
* The state of the poller can be serialized and used to create another as follows:
*
* ```js
* const serializedState = poller.toString();
* const rehydratedPoller = await client.createAnalyzeBatchPoller(serializedState);
* const actionResults = await rehydratedPoller.pollUntilDone();
* ```
*/
async restoreAnalyzeBatchPoller(
serializedState: string,
options?: RestoreAnalyzeBatchPollerOptions
): Promise<AnalyzeBatchPoller>;
// implementation
async restoreAnalyzeBatchPoller(
serializedState: string,
options: RestoreAnalyzeBatchPollerOptions = {}
): Promise<AnalyzeBatchPoller> {
const { includeStatistics, updateIntervalInMs, ...rest } = options;
const docIds = getDocIDsFromState(serializedState);
const lro = createCreateAnalyzeBatchPollerLro({
client: this._client,
options: { ...rest, includeStatistics },
tracing: this._tracing,
});
const state = { continuationToken: "" };
const poller = await createHttpPoller(lro, {
intervalInMs: updateIntervalInMs,
restoreFrom: serializedState,
processResult: processAnalyzeResult({
client: this._client,
tracing: this._tracing,
docIds,
opOptions: { ...rest, includeStatistics },
state,
}),
updateState: createUpdateAnalyzeState(),
withOperationLocation(operationLocation: string) {
state.continuationToken = operationLocation;
},
});
await poller.poll();
const id = poller.getOperationState().id;
return createPollerWithCancellation({
id,
client: this._client,
options,
poller,
tracing: this._tracing,
});
}
}