-
Notifications
You must be signed in to change notification settings - Fork 2
/
save_data_thread.cpp
183 lines (115 loc) · 2.83 KB
/
save_data_thread.cpp
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
/*
***************************************************************************
*
* Author: Teunis van Beelen
*
* Copyright (C) 2015 - 2020 Teunis van Beelen
*
* Email: [email protected]
*
***************************************************************************
*
* 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 "save_data_thread.h"
save_data_thread::save_data_thread(int job_s)
{
job = job_s;
hdl = -1;
err_num = -1;
err_str[0] = 0;
n_bytes_rcvd = -1;
devparms = NULL;
datrecs = 0;
smps_per_record = 0;
}
int save_data_thread::get_error_num(void)
{
return err_num;
}
void save_data_thread::get_error_str(char *dest, int sz)
{
strlcpy(dest, err_str, sz);
}
int save_data_thread::get_num_bytes_rcvd(void)
{
return n_bytes_rcvd;
}
void save_data_thread::run()
{
err_str[0] = 0;
switch(job)
{
case 0: read_data();
break;
case 1: save_memory_edf_file();
break;
default: err_num = -4;
break;
}
}
void save_data_thread::read_data(void)
{
msleep(100);
n_bytes_rcvd = tmc_read();
err_num = 0;
}
void save_data_thread::init_save_memory_edf_file(struct device_settings *devp, int hdl_s,
int records, int smpls,
short **wav)
{
datrecs = records;
devparms = devp;
smps_per_record = smpls;
wavbuf = wav;
hdl = hdl_s;
}
void save_data_thread::save_memory_edf_file(void)
{
int i, chn;
if(devparms == NULL)
{
strlcpy(err_str, "save_memory_edf_file(): Invalid devparms pointer.", 4096);
err_num = 1;
msleep(200);
return;
}
if(hdl < 0)
{
strlcpy(err_str, "save_memory_edf_file(): Invalid handel.", 4096);
err_num = 2;
msleep(200);
return;
}
msleep(100);
for(i=0; i<datrecs; i++)
{
for(chn=0; chn<MAX_CHNS; chn++)
{
if(!devparms->chandisplay[chn])
{
continue;
}
if(edfwrite_digital_short_samples(hdl, wavbuf[chn] + (i * smps_per_record)))
{
strlcpy(err_str, "A file write error occurred.", 4096);
err_num = 3;
return;
}
}
}
err_num = 0;
}