X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=input%2Finput_binary.c;h=79fe37c765dbb446079b4c529c9e9e4c1bce901a;hb=f50f3f40d9238b0c50be67e52bc132aadfcf2050;hp=113b34f6effeaedbdc7dbe3f411246f5d6191e81;hpb=757b8c628a5b64f8b6b166044b1b3ac1ccf797dc;p=libsigrok.git diff --git a/input/input_binary.c b/input/input_binary.c index 113b34f6..79fe37c7 100644 --- a/input/input_binary.c +++ b/input/input_binary.c @@ -17,6 +17,7 @@ * along with this program. If not, see . */ +#include #include #include #include @@ -24,57 +25,83 @@ #include #include -#define CHUNKSIZE 4096 +#define CHUNKSIZE 4096 +#define DEFAULT_NUM_PROBES 8 + static int format_match(const char *filename) { + + /* suppress compiler warning */ filename = NULL; + + /* this module will handle anything you throw at it */ return TRUE; } -static int in_loadfile(const char *filename) +static int init(struct sr_input *in) +{ + int num_probes; + + if (in->param && in->param[0]) { + num_probes = strtoul(in->param, NULL, 10); + if (num_probes < 1) + return SR_ERR; + } else + num_probes = DEFAULT_NUM_PROBES; + + /* create a virtual device */ + in->vdevice = device_new(NULL, 0, num_probes); + + return SR_OK; +} + +static int loadfile(struct sr_input *in, const char *filename) { struct datafeed_header header; struct datafeed_packet packet; - struct device *device; char buffer[CHUNKSIZE]; int fd, size, num_probes; if ((fd = open(filename, O_RDONLY)) == -1) - return SIGROK_ERR; + return SR_ERR; - /* TODO: Number of probes is hardcoded to 8. */ - num_probes = 8; - device = device_new(NULL, 0, num_probes); + num_probes = g_slist_length(in->vdevice->probes); + /* send header */ header.feed_version = 1; - header.num_probes = num_probes; + header.num_logic_probes = num_probes; + header.num_analog_probes = 0; header.protocol_id = PROTO_RAW; header.samplerate = 0; gettimeofday(&header.starttime, NULL); packet.type = DF_HEADER; packet.length = sizeof(struct datafeed_header); packet.payload = &header; - session_bus(device, &packet); + session_bus(in->vdevice, &packet); - packet.type = DF_LOGIC8; + /* chop up the input file into chunks and feed it into the session bus */ + packet.type = DF_LOGIC; + packet.unitsize = (num_probes + 7) / 8; packet.payload = buffer; while ((size = read(fd, buffer, CHUNKSIZE)) > 0) { packet.length = size; - session_bus(device, &packet); + session_bus(in->vdevice, &packet); } close(fd); + /* end of stream */ packet.type = DF_END; packet.length = 0; - session_bus(device, &packet); + session_bus(in->vdevice, &packet); - return SIGROK_OK; + return SR_OK; } -struct input_format input_binary = { +struct sr_input_format input_binary = { "binary", "Raw binary", format_match, - in_loadfile, + init, + loadfile, };