2150894b73
a pre-read data stream to be sniffed instead of actual files on disk. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1149 a95241bf-73f2-0310-859d-f6bbb57e9c96
46 lines
937 B
C++
46 lines
937 B
C++
//----------------------------------------------------------------------
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
// by the OpenBeOS license.
|
|
//---------------------------------------------------------------------
|
|
/*!
|
|
\file sniffer/RPattern.h
|
|
Mime Sniffer RPattern declarations
|
|
*/
|
|
#ifndef _SNIFFER_R_PATTERN_H
|
|
#define _SNIFFER_R_PATTERN_H
|
|
|
|
#include <sniffer/Range.h>
|
|
|
|
class BPositionIO;
|
|
|
|
namespace BPrivate {
|
|
namespace Storage {
|
|
namespace Sniffer {
|
|
|
|
class Err;
|
|
class Pattern;
|
|
|
|
//! A Pattern and a Range, bundled into one.
|
|
class RPattern {
|
|
public:
|
|
RPattern(Range range, Pattern *pattern);
|
|
~RPattern();
|
|
|
|
status_t InitCheck() const;
|
|
Err* GetErr() const;
|
|
|
|
bool Sniff(BPositionIO *data, bool caseInsensitive) const;
|
|
ssize_t BytesNeeded() const;
|
|
private:
|
|
Range fRange;
|
|
Pattern *fPattern;
|
|
};
|
|
|
|
}; // namespace Sniffer
|
|
}; // namespace Storage
|
|
}; // namespace BPrivate
|
|
|
|
#endif // _SNIFFER_R_PATTERN_H
|
|
|
|
|