X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=session.c;h=549666375ad5923e5889de906740f10ce7880daa;hb=cc8a7d250cf7daff452ce376224c9853529204ca;hp=65f7a8df2785bf03f53d03960010e62ed8ca47aa;hpb=a887e3da9714cdfc4ee2eed37e0aa40cf7a5aaea;p=libsigrok.git diff --git a/session.c b/session.c index 65f7a8df..54966637 100644 --- a/session.c +++ b/session.c @@ -24,6 +24,7 @@ #include #include #include +#include /* demo.c */ extern GIOChannel channels[2]; @@ -53,6 +54,7 @@ struct sr_session *sr_session_new(void) void sr_session_destroy(void) { + g_slist_free(session->devices); /* TODO: Loop over protocol decoders and free them. */ @@ -70,8 +72,8 @@ int sr_session_device_add(struct sr_device *device) { int ret; - if (device->plugin && device->plugin->open) { - ret = device->plugin->open(device->plugin_index); + if (device->plugin && device->plugin->opendev) { + ret = device->plugin->opendev(device->plugin_index); if (ret != SR_OK) return ret; } @@ -81,6 +83,7 @@ int sr_session_device_add(struct sr_device *device) return SR_OK; } +#if 0 void sr_session_pa_clear(void) { /* @@ -91,10 +94,11 @@ void sr_session_pa_clear(void) session->analyzers = NULL; } -void sr_session_pa_add(struct analyzer *an) +void sr_session_pa_add(struct sr_analyzer *an) { session->analyzers = g_slist_append(session->analyzers, an); } +#endif void sr_session_datafeed_callback_clear(void) { @@ -141,8 +145,9 @@ static void sr_session_run_poll() * or if the poll timeout out and this source * asked for that timeout. */ - sources[i].cb(fds[i].fd, fds[i].revents, - sources[i].user_data); + if (!sources[i].cb(fds[i].fd, fds[i].revents, + sources[i].user_data)) + sr_session_source_remove(sources[i].fd); } } } @@ -156,7 +161,7 @@ int sr_session_start(void) GSList *l; int ret; - g_message("session: starting"); + sr_info("session: starting"); for (l = session->devices; l; l = l->next) { device = l->data; if ((ret = device->plugin->start_acquisition( @@ -170,7 +175,7 @@ int sr_session_start(void) void sr_session_run(void) { - g_message("session: running"); + sr_info("session: running"); session->running = TRUE; /* do we have real sources? */ @@ -187,7 +192,7 @@ void sr_session_run(void) void sr_session_halt(void) { - g_message("session: halting"); + sr_info("session: halting"); session->running = FALSE; } @@ -197,7 +202,7 @@ void sr_session_stop(void) struct sr_device *device; GSList *l; - g_message("session: stopping"); + sr_info("session: stopping"); session->running = FALSE; for (l = session->devices; l; l = l->next) { device = l->data; @@ -207,6 +212,33 @@ void sr_session_stop(void) } +static void datafeed_dump(struct sr_datafeed_packet *packet) +{ + struct sr_datafeed_logic *logic; + + switch (packet->type) { + case SR_DF_HEADER: + sr_dbg("bus: received SR_DF_HEADER"); + break; + case SR_DF_TRIGGER: + sr_dbg("bus: received SR_DF_TRIGGER at %lu ms", + packet->timeoffset / 1000000); + break; + case SR_DF_LOGIC: + logic = packet->payload; + sr_dbg("bus: received SR_DF_LOGIC at %f ms duration %f ms, %"PRIu64" bytes", + packet->timeoffset / 1000000.0, packet->duration / 1000000.0, + logic->length); + break; + case SR_DF_END: + sr_dbg("bus: received SR_DF_END"); + break; + default: + sr_dbg("bus: received unknown packet type %d", packet->type); + } + +} + void sr_session_bus(struct sr_device *device, struct sr_datafeed_packet *packet) { GSList *l; @@ -218,6 +250,7 @@ void sr_session_bus(struct sr_device *device, struct sr_datafeed_packet *packet) */ for (l = session->datafeed_callbacks; l; l = l->next) { cb = l->data; + datafeed_dump(packet); cb(device, packet); } } @@ -257,7 +290,7 @@ void sr_session_source_remove(int fd) return; new_sources = calloc(1, sizeof(struct source) * num_sources); - for (old = 0; old < num_sources; old++) + for (old = 0, new = 0; old < num_sources; old++) if (sources[old].fd != fd) memcpy(&new_sources[new++], &sources[old], sizeof(struct source));