2011-01-31 21:34:14 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the sigrok project.
|
|
|
|
*
|
2012-02-13 13:31:51 +00:00
|
|
|
* Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
|
2011-01-31 21:34:14 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <zip.h>
|
2012-07-04 22:55:07 +00:00
|
|
|
#include "libsigrok.h"
|
|
|
|
#include "libsigrok-internal.h"
|
2011-01-31 21:34:14 +00:00
|
|
|
|
|
|
|
/* size of payloads sent across the session bus */
|
2012-01-06 15:20:28 +00:00
|
|
|
#define CHUNKSIZE (512 * 1024)
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-02-17 21:25:01 +00:00
|
|
|
struct session_vdev {
|
2012-07-03 10:55:46 +00:00
|
|
|
char *sessionfile;
|
2011-01-31 21:34:14 +00:00
|
|
|
char *capturefile;
|
|
|
|
struct zip *archive;
|
|
|
|
struct zip_file *capfile;
|
2011-12-15 02:31:31 +00:00
|
|
|
int bytes_read;
|
2011-01-31 21:34:14 +00:00
|
|
|
uint64_t samplerate;
|
|
|
|
int unitsize;
|
|
|
|
int num_probes;
|
|
|
|
};
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
static GSList *dev_insts = NULL;
|
2012-05-07 12:57:43 +00:00
|
|
|
static const int hwcaps[] = {
|
2011-01-31 21:34:14 +00:00
|
|
|
SR_HWCAP_CAPTUREFILE,
|
|
|
|
SR_HWCAP_CAPTURE_UNITSIZE,
|
|
|
|
0,
|
|
|
|
};
|
|
|
|
|
2012-03-14 21:22:32 +00:00
|
|
|
static int receive_data(int fd, int revents, void *cb_data)
|
2011-01-31 21:34:14 +00:00
|
|
|
{
|
2012-02-17 20:02:52 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2012-02-17 21:25:01 +00:00
|
|
|
struct session_vdev *vdev;
|
2011-01-31 21:34:14 +00:00
|
|
|
struct sr_datafeed_packet packet;
|
2011-06-19 12:28:50 +00:00
|
|
|
struct sr_datafeed_logic logic;
|
2011-01-31 21:34:14 +00:00
|
|
|
GSList *l;
|
|
|
|
void *buf;
|
|
|
|
int ret, got_data;
|
|
|
|
|
2011-11-24 21:57:48 +00:00
|
|
|
/* Avoid compiler warnings. */
|
|
|
|
(void)fd;
|
|
|
|
(void)revents;
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_dbg("session_driver: feed chunk");
|
2011-01-31 21:34:14 +00:00
|
|
|
|
|
|
|
got_data = FALSE;
|
2012-02-17 20:02:52 +00:00
|
|
|
for (l = dev_insts; l; l = l->next) {
|
2011-01-31 21:34:14 +00:00
|
|
|
sdi = l->data;
|
2012-02-17 21:25:01 +00:00
|
|
|
vdev = sdi->priv;
|
|
|
|
if (!vdev)
|
2011-01-31 21:34:14 +00:00
|
|
|
/* already done with this instance */
|
|
|
|
continue;
|
|
|
|
|
2011-04-16 12:17:51 +00:00
|
|
|
if (!(buf = g_try_malloc(CHUNKSIZE))) {
|
2012-07-23 13:09:19 +00:00
|
|
|
sr_err("session driver: %s: buf malloc failed", __func__);
|
|
|
|
return FALSE;
|
2011-04-16 12:17:51 +00:00
|
|
|
}
|
|
|
|
|
2012-02-17 21:25:01 +00:00
|
|
|
ret = zip_fread(vdev->capfile, buf, CHUNKSIZE);
|
2011-01-31 21:34:14 +00:00
|
|
|
if (ret > 0) {
|
|
|
|
got_data = TRUE;
|
|
|
|
packet.type = SR_DF_LOGIC;
|
2011-06-19 12:28:50 +00:00
|
|
|
packet.payload = &logic;
|
|
|
|
logic.length = ret;
|
2012-02-17 21:25:01 +00:00
|
|
|
logic.unitsize = vdev->unitsize;
|
2011-06-19 12:28:50 +00:00
|
|
|
logic.data = buf;
|
2012-02-17 21:25:01 +00:00
|
|
|
vdev->bytes_read += ret;
|
2012-03-14 21:22:32 +00:00
|
|
|
sr_session_send(cb_data, &packet);
|
2011-01-31 21:34:14 +00:00
|
|
|
} else {
|
|
|
|
/* done with this capture file */
|
2012-02-17 21:25:01 +00:00
|
|
|
zip_fclose(vdev->capfile);
|
|
|
|
g_free(vdev->capturefile);
|
|
|
|
g_free(vdev);
|
2011-01-31 21:34:14 +00:00
|
|
|
sdi->priv = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!got_data) {
|
|
|
|
packet.type = SR_DF_END;
|
2012-03-14 21:22:32 +00:00
|
|
|
sr_session_send(cb_data, &packet);
|
2011-01-31 21:34:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* driver callbacks */
|
2012-02-12 19:52:42 +00:00
|
|
|
static int hw_cleanup(void);
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-07-03 10:55:46 +00:00
|
|
|
static int hw_init(void)
|
2011-01-31 21:34:14 +00:00
|
|
|
{
|
|
|
|
|
2012-07-05 09:27:48 +00:00
|
|
|
return SR_OK;
|
2011-01-31 21:34:14 +00:00
|
|
|
}
|
|
|
|
|
2012-02-12 19:52:42 +00:00
|
|
|
static int hw_cleanup(void)
|
2011-01-31 21:34:14 +00:00
|
|
|
{
|
|
|
|
GSList *l;
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
for (l = dev_insts; l; l = l->next)
|
2012-02-13 14:31:59 +00:00
|
|
|
sr_dev_inst_free(l->data);
|
2012-02-17 20:02:52 +00:00
|
|
|
g_slist_free(dev_insts);
|
|
|
|
dev_insts = NULL;
|
2011-11-17 08:18:46 +00:00
|
|
|
|
|
|
|
sr_session_source_remove(-1);
|
|
|
|
|
2012-02-12 19:52:42 +00:00
|
|
|
return SR_OK;
|
2011-01-31 21:34:14 +00:00
|
|
|
}
|
|
|
|
|
2012-07-21 20:04:47 +00:00
|
|
|
static int hw_dev_open(struct sr_dev_inst *sdi)
|
2011-01-31 21:34:14 +00:00
|
|
|
{
|
2011-04-16 12:17:51 +00:00
|
|
|
|
2012-02-17 21:25:01 +00:00
|
|
|
if (!(sdi->priv = g_try_malloc0(sizeof(struct session_vdev)))) {
|
2012-02-17 18:40:01 +00:00
|
|
|
sr_err("session driver: %s: sdi->priv malloc failed", __func__);
|
2011-04-16 12:17:51 +00:00
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
dev_insts = g_slist_append(dev_insts, sdi);
|
2011-01-31 21:34:14 +00:00
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2012-07-15 02:33:38 +00:00
|
|
|
static int hw_info_get(int info_id, const void **data,
|
|
|
|
const struct sr_dev_inst *sdi)
|
2011-01-31 21:34:14 +00:00
|
|
|
{
|
2012-02-17 21:25:01 +00:00
|
|
|
struct session_vdev *vdev;
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-07-15 02:33:38 +00:00
|
|
|
switch (info_id) {
|
|
|
|
case SR_DI_HWCAPS:
|
|
|
|
*data = hwcaps;
|
|
|
|
break;
|
|
|
|
case SR_DI_CUR_SAMPLERATE:
|
|
|
|
if (sdi) {
|
|
|
|
vdev = sdi->priv;
|
|
|
|
*data = &vdev->samplerate;
|
|
|
|
} else
|
|
|
|
return SR_ERR;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SR_ERR_ARG;
|
|
|
|
}
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-07-15 02:33:38 +00:00
|
|
|
return SR_OK;
|
2011-01-31 21:34:14 +00:00
|
|
|
}
|
|
|
|
|
2012-07-16 01:52:14 +00:00
|
|
|
static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
|
|
|
|
const void *value)
|
2011-01-31 21:34:14 +00:00
|
|
|
{
|
2012-02-17 21:25:01 +00:00
|
|
|
struct session_vdev *vdev;
|
2012-05-07 14:02:02 +00:00
|
|
|
const uint64_t *tmp_u64;
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-07-16 01:52:14 +00:00
|
|
|
vdev = sdi->priv;
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-02-17 23:17:18 +00:00
|
|
|
switch (hwcap) {
|
2011-01-31 21:34:14 +00:00
|
|
|
case SR_HWCAP_SAMPLERATE:
|
|
|
|
tmp_u64 = value;
|
2012-02-17 21:25:01 +00:00
|
|
|
vdev->samplerate = *tmp_u64;
|
2012-01-02 13:15:25 +00:00
|
|
|
sr_info("session driver: setting samplerate to %" PRIu64,
|
2012-02-17 21:25:01 +00:00
|
|
|
vdev->samplerate);
|
2011-01-31 21:34:14 +00:00
|
|
|
break;
|
2012-07-03 10:55:46 +00:00
|
|
|
case SR_HWCAP_SESSIONFILE:
|
|
|
|
vdev->sessionfile = g_strdup(value);
|
|
|
|
sr_info("session driver: setting sessionfile to %s",
|
|
|
|
vdev->sessionfile);
|
|
|
|
break;
|
2011-01-31 21:34:14 +00:00
|
|
|
case SR_HWCAP_CAPTUREFILE:
|
2012-02-17 21:25:01 +00:00
|
|
|
vdev->capturefile = g_strdup(value);
|
2012-01-02 13:15:25 +00:00
|
|
|
sr_info("session driver: setting capturefile to %s",
|
2012-02-17 21:25:01 +00:00
|
|
|
vdev->capturefile);
|
2011-01-31 21:34:14 +00:00
|
|
|
break;
|
|
|
|
case SR_HWCAP_CAPTURE_UNITSIZE:
|
|
|
|
tmp_u64 = value;
|
2012-02-17 21:25:01 +00:00
|
|
|
vdev->unitsize = *tmp_u64;
|
2011-01-31 21:34:14 +00:00
|
|
|
break;
|
|
|
|
case SR_HWCAP_CAPTURE_NUM_PROBES:
|
|
|
|
tmp_u64 = value;
|
2012-02-17 21:25:01 +00:00
|
|
|
vdev->num_probes = *tmp_u64;
|
2011-01-31 21:34:14 +00:00
|
|
|
break;
|
|
|
|
default:
|
2012-01-02 13:15:25 +00:00
|
|
|
sr_err("session driver: %s: unknown capability %d requested",
|
2012-02-17 23:17:18 +00:00
|
|
|
__func__, hwcap);
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2012-07-22 10:18:34 +00:00
|
|
|
static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
|
|
|
|
void *cb_data)
|
2011-01-31 21:34:14 +00:00
|
|
|
{
|
|
|
|
struct zip_stat zs;
|
2012-02-17 21:25:01 +00:00
|
|
|
struct session_vdev *vdev;
|
2011-01-31 21:34:14 +00:00
|
|
|
struct sr_datafeed_header *header;
|
|
|
|
struct sr_datafeed_packet *packet;
|
2012-04-22 18:06:19 +00:00
|
|
|
struct sr_datafeed_meta_logic meta;
|
2012-03-20 16:51:18 +00:00
|
|
|
int ret;
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-07-22 10:18:34 +00:00
|
|
|
vdev = sdi->priv;
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-07-03 10:55:46 +00:00
|
|
|
sr_info("session_driver: opening archive %s file %s", vdev->sessionfile,
|
2012-02-17 21:25:01 +00:00
|
|
|
vdev->capturefile);
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2012-07-03 10:55:46 +00:00
|
|
|
if (!(vdev->archive = zip_open(vdev->sessionfile, 0, &ret))) {
|
2012-02-17 18:40:01 +00:00
|
|
|
sr_err("session driver: Failed to open session file '%s': "
|
2012-07-03 10:55:46 +00:00
|
|
|
"zip error %d\n", vdev->sessionfile, ret);
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
2012-02-17 21:25:01 +00:00
|
|
|
if (zip_stat(vdev->archive, vdev->capturefile, 0, &zs) == -1) {
|
2012-02-17 18:40:01 +00:00
|
|
|
sr_err("session driver: Failed to check capture file '%s' in "
|
2012-07-03 10:55:46 +00:00
|
|
|
"session file '%s'.", vdev->capturefile, vdev->sessionfile);
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
2012-02-17 21:25:01 +00:00
|
|
|
if (!(vdev->capfile = zip_fopen(vdev->archive, vdev->capturefile, 0))) {
|
2012-02-17 18:40:01 +00:00
|
|
|
sr_err("session driver: Failed to open capture file '%s' in "
|
2012-07-03 10:55:46 +00:00
|
|
|
"session file '%s'.", vdev->capturefile, vdev->sessionfile);
|
2011-01-31 21:34:14 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* freewheeling source */
|
2012-03-14 21:22:32 +00:00
|
|
|
sr_session_source_add(-1, 0, 0, receive_data, cb_data);
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2011-04-16 12:17:51 +00:00
|
|
|
if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
|
2012-02-17 18:40:01 +00:00
|
|
|
sr_err("session driver: %s: packet malloc failed", __func__);
|
2011-04-16 12:17:51 +00:00
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
|
2012-02-17 18:40:01 +00:00
|
|
|
sr_err("session driver: %s: header malloc failed", __func__);
|
2011-04-16 12:17:51 +00:00
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
|
|
|
|
2011-01-31 21:34:14 +00:00
|
|
|
/* Send header packet to the session bus. */
|
|
|
|
packet->type = SR_DF_HEADER;
|
|
|
|
packet->payload = (unsigned char *)header;
|
|
|
|
header->feed_version = 1;
|
|
|
|
gettimeofday(&header->starttime, NULL);
|
2012-03-14 21:22:32 +00:00
|
|
|
sr_session_send(cb_data, packet);
|
2012-04-22 18:06:19 +00:00
|
|
|
|
|
|
|
/* Send metadata about the SR_DF_LOGIC packets to come. */
|
|
|
|
packet->type = SR_DF_META_LOGIC;
|
|
|
|
packet->payload = &meta;
|
|
|
|
meta.samplerate = vdev->samplerate;
|
|
|
|
meta.num_probes = vdev->num_probes;
|
|
|
|
sr_session_send(cb_data, packet);
|
|
|
|
|
2011-01-31 21:34:14 +00:00
|
|
|
g_free(header);
|
|
|
|
g_free(packet);
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2012-02-28 22:52:30 +00:00
|
|
|
SR_PRIV struct sr_dev_driver session_driver = {
|
2012-02-18 10:41:21 +00:00
|
|
|
.name = "session",
|
|
|
|
.longname = "Session-emulating driver",
|
|
|
|
.api_version = 1,
|
|
|
|
.init = hw_init,
|
|
|
|
.cleanup = hw_cleanup,
|
2012-02-18 10:57:43 +00:00
|
|
|
.dev_open = hw_dev_open,
|
|
|
|
.dev_close = NULL,
|
2012-07-15 02:33:38 +00:00
|
|
|
.info_get = hw_info_get,
|
2012-02-18 11:11:15 +00:00
|
|
|
.dev_config_set = hw_dev_config_set,
|
2012-02-18 11:03:49 +00:00
|
|
|
.dev_acquisition_start = hw_dev_acquisition_start,
|
|
|
|
.dev_acquisition_stop = NULL,
|
2011-01-31 21:34:14 +00:00
|
|
|
};
|