29 #include "boost/thread/thread.hpp"
30 #include "boost/thread/barrier.hpp"
33 using namespace pwiz::util;
34 using namespace pwiz::proteome;
35 using namespace pwiz::data;
49 serializer.
write(oss, pd, NULL);
51 if (
os_) *
os_ <<
"oss:\n" << oss.str() << endl;
53 shared_ptr<istringstream> iss(
new istringstream(oss.str()));
55 serializer.
read(iss, pd2);
58 if (
os_ && diff) *
os_ << diff << endl;
65 if (
os_) *
os_ <<
"testWriteRead() MemoryIndex" << endl;
69 if (
os_) *
os_ <<
"testWriteRead() BinaryIndexStream" << endl;
70 shared_ptr<stringstream> indexStringStream(
new stringstream);
84 for (
int i=0; i < 3; ++i)
86 for (
size_t j=0; j < args->second->proteinListPtr->size(); ++j)
87 unit_assert(args->second->proteinListPtr->protein(j)->index == j);
92 cerr <<
"Exception in worker thread: " << e.what() << endl;
96 cerr <<
"Unhandled exception in worker thread." << endl;
105 boost::barrier testBarrier(testThreadCount);
106 boost::thread_group testThreadGroup;
107 for (
int i=0; i < testThreadCount; ++i)
108 testThreadGroup.add_thread(
new boost::thread(&
testThreadSafetyWorker,
new pair<boost::barrier*, ProteomeData*>(&testBarrier, &pd)));
109 testThreadGroup.join_all();
120 proteinListPtr->proteins.push_back(
ProteinPtr(
new Protein(
"ABC123", 0,
"One two three.",
"ELVISLIVES")));
121 proteinListPtr->proteins.push_back(
ProteinPtr(
new Protein(
"ZEBRA", 1,
"Has stripes:",
"BLACKANDWHITE")));
122 proteinListPtr->proteins.push_back(
ProteinPtr(
new Protein(
"DEFCON42", 2,
"",
"DNTPANIC")));
123 proteinListPtr->proteins.push_back(
ProteinPtr(
new Protein(
"ZEBRA", 1,
"Black and white",
"STRIPES")));
128 serializer.
write(oss, pd, NULL);
130 if (
os_) *
os_ <<
"oss:\n" << oss.str() << endl;
132 shared_ptr<istringstream> iss(
new istringstream(oss.str()));
136 "[ProteinList_FASTA::createIndex] duplicate protein id \"ZEBRA\"");
140 int main(
int argc,
char* argv[])
146 if (argc>1 && !strcmp(argv[1],
"-v"))
os_ = &cout;