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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
|
/*
bpdriver.c: sender for bundle benchmark test.
*/
/* */
/* Copyright (c) 2004, California Institute of Technology. */
/* All rights reserved. */
/* Author: Scott Burleigh, Jet Propulsion Laboratory */
/* Enhanced by Ryan Metzger (MITRE Corp.) August 2006. */
/* */
#include <bp.h>
#define DEFAULT_ADU_LENGTH (60000)
#define DEFAULT_TTL 300
/* Indication marks: "." for BpPayloadPresent (1),
"*" for BpReceptionTimedOut (2).
"!" for BpReceptionInterrupted (3). */
//static char dlvmarks[] = "?.*!";
static BpSAP _bpsap(BpSAP *newSap)
{
void *value;
BpSAP sap;
if (newSap) /* Add task variable. */
{
value = (void *) (*newSap);
sap = (BpSAP) sm_TaskVar(&value);
}
else /* Retrieve task variable. */
{
sap = (BpSAP) sm_TaskVar(NULL);
}
return sap;
}
static void _zcoControl(int *controlPtr)
{
static int *ptr = NULL;
if (controlPtr) /* Initializing ZCO request cancellation. */
{
ptr = controlPtr;
}
else /* Canceling ZCO request. */
{
ionCancelZcoSpaceRequest(ptr);
}
}
static void handleQuit()
{
isignal(SIGINT, handleQuit);
bp_interrupt(_bpsap(NULL));
_zcoControl(NULL);
}
static int run_bpdriver(int cyclesRemaining, char *ownEid, char *destEid,
int aduLength, int streaming, int ttl)
{
static char buffer[DEFAULT_ADU_LENGTH] = "test...";
BpSAP sap;
Sdr sdr;
int running = 1;
BpCustodySwitch custodySwitch;
int cycles;
int aduFile;
int randomAduLength = 0;
int bytesRemaining;
int bytesToWrite;
Object pilotAduString;
Object fileRef;
Object bundleZco;
int controlZco;
Object newBundle;
double bytesSent = 0.0;
struct timeval startTime;
BpDelivery dlv;
struct timeval endTime;
double interval;
char textBuf[256];
if (cyclesRemaining == 0 || ownEid == NULL || destEid == NULL
|| aduLength == 0)
{
PUTS("Usage: bpdriver <number of cycles> <own endpoint ID> \
<destination endpoint ID> [<payload size>] [t<Bundle TTL>]");
PUTS(" Payload size defaults to 60000 bytes.");
PUTS(" Bundle TTL defaults to 300 seconds.");
PUTS("");
PUTS(" Normal operation of bpdriver is to wait for");
PUTS(" acknowledgment after sending each bundle. To run");
PUTS(" in streaming mode instead, specify a negative");
PUTS(" payload size; the absolute value of this parameter");
PUTS(" will be used as the actual payload size.");
PUTS("");
PUTS(" To use payload sizes chosen at random from the");
PUTS(" range 1024 to 62464, in multiples of 1024,");
PUTS(" specify payload size 1 (or -1 for streaming mode).");
PUTS("");
PUTS(" bpdriver normally runs with custody transfer");
PUTS(" disabled. To request custody transfer for all");
PUTS(" bundles sent, specify number of cycles as a");
PUTS(" negative number; the absolute value of this");
PUTS(" parameter will be used as the actual number of");
PUTS(" cycles.");
PUTS("");
PUTS(" Destination (receiving) application must be bpecho");
PUTS(" when bpdriver is run in stop-and-wait mode, should");
PUTS(" be bpcounter in streaming mode.");
return 0;
}
if (bp_attach() < 0)
{
putErrmsg("Can't attach to BP.", NULL);
return 0;
}
if (bp_open(ownEid, &sap) < 0)
{
putErrmsg("Can't open own endpoint.", ownEid);
return 0;
}
oK(_bpsap(&sap));
sdr = bp_get_sdr();
if (cyclesRemaining < 0)
{
custodySwitch = SourceCustodyRequired;
cyclesRemaining = 0 - cyclesRemaining;
}
else
{
custodySwitch = NoCustodyRequested;
}
cycles = cyclesRemaining;
if (aduLength == 1)
{
randomAduLength = 1;
srand((unsigned int) time(NULL));
}
aduFile = iopen("bpdriverAduFile", O_WRONLY | O_CREAT | O_TRUNC, 0777);
if (ttl == 0)
{
ttl = DEFAULT_TTL;
}
if (aduFile < 0)
{
putSysErrmsg("can't create ADU file", NULL);
bp_close(sap);
return 0;
}
if (randomAduLength)
{
bytesRemaining = 65536;
}
else
{
bytesRemaining = aduLength;
}
while (bytesRemaining > 0)
{
if (bytesRemaining < DEFAULT_ADU_LENGTH)
{
bytesToWrite = bytesRemaining;
}
else
{
bytesToWrite = DEFAULT_ADU_LENGTH;
}
if (write(aduFile, buffer, bytesToWrite) < 0)
{
putSysErrmsg("error writing to ADU file", NULL);
bp_close(sap);
close(aduFile);
return 0;
}
bytesRemaining -= bytesToWrite;
}
close(aduFile);
CHKZERO(sdr_begin_xn(sdr));
fileRef = zco_create_file_ref(sdr, "bpdriverAduFile", NULL);
if (sdr_end_xn(sdr) < 0 || fileRef == 0)
{
putErrmsg("bpdriver can't create file ref.", NULL);
bp_close(sap);
return 0;
}
/* Send pilot bundle to start bpcounter's timer. */
_zcoControl(&controlZco);
CHKZERO(sdr_begin_xn(sdr));
pilotAduString = sdr_string_create(sdr, "Go.");
if (sdr_end_xn(sdr) < 0)
{
putErrmsg("bpdriver can't create pilot ADU string.", NULL);
bp_close(sap);
return 0;
}
bundleZco = ionCreateZco(ZcoSdrSource, pilotAduString, 0,
sdr_string_length(sdr, pilotAduString), &controlZco);
if (bundleZco == 0)
{
putErrmsg("bpdriver can't create pilot ADU.", NULL);
bp_close(sap);
return 0;
}
if (bp_send(sap, destEid, NULL, ttl, BP_STD_PRIORITY, custodySwitch, 0,
0, NULL, bundleZco, &newBundle) < 1)
{
putErrmsg("bpdriver can't send pilot bundle.",
itoa(aduLength));
bp_close(sap);
return 0;
}
if (!streaming)
{
/* Must wait for acknowledgment before sending
first bundle. */
while (running)
{
if (bp_receive(sap, &dlv, BP_BLOCKING) < 0)
{
putErrmsg("bpdriver reception failed.", NULL);
running = 0;
continue;
}
bp_release_delivery(&dlv, 1);
//putchar(dlvmarks[dlv.result]);
//fflush(stdout);
if (dlv.result == BpReceptionInterrupted
|| dlv.result == BpEndpointStopped)
{
running = 0;
continue;
}
if (dlv.result == BpPayloadPresent)
{
break; /* Out of reception loop. */
}
}
}
snooze(1); /* Make sure pilot bundle has been sent. */
/* Begin timed bundle transmission. */
isignal(SIGINT, handleQuit);
getCurrentTime(&startTime);
while (running && cyclesRemaining > 0)
{
if (randomAduLength)
{
aduLength = ((rand() % 60) + 1) * 1024;
}
bundleZco = ionCreateZco(ZcoFileSource, fileRef, 0, aduLength,
&controlZco);
if (bundleZco == 0)
{
putErrmsg("bpdriver can't create ZCO.", NULL);
running = 0;
continue;
}
if (bp_send(sap, destEid, NULL, ttl, BP_STD_PRIORITY,
custodySwitch, 0, 0, NULL, bundleZco, &newBundle) < 1)
{
putErrmsg("bpdriver can't send message.",
itoa(aduLength));
running = 0;
continue;
}
bytesSent += aduLength;
//putchar('^');
//fflush(stdout);
cyclesRemaining--;
if ((cyclesRemaining % 1000) == 0)
{
PUTS(itoa(cyclesRemaining));
}
if (streaming)
{
continue;
}
/* Now wait for acknowledgment before sending
next bundle. */
while (running)
{
if (bp_receive(sap, &dlv, BP_BLOCKING) < 0)
{
putErrmsg("bpdriver reception failed.", NULL);
running = 0;
continue;
}
bp_release_delivery(&dlv, 1);
//putchar(dlvmarks[dlv.result]);
//fflush(stdout);
if (dlv.result == BpReceptionInterrupted)
{
continue;
}
if (dlv.result == BpEndpointStopped)
{
running = 0;
continue;
}
if (dlv.result == BpPayloadPresent)
{
break; /* Out of reception loop. */
}
}
}
bp_close(sap);
getCurrentTime(&endTime);
writeErrmsgMemos();
PUTS("Stopping bpdriver.");
CHKZERO(sdr_begin_xn(sdr));
zco_destroy_file_ref(sdr, fileRef);
if (sdr_end_xn(sdr) < 0)
{
putErrmsg("bpdriver can't destroy file reference.", NULL);
}
if (endTime.tv_usec < startTime.tv_usec)
{
endTime.tv_usec += 1000000;
endTime.tv_sec -= 1;
}
PUTMEMO("Total bundles", itoa(cycles - cyclesRemaining));
interval = (endTime.tv_usec - startTime.tv_usec)
+ (1000000 * (endTime.tv_sec - startTime.tv_sec));
isprintf(textBuf, sizeof textBuf, "%.3f", interval / 1000000);
PUTMEMO("Time (seconds)", textBuf);
isprintf(textBuf, sizeof textBuf, "%.0f", bytesSent);
PUTMEMO("Total bytes", textBuf);
if (interval > 0.0)
{
isprintf(textBuf, sizeof textBuf, "%.3f",
((bytesSent * 8) / (interval / 1000000)) / 1000000);
PUTMEMO("Throughput (Mbps)", textBuf);
}
else
{
PUTS("Interval is too short to measure rate.");
}
bp_detach();
return 0;
}
#if defined (VXWORKS) || defined (RTEMS)
int bpdriver(int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10)
{
int cyclesRemaining = atoi((char *) a1);
char *ownEid = (char *) a2;
char *destEid = (char *) a3;
int aduLength = (a4 == 0 ? DEFAULT_ADU_LENGTH : atoi((char *) a4));
int streaming = 0;
int ttl = (a5 == 0 ? DEFAULT_TTL : atoi((char *) a5));
#else
int main(int argc, char **argv)
{
int cyclesRemaining = 0;
char *ownEid = NULL;
char *destEid = NULL;
int aduLength = DEFAULT_ADU_LENGTH;
int streaming = 0;
int ttl=0;
if (argc > 6) argc = 6;
switch (argc)
{
case 6:
if(argv[5][0] == 't')
{
ttl = atoi(&argv[5][1]);
}
else
{
aduLength = atoi(argv[5]);
}
case 5:
if(argv[4][0] == 't')
{
ttl = atoi(&argv[4][1]);
}
else
{
aduLength = atoi(argv[4]);
}
case 4:
destEid = argv[3];
case 3:
ownEid = argv[2];
case 2:
cyclesRemaining = atoi(argv[1]);
default:
break;
}
#endif
if (aduLength < 0)
{
streaming = 1;
aduLength = 0 - aduLength;
}
return run_bpdriver(cyclesRemaining, ownEid, destEid, aduLength,
streaming, ttl);
}
|