Files
haiku-beta6/headers/private/storage/sniffer/Pattern.h
T

58 lines
1.4 KiB
C++
Raw Normal View History

2002-08-06 08:25:41 +00:00
//----------------------------------------------------------------------
// This software is part of the OpenBeOS distribution and is covered
// by the OpenBeOS license.
//---------------------------------------------------------------------
/*!
\file sniffer/Pattern.h
Mime Sniffer Pattern declarations
*/
2002-08-12 07:24:02 +00:00
#ifndef _SNIFFER_PATTERN_H
#define _SNIFFER_PATTERN_H
2002-08-06 08:25:41 +00:00
#include <SupportDefs.h>
#include <string>
#include <sniffer/Range.h>
class BPositionIO;
namespace BPrivate {
namespace Storage {
2002-08-06 08:25:41 +00:00
namespace Sniffer {
class Err;
2002-08-08 07:20:47 +00:00
//! A byte string and optional mask to be compared against a data stream.
/*! The byte string and mask (if supplied) must be of the same length. */
2002-08-06 08:25:41 +00:00
class Pattern {
public:
Pattern(const std::string &string, const std::string &mask);
Pattern(const std::string &string);
2002-08-06 08:25:41 +00:00
~Pattern();
status_t InitCheck() const;
Err* GetErr() const;
bool Sniff(Range range, BPositionIO *data, bool caseInsensitive) const;
2002-08-06 08:25:41 +00:00
status_t SetTo(const std::string &string, const std::string &mask);
2002-08-06 08:25:41 +00:00
private:
bool Sniff(off_t start, off_t size, BPositionIO *data, bool caseInsensitive) const;
2002-08-06 08:25:41 +00:00
void SetStatus(status_t status, const char *msg = NULL);
void SetErrorMessage(const char *msg);
std::string fString;
std::string fMask;
status_t fCStatus;
Err *fErrorMessage;
};
}; // namespace Sniffer
}; // namespace Storage
}; // namespace BPrivate
#endif // _SNIFFER_PATTERN_H
2002-08-06 08:25:41 +00:00