forked from davecrump/longmynd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fifo.c
243 lines (208 loc) · 10.9 KB
/
fifo.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/* -------------------------------------------------------------------------------------------------- */
/* The LongMynd receiver: fifo.c */
/* - an implementation of the Serit NIM controlling software for the MiniTiouner Hardware */
/* - linux fifo handlers for the transport stream (TS) and the status stream (status) */
/* Copyright 2019 Heather Lomond */
/* -------------------------------------------------------------------------------------------------- */
/*
This file is part of longmynd.
Longmynd 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.
Longmynd 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 longmynd. If not, see <https://www.gnu.org/licenses/>.
*/
/* -------------------------------------------------------------------------------------------------- */
/* ----------------- INCLUDES ----------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------- */
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <stdint.h>
#include <unistd.h>
#include <stdbool.h>
#include <errno.h>
#include "errors.h"
#include "fifo.h"
/* -------------------------------------------------------------------------------------------------- */
/* ----------------- GLOBALS ------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------------------------- */
int fd_ts_fifo;
int fd_status_fifo;
/* -------------------------------------------------------------------------------------------------- */
/* ----------------- ROUTINES ----------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------- */
uint8_t fifo_ts_write(uint8_t *buffer, uint32_t len, bool *fifo_ready) {
/* -------------------------------------------------------------------------------------------------- */
/* takes a buffer and writes out the contents to the ts fifo but removes the unwanted bytes */
/* *buffer: the buffer that contains the data to be sent */
/* len: the length (number of bytes) of data to be sent */
/* return: error code */
/* -------------------------------------------------------------------------------------------------- */
uint8_t err=ERROR_NONE;
int ret;
int32_t remaining_len; /* note it is signed so can go negative */
uint32_t write_size;
remaining_len=len;
/* we need to loop round sending 510 byte chunks so that we can skip the 2 extra bytes put in by */
/* the FTDI chip every 512 bytes of USB message */
while (remaining_len>0) {
if (remaining_len>510) {
/* calculate where to start in the buffer and how many bytes to send */
write_size=510;
ret=write(fd_ts_fifo, &buffer[len-remaining_len], write_size);
/* note we skip over the 2 bytes inserted by the FTDI */
remaining_len-=512;
} else {
write_size=remaining_len;
ret=write(fd_ts_fifo, &buffer[len-remaining_len], write_size);
remaining_len-=write_size; /* should be 0 if all went well */
}
if (ret!=(int)write_size) {
if(errno == EPIPE) {
/* Broken Pipe, probably because the other end has disconnected */
printf("WARNING: broken ts fifo\n");
*fifo_ready = false;
} else if(errno == EAGAIN) {
/* Write temporarily blocked, try again */
continue;
} else {
printf("ERROR: ts fifo write (error: %s)\n", strerror(errno));
err=ERROR_TS_FIFO_WRITE;
}
break;
}
}
/* if someting went bad with our calcs, remaining will not be 0 */
if ((err==ERROR_NONE) && *fifo_ready && (remaining_len!=0)) {
printf("ERROR: ts fifo write incorrect number of bytes\n");
err=ERROR_TS_FIFO_WRITE;
}
if (err!=ERROR_NONE) printf("ERROR: fifo ts write\n");
return err;
}
/* -------------------------------------------------------------------------------------------------- */
uint8_t fifo_status_write(uint8_t message, uint32_t data, bool *fifo_ready) {
/* -------------------------------------------------------------------------------------------------- */
/* *message: the string to write out that identifies the status message */
/* data: an integer to be sent out (as a decimal number string) */
/* return: error code */
/* -------------------------------------------------------------------------------------------------- */
uint8_t err=ERROR_NONE;
int ret;
char status_message[30];
/* WARNING: This currently prints as signed integer (int32_t), even though function appears to expect unsigned (uint32_t) */
sprintf(status_message, "$%i,%i\n", message, data);
ret=write(fd_status_fifo, status_message, strlen(status_message));
if (ret!=(int)strlen(status_message)) {
if(errno == EPIPE) {
/* Broken Pipe, probably because the other end has disconnected */
printf("WARNING: broken status fifo\n");
*fifo_ready = false;
} else if(errno == EAGAIN) {
/* Write temporarily blocked, ignore */
} else {
printf("ERROR: status fifo write (error: %s)\n", strerror(errno));
err=ERROR_TS_FIFO_WRITE;
}
}
if (err!=ERROR_NONE) printf("ERROR: fifo status write\n");
return err;
}
/* -------------------------------------------------------------------------------------------------- */
uint8_t fifo_status_string_write(uint8_t message, char *data, bool *fifo_ready) {
/* -------------------------------------------------------------------------------------------------- */
/* *message: the string to write out that identifies the status message */
/* data: an integer to be sent out (as a decimal number string) */
/* return: error code */
/* -------------------------------------------------------------------------------------------------- */
uint8_t err=ERROR_NONE;
int ret;
char status_message[5+128];
sprintf(status_message, "$%i,%s\n", message, data);
ret=write(fd_status_fifo, status_message, strlen(status_message));
if (ret!=(int)strlen(status_message)) {
if(errno == EPIPE) {
/* Broken Pipe, probably because the other end has disconnected */
printf("WARNING: broken status fifo\n");
*fifo_ready = false;
} else if(errno == EAGAIN) {
/* Write temporarily blocked, ignore */
} else {
printf("ERROR: status fifo string write (error: %s)\n", strerror(errno));
err=ERROR_TS_FIFO_WRITE;
}
}
if (err!=ERROR_NONE) printf("ERROR: fifo status string write\n");
return err;
}
/* -------------------------------------------------------------------------------------------------- */
static uint8_t fifo_init(int *fd_ptr, char *fifo_path, bool *fifo_ready) {
/* -------------------------------------------------------------------------------------------------- */
/* initialises the ts and status fifos */
/* ts_fifo: the name of the fifo to use for the TS */
/* status_fifo: the name of the fifo to use for the status output */
/* return: error code */
/* -------------------------------------------------------------------------------------------------- */
uint8_t err=ERROR_NONE;
*fifo_ready = false;
//printf("Flow: Fifo Init\n");
/* First check the file exists */
struct stat buffer;
if(stat(fifo_path, &buffer) < 0) {
printf("ERROR: Failed to open fifo %s (error: %s)\n",fifo_path,strerror(errno));
err=ERROR_OPEN_TS_FIFO;
}
if (err==ERROR_NONE) {
*fd_ptr = open(fifo_path, O_WRONLY | O_NONBLOCK);
/* We already ensured it exists, so ENXIO now just means there's nothing listening yet */
if (*fd_ptr<0 && errno == ENXIO) {
//printf(" Status: fifo not ready\n");
} else if(*fd_ptr<0) {
err=ERROR_OPEN_TS_FIFO;
printf("ERROR: Failed to open fifo %s (error: %s)\n",fifo_path,strerror(errno));
} else {
printf(" Status: opened fifo ok\n");
*fifo_ready = true;
}
}
if (err!=ERROR_NONE) printf("ERROR: fifo init\n");
return err;
}
uint8_t fifo_ts_init(char *fifo_path, bool *fifo_ready) {
return fifo_init(&fd_ts_fifo, fifo_path, fifo_ready);
}
uint8_t fifo_status_init(char *fifo_path, bool *fifo_ready) {
return fifo_init(&fd_status_fifo, fifo_path, fifo_ready);
}
/* -------------------------------------------------------------------------------------------------- */
uint8_t fifo_close(bool ignore_ts_fifo) {
/* ------------------------------------------------------------------------------------------------- */
/* closes the fifo's */
/* return: error code */
/* -------------------------------------------------------------------------------------------------- */
uint8_t err;
int ret;
if (!ignore_ts_fifo) {
ret=close(fd_ts_fifo);
if (ret!=0) {
printf("ERROR: ts fifo close\n");
err=ERROR_TS_FIFO_CLOSE;
}
}
ret=close(fd_status_fifo);
if (ret!=0) {
printf("ERROR: status fifo close\n");
err=ERROR_STATUS_FIFO_CLOSE;
}
if (err!=ERROR_NONE) printf("ERROR: fifo close\n");
return err;
}