⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 preprocessorcontrol.h

📁 qt-x11-opensource-src-4.1.4.tar.gz源码
💻 H
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the qt3to4 porting application of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef PREPROCESSORCONTROL_H#define PREPROCESSORCONTROL_H#include "tokenengine.h"#include "tokenizer.h"#include "rpplexer.h"#include "rpptreeevaluator.h"#include "rpp.h"#include <QString>#include <QStringList>#include <QHash>class IncludeFiles{public:    IncludeFiles(const QString &basePath, const QStringList &searchPaths);    QString quoteLookup(const QString &currentFile,                        const QString &includeFile)const;    QString angleBracketLookup(const QString &includeFile) const;    QString resolve(const QString &filename) const;private:    QString searchIncludePaths(const QString &includeFile)const;    QStringList m_searchPaths;    QString m_basePath;};class PreprocessorCache: public QObject{Q_OBJECTpublic:    PreprocessorCache();    TokenEngine::TokenContainer sourceTokens(const QString &filename);    Rpp::Source *sourceTree(const QString &filename);    bool containsSourceTokens(const QString &filename);    bool containsSourceTree(const QString &filename);signals:    void error(QString type, QString text);    void readFile(QByteArray &contents, QString filename);private:    QByteArray readFile(const QString & filename) const;    Tokenizer m_tokenizer;    Rpp::RppLexer m_lexer;    Rpp::Preprocessor m_preprocessor;    TypedPool<Rpp::Item> m_memoryPool;    QHash<QString, Rpp::Source *> m_sourceTrees;    QHash<QString, TokenEngine::TokenContainer> m_sourceTokens;};class PreprocessorController: public QObject{Q_OBJECTpublic:    PreprocessorController(IncludeFiles includefiles,                           PreprocessorCache &preprocessorCache,                           QStringList preLoadFilesFilenames = QStringList());    TokenEngine::TokenSectionSequence evaluate(const QString &filename, Rpp::DefineMap *activedefinitions);public slots:    void includeSlot(::Rpp::Source *&includee, const ::Rpp::Source *includer,         const QString &filename, ::Rpp::RppTreeEvaluator::IncludeType includeType);    void readFile(QByteArray &contents, QString filename);signals:    void error(QString type, QString text);private:    IncludeFiles m_includeFiles;    Rpp::RppTreeEvaluator m_rppTreeEvaluator;    PreprocessorCache &m_preprocessorCache;    QHash<QString, QByteArray> m_preLoadFiles;};Rpp::DefineMap *defaultMacros(PreprocessorCache &preprocessorCache);class StandardOutErrorHandler : public QObject{Q_OBJECTpublic slots:    void error(QString type, QString text);};class RppPreprocessor{public:    RppPreprocessor(QString basePath, QStringList includePaths, QStringList preLoadFilesFilename = QStringList());    ~RppPreprocessor();    TokenEngine::TokenSectionSequence evaluate(const QString &filename);private:    IncludeFiles m_includeFiles;    PreprocessorCache m_cache;    Rpp::DefineMap *m_activeDefinitions;    PreprocessorController m_controller;    StandardOutErrorHandler m_errorHandler;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -