-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathtrace_strategy.c
187 lines (181 loc) · 6.82 KB
/
trace_strategy.c
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
* @file ccnd/trace_strategy.c
*
* Part of ccnd - the CCNx Daemon
*
* Copyright (C) 2013 Palo Alto Research Center, Inc.
*
* This work is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation.
* This work is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details. You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <stdlib.h>
#include <string.h>
#include <ccn/charbuf.h>
#include "ccnd_strategy.h"
#include "ccnd_private.h"
#include "ccnd_stregistry.h"
/**
* Append a human-readable rendition of the information in a pit face item
*/
static void
format_pfi(struct ccnd_handle *h, struct pit_face_item *p, struct ccn_charbuf *c)
{
struct face *face;
unsigned delta;
face = ccnd_face_from_faceid(h, p->faceid);
ccn_charbuf_putf(c, " %s%s%s%s%s%s%s%s%u",
((p->pfi_flags & CCND_PFI_UPSTREAM) ? "u" :
(p->pfi_flags & CCND_PFI_DNSTREAM) ? "d" : "?"),
(p->pfi_flags & (CCND_PFI_PENDING|CCND_PFI_UPENDING)) ? "p" : "",
(p->pfi_flags & CCND_PFI_UPHUNGRY) ? "h" : "",
(p->pfi_flags & CCND_PFI_SENDUPST) ? "s" : "",
(p->pfi_flags & CCND_PFI_ATTENTION) ? "a" : "",
(p->pfi_flags & CCND_PFI_INACTIVE) ? "q" : "",
(p->pfi_flags & CCND_PFI_SUPDATA) ? "x" : "",
(p->pfi_flags & CCND_PFI_DCFACE) ? "c" : "",
(unsigned)p->faceid);
if (face != NULL) {
if ((p->pfi_flags & CCND_PFI_DNSTREAM) != 0)
ccn_charbuf_putf(c, "-%d", (int)face->pending_interests);
else
ccn_charbuf_putf(c, "+%d", (int)face->outstanding_interests);
}
delta = p->expiry - h->wtnow; /* uses wrapping arithmetic */
if (delta <= 0xffffff)
ccn_charbuf_putf(c, "@%u", delta);
}
/**
* A trace strategy for testing purposes
*
* Useful for debugging.
*/
void
ccnd_trace_strategy_impl(struct ccnd_handle *h,
struct strategy_instance *instance,
struct ccn_strategy *strategy,
enum ccn_strategy_op op,
unsigned faceid)
{
unsigned serial = 0;
struct pit_face_item *p = NULL;
struct strategy_instance *inner = NULL;
struct ccn_charbuf *c = ccn_charbuf_create();
const char *sp = NULL;
sp = instance->parameters;
if (sp == NULL || sp[0] == 0)
sp = "default";
if (strategy != NULL) {
serial = strategy->ie->serial;
ccn_charbuf_reset(c);
for (p = strategy->pfl; p!= NULL; p = p->next)
format_pfi(h, p, c);
}
/* Call through to the traced strategy. */
if (op == CCNST_INIT) {
/*
* The first portion of the parameter string (before the first slash)
* is the name of the traced strategy. The remainder (after this slash)
* forms its parameter string.
*/
char tname[16];
const char *s = NULL;
const struct strategy_class *sclass = NULL;
s = strstr(sp, "/");
if (s == NULL)
s = sp + strlen(sp);
if (s - sp >= sizeof(tname)) {
strategy_init_error(h, instance, "traced strategy name too long");
ccn_charbuf_destroy(&c);
return;
}
memcpy(tname, sp, s - sp);
tname[s - sp] = 0;
if (s[0] == '/')
s++;
sclass = strategy_class_from_id(tname);
if (sclass == NULL) {
strategy_init_error(h, instance, "traced strategy name unknown");
ccn_charbuf_destroy(&c);
return;
}
inner = calloc(1, sizeof(*inner));
inner->sclass = sclass;
inner->parameters = s;
inner->data = NULL;
inner->npe = instance->npe;
instance->data = inner;
(sclass->callout)(h, inner, strategy, op, faceid);
}
else if (op == CCNST_FINALIZE) {
inner = instance->data;
if (inner != NULL) {
(inner->sclass->callout)(h, inner, strategy, op, faceid);
if (inner->data != NULL) abort();
free(inner);
instance->data = inner = NULL;
}
}
else {
/* Call through to the traced strategy. */
inner = instance->data;
(inner->sclass->callout)(h, inner, strategy, op, faceid);
}
if (strategy != NULL) {
ccn_charbuf_putf(c, " ///");
for (p = strategy->pfl; p!= NULL; p = p->next)
format_pfi(h, p, c);
}
switch (op) {
case CCNST_INIT:
ccnd_msg(h, "st-%s CCNST_INIT - %#p", sp, (void *)instance);
break;
case CCNST_NOP:
ccnd_msg(h, "st-%s CCNST_NOP %u %#p,i=%u", sp, faceid,
(void *)instance, serial);
break;
case CCNST_FIRST:
ccnd_msg(h, "st-%s CCNST_FIRST %u %#p,i=%u%s", sp, faceid,
(void *)instance, serial, ccn_charbuf_as_string(c));
break;
case CCNST_UPDATE:
ccnd_msg(h, "st-%s CCNST_UPDATE - %#p,i=%u%s", sp,
(void *)instance, serial, ccn_charbuf_as_string(c));
break;
case CCNST_TIMER:
ccnd_msg(h, "st-%s CCNST_TIMER %u %#p,i=%u%s", sp, faceid,
(void *)instance, serial, ccn_charbuf_as_string(c));
break;
case CCNST_SATISFIED:
ccnd_msg(h, "st-%s CCNST_SATISFIED %u %#p,i=%u%s", sp, faceid,
(void *)instance, serial, ccn_charbuf_as_string(c));
break;
case CCNST_TIMEOUT:
ccnd_msg(h, "st-%s CCNST_TIMEOUT %u %#p,i=%u%s", sp, faceid,
(void *)instance, serial, ccn_charbuf_as_string(c));
break;
case CCNST_EXPUP:
ccnd_msg(h, "st-%s CCNST_EXPUP %u %#p,i=%u%s", sp, faceid,
(void *)instance, serial, ccn_charbuf_as_string(c));
break;
case CCNST_EXPDN:
ccnd_msg(h, "st-%s CCNST_EXPDN %u %#p,i=%u%s", sp, faceid,
(void *)instance, serial, ccn_charbuf_as_string(c));
break;
case CCNST_REFRESH:
ccnd_msg(h, "st-%s CCNST_REFRESH %u %#p,i=%u%s", sp, faceid,
(void *)instance, serial, ccn_charbuf_as_string(c));
break;
case CCNST_FINALIZE:
ccnd_msg(h, "st-%s CCNST_FINALIZE %#p", sp, (void *)instance);
break;
}
ccn_charbuf_destroy(&c);
}