mirror of
https://review.haiku-os.org/haiku
synced 2025-02-02 19:57:42 +01:00
9cda9c9905
* Together with database_{access,support}.cpp it is built into a static library. * Add new interfaces MimeSniffer and Database::NotificationListener for plugging in registrar specific functionality (the sniffer add-on support and the notification mechanism).
72 lines
1.5 KiB
C++
72 lines
1.5 KiB
C++
/*
|
|
* Copyright 2002-2007, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _MIME_SNIFFER_RULES_H
|
|
#define _MIME_SNIFFER_RULES_H
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
#include <list>
|
|
#include <string>
|
|
|
|
class BFile;
|
|
class BString;
|
|
struct entry_ref;
|
|
|
|
|
|
namespace BPrivate {
|
|
namespace Storage {
|
|
|
|
namespace Sniffer {
|
|
class Rule;
|
|
}
|
|
|
|
namespace Mime {
|
|
|
|
class MimeSniffer;
|
|
|
|
|
|
class SnifferRules {
|
|
public:
|
|
SnifferRules(MimeSniffer* mimeSniffer);
|
|
~SnifferRules();
|
|
|
|
status_t GuessMimeType(const entry_ref *ref, BString *type);
|
|
status_t GuessMimeType(const void *buffer, int32 length, BString *type);
|
|
|
|
status_t SetSnifferRule(const char *type, const char *rule);
|
|
status_t DeleteSnifferRule(const char *type);
|
|
|
|
void PrintToStream() const;
|
|
|
|
struct sniffer_rule {
|
|
std::string type; // The mime type that own the rule
|
|
std::string rule_string; // The unparsed string version of the rule
|
|
BPrivate::Storage::Sniffer::Rule *rule; // The parsed rule
|
|
|
|
sniffer_rule(BPrivate::Storage::Sniffer::Rule *rule = NULL);
|
|
~sniffer_rule();
|
|
};
|
|
private:
|
|
status_t BuildRuleList();
|
|
status_t GuessMimeType(BFile* file, const void *buffer, int32 length,
|
|
BString *type);
|
|
ssize_t MaxBytesNeeded();
|
|
status_t ProcessType(const char *type, ssize_t *bytesNeeded);
|
|
|
|
std::list<sniffer_rule> fRuleList;
|
|
|
|
private:
|
|
MimeSniffer* fMimeSniffer;
|
|
ssize_t fMaxBytesNeeded;
|
|
bool fHaveDoneFullBuild;
|
|
};
|
|
|
|
} // namespace Mime
|
|
} // namespace Storage
|
|
} // namespace BPrivate
|
|
|
|
#endif // _MIME_SNIFFER_H
|