ProteoWizard
|
Reader container (composite pattern). More...
#include <Reader.hpp>
Public Member Functions | |
virtual std::string | identify (const std::string &filename) const |
returns child name iff some child identifies, else empty string | |
virtual std::string | identify (const std::string &filename, const std::string &head) const |
returns child name iff some child identifies, else empty string | |
virtual void | read (const std::string &filename, MSData &result, int runIndex=0, const Config &config=Config()) const |
delegates to first child that identifies | |
virtual void | read (const std::string &filename, const std::string &head, MSData &result, int runIndex=0, const Config &config=Config()) const |
delegates to first child that identifies | |
virtual void | read (const std::string &filename, std::vector< MSDataPtr > &results, const Config &config=Config()) const |
delegates to first child that identifies; provides support for multi-run input files | |
virtual void | read (const std::string &filename, const std::string &head, std::vector< MSDataPtr > &results, const Config &config=Config()) const |
delegates to first child that identifies; provides support for multi-run input files | |
virtual void | readIds (const std::string &filename, std::vector< std::string > &results, const Config &config=Config()) const |
delegates to first child that identifies; provides support for multi-run input files | |
virtual void | readIds (const std::string &filename, const std::string &head, std::vector< std::string > &results, const Config &config=Config()) const |
delegates to first child that identifies; provides support for multi-run input files | |
ReaderList & | operator+= (const ReaderList &rhs) |
appends all of the rhs operand's Readers to the list | |
ReaderList & | operator+= (const ReaderPtr &rhs) |
appends the rhs Reader to the list | |
ReaderList | operator+ (const ReaderList &rhs) const |
returns a concatenated list of all the Readers from the lhs and rhs operands | |
ReaderList | operator+ (const ReaderPtr &rhs) const |
returns a concatenated list of all the Readers from the lhs and rhs operands | |
template<typename reader_type > | |
reader_type * | get () |
returns pointer to Reader of the specified type | |
template<typename reader_type > | |
const reader_type * | get () const |
returns const pointer to Reader of the specified type | |
virtual const char * | getType () const |
returns a unique string identifying the reader type | |
![]() | |
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 () |
Additional Inherited Members | |
![]() | |
T | elements |
STL member. |
Reader container (composite pattern).
The template get<reader_type>() gives access to child Readers by type, to facilitate Reader-specific configuration at runtime.
Definition at line 121 of file Reader.hpp.
|
virtual |
returns child name iff some child identifies, else empty string
|
virtual |
returns child name iff some child identifies, else empty string
Implements pwiz::msdata::Reader.
|
virtual |
delegates to first child that identifies
Referenced by testRead().
|
virtual |
delegates to first child that identifies
Implements pwiz::msdata::Reader.
|
virtual |
delegates to first child that identifies; provides support for multi-run input files
|
virtual |
delegates to first child that identifies; provides support for multi-run input files
Implements pwiz::msdata::Reader.
|
virtual |
delegates to first child that identifies; provides support for multi-run input files
|
virtual |
delegates to first child that identifies; provides support for multi-run input files
Reimplemented from pwiz::msdata::Reader.
ReaderList& pwiz::msdata::ReaderList::operator+= | ( | const ReaderList & | rhs | ) |
appends all of the rhs operand's Readers to the list
ReaderList& pwiz::msdata::ReaderList::operator+= | ( | const ReaderPtr & | rhs | ) |
appends the rhs Reader to the list
ReaderList pwiz::msdata::ReaderList::operator+ | ( | const ReaderList & | rhs | ) | const |
returns a concatenated list of all the Readers from the lhs and rhs operands
ReaderList pwiz::msdata::ReaderList::operator+ | ( | const ReaderPtr & | rhs | ) | const |
returns a concatenated list of all the Readers from the lhs and rhs operands
|
inline |
returns pointer to Reader of the specified type
Definition at line 186 of file Reader.hpp.
Referenced by testGet(), and testRead().
|
inline |
returns const pointer to Reader of the specified type
Definition at line 199 of file Reader.hpp.
|
inlinevirtual |
returns a unique string identifying the reader type
Implements pwiz::msdata::Reader.
Definition at line 204 of file Reader.hpp.