2#include "../../../tests/catch2/catch.hpp"
3#include "../../tests/testMacrosINDI.hpp"
5#include "../streamWriter.hpp"
27 int setup_circbufs(
int width,
int height,
int dataType,
int circBuffLength,
int writeChunkLength )
89 curr_timing[1] = pp + 1000;
90 curr_timing[2] = pp + 2000;
116 xrif_error_t xrv = xrif_new( &xrif );
118 char header[XRIF_HEADER_SIZE];
121 size_t nr = fread( header, 1, XRIF_HEADER_SIZE, fp_xrif );
123 if( nr != XRIF_HEADER_SIZE )
125 std::cerr <<
"Error reading header of " <<
m_sw->
m_fname <<
"\n";
130 uint32_t header_size;
131 xrif_read_header( xrif, &header_size, header );
136 std::cerr <<
"width mismatch\n";
142 std::cerr <<
"height mismatch\n";
146 if( xrif_depth( xrif ) != 1 )
148 std::cerr <<
"depth mismatch\n";
152 if( xrif_frames( xrif ) != stop - start )
154 std::cerr <<
"frames mismatch\n";
158 xrif_allocate( xrif );
160 nr = fread( xrif->raw_buffer, 1, xrif->compressed_size, fp_xrif );
162 if( nr != xrif->compressed_size )
164 std::cerr <<
"error reading compressed image buffer.\n";
168 xrv = xrif_decode( xrif );
169 if( xrv != XRIF_NOERROR )
171 std::cerr <<
"error decoding compressed image buffer. Code: " << xrv <<
"\n";
180 xrif->raw_buffer[n] )
186 std::cerr <<
"Buffers don't match: " << badpix <<
" bad pixels.\n";
198SCENARIO(
"streamWriter Configuration",
"[streamWriter]" )
200 GIVEN(
"A default constructed streamWriter" )
205 WHEN(
"default configurations" )
212SCENARIO(
"streamWriter encoding data",
"[streamWriter]" )
214 GIVEN(
"A default constructed streamWriter and a 120x120 uint16 stream" )
219 WHEN(
"writing full 1st chunk" )
221 int circBuffLength = 10;
222 int writeChunkLength = 5;
223 REQUIRE( sw_test.
setup_circbufs( 120, 120, XRIF_TYPECODE_UINT16, circBuffLength, writeChunkLength ) == 0 );
234 WHEN(
"writing full 2nd chunk" )
236 int circBuffLength = 10;
237 int writeChunkLength = 5;
238 REQUIRE( sw_test.
setup_circbufs( 120, 120, XRIF_TYPECODE_UINT16, circBuffLength, writeChunkLength ) == 0 );
249 WHEN(
"writing partial 1st chunk" )
251 int circBuffLength = 10;
252 int writeChunkLength = 5;
253 REQUIRE( sw_test.
setup_circbufs( 120, 120, XRIF_TYPECODE_UINT16, circBuffLength, writeChunkLength ) == 0 );
264 WHEN(
"writing partial 2nd chunk" )
266 int circBuffLength = 10;
267 int writeChunkLength = 5;
268 REQUIRE( sw_test.
setup_circbufs( 120, 120, XRIF_TYPECODE_UINT16, circBuffLength, writeChunkLength ) == 0 );
size_t m_circBuffLength
The length of the circular buffer, in frames.
int initialize_xrif()
Initialize the xrif system.
uint64_t * m_timingCircBuff
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.
char * m_rawImageCircBuff
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_maxWriteChunkLength
size_t m_width
The width of the image.
int write_frames(int start, int stop)
int fill_circbuf_uint16()
int comp_frames_uint16(size_t start, size_t stop)
int setup_circbufs(int width, int height, int dataType, int circBuffLength, int writeChunkLength)
std::string rawimageDir()
streamWriter_test(streamWriter *sw)