forked from named-data/ndnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathface.go
57 lines (45 loc) · 1.19 KB
/
face.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
/* YaNFD - Yet another NDN Forwarding Daemon
*
* Copyright (C) 2020-2021 Eric Newberry.
*
* This file is licensed under the terms of the MIT License, as found in LICENSE.md.
*/
package dispatch
import (
"sync"
"github.com/named-data/YaNFD/defn"
)
// Face provides an interface that faces can satisfy (to avoid circular dependency between faces and forwarding)
type Face interface {
String() string
SetFaceID(faceID uint64)
FaceID() uint64
LocalURI() *defn.URI
RemoteURI() *defn.URI
Scope() defn.Scope
LinkType() defn.LinkType
MTU() int
State() defn.State
SendPacket(packet *defn.Pkt)
}
// FaceDispatch is used to allow forwarding to interact with faces without a circular dependency issue.
var FaceDispatch sync.Map
func init() {
FaceDispatch = sync.Map{}
}
// AddFace adds the specified face to the dispatch list.
func AddFace(id uint64, face Face) {
FaceDispatch.Store(id, face)
}
// GetFace returns the specified face or nil if it does not exist.
func GetFace(id uint64) Face {
face, ok := FaceDispatch.Load(id)
if !ok {
return nil
}
return face.(Face)
}
// RemoveFace removes the specified face from the dispatch map.
func RemoveFace(id uint64) {
FaceDispatch.Delete(id)
}