aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/mimetypes/mimemagicrulematcher_p.h
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@theqtcompany.com>2015-01-27 14:30:45 +0100
committerEike Ziller <eike.ziller@theqtcompany.com>2015-02-17 12:40:41 +0000
commit15d748b4eb0a7d926665fada088d4ad3b5f6ec39 (patch)
tree6136747b59ef9a3ebd8e0e28c7e234b3b6fa7a74 /src/libs/utils/mimetypes/mimemagicrulematcher_p.h
parent0c0b0c2f45acac21444804afd72da3499cc3fd05 (diff)
Add copy of QMimeDatabase
Adapting the names and namespaces. Change-Id: I15b161dfafd5a4112b420160816ee8336e3ebdac Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
Diffstat (limited to 'src/libs/utils/mimetypes/mimemagicrulematcher_p.h')
-rw-r--r--src/libs/utils/mimetypes/mimemagicrulematcher_p.h84
1 files changed, 84 insertions, 0 deletions
diff --git a/src/libs/utils/mimetypes/mimemagicrulematcher_p.h b/src/libs/utils/mimetypes/mimemagicrulematcher_p.h
new file mode 100644
index 00000000000..b3f6fb264ce
--- /dev/null
+++ b/src/libs/utils/mimetypes/mimemagicrulematcher_p.h
@@ -0,0 +1,84 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the QtCore module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL21$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 or version 3 as published by the Free
+** Software Foundation and appearing in the file LICENSE.LGPLv21 and
+** LICENSE.LGPLv3 included in the packaging of this file. Please review the
+** following information to ensure the GNU Lesser General Public License
+** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef MIMEMAGICRULEMATCHER_P_H
+#define MIMEMAGICRULEMATCHER_P_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include "mimemagicrule_p.h"
+
+#include <QtCore/qbytearray.h>
+#include <QtCore/qlist.h>
+#include <QtCore/qstring.h>
+
+
+namespace Utils {
+namespace Internal {
+
+class MimeMagicRuleMatcher
+{
+public:
+ explicit MimeMagicRuleMatcher(const QString &mime, unsigned priority = 65535);
+
+ bool operator==(const MimeMagicRuleMatcher &other) const;
+
+ void addRule(const MimeMagicRule &rule);
+ void addRules(const QList<MimeMagicRule> &rules);
+ QList<MimeMagicRule> magicRules() const;
+
+ bool matches(const QByteArray &data) const;
+
+ unsigned priority() const;
+
+ QString mimetype() const { return m_mimetype; }
+
+private:
+ QList<MimeMagicRule> m_list;
+ unsigned m_priority;
+ QString m_mimetype;
+};
+
+} // Internal
+} // Utils
+
+#endif // MIMEMAGICRULEMATCHER_P_H