]> sigrok.org Git - libsigrok.git/blame - src/input/feed_queue.c
input: optionally send trigger markers from common feed queue helper
[libsigrok.git] / src / input / feed_queue.c
CommitLineData
47a102f9
GS
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2020 Gerhard Sittig <gerhard.sittig@gmx.net>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <libsigrok/libsigrok.h>
21#include "libsigrok-internal.h"
22#include <string.h>
23
24struct feed_queue_logic {
57140e5a 25 const struct sr_dev_inst *sdi;
47a102f9
GS
26 size_t unit_size;
27 size_t alloc_count;
28 size_t fill_count;
29 uint8_t *data_bytes;
30 struct sr_datafeed_packet packet;
31 struct sr_datafeed_logic logic;
32};
33
57140e5a
GS
34SR_API struct feed_queue_logic *feed_queue_logic_alloc(
35 const struct sr_dev_inst *sdi,
47a102f9
GS
36 size_t sample_count, size_t unit_size)
37{
38 struct feed_queue_logic *q;
39
40 q = g_malloc0(sizeof(*q));
41 q->sdi = sdi;
42 q->unit_size = unit_size;
43 q->alloc_count = sample_count;
44 q->data_bytes = g_try_malloc(q->alloc_count * q->unit_size);
45 if (!q->data_bytes) {
46 g_free(q);
47 return NULL;
48 }
49
50 memset(&q->packet, 0, sizeof(q->packet));
51 memset(&q->logic, 0, sizeof(q->logic));
52 q->packet.type = SR_DF_LOGIC;
53 q->packet.payload = &q->logic;
54 q->logic.unitsize = q->unit_size;
55 q->logic.data = q->data_bytes;
56
57 return q;
58}
59
60SR_API int feed_queue_logic_submit(struct feed_queue_logic *q,
61 const uint8_t *data, size_t count)
62{
63 uint8_t *wrptr;
64 int ret;
65
66 wrptr = &q->data_bytes[q->fill_count * q->unit_size];
67 while (count--) {
68 memcpy(wrptr, data, q->unit_size);
69 wrptr += q->unit_size;
70 q->fill_count++;
71 if (q->fill_count == q->alloc_count) {
72 ret = feed_queue_logic_flush(q);
73 if (ret != SR_OK)
74 return ret;
75 wrptr = &q->data_bytes[0];
76 }
77 }
78
79 return SR_OK;
80}
81
82SR_API int feed_queue_logic_flush(struct feed_queue_logic *q)
83{
84 int ret;
85
86 if (!q->fill_count)
87 return SR_OK;
88
89 q->logic.length = q->fill_count * q->unit_size;
90 ret = sr_session_send(q->sdi, &q->packet);
91 if (ret != SR_OK)
92 return ret;
93 q->fill_count = 0;
94
95 return SR_OK;
96}
97
f478c3e6
GS
98SR_API int feed_queue_logic_send_trigger(struct feed_queue_logic *q)
99{
100 int ret;
101
102 ret = feed_queue_logic_flush(q);
103 if (ret != SR_OK)
104 return ret;
105
106 ret = std_session_send_df_trigger(q->sdi);
107 if (ret != SR_OK)
108 return ret;
109
110 return SR_OK;
111}
112
47a102f9
GS
113SR_API void feed_queue_logic_free(struct feed_queue_logic *q)
114{
115
116 if (!q)
117 return;
118
119 g_free(q->data_bytes);
120 g_free(q);
121}
122
123struct feed_queue_analog {
57140e5a 124 const struct sr_dev_inst *sdi;
47a102f9
GS
125 size_t alloc_count;
126 size_t fill_count;
127 float *data_values;
128 int digits;
129 struct sr_datafeed_packet packet;
130 struct sr_datafeed_analog analog;
131 struct sr_analog_encoding encoding;
132 struct sr_analog_meaning meaning;
133 struct sr_analog_spec spec;
134 GSList *channels;
135};
136
57140e5a
GS
137SR_API struct feed_queue_analog *feed_queue_analog_alloc(
138 const struct sr_dev_inst *sdi,
47a102f9
GS
139 size_t sample_count, int digits, struct sr_channel *ch)
140{
141 struct feed_queue_analog *q;
142
143 q = g_malloc0(sizeof(*q));
144 q->sdi = sdi;
145 q->alloc_count = sample_count;
146 q->data_values = g_try_malloc(q->alloc_count * sizeof(float));
147 if (!q->data_values) {
148 g_free(q);
149 return NULL;
150 }
151 q->digits = digits;
152 q->channels = g_slist_append(NULL, ch);
153
154 memset(&q->packet, 0, sizeof(q->packet));
155 sr_analog_init(&q->analog, &q->encoding, &q->meaning, &q->spec, digits);
156 q->packet.type = SR_DF_ANALOG;
157 q->packet.payload = &q->analog;
158 q->encoding.is_signed = TRUE;
159 q->meaning.channels = q->channels;
160 q->analog.data = q->data_values;
161
162 return q;
163}
164
165SR_API int feed_queue_analog_submit(struct feed_queue_analog *q,
166 float data, size_t count)
167{
168 int ret;
169
170 while (count--) {
171 q->data_values[q->fill_count++] = data;
172 if (q->fill_count == q->alloc_count) {
173 ret = feed_queue_analog_flush(q);
174 if (ret != SR_OK)
175 return ret;
176 }
177 }
178
179 return SR_OK;
180}
181
182SR_API int feed_queue_analog_flush(struct feed_queue_analog *q)
183{
184 int ret;
185
186 if (!q->fill_count)
187 return SR_OK;
188
189 q->analog.num_samples = q->fill_count;
190 ret = sr_session_send(q->sdi, &q->packet);
191 if (ret != SR_OK)
192 return ret;
193 q->fill_count = 0;
194
195 return SR_OK;
196}
197
198SR_API void feed_queue_analog_free(struct feed_queue_analog *q)
199{
200
201 if (!q)
202 return;
203
204 g_free(q->data_values);
205 g_slist_free(q->channels);
206 g_free(q);
207}