virtual-session: Plug ZIP archive leak
Refactor a bit to keep the code manageable. Also allow stopping of a running acquisition.
This commit is contained in:
parent
02e49ae5d2
commit
8d4097ffa6
|
@ -57,9 +57,8 @@ static const uint32_t devopts[] = {
|
|||
SR_CONF_SESSIONFILE | SR_CONF_SET,
|
||||
};
|
||||
|
||||
static int receive_data(int fd, int revents, void *cb_data)
|
||||
static gboolean stream_session_data(struct sr_dev_inst *sdi)
|
||||
{
|
||||
struct sr_dev_inst *sdi;
|
||||
struct session_vdev *vdev;
|
||||
struct sr_datafeed_packet packet;
|
||||
struct sr_datafeed_logic logic;
|
||||
|
@ -68,13 +67,8 @@ static int receive_data(int fd, int revents, void *cb_data)
|
|||
char capturefile[16];
|
||||
void *buf;
|
||||
|
||||
(void)fd;
|
||||
(void)revents;
|
||||
|
||||
sdi = cb_data;
|
||||
got_data = FALSE;
|
||||
vdev = sdi->priv;
|
||||
if (!vdev->finished) {
|
||||
if (!vdev->capfile) {
|
||||
/* No capture file opened yet, or finished with the last
|
||||
* chunked one. */
|
||||
|
@ -114,8 +108,7 @@ static int receive_data(int fd, int revents, void *cb_data)
|
|||
sr_dbg("Opened %s.", capturefile);
|
||||
} else {
|
||||
/* We got all the chunks, finish up. */
|
||||
vdev->finished = TRUE;
|
||||
return TRUE;
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -140,26 +133,47 @@ static int receive_data(int fd, int revents, void *cb_data)
|
|||
/* done with this capture file */
|
||||
zip_fclose(vdev->capfile);
|
||||
vdev->capfile = NULL;
|
||||
if (vdev->cur_chunk == 0) {
|
||||
/* It was the only file. */
|
||||
vdev->finished = TRUE;
|
||||
} else {
|
||||
if (vdev->cur_chunk != 0) {
|
||||
/* There might be more chunks, so don't fall through
|
||||
* to the SR_DF_END here. */
|
||||
g_free(buf);
|
||||
return TRUE;
|
||||
got_data = TRUE;
|
||||
}
|
||||
}
|
||||
g_free(buf);
|
||||
}
|
||||
|
||||
if (!got_data) {
|
||||
return got_data;
|
||||
}
|
||||
|
||||
static int receive_data(int fd, int revents, void *cb_data)
|
||||
{
|
||||
struct sr_dev_inst *sdi;
|
||||
struct session_vdev *vdev;
|
||||
struct sr_datafeed_packet packet;
|
||||
|
||||
(void)fd;
|
||||
(void)revents;
|
||||
|
||||
sdi = cb_data;
|
||||
vdev = sdi->priv;
|
||||
|
||||
if (!vdev->finished && !stream_session_data(sdi))
|
||||
vdev->finished = TRUE;
|
||||
if (!vdev->finished)
|
||||
return G_SOURCE_CONTINUE;
|
||||
|
||||
if (vdev->capfile) {
|
||||
zip_fclose(vdev->capfile);
|
||||
vdev->capfile = NULL;
|
||||
}
|
||||
if (vdev->archive) {
|
||||
zip_discard(vdev->archive);
|
||||
vdev->archive = NULL;
|
||||
}
|
||||
packet.type = SR_DF_END;
|
||||
packet.payload = NULL;
|
||||
sr_session_send(sdi, &packet);
|
||||
sr_session_source_remove(sdi->session, -1);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
return G_SOURCE_REMOVE;
|
||||
}
|
||||
|
||||
/* driver callbacks */
|
||||
|
@ -321,6 +335,18 @@ static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
|
|||
return SR_OK;
|
||||
}
|
||||
|
||||
static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
|
||||
{
|
||||
struct session_vdev *vdev;
|
||||
|
||||
(void)cb_data;
|
||||
vdev = sdi->priv;
|
||||
|
||||
vdev->finished = TRUE;
|
||||
|
||||
return SR_OK;
|
||||
}
|
||||
|
||||
/** @private */
|
||||
SR_PRIV struct sr_dev_driver session_driver = {
|
||||
.name = "virtual-session",
|
||||
|
@ -337,6 +363,6 @@ SR_PRIV struct sr_dev_driver session_driver = {
|
|||
.dev_open = dev_open,
|
||||
.dev_close = dev_close,
|
||||
.dev_acquisition_start = dev_acquisition_start,
|
||||
.dev_acquisition_stop = NULL,
|
||||
.dev_acquisition_stop = dev_acquisition_stop,
|
||||
.context = NULL,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue