ProteoWizard
Serializer_mz5_Test.cpp
Go to the documentation of this file.
1 //
2 // $Id: Serializer_mz5_Test.cpp 4129 2012-11-20 00:05:37Z chambm $
3 //
4 //
5 // Original authors: Mathias Wilhelm <mw@wilhelmonline.com>
6 // Marc Kirchner <mail@marc-kirchner.de>
7 //
8 // Copyright 2011 Proteomics Center
9 // Children's Hospital Boston, Boston, MA 02135
10 //
11 // Licensed under the Apache License, Version 2.0 (the "License");
12 // you may not use this file except in compliance with the License.
13 // You may obtain a copy of the License at
14 //
15 // http://www.apache.org/licenses/LICENSE-2.0
16 //
17 // Unless required by applicable law or agreed to in writing, software
18 // distributed under the License is distributed on an "AS IS" BASIS,
19 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 // See the License for the specific language governing permissions and
21 // limitations under the License.
22 //
23 
24 
26 #include "Serializer_mz5.hpp"
27 #include "Diff.hpp"
28 #include "References.hpp"
29 #include "examples.hpp"
32 #include "boost/thread/thread.hpp"
33 #include "boost/thread/barrier.hpp"
34 #include <cstring>
35 #include <cstdlib>
36 
37 using namespace pwiz::util;
38 using namespace pwiz::cv;
39 using namespace pwiz::msdata;
40 
41 ostream* os_ = 0;
42 
43 void testWriteRead(const MSData& msd, const MSDataFile::WriteConfig& config)
44 {
45  if (os_)
46  *os_ << "testWriteRead() " << config << endl;
47 
48  string filename = "Serializer_mz5_Test_" + lexical_cast<string> (
49  boost::this_thread::get_id()) + ".mz5";
50 
51  {
52  MSData msd2;
53  Serializer_mz5 mz5Serializer(config);
55  mz5Serializer.write(filename, msd, &ilr);
56 
57  mz5Serializer.read(filename, msd2);
58 
59  References::resolve(msd2);
60 
61  Diff<MSData, DiffConfig> diff(msd, msd2);
62  if (os_ && diff)
63  *os_ << diff << endl;
64  unit_assert(!diff);
65  }
66 
67  bfs::remove(filename);
68 }
69 
71 {
72  MSData msd;
74 
75  // test with 64 bit precision
76  MSDataFile::WriteConfig writeConfig;
78  = BinaryDataEncoder::Precision_64;
80  = BinaryDataEncoder::Precision_64;
82  = BinaryDataEncoder::Precision_64;
84  = BinaryDataEncoder::Precision_64;
85  // compression activated
87  = BinaryDataEncoder::Compression_Zlib;
88  testWriteRead(msd, writeConfig);
89 
90  //test with 32 bit precision
92  = BinaryDataEncoder::Precision_32;
94  = BinaryDataEncoder::Precision_32;
96  = BinaryDataEncoder::Precision_32;
98  = BinaryDataEncoder::Precision_32;
99  testWriteRead(msd, writeConfig);
100 
101  // TODO: test without compression
102 }
103 
104 void testThreadSafetyWorker(boost::barrier* testBarrier)
105 {
106  testBarrier->wait(); // wait until all threads have started
107 
108  try
109  {
110  testWriteRead();
111  } catch (exception& e)
112  {
113  cerr << "Exception in worker thread: " << e.what() << endl;
114  } catch (...)
115  {
116  cerr << "Unhandled exception in worker thread." << endl;
117  exit(1); // fear the unknown!
118  }
119 }
120 
121 void testThreadSafety(const int& testThreadCount)
122 {
123  boost::barrier testBarrier(testThreadCount);
124  boost::thread_group testThreadGroup;
125  for (int i = 0; i < testThreadCount; ++i)
126  testThreadGroup.add_thread(new boost::thread(&testThreadSafetyWorker,
127  &testBarrier));
128  testThreadGroup.join_all();
129 }
130 
131 int main(int argc, char* argv[])
132 {
133  TEST_PROLOG(argc, argv)
134 
135  try
136  {
137  if (argc > 1 && !strcmp(argv[1], "-v"))
138  os_ = &cout;
139 
140  testWriteRead();
141  testThreadSafety(2);
142  testThreadSafety(4);
143  testThreadSafety(8);
144  testThreadSafety(16);
145 
146  }
147  catch (exception& e)
148  {
149  TEST_FAILED(e.what())
150  }
151  catch (...)
152  {
153  TEST_FAILED("Caught unknown exception.")
154  }
155 
157 }