32 #include "boost/thread/thread.hpp"
33 #include "boost/thread/barrier.hpp"
37 using namespace pwiz::util;
39 using namespace pwiz::msdata;
46 *
os_ <<
"testWriteRead() " << config << endl;
48 string filename =
"Serializer_mz5_Test_" +
lexical_cast<
string> (
49 boost::this_thread::get_id()) +
".mz5";
55 mz5Serializer.
write(filename, msd, &ilr);
57 mz5Serializer.
read(filename, msd2);
67 bfs::remove(filename);
78 = BinaryDataEncoder::Precision_64;
80 = BinaryDataEncoder::Precision_64;
82 = BinaryDataEncoder::Precision_64;
84 = BinaryDataEncoder::Precision_64;
87 = BinaryDataEncoder::Compression_Zlib;
92 = BinaryDataEncoder::Precision_32;
94 = BinaryDataEncoder::Precision_32;
96 = BinaryDataEncoder::Precision_32;
98 = BinaryDataEncoder::Precision_32;
111 }
catch (exception&
e)
113 cerr <<
"Exception in worker thread: " << e.what() << endl;
116 cerr <<
"Unhandled exception in worker thread." << endl;
123 boost::barrier testBarrier(testThreadCount);
124 boost::thread_group testThreadGroup;
125 for (
int i = 0; i < testThreadCount; ++i)
128 testThreadGroup.join_all();
131 int main(
int argc,
char* argv[])
137 if (argc > 1 && !strcmp(argv[1],
"-v"))