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
|
/*
bpsink.c: a test bundle sink.
*/
/* */
/* Copyright (c) 2004, California Institute of Technology. */
/* All rights reserved. */
/* Author: Scott Burleigh, Jet Propulsion Laboratory */
/* */
#include <bp.h>
typedef struct
{
BpSAP sap;
int running;
} BptestState;
static BptestState *_bptestState(BptestState *newState)
{
void *value;
BptestState *state;
if (newState) /* Add task variable. */
{
value = (void *) (newState);
state = (BptestState *) sm_TaskVar(&value);
}
else /* Retrieve task variable. */
{
state = (BptestState *) sm_TaskVar(NULL);
}
return state;
}
static void handleQuit()
{
BptestState *state;
isignal(SIGINT, handleQuit);
PUTS("BP reception interrupted.");
state = _bptestState(NULL);
bp_interrupt(state->sap);
state->running = 0;
}
#if defined (VXWORKS) || defined (RTEMS) || defined (bionic)
int bpsink(int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10)
{
char *ownEid = (char *) a1;
#else
int main(int argc, char **argv)
{
char *ownEid = (argc > 1 ? argv[1] : NULL);
#endif
static char *deliveryTypes[] = {
"Payload delivered.",
"Reception timed out.",
"Reception interrupted.",
"Endpoint stopped."
};
BptestState state = { NULL, 1 };
Sdr sdr;
BpDelivery dlv;
int contentLength;
ZcoReader reader;
int len;
char content[80];
char line[84];
#ifndef mingw
setlinebuf(stdout);
#endif
if (ownEid == NULL)
{
PUTS("Usage: bpsink <own endpoint ID>");
return 0;
}
if (bp_attach() < 0)
{
putErrmsg("Can't attach to BP.", NULL);
return 0;
}
if (bp_open(ownEid, &state.sap) < 0)
{
putErrmsg("Can't open own endpoint.", ownEid);
return 0;
}
oK(_bptestState(&state));
sdr = bp_get_sdr();
isignal(SIGINT, handleQuit);
while (state.running)
{
if (bp_receive(state.sap, &dlv, BP_BLOCKING) < 0)
{
putErrmsg("bpsink bundle reception failed.", NULL);
state.running = 0;
continue;
}
PUTMEMO("ION event", deliveryTypes[dlv.result - 1]);
if (dlv.result == BpReceptionInterrupted)
{
continue;
}
if (dlv.result == BpEndpointStopped)
{
state.running = 0;
continue;
}
if (dlv.result == BpPayloadPresent)
{
CHKZERO(sdr_begin_xn(sdr));
contentLength = zco_source_data_length(sdr, dlv.adu);
sdr_exit_xn(sdr);
isprintf(line, sizeof line, "\tpayload length is %d.",
contentLength);
PUTS(line);
if (contentLength < sizeof content)
{
zco_start_receiving(dlv.adu, &reader);
CHKZERO(sdr_begin_xn(sdr));
len = zco_receive_source(sdr, &reader,
contentLength, content);
if (sdr_end_xn(sdr) < 0 || len < 0)
{
putErrmsg("Can't handle delivery.",
NULL);
state.running = 0;
continue;
}
content[contentLength] = '\0';
isprintf(line, sizeof line, "\t'%s'", content);
PUTS(line);
}
}
bp_release_delivery(&dlv, 1);
}
bp_close(state.sap);
writeErrmsgMemos();
PUTS("Stopping bpsink.");
bp_detach();
return 0;
}
|