API
 
Loading...
Searching...
No Matches
streamWriter_test.cpp
Go to the documentation of this file.
1
2#include "../../../tests/catch2/catch.hpp"
3#include "../../tests/testMacrosINDI.hpp"
4
5#include "../streamWriter.hpp"
6
7using namespace MagAOX::app;
8
9namespace MagAOX
10{
11namespace app
12{
14{
16
18 {
19 m_sw = sw;
20 }
21
22 std::string rawimageDir()
23 {
24 return m_sw->m_rawimageDir;
25 }
26
27 int setup_circbufs( int width, int height, int dataType, int circBuffLength, int writeChunkLength )
28 {
29 m_sw->m_typeSize = ImageStreamIO_typesize( dataType );
30
31 m_sw->m_maxCircBuffLength = circBuffLength;
32 m_sw->m_maxCircBuffSize = ( width * height * m_sw->m_typeSize * circBuffLength + 1 ) / 1048576.0;
33 m_sw->m_maxWriteChunkLength = writeChunkLength;
34
35 m_sw->m_width = width;
36 m_sw->m_height = height;
37 m_sw->m_dataType = dataType;
38
39 return m_sw->allocate_circbufs();
40 }
41
42 // Sets m_writeChunkLength and calls allocate_xrif
43 // Call this *only* after setup_circbufs.
45 {
46
48 return m_sw->allocate_xrif();
49 }
50
51 // Allocates and populates the filename buffer
53 {
54 m_sw->m_fnameBase = "/tmp/swtest_";
55
57 m_sw->m_fnameBase.size() + sizeof( "YYYYMMDDHHMMSSNNNNNNNNN.xrif" ); // the sizeof includes the \0
58 m_sw->m_fname = (char *)malloc( m_sw->m_fnameSz );
59
60 snprintf( m_sw->m_fname, m_sw->m_fnameSz, "%sYYYYMMDDHHMMSSNNNNNNNNN.xrif", m_sw->m_fnameBase.c_str() );
61
62 return 0;
63 }
64
65 // Fill the circular buffers.
67 {
68 // fill in image data with increasing 256 bit vals.
69 for( size_t pp = 0; pp < m_sw->m_circBuffLength; ++pp )
70 {
71 uint16_t v = pp;
72 for( size_t rr = 0; rr < m_sw->m_width; ++rr )
73 {
74 for( size_t cc = 0; cc < m_sw->m_height; ++cc )
75 {
76 ( (uint16_t *)
77 m_sw->m_rawImageCircBuff )[pp * m_sw->m_width * m_sw->m_height + rr * m_sw->m_height + cc] =
78 v;
79 ++v;
80 }
81 }
82
83 // fitsFile<uint16_t> ff;
84 // ff.write("cb.fits", m_sw->m_rawImageCircBuff);
85
86 // Fill in timing values with unique vals.
87 uint64_t *curr_timing = m_sw->m_timingCircBuff + 5 * pp;
88 curr_timing[0] = pp; // image number
89 curr_timing[1] = pp + 1000; // atime sec
90 curr_timing[2] = pp + 2000; // atime nsec
91 curr_timing[3] = pp + m_sw->m_circBuffLength + 1000; // wtime sec
92 curr_timing[4] = pp + m_sw->m_circBuffLength + 2000; // wtime nsec
93 }
94 return 0;
95 }
96
97 int write_frames( int start, // arbitrary.
98 int stop // should be a m_writeChunkLength boundary
99 )
100 {
101 m_sw->m_currSaveStart = start;
102 m_sw->m_currSaveStop = stop;
104
106 return m_sw->doEncode();
107 }
108
109 // Read the xrif archive back in and compare the results.
110 int comp_frames_uint16( size_t start, size_t stop )
111 {
112
113 std::cout << "Reading: " << m_sw->m_fname << "\n";
114
115 xrif_t xrif;
116 xrif_error_t xrv = xrif_new( &xrif );
117
118 char header[XRIF_HEADER_SIZE];
119
120 FILE *fp_xrif = fopen( m_sw->m_fname, "rb" );
121 size_t nr = fread( header, 1, XRIF_HEADER_SIZE, fp_xrif );
122
123 if( nr != XRIF_HEADER_SIZE )
124 {
125 std::cerr << "Error reading header of " << m_sw->m_fname << "\n";
126 fclose( fp_xrif );
127 return -1;
128 }
129
130 uint32_t header_size;
131 xrif_read_header( xrif, &header_size, header );
132
133 int rv = 0;
134 if( xrif_width( xrif ) != m_sw->m_width )
135 {
136 std::cerr << "width mismatch\n";
137 rv = -1;
138 }
139
140 if( xrif_height( xrif ) != m_sw->m_height )
141 {
142 std::cerr << "height mismatch\n";
143 rv = -1;
144 }
145
146 if( xrif_depth( xrif ) != 1 )
147 {
148 std::cerr << "depth mismatch\n";
149 rv = -1;
150 }
151
152 if( xrif_frames( xrif ) != stop - start )
153 {
154 std::cerr << "frames mismatch\n";
155 rv = -1;
156 }
157
158 xrif_allocate( xrif );
159
160 nr = fread( xrif->raw_buffer, 1, xrif->compressed_size, fp_xrif );
161
162 if( nr != xrif->compressed_size )
163 {
164 std::cerr << "error reading compressed image buffer.\n";
165 return -1;
166 }
167
168 xrv = xrif_decode( xrif );
169 if( xrv != XRIF_NOERROR )
170 {
171 std::cerr << "error decoding compressed image buffer. Code: " << xrv << "\n";
172 return -1;
173 }
174
175 size_t badpix = 0;
176
177 for( size_t n = 0; n < m_sw->m_width * m_sw->m_height * m_sw->m_typeSize * ( stop - start ); ++n )
178 {
179 if( m_sw->m_rawImageCircBuff[start * m_sw->m_width * m_sw->m_height * m_sw->m_typeSize + n] !=
180 xrif->raw_buffer[n] )
181 ++badpix;
182 }
183
184 if( badpix > 0 )
185 {
186 std::cerr << "Buffers don't match: " << badpix << " bad pixels.\n";
187 return -1;
188 }
189
190 return rv;
191 }
192};
193} // namespace app
194} // namespace MagAOX
195
196using namespace MagAOX::app;
197
198SCENARIO( "streamWriter Configuration", "[streamWriter]" )
199{
200 GIVEN( "A default constructed streamWriter" )
201 {
202 streamWriter sw;
203 streamWriter_test sw_test( &sw );
204
205 WHEN( "default configurations" )
206 {
207 REQUIRE( sw_test.rawimageDir() == "" );
208 }
209 }
210}
211
212SCENARIO( "streamWriter encoding data", "[streamWriter]" )
213{
214 GIVEN( "A default constructed streamWriter and a 120x120 uint16 stream" )
215 {
216 streamWriter sw;
217 streamWriter_test sw_test( &sw );
218
219 WHEN( "writing full 1st chunk" )
220 {
221 int circBuffLength = 10;
222 int writeChunkLength = 5;
223 REQUIRE( sw_test.setup_circbufs( 120, 120, XRIF_TYPECODE_UINT16, circBuffLength, writeChunkLength ) == 0 );
224 REQUIRE( sw_test.setup_xrif() == 0 );
225 REQUIRE( sw_test.setup_fname() == 0 );
226
227 REQUIRE( sw_test.fill_circbuf_uint16() == 0 );
228
229 REQUIRE( sw_test.write_frames( 0, 5 ) == 0 );
230
231 REQUIRE( sw_test.comp_frames_uint16( 0, 5 ) == 0 );
232 }
233
234 WHEN( "writing full 2nd chunk" )
235 {
236 int circBuffLength = 10;
237 int writeChunkLength = 5;
238 REQUIRE( sw_test.setup_circbufs( 120, 120, XRIF_TYPECODE_UINT16, circBuffLength, writeChunkLength ) == 0 );
239 REQUIRE( sw_test.setup_xrif() == 0 );
240 REQUIRE( sw_test.setup_fname() == 0 );
241
242 REQUIRE( sw_test.fill_circbuf_uint16() == 0 );
243
244 REQUIRE( sw_test.write_frames( 5, 10 ) == 0 );
245
246 REQUIRE( sw_test.comp_frames_uint16( 5, 10 ) == 0 );
247 }
248
249 WHEN( "writing partial 1st chunk" )
250 {
251 int circBuffLength = 10;
252 int writeChunkLength = 5;
253 REQUIRE( sw_test.setup_circbufs( 120, 120, XRIF_TYPECODE_UINT16, circBuffLength, writeChunkLength ) == 0 );
254 REQUIRE( sw_test.setup_xrif() == 0 );
255 REQUIRE( sw_test.setup_fname() == 0 );
256
257 REQUIRE( sw_test.fill_circbuf_uint16() == 0 );
258
259 REQUIRE( sw_test.write_frames( 2, 5 ) == 0 );
260
261 REQUIRE( sw_test.comp_frames_uint16( 2, 5 ) == 0 );
262 }
263
264 WHEN( "writing partial 2nd chunk" )
265 {
266 int circBuffLength = 10;
267 int writeChunkLength = 5;
268 REQUIRE( sw_test.setup_circbufs( 120, 120, XRIF_TYPECODE_UINT16, circBuffLength, writeChunkLength ) == 0 );
269 REQUIRE( sw_test.setup_xrif() == 0 );
270 REQUIRE( sw_test.setup_fname() == 0 );
271
272 REQUIRE( sw_test.fill_circbuf_uint16() == 0 );
273
274 REQUIRE( sw_test.write_frames( 5, 8 ) == 0 );
275
276 REQUIRE( sw_test.comp_frames_uint16( 5, 8 ) == 0 );
277 }
278 }
279}
#define GIVEN(desc)
Definition catch.hpp:17763
#define WHEN(desc)
Definition catch.hpp:17765
#define SCENARIO(...)
Definition catch.hpp:17760
#define REQUIRE(...)
Definition catch.hpp:17676
size_t m_circBuffLength
The length of the circular buffer, in frames.
int initialize_xrif()
Initialize the xrif system.
uint8_t m_dataType
The ImageStreamIO type code.
int m_typeSize
The pixel byte depth.
uint64_t m_currSaveStart
The circular buffer position at which to start saving.
size_t m_height
The height of the image.
uint64_t m_currSaveStopFrameNo
The frame number of the image at which saving stopped (for logging)
int allocate_circbufs()
Worker function to allocate the circular buffers.
size_t m_maxCircBuffLength
The maximum length of the circular buffer, in frames.
int allocate_xrif()
Worker function to configure and allocate the xrif handles.
std::string m_rawimageDir
The path where files will be saved.
int m_writing
Controls whether or not images are being written, and sequences start and stop of writing.
double m_maxCircBuffSize
The maximum size of the circular bufffer in MB.
int doEncode()
Function called when semaphore is raised to do the encode and write.
uint64_t m_currSaveStop
The circular buffer position at which to stop saving.
size_t m_width
The width of the image.
Definition dm.hpp:24
#define WRITING
int write_frames(int start, int stop)
int comp_frames_uint16(size_t start, size_t stop)
int setup_circbufs(int width, int height, int dataType, int circBuffLength, int writeChunkLength)