-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
group.go
85 lines (66 loc) · 1.55 KB
/
group.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
package moqt
import (
"io"
"log/slog"
"time"
"github.com/OkutaniDaichi0106/gomoqt/internal/message"
)
type Group interface {
SubscribeID() SubscribeID
GroupSequence() GroupSequence
GroupPriority() GroupPriority
}
type ReceivedGroup struct {
subscribeID SubscribeID
groupSequence GroupSequence
groupPriority GroupPriority
/*
* Fields not in wire
*/
// Time when the Group was received
receivedAt time.Time // TODO:
}
func (g ReceivedGroup) SubscribeID() SubscribeID {
return g.subscribeID
}
func (g ReceivedGroup) GroupSequence() GroupSequence {
return g.groupSequence
}
func (g ReceivedGroup) GroupPriority() GroupPriority {
return g.groupPriority
}
type SentGroup struct {
subscribeID SubscribeID
groupSequence GroupSequence
groupPriority GroupPriority
/*
* Fields not in wire
*/
// Time when the Group was sent
sentAt time.Time // TODO:
}
func (g SentGroup) SubscribeID() SubscribeID {
return g.subscribeID
}
func (g SentGroup) GroupSequence() GroupSequence {
return g.groupSequence
}
func (g SentGroup) GroupPriority() GroupPriority {
return g.groupPriority
}
func readGroup(r io.Reader) (ReceivedGroup, error) {
// Read a GROUP message
var gm message.GroupMessage
err := gm.Decode(r)
if err != nil {
slog.Error("failed to read a GROUP message", slog.String("error", err.Error()))
return ReceivedGroup{}, err
}
//
return ReceivedGroup{
subscribeID: SubscribeID(gm.SubscribeID),
groupSequence: GroupSequence(gm.GroupSequence),
groupPriority: GroupPriority(gm.GroupPriority),
receivedAt: time.Now(),
}, nil
}