ProteoWizard
Classes | Public Member Functions | Public Attributes
Reader1 Class Reference
Inheritance diagram for Reader1:
pwiz::tradata::Reader pwiz::tradata::Reader pwiz::tradata::Reader pwiz::tradata::Reader

List of all members.

Classes

struct  Config
struct  ReaderConfig

Public Member Functions

virtual std::string identify (const std::string &filename, const std::string &head) const
 return file type iff Reader recognizes the file, else empty;
virtual void read (const std::string &filename, const std::string &head, TraData &result, int runIndex=0) const
 fill in the TraData structure from the first (or only) sample
virtual void read (const std::string &filename, const std::string &head, std::vector< TraDataPtr > &results) const
 fill in a vector of TraData structures; provides support for multi-run input files
virtual const char * getType () const
 fill in a vector of MSData.Id values; provides support for multi-run input files
virtual std::string identify (const std::string &filename, const std::string &head) const
 return file type iff Reader recognizes the file, else empty;
virtual void read (const std::string &filename, const std::string &head, MSData &result, int runIndex=0, const Config &config=Config()) const
virtual void read (const std::string &filename, const std::string &head, std::vector< MSDataPtr > &results, const Config &config=Config()) const
virtual const char * getType () const
 fill in a vector of MSData.Id values; provides support for multi-run input files
virtual std::string identify (const std::string &uri, boost::shared_ptr< std::istream > uriStreamPtr) const
virtual void read (const std::string &uri, boost::shared_ptr< std::istream > uriStreamPtr, ProteomeData &result) const
virtual const char * getType () const
 fill in a vector of MSData.Id values; provides support for multi-run input files
virtual std::string identify (const std::string &filename, const std::string &head) const
 return file type iff Reader recognizes the file, else empty;
virtual void read (const std::string &filename, const std::string &head, TraData &result, int runIndex=0) const
 fill in the TraData structure from the first (or only) sample
virtual void read (const std::string &filename, const std::string &head, std::vector< TraDataPtr > &results) const
 fill in a vector of TraData structures; provides support for multi-run input files
virtual const char * getType () const
 fill in a vector of MSData.Id values; provides support for multi-run input files
- Public Member Functions inherited from pwiz::tradata::Reader
bool accept (const std::string &filename, const std::string &head) const
 return true iff Reader recognizes the file as one it should handle
virtual ~Reader ()

Public Attributes

Config config
ReaderConfig readerConfig

Detailed Description

Definition at line 37 of file ReaderTest.cpp.


Member Function Documentation

virtual std::string Reader1::identify ( const std::string &  filename,
const std::string &  head 
) const
inlinevirtual

return file type iff Reader recognizes the file, else empty;

note: for formats requiring a 3rd party DLL identify() should return true if it recognized the format, even though reading may fail if the 3rd party DLL isn't actually present Reader may filter based on filename and/or head of the file

Implements pwiz::tradata::Reader.

Definition at line 49 of file ReaderTest.cpp.

References os_.

{
bool result = (filename == "1");
if (os_) *os_ << "Reader1::identify(): " << boolalpha << result << endl;
return result ? filename : std::string("");
}
virtual void Reader1::read ( const std::string &  filename,
const std::string &  head,
TraData result,
int  runIndex = 0 
) const
inlinevirtual

fill in the TraData structure from the first (or only) sample

Implements pwiz::tradata::Reader.

Definition at line 56 of file ReaderTest.cpp.

References os_.

{
if (os_) *os_ << "Reader1::read()\n";
config.done = true;
}
virtual void Reader1::read ( const std::string &  filename,
const std::string &  head,
std::vector< TraDataPtr > &  results 
) const
inlinevirtual

fill in a vector of TraData structures; provides support for multi-run input files

Implements pwiz::tradata::Reader.

Definition at line 65 of file ReaderTest.cpp.

References pwiz::identdata::IO::read().

{
results.push_back(TraDataPtr(new TraData));
read(filename, head, *results.back());
}
virtual const char* Reader1::getType ( ) const
inlinevirtual

fill in a vector of MSData.Id values; provides support for multi-run input files

Implements pwiz::tradata::Reader.

Definition at line 73 of file ReaderTest.cpp.

{return "Reader1";} // satisfy inheritance
virtual std::string Reader1::identify ( const std::string &  filename,
const std::string &  head 
) const
inlinevirtual

return file type iff Reader recognizes the file, else empty;

note: for formats requiring a 3rd party DLL identify() should return true if it recognized the format, even though reading may fail if the 3rd party DLL isn't actually present Reader may filter based on filename and/or head of the file

Implements pwiz::tradata::Reader.

Definition at line 55 of file ReaderTest.cpp.

References os_.

{
bool result = (filename == "1");
if (os_) *os_ << "Reader1::identify(): " << boolalpha << result << endl;
return std::string (result?filename:std::string(""));
}
virtual void Reader1::read ( const std::string &  filename,
const std::string &  head,
MSData result,
int  runIndex = 0,
const Config config = Config() 
) const
inlinevirtual

Definition at line 62 of file ReaderTest.cpp.

References os_.

{
if (os_) *os_ << "Reader1::read()\n";
}
virtual void Reader1::read ( const std::string &  filename,
const std::string &  head,
std::vector< MSDataPtr > &  results,
const Config config = Config() 
) const
inlinevirtual

Definition at line 72 of file ReaderTest.cpp.

References pwiz::identdata::IO::read().

{
results.push_back(MSDataPtr(new MSData));
read(filename, head, *results.back(), 0, config);
}
virtual const char* Reader1::getType ( ) const
inlinevirtual

fill in a vector of MSData.Id values; provides support for multi-run input files

Implements pwiz::tradata::Reader.

Definition at line 81 of file ReaderTest.cpp.

{return "Reader1";} // satisfy inheritance
virtual std::string Reader1::identify ( const std::string &  uri,
boost::shared_ptr< std::istream >  uriStreamPtr 
) const
inlinevirtual

Definition at line 48 of file ReaderTest.cpp.

References os_.

{
bool result = (uri == "1");
if (os_) *os_ << "Reader1::identify(): " << boolalpha << result << endl;
return std::string (result?uri:std::string(""));
}
virtual void Reader1::read ( const std::string &  uri,
boost::shared_ptr< std::istream >  uriStreamPtr,
ProteomeData result 
) const
inlinevirtual

Definition at line 55 of file ReaderTest.cpp.

References os_.

{
if (os_) *os_ << "Reader1::read()\n";
config.done = true;
}
virtual const char* Reader1::getType ( ) const
inlinevirtual

fill in a vector of MSData.Id values; provides support for multi-run input files

Implements pwiz::tradata::Reader.

Definition at line 63 of file ReaderTest.cpp.

{return "Reader1";} // satisfy inheritance
virtual std::string Reader1::identify ( const std::string &  filename,
const std::string &  head 
) const
inlinevirtual

return file type iff Reader recognizes the file, else empty;

note: for formats requiring a 3rd party DLL identify() should return true if it recognized the format, even though reading may fail if the 3rd party DLL isn't actually present Reader may filter based on filename and/or head of the file

Implements pwiz::tradata::Reader.

Definition at line 49 of file ReaderTest.cpp.

References os_.

{
bool result = (filename == "1");
if (os_) *os_ << "Reader1::identify(): " << boolalpha << result << endl;
return result ? filename : std::string("");
}
virtual void Reader1::read ( const std::string &  filename,
const std::string &  head,
TraData result,
int  runIndex = 0 
) const
inlinevirtual

fill in the TraData structure from the first (or only) sample

Implements pwiz::tradata::Reader.

Definition at line 56 of file ReaderTest.cpp.

References os_.

{
if (os_) *os_ << "Reader1::read()\n";
config.done = true;
}
virtual void Reader1::read ( const std::string &  filename,
const std::string &  head,
std::vector< TraDataPtr > &  results 
) const
inlinevirtual

fill in a vector of TraData structures; provides support for multi-run input files

Implements pwiz::tradata::Reader.

Definition at line 65 of file ReaderTest.cpp.

References pwiz::identdata::IO::read().

{
results.push_back(TraDataPtr(new TraData));
read(filename, head, *results.back());
}
virtual const char* Reader1::getType ( ) const
inlinevirtual

fill in a vector of MSData.Id values; provides support for multi-run input files

Implements pwiz::tradata::Reader.

Definition at line 73 of file ReaderTest.cpp.

{return "Reader1";} // satisfy inheritance

Member Data Documentation

Config Reader1::config

Definition at line 47 of file ReaderTest.cpp.

Referenced by testRead().

ReaderConfig Reader1::readerConfig

Definition at line 53 of file ReaderTest.cpp.

Referenced by testRead().


The documentation for this class was generated from the following files: