@@ -14,14 +14,12 @@ import (
14
14
"github.com/named-data/ndnd/fw/table"
15
15
enc "github.com/named-data/ndnd/std/encoding"
16
16
mgmt "github.com/named-data/ndnd/std/ndn/mgmt_2022"
17
- spec "github.com/named-data/ndnd/std/ndn/spec_2022"
18
17
"github.com/named-data/ndnd/std/utils"
19
18
)
20
19
21
20
// ContentStoreModule is the module that handles Content Store Management.
22
21
type ContentStoreModule struct {
23
- manager * Thread
24
- nextDatasetVersion uint64
22
+ manager * Thread
25
23
}
26
24
27
25
func (c * ContentStoreModule ) String () string {
@@ -36,7 +34,7 @@ func (c *ContentStoreModule) getManager() *Thread {
36
34
return c .manager
37
35
}
38
36
39
- func (c * ContentStoreModule ) handleIncomingInterest (interest * spec. Interest , pitToken [] byte , inFace uint64 ) {
37
+ func (c * ContentStoreModule ) handleIncomingInterest (interest * Interest ) {
40
38
// Only allow from /localhost
41
39
if ! LOCAL_PREFIX .IsPrefix (interest .Name ()) {
42
40
core .LogWarn (c , "Received CS management Interest from non-local source - DROP" )
@@ -47,40 +45,36 @@ func (c *ContentStoreModule) handleIncomingInterest(interest *spec.Interest, pit
47
45
verb := interest .Name ()[len (LOCAL_PREFIX )+ 1 ].String ()
48
46
switch verb {
49
47
case "config" :
50
- c .config (interest , pitToken , inFace )
48
+ c .config (interest )
51
49
case "erase" :
52
50
// TODO
53
- //c.erase(interest, pitToken, inFace )
51
+ //c.erase(interest)
54
52
case "info" :
55
- c .info (interest , pitToken , inFace )
53
+ c .info (interest )
56
54
default :
57
55
core .LogWarn (c , "Received Interest for non-existent verb '" , verb , "'" )
58
- response := makeControlResponse (501 , "Unknown verb" , nil )
59
- c .manager .sendResponse (response , interest , pitToken , inFace )
56
+ c .manager .sendCtrlResp (interest , 501 , "Unknown verb" , nil )
60
57
return
61
58
}
62
59
}
63
60
64
- func (c * ContentStoreModule ) config (interest * spec. Interest , pitToken [] byte , inFace uint64 ) {
61
+ func (c * ContentStoreModule ) config (interest * Interest ) {
65
62
if len (interest .Name ()) < len (LOCAL_PREFIX )+ 3 {
66
63
// Name not long enough to contain ControlParameters
67
64
core .LogWarn (c , "Missing ControlParameters in " , interest .Name ())
68
- response := makeControlResponse (400 , "ControlParameters is incorrect" , nil )
69
- c .manager .sendResponse (response , interest , pitToken , inFace )
65
+ c .manager .sendCtrlResp (interest , 400 , "ControlParameters is incorrect" , nil )
70
66
return
71
67
}
72
68
73
69
params := decodeControlParameters (c , interest )
74
70
if params == nil {
75
- response := makeControlResponse (400 , "ControlParameters is incorrect" , nil )
76
- c .manager .sendResponse (response , interest , pitToken , inFace )
71
+ c .manager .sendCtrlResp (interest , 400 , "ControlParameters is incorrect" , nil )
77
72
return
78
73
}
79
74
80
75
if (params .Flags == nil && params .Mask != nil ) || (params .Flags != nil && params .Mask == nil ) {
81
76
core .LogWarn (c , "Flags and Mask fields must either both be present or both be not present" )
82
- response := makeControlResponse (409 , "ControlParameters are incorrect" , nil )
83
- c .manager .sendResponse (response , interest , pitToken , inFace )
77
+ c .manager .sendCtrlResp (interest , 409 , "ControlParameters are incorrect" , nil )
84
78
return
85
79
}
86
80
@@ -103,14 +97,13 @@ func (c *ContentStoreModule) config(interest *spec.Interest, pitToken []byte, in
103
97
}
104
98
}
105
99
106
- response := makeControlResponse ( 200 , "OK" , & mgmt.ControlArgs {
100
+ c . manager . sendCtrlResp ( interest , 200 , "OK" , & mgmt.ControlArgs {
107
101
Capacity : utils .IdPtr (uint64 (table .CsCapacity ())),
108
102
Flags : utils .IdPtr (c .getFlags ()),
109
103
})
110
- c .manager .sendResponse (response , interest , pitToken , inFace )
111
104
}
112
105
113
- func (c * ContentStoreModule ) info (interest * spec. Interest , pitToken [] byte , _ uint64 ) {
106
+ func (c * ContentStoreModule ) info (interest * Interest ) {
114
107
if len (interest .Name ()) > len (LOCAL_PREFIX )+ 2 {
115
108
// Ignore because contains version and/or segment components
116
109
return
@@ -133,12 +126,7 @@ func (c *ContentStoreModule) info(interest *spec.Interest, pitToken []byte, _ ui
133
126
enc .NewStringComponent (enc .TypeGenericNameComponent , "cs" ),
134
127
enc .NewStringComponent (enc .TypeGenericNameComponent , "info" ),
135
128
)
136
- segments := makeStatusDataset (name , c .nextDatasetVersion , status .Encode ())
137
- c .manager .transport .Send (segments , pitToken , nil )
138
-
139
- core .LogTrace (c , "Published forwarder status dataset version=" , c .nextDatasetVersion ,
140
- ", containing " , len (segments ), " segments" )
141
- c .nextDatasetVersion ++
129
+ c .manager .sendStatusDataset (interest , name , status .Encode ())
142
130
}
143
131
144
132
func (c * ContentStoreModule ) getFlags () uint64 {
0 commit comments