-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.js
900 lines (768 loc) · 28.3 KB
/
errors.js
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
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
// Copyright (c) 2015 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
'use strict';
var TypedError = require('error/typed');
var WrappedError = require('error/wrapped');
// All exported errors must be in sorted order
module.exports.Arg1Fragmented = TypedError({
type: 'tchannel.arg1-fragmented',
message: 'arg1 must not be fragmented'
});
module.exports.Arg1OverLengthLimit = TypedError({
type: 'tchannel.arg1-over-length-limit',
message: 'arg1 length {length} is larger than the limit {limit}',
length: null,
limit: null
});
module.exports.ArgChunkGapError = TypedError({
type: 'tchannel.arg-chunk.gap',
message: 'arg chunk gap, current: {current} got: {got}',
current: null,
got: null
});
module.exports.ArgChunkOutOfOrderError = TypedError({
type: 'tchannel.arg-chunk.out-of-order',
message: 'out of order arg chunk, current: {current} got: {got}',
current: null,
got: null
});
module.exports.ArgStreamExceededFramePartsError = TypedError({
type: 'tchannel.argstream.exceeded-frame-parts',
message: 'frame parts exceeded stream arity'
});
module.exports.ArgStreamFinishedError = TypedError({
type: 'tchannel.argstream.finished',
message: 'arg stream already finished'
});
module.exports.ArgStreamUnimplementedError = TypedError({
type: 'tchannel.argstream.unimplemented',
message: 'un-streamed argument defragmentation is not implemented'
});
module.exports.ArgStreamUnknownFrameHandlingStateError = TypedError({
type: 'tchannel.argstream.unknown-frame-handling-state',
message: 'unknown frame handling state'
});
module.exports.CallReqBeforeInitReqError = TypedError({
type: 'tchannel.init.call-request-before-init-request',
message: 'call request before init request'
});
module.exports.CallReqContBeforeInitReqError = TypedError({
type: 'tchannel.init.call-request-cont-before-init-request',
message: 'call request cont before init request'
});
module.exports.CallResBeforeInitResError = TypedError({
type: 'tchannel.init.call-response-before-init-response',
message: 'call response before init response'
});
module.exports.CallResContBeforeInitResError = TypedError({
type: 'tchannel.init.call-response-cont-before-init-response',
message: 'call response cont before init response'
});
module.exports.ChecksumError = TypedError({
type: 'tchannel.checksum',
message: 'invalid checksum (type {checksumType}) expected: {expectedValue} actual: {actualValue}',
checksumType: null,
expectedValue: null,
actualValue: null
});
module.exports.ChecksumTypeChanged = TypedError({
type: 'tchannel.call.checksum-type-changed',
message: 'checksum type changed mid-stream',
initialChecksumType: null,
newChecksumType: null
});
module.exports.ConnectionStaleTimeoutError = TypedError({
type: 'tchannel.connection-stale.timeout',
message: 'Connection got two timeouts in a row.\n' +
'Connection has been marked as stale and will be timed out',
period: null,
elapsed: null,
lastTimeoutTime: null
});
module.exports.ConnectionTimeoutError = TypedError({
type: 'tchannel.connection.timeout',
message: 'connection timed out after {elapsed}ms ' +
'(limit was {timeout}ms)',
id: null,
start: null,
elapsed: null,
timeout: null
});
module.exports.CorruptWriteLazyFrame = TypedError({
type: 'tchannel.lazy-frame.write-corrupt',
message: 'could not serialize lazy frame due to {context}',
context: null
});
module.exports.DuplicateHeaderKeyError = TypedError({
type: 'tchannel.duplicate-header-key',
message: 'duplicate header key {key}',
offset: null,
endOffset: null,
key: null,
value: null,
priorValue: null
});
module.exports.DuplicateInitRequestError = TypedError({
type: 'tchannel.init.duplicate-init-request',
message: 'tchannel: duplicate init request'
});
module.exports.DuplicateInitResponseError = TypedError({
type: 'tchannel.init.duplicate-init-response',
message: 'tchannel: duplicate init response'
});
module.exports.EphemeralInitResponse = TypedError({
type: 'tchannel.init.ephemeral-init-response',
message: 'tchannel: got invalid 0.0.0.0:0 as hostPort in Init Response',
hostPort: null,
socketRemoteAddr: null,
processName: null
});
module.exports.HTTPReqArg2fromBufferError = WrappedError({
type: 'tchannel.http-handler.from-buffer-arg2.req-failed',
message: 'Could not read from buffer when sending request.',
isSerializationError: true,
arg2: null
});
module.exports.HTTPReqArg2toBufferError = WrappedError({
type: 'tchannel.http-handler.to-buffer-arg2.req-failed',
message: 'Could not write to buffer when sending request.',
isSerializationError: true,
head: null
});
module.exports.HTTPResArg2fromBufferError = WrappedError({
type: 'tchannel.http-handler.from-buffer-arg2.res-failed',
message: 'Could not read from buffer when sending response.',
isSerializationError: true,
arg2: null
});
module.exports.HTTPResArg2toBufferError = WrappedError({
type: 'tchannel.http-handler.to-buffer-arg2.res-failed',
message: 'Could not write to buffer when sending response.',
isSerializationError: true,
head: null
});
module.exports.InAsHeaderRequired = TypedError({
type: 'tchannel.handler.incoming-req-as-header-required',
message: 'Expected incoming call {frame} to have "as" header set.',
frame: null
});
module.exports.InCnHeaderRequired = TypedError({
type: 'tchannel.handler.incoming-req-cn-header-required',
message: 'Expected incoming call request to have "cn" header set.'
});
module.exports.InvalidArgumentError = TypedError({
type: 'tchannel.invalid-argument',
message: 'invalid argument, expected array or null',
argType: null,
argConstructor: null
});
module.exports.InvalidErrorCodeError = TypedError({
type: 'tchannel.invalid-error-code',
message: 'invalid tchannel error code {errorCode}',
errorCode: null,
originalId: null
});
module.exports.InvalidFrameTypeError = TypedError({
type: 'tchannel.invalid-frame-type',
message: 'invalid frame type {typeNumber}',
typeNumber: null
});
module.exports.InvalidHandlerError = TypedError({
type: 'tchannel.invalid-handler',
message: 'invalid handler function'
});
module.exports.InvalidHandlerForRegister = TypedError({
type: 'tchannel.invalid-handler.for-registration',
message: 'Found unexpected handler when calling `.register()`.\n' +
'You cannot set a custom handler when using `.register()`.\n' +
'`.register()` is deprecated; use a proper handler.',
handlerType: null,
handler: null
});
module.exports.InvalidHeaderTypeError = TypedError({
type: 'tchannel.invalid-header-type',
message: 'invalid header type for header {name}; ' +
'expected string, got {headerType}',
headerType: null,
name: null
});
module.exports.InvalidJSONBody = TypedError({
type: 'tchannel-handler.json.invalid-body',
message: 'Invalid error body, expected a typed-error',
isSerializationError: true,
head: null,
body: null
});
module.exports.InvalidTTL = TypedError({
type: 'tchannel.protocol.invalid-ttl',
message: 'Got an invalid ttl. Expected positive ttl but got {ttl}',
ttl: null
});
module.exports.JSONBodyParserError = WrappedError({
type: 'tchannel-json-handler.parse-error.body-failed',
message: 'Could not parse body (arg3) argument.\n' +
'Expected JSON encoded arg3 for endpoint {endpoint}.\n' +
'Got {bodyStr} instead of JSON.',
isSerializationError: true,
endpoint: null,
direction: null,
bodyStr: null
});
module.exports.JSONBodyStringifyError = WrappedError({
type: 'tchannel-json-handler.stringify-error.body-failed',
message: 'Could not stringify body (res2) argument.\n' +
'Expected JSON serializable res2 for endpoint {endpoint}.',
isSerializationError: true,
endpoint: null,
body: null,
direction: null
});
module.exports.JSONHeadParserError = WrappedError({
type: 'tchannel-json-handler.parse-error.head-failed',
message: 'Could not parse head (arg2) argument.\n' +
'Expected JSON encoded arg2 for endpoint {endpoint}.\n' +
'Got {headStr} instead of JSON.',
isSerializationError: true,
endpoint: null,
direction: null,
headStr: null
});
module.exports.JSONHeadStringifyError = WrappedError({
type: 'tchannel-json-handler.stringify-error.head-failed',
message: 'Could not stringify head (res1) argument.\n' +
'Expected JSON serializable res1 for endpoint {endpoint}.',
isSerializationError: true,
endpoint: null,
head: null,
direction: null
});
module.exports.LocalSocketCloseError = TypedError({
type: 'tchannel.socket-local-closed',
message: 'tchannel: Connection was manually closed.'
});
module.exports.MaxPendingError = TypedError({
type: 'tchannel.max-pending',
message: 'maximum pending requests exceeded (limit was {pending})',
pending: null
});
module.exports.MaxPendingForServiceError = TypedError({
type: 'tchannel.max-pending-for-service',
message: 'maximum pending requests exceeded for service (limit was {pending} for service {serviceName})',
pending: null,
serviceName: null
});
module.exports.MissingInitHeaderError = TypedError({
type: 'tchannel.missing-init-header',
message: 'missing init frame header {field}',
field: null
});
module.exports.NoPeerAvailable = TypedError({
type: 'tchannel.no-peer-available',
message: 'no peer available for request'
});
module.exports.NoServiceHandlerError = TypedError({
type: 'tchannel.no-service-handler',
message: 'unknown service {serviceName}',
serviceName: null
});
module.exports.NullKeyError = TypedError({
type: 'tchannel.null-key',
message: 'null key',
offset: null,
endOffset: null
});
module.exports.OrphanCallRequestCont = TypedError({
type: 'tchannel.call-request.orphan-cont',
message: 'orphaned call request cont',
frameId: null
});
module.exports.OrphanCallResponseCont = TypedError({
type: 'tchannel.call-response.orphan-cont',
message: 'orphaned call response cont',
frameId: null
});
module.exports.OutAsHeaderRequired = TypedError({
type: 'tchannel.handler.outgoing-req-as-header-required',
message: 'Expected outgoing call request to have "as" header set.'
});
module.exports.OutCnHeaderRequired = TypedError({
type: 'tchannel.handler.outgoing-req-cn-header-required',
message: 'Expected outgoing call request to have "cn" header set.'
});
module.exports.ParentRequired = TypedError({
type: 'tchannel.tracer.parent-required',
message: 'parent not specified for outgoing call req.\n' +
'Expected either a parent or hasNoParent.\n' +
'For the call to {serviceName}.\n',
parentSpan: null,
hasNoParent: null,
serviceName: null
});
module.exports.ReconstructedError = TypedError({
type: 'tchannel.hydrated-error.default-type',
message: 'TChannel json hydrated error;' +
' this message should be replaced with an upstream error message'
});
module.exports.RequestAlreadyDone = TypedError({
type: 'tchannel.request-already-done',
message: 'cannot {attempted}, request already done',
attempted: null
});
module.exports.RequestDrained = TypedError({
type: 'tchannel.request.drained',
message: 'refusing to send drained request: {reason}',
reason: null
});
module.exports.RequestFrameState = TypedError({
type: 'tchannel.request-frame-state',
message: 'cannot send {attempted} in {state} request state',
attempted: null,
state: null
});
module.exports.RequestRetryLimitExceeded = TypedError({
type: 'tchannel.request.retry-limit-exceeded',
message: 'exceeded retry limit',
limit: null
});
module.exports.RequestTimeoutError = TypedError({
type: 'tchannel.request.timeout',
message: 'request timed out after {elapsed}ms ' +
'(limit was {timeout}ms)',
id: null,
start: null,
elapsed: null,
timeout: null,
logical: false
});
module.exports.ResponseAlreadyDone = TypedError({
type: 'tchannel.response-already-done',
message: 'cannot send {attempted}, response already done ' +
'in state: {currentState}',
attempted: null,
currentState: null
});
module.exports.ResponseAlreadyStarted = TypedError({
type: 'tchannel.response-already-started',
message: 'response already started (state {state})',
state: null
});
module.exports.ResponseFrameState = TypedError({
type: 'tchannel.response-frame-state',
message: 'cannot send {attempted} in {state} response state',
attempted: null,
state: null
});
module.exports.SendCallReqBeforeIdentifiedError = TypedError({
type: 'tchannel.init.send-call-request-before-indentified',
message: 'cannot send call request before the connection is identified'
});
module.exports.SendCallReqContBeforeIdentifiedError = TypedError({
type: 'tchannel.init.send-call-request-cont-before-indentified',
message: 'cannot send call request cont before the connection is identified'
});
module.exports.SendCallResBeforeIdentifiedError = TypedError({
type: 'tchannel.init.send-call-response-before-indentified',
message: 'cannot send call response before the connection is identified'
});
module.exports.SendCallResContBeforeIdentifiedError = TypedError({
type: 'tchannel.init.send-call-response-cont-before-indentified',
message: 'cannot send call response cont before the connection is identified'
});
module.exports.SocketClosedError = TypedError({
type: 'tchannel.socket-closed',
message: 'socket closed, {reason}',
reason: null
});
module.exports.SocketError = WrappedError({
type: 'tchannel.socket',
message: 'tchannel socket error ({code} from {syscall}): {origMessage}',
hostPort: null,
direction: null,
remoteAddr: null
});
module.exports.TChannelConnectionCloseError = TypedError({
type: 'tchannel.connection.close',
message: 'connection closed'
});
module.exports.TChannelConnectionResetError = WrappedError({
type: 'tchannel.connection.reset',
message: 'tchannel: {causeMessage}'
});
module.exports.TChannelDestroyedError = TypedError({
type: 'tchannel.destroyed',
message: 'the channel is destroyed'
});
module.exports.TChannelListenError = WrappedError({
type: 'tchannel.server.listen-failed',
message: 'tchannel: {origMessage}',
requestedPort: null,
host: null
});
module.exports.TChannelLocalResetError = WrappedError({
type: 'tchannel.local.reset',
message: 'tchannel: {causeMessage}'
});
module.exports.TChannelReadProtocolError = WrappedError({
type: 'tchannel.protocol.read-failed',
message: 'tchannel read failure: {origMessage}',
remoteName: null,
localName: null
});
module.exports.TChannelUnhandledFrameTypeError = TypedError({
type: 'tchannel.unhandled-frame-type',
message: 'unhandled frame type {typeCode}',
typeCode: null
});
module.exports.TChannelWriteProtocolError = WrappedError({
type: 'tchannel.protocol.write-failed',
message: 'tchannel write failure: {origMessage}',
remoteName: null,
localName: null
});
module.exports.ThriftBodyParserError = WrappedError({
type: 'tchannel-thrift-handler.parse-error.body-failed',
message: 'Could not parse body (arg3) argument.\n' +
'Expected Thrift encoded arg3 for endpoint {endpoint}.\n' +
'Got {bodyBuf} instead of Thrift.\n' +
'Parsing error was: {causeMessage}.\n',
isSerializationError: true,
endpoint: null,
direction: null,
ok: null,
bodyBuf: null
});
module.exports.ThriftBodyStringifyError = WrappedError({
type: 'tchannel-thrift-handler.stringify-error.body-failed',
message: 'Could not stringify body (res2) argument.\n' +
'Expected Thrift serializable res2 for endpoint {endpoint}.',
isSerializationError: true,
endpoint: null,
ok: null,
body: null,
direction: null
});
module.exports.ThriftHeadParserError = WrappedError({
type: 'tchannel-thrift-handler.parse-error.head-failed',
message: 'Could not parse head (arg2) argument.\n' +
'Expected Thrift encoded arg2 for endpoint {endpoint}.\n' +
'Got {headBuf} instead of Thrift.\n' +
'Parsing error was: {causeMessage}.\n',
isSerializationError: true,
endpoint: null,
ok: null,
direction: null,
headBuf: null
});
module.exports.ThriftHeadStringifyError = WrappedError({
type: 'tchannel-thrift-handler.stringify-error.head-failed',
message: 'Could not stringify head (res1) argument.\n' +
'Expected Thrift serializable res1 for endpoint {endpoint}.',
isSerializationError: true,
endpoint: null,
ok: null,
head: null,
direction: null
});
module.exports.TooManyHeaders = TypedError({
type: 'tchannel.protocol.too-many-headers',
message: 'too many transport headers, got {count}, expected at most {maxHeaderCount}',
count: null,
maxHeaderCount: null,
offset: null,
endOffset: null
});
module.exports.TopLevelRegisterError = TypedError({
type: 'tchannel.top-level-register',
message: 'Cannot register endpoints points on top-level channel.\n' +
'Provide serviceName to constructor, or create a sub-channel.'
});
module.exports.TopLevelRequestError = TypedError({
type: 'tchannel.top-level-request',
message: 'Cannot make request() on top level tchannel.\n' +
'Must use a sub channel directly.'
});
module.exports.TransportHeaderTooLong = TypedError({
type: 'tchannel.transport-header-too-long',
message: 'transport header: {headerName} exceeds {maxLength} bytes',
maxLength: null,
headerName: null,
offset: null,
endOffset: null
});
module.exports.UnexpectedCallFrameAfterDone = TypedError({
type: 'tchannel.call.frame-unexpected.after-done',
message: 'got call frame (type {frameType}) in done state',
frameId: null,
frameType: null
});
module.exports.UnexpectedCallFrameAfterError = TypedError({
type: 'tchannel.call.frame-unexpected.after-error',
message: 'got call frame (type {frameType}) in error state',
frameId: null,
frameType: null
});
module.exports.UnimplementedMethod = TypedError({
message: 'Unimplemented {className}#{methodName}',
type: 'tchannel.unimplemented-method',
className: null,
methodName: null
});
module.exports.UnknownConnectionReset = TypedError({
type: 'tchannel.connection.unknown-reset',
message: 'unknown connection reset'
});
// utilities
module.exports.classify = function classify(err) {
if (err.isErrorFrame) {
return err.codeName;
}
switch (err.type) {
case 'tchannel.request.retry-limit-exceeded':
return 'Cancelled';
case 'tchannel.max-pending':
case 'tchannel.max-pending-for-service':
case 'tchannel.no-peer-available':
case 'tchannel.no-service-handler':
case 'tchannel.request.drained':
return 'Declined';
case 'tchannel.connection-stale.timeout':
case 'tchannel.connection.timeout':
case 'tchannel.request.timeout':
return 'Timeout';
case 'tchannel-handler.json.invalid-body':
case 'tchannel-json-handler.parse-error.body-failed':
case 'tchannel-json-handler.parse-error.head-failed':
case 'tchannel-thrift-handler.parse-error.body-failed':
case 'tchannel-thrift-handler.parse-error.head-failed':
case 'tchannel.arg-chunk.gap':
case 'tchannel.arg-chunk.out-of-order':
case 'tchannel.arg1-fragmented':
case 'tchannel.arg1-over-length-limit':
case 'tchannel.argstream.exceeded-frame-parts':
case 'tchannel.call.checksum-type-changed':
case 'tchannel.checksum':
case 'tchannel.duplicate-header-key':
case 'tchannel.handler.incoming-req-as-header-required':
case 'tchannel.handler.incoming-req-cn-header-required':
case 'tchannel.http-handler.to-buffer-arg2.req-failed':
case 'tchannel.http-handler.to-buffer-arg2.res-failed':
case 'tchannel.null-key':
case 'tchannel.request-already-done':
case 'tchannel.request-frame-state':
return 'BadRequest';
case 'tchannel.argstream.finished':
case 'tchannel.argstream.unimplemented':
// TODO: really we'd rather classify as BadRequest. see note in
// TChannelV2Handler#handleCallRequestCont wrt frame id association
// support
case 'tchannel.call-request.orphan-cont':
// TODO: can BadRequest be used for a response error? Maybe instead we
// could use UnexpectedError rather than terminate the connection?
case 'tchannel.call-response.orphan-cont':
// TODO: classify as BadRequest/UnexpectedError for req/res?
case 'tchannel.call.frame-unexpected.after-done':
case 'tchannel.call.frame-unexpected.after-error':
case 'tchannel.init.call-request-before-init-request':
case 'tchannel.init.call-request-cont-before-init-request':
case 'tchannel.init.call-response-before-init-response':
case 'tchannel.init.call-response-cont-before-init-response':
case 'tchannel.init.duplicate-init-request':
case 'tchannel.init.duplicate-init-response':
case 'tchannel.init.ephemeral-init-response':
case 'tchannel.init.send-call-request-before-indentified':
case 'tchannel.init.send-call-request-cont-before-indentified':
case 'tchannel.init.send-call-response-before-indentified':
case 'tchannel.init.send-call-response-cont-before-indentified':
case 'tchannel.invalid-error-code':
case 'tchannel.invalid-frame-type':
case 'tchannel.missing-init-header':
case 'tchannel.protocol.invalid-ttl':
case 'tchannel.protocol.read-failed':
case 'tchannel.protocol.too-many-headers':
case 'tchannel.protocol.write-failed':
case 'tchannel.transport-header-too-long':
case 'tchannel.unhandled-frame-type':
return 'ProtocolError';
case 'tchannel.connection.close':
case 'tchannel.connection.reset':
case 'tchannel.destroyed':
case 'tchannel.local.reset':
case 'tchannel.socket':
case 'tchannel.socket-closed':
case 'tchannel.socket-local-closed':
return 'NetworkError';
case 'tchannel-json-handler.stringify-error.body-failed':
case 'tchannel-json-handler.stringify-error.head-failed':
case 'tchannel-thrift-handler.stringify-error.body-failed':
case 'tchannel-thrift-handler.stringify-error.head-failed':
case 'tchannel.argstream.unknown-frame-handling-state':
case 'tchannel.connection.unknown-reset':
case 'tchannel.handler.outgoing-req-as-header-required':
case 'tchannel.handler.outgoing-req-cn-header-required':
case 'tchannel.http-handler.from-buffer-arg2.req-failed':
case 'tchannel.http-handler.from-buffer-arg2.res-failed':
case 'tchannel.hydrated-error.default-type':
case 'tchannel.invalid-argument':
case 'tchannel.invalid-handler':
case 'tchannel.invalid-handler.for-registration':
case 'tchannel.invalid-header-type':
case 'tchannel.lazy-frame.write-corrupt':
case 'tchannel.response-already-done':
case 'tchannel.response-already-started':
case 'tchannel.response-frame-state':
case 'tchannel.server.listen-failed':
case 'tchannel.top-level-register':
case 'tchannel.top-level-request':
case 'tchannel.tracer.parent-required':
case 'tchannel.unimplemented-method':
return 'UnexpectedError';
default:
return null;
}
};
// To determine whether a circuit should break for each response code.
// TODO consider whether to keep a circuit healthy if a downstream circuit is
// unhealthy.
module.exports.isUnhealthy = function isUnhealthy(codeName) {
switch (codeName) {
// not an indicator of bad health
case 'BadRequest':
case 'Cancelled':
return false;
case 'Unhealthy':
case 'Timeout':
case 'Busy':
case 'Declined':
case 'UnexpectedError':
case 'NetworkError':
case 'ProtocolError':
return true;
default:
return null;
}
};
module.exports.shouldRetry = function shouldRetry(codeName, retryFlags) {
switch (codeName) {
case 'BadRequest':
case 'Cancelled':
case 'Unhealthy':
return false;
case 'Busy':
case 'Declined':
return true;
case 'Timeout':
return !!retryFlags.onTimeout;
case 'NetworkError':
case 'ProtocolError':
case 'UnexpectedError':
return !!retryFlags.onConnectionError;
default:
return null;
}
};
function HTTPInfo(statusCode, statusMessage) {
this.statusCode = statusCode;
this.statusMessage = statusMessage;
}
module.exports.toHTTPCode = function toHTTPCode(codeName) {
switch (codeName) {
case 'Cancelled':
return new HTTPInfo(500, 'TChannel Cancelled');
case 'Unhealthy':
case 'Declined':
return new HTTPInfo(503, 'Service Unavailable');
case 'Timeout':
return new HTTPInfo(504, 'Gateway Timeout');
case 'BadRequest':
return new HTTPInfo(400, 'Bad Request');
case 'Busy':
return new HTTPInfo(429, 'Too Many Requests');
case 'ProtocolError':
return new HTTPInfo(500, 'TChannel Protocol Error');
case 'NetworkError':
return new HTTPInfo(500, 'TChannel Network Error');
case 'UnexpectedError':
return new HTTPInfo(500, 'TChannel Unexpected Error');
default:
return new HTTPInfo(500, 'Internal Server Error');
}
};
module.exports.isFatal = function isFatal(err, codeName) {
if (!codeName) {
codeName = module.exports.classify(err);
}
switch (codeName) {
case 'Busy':
case 'Cancelled':
case 'Declined':
case 'NetworkError':
case 'Timeout':
case 'Unhealthy':
return false;
case 'BadRequest':
case 'ProtocolError':
case 'UnexpectedError':
return true;
default:
return true;
}
};
module.exports.logLevel = function errorLogLevel(err, codeName) {
switch (codeName) {
case 'ProtocolError':
case 'UnexpectedError':
if (err.isErrorFrame) {
return 'warn';
}
return 'error';
case 'Busy':
case 'Cancelled':
case 'Declined':
case 'NetworkError':
case 'Unhealthy':
return 'warn';
case 'BadRequest':
case 'Timeout':
return 'info';
default:
return 'error';
}
};
/* Whether we should increase peer.pending on an error frame.
On Busy & Declined we increase the pending count for a peer
to allow peer selection to favor less loaded peers.
*/
module.exports.isPendingError = function isPendingError(codeName) {
switch (codeName) {
case 'Busy':
case 'Declined':
case 'Unhealthy':
return true;
case 'BadRequest':
case 'Cancelled':
case 'NetworkError':
case 'ProtocolError':
case 'Timeout':
case 'UnexpectedError':
return false;
default:
return false;
}
};