/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing ** ** This file is part of Qt Creator. ** ** 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 The Qt Company. For licensing terms and ** conditions see http://www.qt.io/terms-conditions. For further information ** use the contact form at http://www.qt.io/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, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #ifndef FILESEARCH_H #define FILESEARCH_H #include "utils_global.h" #include #include #include #include #include QT_FORWARD_DECLARE_CLASS(QTextCodec) namespace Utils { class QTCREATOR_UTILS_EXPORT FileIterator { public: class Item { public: Item(const QString &path, QTextCodec *codec) : filePath(path), encoding(codec) {} QString filePath; QTextCodec *encoding; }; class const_iterator { public: typedef std::forward_iterator_tag iterator_category; typedef Item value_type; typedef std::ptrdiff_t difference_type; typedef const value_type *pointer; typedef const value_type &reference; const_iterator(FileIterator *parent, Item item, int id) : m_parent(parent), m_item(item), m_index(id) {} const Item operator*() const { return m_item; } const Item *operator->() const { return &m_item; } void operator++() { m_parent->next(this); } bool operator==(const const_iterator &other) const { return m_parent == other.m_parent && m_index == other.m_index; } bool operator!=(const const_iterator &other) const { return !operator==(other); } FileIterator *m_parent; Item m_item; int m_index; // -1 == end }; virtual ~FileIterator() {} void next(const_iterator *it); const_iterator begin(); const_iterator end(); virtual int maxProgress() const = 0; virtual int currentProgress() const = 0; protected: virtual void update(int requestedIndex) = 0; virtual int currentFileCount() const = 0; virtual QString fileAt(int index) const = 0; virtual QTextCodec *codecAt(int index) const = 0; }; class QTCREATOR_UTILS_EXPORT FileListIterator : public FileIterator { public: explicit FileListIterator(const QStringList &fileList, const QList encodings); int maxProgress() const override; int currentProgress() const override; protected: void update(int requestedIndex) override; int currentFileCount() const override; QString fileAt(int index) const override; QTextCodec *codecAt(int index) const override; private: QTextCodec *encodingAt(int index) const; QStringList m_files; QList m_encodings; int m_maxIndex; }; class QTCREATOR_UTILS_EXPORT SubDirFileIterator : public FileIterator { public: SubDirFileIterator(const QStringList &directories, const QStringList &filters, QTextCodec *encoding = 0); int maxProgress() const override; int currentProgress() const override; protected: void update(int requestedIndex) override; int currentFileCount() const override; QString fileAt(int index) const override; QTextCodec *codecAt(int index) const override; private: QStringList m_filters; QTextCodec *m_encoding; QStack m_dirs; QStack m_progressValues; QStack m_processedValues; qreal m_progress; QStringList m_files; }; class QTCREATOR_UTILS_EXPORT FileSearchResult { public: FileSearchResult() {} FileSearchResult(QString fileName, int lineNumber, QString matchingLine, int matchStart, int matchLength, QStringList regexpCapturedTexts) : fileName(fileName), lineNumber(lineNumber), matchingLine(matchingLine), matchStart(matchStart), matchLength(matchLength), regexpCapturedTexts(regexpCapturedTexts) { } QString fileName; int lineNumber; QString matchingLine; int matchStart; int matchLength; QStringList regexpCapturedTexts; }; typedef QList FileSearchResultList; QTCREATOR_UTILS_EXPORT QFuture findInFiles(const QString &searchTerm, FileIterator *files, QTextDocument::FindFlags flags, QMap fileToContentsMap = QMap()); QTCREATOR_UTILS_EXPORT QFuture findInFilesRegExp(const QString &searchTerm, FileIterator *files, QTextDocument::FindFlags flags, QMap fileToContentsMap = QMap()); QTCREATOR_UTILS_EXPORT QString expandRegExpReplacement(const QString &replaceText, const QStringList &capturedTexts); QTCREATOR_UTILS_EXPORT QString matchCaseReplacement(const QString &originalText, const QString &replaceText); } // namespace Utils #endif // FILESEARCH_H