-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler.go
669 lines (564 loc) · 16.2 KB
/
handler.go
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
package suzu
import (
"context"
"encoding/binary"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"os"
"path"
"strings"
"time"
"github.com/labstack/echo/v4"
"github.com/pion/rtp/codecs"
zlog "github.com/rs/zerolog/log"
)
const (
FrameSize = 1024 * 10
HeaderLength = 20
MaxPayloadLength = 0xffff
)
var (
// TODO: 分かりにくい場合はエラー名を変更する
// このエラーの場合は再接続を試みる
ErrServerDisconnected = fmt.Errorf("SERVER-DISCONNECTED")
)
type TranscriptionResult struct {
Message string `json:"message,omitempty"`
Reason string `json:"reason,omitempty"`
Type string `json:"type"`
}
func NewSuzuErrorResponse(err error) TranscriptionResult {
return TranscriptionResult{
Type: "error",
Reason: err.Error(),
}
}
type soraHeader struct {
SoraChannelID string `header:"sora-channel-id"`
SoraSessionID string `header:"sora-session-id"`
// SoraClientID string `header:"sora-client-id"`
SoraConnectionID string `header:"sora-connection-id"`
// SoraAudioCodecType string `header:"sora-audio-codec-type"`
// SoraAudioSampleRate int64 `header:"sora-audio-sample-rate"`
SoraAudioStreamingLanguageCode string `header:"sora-audio-streaming-language-code"`
}
func getServiceHandler(serviceType string, config Config, channelID, connectionID string, sampleRate uint32, channelCount uint16, languageCode string, onResultFunc any) (serviceHandlerInterface, error) {
newHandlerFunc, err := NewServiceHandlerFuncs.get(serviceType)
if err != nil {
return nil, err
}
return (*newHandlerFunc)(config, channelID, connectionID, sampleRate, channelCount, languageCode, onResultFunc), nil
}
// https://echo.labstack.com/cookbook/streaming-response/
// TODO(v): http/2 の streaming を使ってレスポンスを戻す方法を調べる
// https://github.com/herrberk/go-http2-streaming/blob/master/http2/server.go
// 受信時はくるくるループを回す
func (s *Server) createSpeechHandler(serviceType string, onResultFunc func(context.Context, io.WriteCloser, string, string, string, any) error) echo.HandlerFunc {
return func(c echo.Context) error {
zlog.Debug().Msg("CONNECTING")
// http/2 じゃなかったらエラー
if c.Request().ProtoMajor != 2 {
zlog.Error().
Msg("INVALID-HTTP-PROTOCOL")
return echo.NewHTTPError(http.StatusBadRequest)
}
h := soraHeader{}
if err := (&echo.DefaultBinder{}).BindHeaders(c, &h); err != nil {
zlog.Error().
Err(err).
Msg("INVALID-HEADER")
return echo.NewHTTPError(http.StatusBadRequest)
}
defer func() {
zlog.Debug().
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Msg("DISCONNECTED")
}()
languageCode, err := GetLanguageCode(serviceType, h.SoraAudioStreamingLanguageCode, nil)
if err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
return echo.NewHTTPError(http.StatusInternalServerError)
}
zlog.Debug().
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Str("language_code", h.SoraAudioStreamingLanguageCode).
Msg("CONNECTED")
c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSON)
// すぐにヘッダを送信したいので c.Response().Flush() を実行する
c.Response().Flush()
ctx := c.Request().Context()
// TODO: context.WithCancelCause(ctx) に変更する
ctx, cancel := context.WithCancel(ctx)
defer cancel()
// TODO: ヘッダから取得する
sampleRate := uint32(s.config.SampleRate)
channelCount := uint16(s.config.ChannelCount)
d := time.Duration(s.config.TimeToWaitForOpusPacketMs) * time.Millisecond
opusReader := NewOpusReader(*s.config, d, c.Request().Body)
defer opusReader.Close()
var r io.Reader
if s.config.AudioStreamingHeader {
r = readPacketWithHeader(opusReader)
} else {
// ヘッダー処理なし
r = opusReader
}
opusCh := readOpus(ctx, r)
serviceHandler, err := getServiceHandler(serviceType, *s.config, h.SoraChannelID, h.SoraConnectionID, sampleRate, channelCount, languageCode, onResultFunc)
if err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
return echo.NewHTTPError(http.StatusInternalServerError)
}
// サーバへの接続・結果の送信処理
// サーバへの再接続が期待できる限りは、再接続を試みる
for {
zlog.Info().
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Int("retry_count", serviceHandler.GetRetryCount()).
Msg("NEW-REQUEST")
// リトライ時にこれ以降の処理のみを cancel する
serviceHandlerCtx, cancelServiceHandler := context.WithCancel(ctx)
defer cancelServiceHandler()
reader, err := serviceHandler.Handle(serviceHandlerCtx, opusCh, h)
if err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
if err, ok := err.(*SuzuError); ok {
if err.IsRetry() {
if s.config.MaxRetry > serviceHandler.GetRetryCount() {
serviceHandler.UpdateRetryCount()
// リトライ対象のエラーのため、クライアントとの接続は切らずにリトライする
retryTimer := time.NewTimer(time.Duration(s.config.RetryIntervalMs) * time.Millisecond)
retry:
select {
case <-retryTimer.C:
zlog.Debug().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Msg("retry")
cancelServiceHandler()
continue
case _, ok := <-opusCh:
if ok {
// channel が閉じるか、または、リトライのタイマーが発火するまで繰り返す
goto retry
}
retryTimer.Stop()
zlog.Debug().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Msg("retry interrupted")
// リトライする前にクライアントとの接続でエラーが発生した場合は終了する
return fmt.Errorf("%s", "retry interrupted")
}
}
}
// SuzuError の場合はその Status Code を返す
return c.NoContent(err.Code)
}
// SuzuError 以外の場合は 500 を返す
return echo.NewHTTPError(http.StatusInternalServerError, err)
}
defer reader.Close()
for {
buf := make([]byte, FrameSize)
n, err := reader.Read(buf)
if err != nil {
if errors.Is(err, io.EOF) {
return c.NoContent(http.StatusOK)
} else if strings.Contains(err.Error(), "client disconnected") {
// http.http2errClientDisconnected を使用したエラーの場合は、クライアントから切断されたため終了
// TODO: エラーレベルを見直す
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
return err
} else if errors.Is(err, ErrServerDisconnected) {
errs := err.(interface{ Unwrap() []error }).Unwrap()
// 元の err を取得する
err := errs[0]
if s.config.MaxRetry < 1 {
// サーバから切断されたが再接続させない設定の場合
zlog.Error().
Err(ErrServerDisconnected).
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
errMessage, err := json.Marshal(NewSuzuErrorResponse(err))
if err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
return err
}
if _, err := c.Response().Write(errMessage); err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
return err
}
c.Response().Flush()
return ErrServerDisconnected
}
if s.config.MaxRetry > serviceHandler.GetRetryCount() {
// サーバから切断されたが再度接続できる可能性があるため、接続を試みる
serviceHandler.UpdateRetryCount()
// TODO: 必要な場合は連続のリトライを避けるために少し待つ処理を追加する
cancelServiceHandler()
break
} else {
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
errMessage, err := json.Marshal(NewSuzuErrorResponse(err))
if err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
return err
}
if _, err := c.Response().Write(errMessage); err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
return err
}
c.Response().Flush()
// max_retry を超えた場合は終了
return c.NoContent(http.StatusOK)
}
}
zlog.Debug().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
orgErr := err
errMessage, err := json.Marshal(NewSuzuErrorResponse(err))
if err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
return err
}
if _, err := c.Response().Write(errMessage); err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
return err
}
c.Response().Flush()
// サーバから切断されたが再度の接続が期待できない場合
return orgErr
}
// メッセージが空でない場合はクライアントに結果を送信する
if n > 0 {
if _, err := c.Response().Write(buf[:n]); err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.SoraChannelID).
Str("connection_id", h.SoraConnectionID).
Send()
return err
}
c.Response().Flush()
}
}
}
}
}
func readPacketWithHeader(reader io.Reader) io.Reader {
r, w := io.Pipe()
go func() {
length := 0
payloadLength := 0
var payload []byte
for {
buf := make([]byte, HeaderLength+MaxPayloadLength)
n, err := reader.Read(buf)
if err != nil {
w.CloseWithError(err)
return
}
payload = append(payload, buf[:n]...)
length += n
// ヘッダー分のデータが揃っていないので、次の読み込みへ
if length < HeaderLength {
continue
}
// timestamp(64), sequence number(64), length(32)
h := payload[:HeaderLength]
p := payload[HeaderLength:]
payloadLength = int(binary.BigEndian.Uint32(h[16:HeaderLength]))
// payload が足りないので、次の読み込みへ
if length < (HeaderLength + payloadLength) {
continue
}
if _, err := w.Write(p[:payloadLength]); err != nil {
w.CloseWithError(err)
return
}
payload = p[payloadLength:]
length = len(payload)
// 全てのデータを書き込んだ場合は次の読み込みへ
if length == 0 {
continue
}
// 次の frame が含まれている場合
for {
// ヘッダー分のデータが揃っていないので、次の読み込みへ
if length < HeaderLength {
break
}
h = payload[:HeaderLength]
p = payload[HeaderLength:]
payloadLength = int(binary.BigEndian.Uint32(h[16:HeaderLength]))
// payload が足りないので、次の読み込みへ
if length < (HeaderLength + payloadLength) {
break
}
// データが足りているので payloadLength まで書き込む
if _, err := w.Write(p[:payloadLength]); err != nil {
w.CloseWithError(err)
return
}
// 残りの処理へ
payload = p[payloadLength:]
length = len(payload)
}
}
}()
return r
}
func readOpus(ctx context.Context, reader io.Reader) chan opusChannel {
opusCh := make(chan opusChannel)
go func() {
defer close(opusCh)
for {
select {
case <-ctx.Done():
opusCh <- opusChannel{
Error: ctx.Err(),
}
return
default:
buf := make([]byte, FrameSize)
n, err := reader.Read(buf)
if err != nil {
opusCh <- opusChannel{
Error: err,
}
return
}
if n > 0 {
opusCh <- opusChannel{
Payload: buf[:n],
}
}
}
}
}()
return opusCh
}
func opus2ogg(ctx context.Context, opusCh chan opusChannel, sampleRate uint32, channelCount uint16, c Config, header soraHeader) (io.ReadCloser, error) {
oggReader, oggWriter := io.Pipe()
writers := []io.Writer{}
var f *os.File
if c.EnableOggFileOutput {
fileName := fmt.Sprintf("%s-%s.ogg", header.SoraSessionID, header.SoraConnectionID)
filePath := path.Join(c.OggDir, fileName)
var err error
f, err = os.Create(filePath)
if err != nil {
return nil, err
}
writers = append(writers, f)
}
writers = append(writers, oggWriter)
multiWriter := io.MultiWriter(writers...)
go func() {
o, err := NewWith(multiWriter, sampleRate, channelCount)
if err != nil {
oggWriter.CloseWithError(err)
return
}
defer o.Close()
if c.EnableOggFileOutput {
o.fd = f
}
for {
select {
case <-ctx.Done():
oggWriter.CloseWithError(ctx.Err())
return
case opus, ok := <-opusCh:
if !ok {
oggWriter.CloseWithError(io.EOF)
return
}
if err := opus.Error; err != nil {
oggWriter.CloseWithError(err)
return
}
opusPacket := codecs.OpusPacket{}
_, err := opusPacket.Unmarshal(opus.Payload)
if err != nil {
oggWriter.CloseWithError(err)
return
}
if err := o.Write(&opusPacket); err != nil {
oggWriter.CloseWithError(err)
return
}
}
}
}()
return oggReader, nil
}
type opusRequest struct {
Payload []byte
Error error
}
func readPacket(opusReader io.Reader) chan opusRequest {
ch := make(chan opusRequest)
go func() {
defer close(ch)
for {
buf := make([]byte, FrameSize)
n, err := opusReader.Read(buf)
if err != nil {
ch <- opusRequest{
Error: err,
}
return
}
if n > 0 {
ch <- opusRequest{
Payload: buf[:n],
}
}
}
}()
return ch
}
func NewOpusReader(c Config, d time.Duration, opusReader io.ReadCloser) io.ReadCloser {
r, w := io.Pipe()
ch := readPacket(opusReader)
go func() {
timer := time.NewTimer(d)
defer func() {
if !timer.Stop() {
<-timer.C
}
}()
for {
var payload []byte
select {
case <-timer.C:
payload = silentPacket(c.AudioStreamingHeader)
case req, ok := <-ch:
if !ok {
w.Close()
return
}
if err := req.Error; err != nil {
w.CloseWithError(err)
return
}
payload = req.Payload
}
if _, err := w.Write(payload); err != nil {
w.CloseWithError(err)
opusReader.Close()
}
timer.Reset(d)
}
}()
return r
}
func silentPacket(audioStreamingHeader bool) []byte {
var packet []byte
silentPacket := []byte{252, 255, 254}
if audioStreamingHeader {
t := time.Now().UTC()
unixTime := make([]byte, 8)
binary.BigEndian.PutUint64(unixTime, uint64(t.UnixMicro()))
// 0 で固定
seqNum := make([]byte, 8)
length := make([]byte, 4)
binary.BigEndian.PutUint32(length, uint32(len(silentPacket)))
packet = append(unixTime, seqNum...)
packet = append(packet, length...)
packet = append(packet, silentPacket...)
} else {
packet = silentPacket
}
return packet
}
type opusChannel struct {
Payload []byte
Error error
}
func opusChannelToIOReadCloser(ctx context.Context, ch chan opusChannel) io.ReadCloser {
r, w := io.Pipe()
go func() {
defer w.Close()
for {
select {
case <-ctx.Done():
w.CloseWithError(ctx.Err())
return
case opus, ok := <-ch:
if !ok {
w.CloseWithError(io.EOF)
return
}
if err := opus.Error; err != nil {
w.CloseWithError(err)
return
}
if _, err := w.Write(opus.Payload); err != nil {
w.CloseWithError(err)
return
}
}
}
}()
return r
}