This repository has been archived by the owner on Feb 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
listenerudp.go
118 lines (96 loc) · 2.34 KB
/
listenerudp.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
package dctk
import (
"fmt"
"net"
"github.com/aler9/go-dc/adc"
"github.com/aler9/go-dc/nmdc"
"github.com/aler9/dctk/pkg/log"
"github.com/aler9/dctk/pkg/protoadc"
"github.com/aler9/dctk/pkg/protonmdc"
)
type listenerUDP struct {
client *Client
terminateRequested bool
listener net.PacketConn
}
func newListenerUDP(client *Client) error {
listener, err := net.ListenPacket("udp", fmt.Sprintf(":%d", client.conf.UDPPort))
if err != nil {
return err
}
client.listenerUDP = &listenerUDP{
client: client,
listener: listener,
}
return nil
}
func (u *listenerUDP) close() {
if u.terminateRequested {
return
}
u.terminateRequested = true
u.listener.Close()
}
func (u *listenerUDP) do() {
defer u.client.wg.Done()
var buf [2048]byte
for {
n, _, err := u.listener.ReadFrom(buf[:])
// listener closed
if err != nil {
break
}
msgStr := string(buf[:n])
u.client.Safe(func() {
err := func() error {
if u.client.protoIsAdc() {
if msgStr[len(msgStr)-1] != '\n' {
return fmt.Errorf("wrong terminator")
}
msgStr = msgStr[:len(msgStr)-1]
if msgStr[:5] != "URES " {
return fmt.Errorf("wrong command")
}
pkt, err := adc.DecodePacket([]byte(msgStr + "\n"))
if err != nil {
return err
}
msge := pkt.Message().(adc.SearchResult)
msg := &msge
pktMsg := &protoadc.AdcUSearchResult{ //nolint:govet
pkt.(*adc.UDPPacket),
msg,
}
p := u.client.peerByClientID(pktMsg.Pkt.ID)
if p == nil {
return fmt.Errorf("unknown author")
}
u.client.handleAdcSearchResult(true, p, pktMsg.Msg)
return nil
}
if msgStr[len(msgStr)-1] != '|' {
return fmt.Errorf("wrong terminator")
}
msgStr = msgStr[:len(msgStr)-1]
matches := protonmdc.ReNmdcCommand.FindStringSubmatch(msgStr)
if matches == nil {
return fmt.Errorf("wrong syntax")
}
// udp is used only for search results
if matches[1] != "SR" {
return fmt.Errorf("wrong command")
}
msg := &nmdc.SR{}
err = msg.UnmarshalNMDC(nil, []byte(matches[3]))
if err != nil {
return fmt.Errorf("wrong search result")
}
u.client.handleNmdcSearchResult(true, msg)
return nil
}()
if err != nil {
log.Log(u.client.conf.LogLevel, log.LevelDebug, "[udp] unable to parse: %s", err)
}
})
}
}