forked from emiago/diago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dialog_cache.go
101 lines (82 loc) · 2.48 KB
/
dialog_cache.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
// SPDX-License-Identifier: MPL-2.0
// SPDX-FileCopyrightText: Copyright (c) 2024, Emir Aganovic
package diago
import (
"context"
"errors"
"sync"
"github.com/emiago/sipgo"
"github.com/emiago/sipgo/sip"
)
var (
// TODO, replace with typed versions
DialogsClientCache DialogCache[*DialogClientSession] = &dialogCacheMap[*DialogClientSession]{sync.Map{}}
DialogsServerCache DialogCache[*DialogServerSession] = &dialogCacheMap[*DialogServerSession]{sync.Map{}}
)
type DialogCache[T DialogSession] interface {
DialogStore(ctx context.Context, id string, v T) error
DialogLoad(ctx context.Context, id string) (T, error)
DialogDelete(ctx context.Context, id string) error
DialogRange(ctx context.Context, f func(id string, d T) bool) error
}
// Non optimized for now
type dialogCacheMap[T DialogSession] struct{ sync.Map }
func (m *dialogCacheMap[T]) DialogStore(ctx context.Context, id string, v T) error {
m.Store(id, v)
return nil
}
func (m *dialogCacheMap[T]) DialogDelete(ctx context.Context, id string) error {
m.Delete(id)
return nil
}
func (m *dialogCacheMap[T]) DialogLoad(ctx context.Context, id string) (dialog T, err error) {
d, ok := m.Load(id)
if !ok {
return dialog, sipgo.ErrDialogDoesNotExists
}
// interface to interface conversion is slow
return d.(T), nil
}
func (m *dialogCacheMap[T]) DialogRange(ctx context.Context, f func(id string, d T) bool) error {
m.Range(func(key, value any) bool {
return f(key.(string), value.(T))
})
return nil
}
type DialogData struct {
InviteRequest sip.Request
State sip.DialogState
}
func MatchDialogClient(req *sip.Request) (*DialogClientSession, error) {
id, err := sip.UACReadRequestDialogID(req)
if err != nil {
return nil, errors.Join(err, sipgo.ErrDialogOutsideDialog)
}
val, err := DialogsClientCache.DialogLoad(context.Background(), id)
if err != nil {
return nil, err
}
return val, nil
}
func MatchDialogServer(req *sip.Request) (*DialogServerSession, error) {
id, err := sip.UASReadRequestDialogID(req)
if err != nil {
return nil, errors.Join(err, sipgo.ErrDialogOutsideDialog)
}
val, err := DialogsServerCache.DialogLoad(context.Background(), id)
if err != nil {
return nil, err
}
return val, nil
}
func MatchDialog(req *sip.Request) (*DialogServerSession, *DialogClientSession, error) {
d, err := MatchDialogServer(req)
if err != nil {
if !errors.Is(err, sipgo.ErrDialogDoesNotExists) {
return nil, nil, err
}
cd, err := MatchDialogClient(req)
return nil, cd, err
}
return d, nil, nil
}