93d145bb01
+ Renamed Expr class to DisjList, which is more descriptive as to its function + Added ' and " to the list of allowed characters in an unquoted string. + Added updated sniffer rule grammar to doxygen for the Parser class git-svn-id: file:///srv/svn/repos/haiku/trunk/current@685 a95241bf-73f2-0310-859d-f6bbb57e9c96
43 lines
998 B
C++
43 lines
998 B
C++
//----------------------------------------------------------------------
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
// by the OpenBeOS license.
|
|
//---------------------------------------------------------------------
|
|
/*!
|
|
\file sniffer/PatternList.h
|
|
MIME sniffer pattern list declarations
|
|
*/
|
|
#ifndef _sk_sniffer_pattern_list_h_
|
|
#define _sk_sniffer_pattern_list_h_
|
|
|
|
#include <sniffer/DisjList.h>
|
|
#include <sniffer/Range.h>
|
|
#include <vector>
|
|
|
|
class BPositionIO;
|
|
|
|
namespace Sniffer {
|
|
|
|
class Err;
|
|
class Pattern;
|
|
|
|
/*! \brief A list of patterns, one of which must match for the list to match, all
|
|
of which are to be searched over the same range.
|
|
*/
|
|
class PatternList : public DisjList {
|
|
public:
|
|
PatternList(Range range);
|
|
virtual ~PatternList();
|
|
|
|
status_t InitCheck() const;
|
|
Err* GetErr() const;
|
|
|
|
virtual bool Sniff(BPositionIO *data) const;
|
|
void Add(Pattern *pattern);
|
|
private:
|
|
std::vector<Pattern*> fList;
|
|
Range fRange;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // _sk_sniffer_pattern_list_h_
|