Files
qt-creator/src/libs/cplusplus/CppDocument.h

461 lines
14 KiB
C
Raw Normal View History

/****************************************************************************
2008-12-02 12:01:29 +01:00
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator.
2008-12-02 12:01:29 +01:00
**
** 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
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
2008-12-02 14:09:21 +01:00
2010-05-28 17:17:11 +02:00
#ifndef CPLUSPLUS_CPPDOCUMENT_H
#define CPLUSPLUS_CPPDOCUMENT_H
2008-12-02 12:01:29 +01:00
#include "Macro.h"
2008-12-08 12:59:33 +01:00
#include <cplusplus/CPlusPlusForwardDeclarations.h>
#include <cplusplus/PreprocessorClient.h>
#include <cplusplus/DependencyTable.h>
#include <utils/fileutils.h>
#include <QSharedPointer>
#include <QDateTime>
#include <QHash>
#include <QFileInfo>
#include <QAtomicInt>
2008-12-02 12:01:29 +01:00
namespace CPlusPlus {
2008-12-08 12:59:33 +01:00
class Macro;
class MacroArgumentReference;
class LookupContext;
2008-12-08 12:59:33 +01:00
2008-12-02 12:01:29 +01:00
class CPLUSPLUS_EXPORT Document
{
Document(const Document &other);
void operator =(const Document &other);
Document(const QString &fileName);
public:
typedef QSharedPointer<Document> Ptr;
public:
~Document();
unsigned revision() const;
void setRevision(unsigned revision);
unsigned editorRevision() const;
void setEditorRevision(unsigned editorRevision);
QDateTime lastModified() const;
void setLastModified(const QDateTime &lastModified);
2008-12-02 12:01:29 +01:00
QString fileName() const;
2008-12-08 12:59:33 +01:00
void appendMacro(const Macro &macro);
void addMacroUse(const Macro &macro,
unsigned bytesOffset, unsigned bytesLength,
unsigned utf16charsOffset, unsigned utf16charLength,
unsigned beginLine, const QVector<MacroArgumentReference> &range);
void addUndefinedMacroUse(const QByteArray &name,
unsigned bytesOffset, unsigned utf16charsOffset);
2008-12-02 12:01:29 +01:00
Control *control() const;
TranslationUnit *translationUnit() const;
bool skipFunctionBody() const;
void setSkipFunctionBody(bool skipFunctionBody);
unsigned globalSymbolCount() const;
Symbol *globalSymbolAt(unsigned index) const;
2008-12-02 12:01:29 +01:00
Namespace *globalNamespace() const;
void setGlobalNamespace(Namespace *globalNamespace); // ### internal
2008-12-02 12:01:29 +01:00
2008-12-08 12:59:33 +01:00
QList<Macro> definedMacros() const
{ return _definedMacros; }
QString functionAt(int line, int column, int *lineOpeningDeclaratorParenthesis = 0,
int *lineClosingBrace = 0) const;
Symbol *lastVisibleSymbolAt(unsigned line, unsigned column = 0) const;
Scope *scopeAt(unsigned line, unsigned column = 0);
2008-12-02 12:01:29 +01:00
QByteArray utf8Source() const;
void setUtf8Source(const QByteArray &utf8Source);
2009-06-05 14:29:57 +02:00
QByteArray fingerprint() const { return m_fingerprint; }
void setFingerprint(const QByteArray &fingerprint)
{ m_fingerprint = fingerprint; }
LanguageFeatures languageFeatures() const;
void setLanguageFeatures(LanguageFeatures features);
void startSkippingBlocks(unsigned utf16charsOffset);
void stopSkippingBlocks(unsigned utf16charsOffset);
2008-12-02 12:01:29 +01:00
enum ParseMode { // ### keep in sync with CPlusPlus::TranslationUnit
ParseTranlationUnit,
ParseDeclaration,
ParseExpression,
2009-03-30 15:07:30 +02:00
ParseDeclarator,
ParseStatement
};
bool isTokenized() const;
void tokenize();
bool isParsed() const;
bool parse(ParseMode mode = ParseTranlationUnit);
2009-06-26 09:11:14 +02:00
enum CheckMode {
Unchecked,
2009-06-26 09:11:14 +02:00
FullCheck,
FastCheck
};
void check(CheckMode mode = FullCheck);
2008-12-02 12:01:29 +01:00
static Ptr create(const QString &fileName);
class CPLUSPLUS_EXPORT DiagnosticMessage
2008-12-02 12:01:29 +01:00
{
public:
enum Level {
Warning,
Error,
Fatal
};
public:
DiagnosticMessage(int level, const QString &fileName,
unsigned line, unsigned column,
const QString &text,
unsigned length = 0)
2008-12-02 12:01:29 +01:00
: _level(level),
_line(line),
_fileName(fileName),
2008-12-02 12:01:29 +01:00
_column(column),
_length(length),
2008-12-02 12:01:29 +01:00
_text(text)
{ }
int level() const
{ return _level; }
bool isWarning() const
{ return _level == Warning; }
bool isError() const
{ return _level == Error; }
bool isFatal() const
{ return _level == Fatal; }
QString fileName() const
{ return _fileName; }
2008-12-18 10:51:25 +01:00
unsigned line() const
2008-12-02 12:01:29 +01:00
{ return _line; }
2008-12-18 10:51:25 +01:00
unsigned column() const
2008-12-02 12:01:29 +01:00
{ return _column; }
unsigned length() const
{ return _length; }
2008-12-02 12:01:29 +01:00
QString text() const
{ return _text; }
bool operator==(const DiagnosticMessage &other) const;
bool operator!=(const DiagnosticMessage &other) const;
2008-12-02 12:01:29 +01:00
private:
int _level;
2008-12-18 10:51:25 +01:00
unsigned _line;
QString _fileName;
2008-12-18 10:51:25 +01:00
unsigned _column;
unsigned _length;
2008-12-02 12:01:29 +01:00
QString _text;
};
void addDiagnosticMessage(const DiagnosticMessage &d)
{ _diagnosticMessages.append(d); }
void clearDiagnosticMessages()
{ _diagnosticMessages.clear(); }
2008-12-02 12:01:29 +01:00
QList<DiagnosticMessage> diagnosticMessages() const
{ return _diagnosticMessages; }
class Block
{
unsigned _bytesBegin;
unsigned _bytesEnd;
unsigned _utf16charsBegin;
unsigned _utf16charsEnd;
2008-12-02 12:01:29 +01:00
public:
inline Block(unsigned bytesBegin = 0, unsigned bytesEnd = 0,
unsigned utf16charsBegin = 0, unsigned utf16charsEnd = 0)
: _bytesBegin(bytesBegin),
_bytesEnd(bytesEnd),
_utf16charsBegin(utf16charsBegin),
_utf16charsEnd(utf16charsEnd)
{}
inline unsigned bytesBegin() const
{ return _bytesBegin; }
inline unsigned bytesEnd() const
{ return _bytesEnd; }
2008-12-02 12:01:29 +01:00
inline unsigned utf16charsBegin() const
{ return _utf16charsBegin; }
2008-12-02 12:01:29 +01:00
inline unsigned utf16charsEnd() const
{ return _utf16charsEnd; }
2008-12-09 15:23:47 +01:00
bool containsUtf16charOffset(unsigned utf16charOffset) const
{ return utf16charOffset >= _utf16charsBegin && utf16charOffset < _utf16charsEnd; }
2008-12-09 15:23:47 +01:00
};
class Include {
QString _resolvedFileName;
QString _unresolvedFileName;
unsigned _line;
Client::IncludeType _type;
public:
Include(const QString &unresolvedFileName, const QString &resolvedFileName, unsigned line,
Client::IncludeType type)
: _resolvedFileName(resolvedFileName)
, _unresolvedFileName(unresolvedFileName)
, _line(line)
, _type(type)
{ }
QString resolvedFileName() const
{ return _resolvedFileName; }
QString unresolvedFileName() const
{ return _unresolvedFileName; }
unsigned line() const
{ return _line; }
Client::IncludeType type() const
{ return _type; }
};
2008-12-09 15:23:47 +01:00
class MacroUse: public Block {
Macro _macro;
QVector<Block> _arguments;
unsigned _beginLine;
2008-12-09 15:23:47 +01:00
public:
inline MacroUse(const Macro &macro,
unsigned bytesBegin, unsigned bytesEnd,
unsigned utf16charsBegin, unsigned utf16charsEnd,
unsigned beginLine)
: Block(bytesBegin, bytesEnd, utf16charsBegin, utf16charsEnd),
_macro(macro),
_beginLine(beginLine)
2008-12-09 15:23:47 +01:00
{ }
const Macro &macro() const
{ return _macro; }
bool isFunctionLike() const
{ return _macro.isFunctionLike(); }
QVector<Block> arguments() const
{ return _arguments; }
unsigned beginLine() const
{ return _beginLine; }
private:
void setArguments(const QVector<Block> &arguments)
{ _arguments = arguments; }
void addArgument(const Block &block)
{ _arguments.append(block); }
friend class Document;
};
class UndefinedMacroUse: public Block {
QByteArray _name;
public:
inline UndefinedMacroUse(
const QByteArray &name,
unsigned bytesBegin,
unsigned utf16charsBegin)
: Block(bytesBegin,
bytesBegin + name.length(),
utf16charsBegin,
utf16charsBegin + QString::fromUtf8(name, name.size()).size()),
_name(name)
{ }
QByteArray name() const
{
return _name;
}
2008-12-02 12:01:29 +01:00
};
QStringList includedFiles() const;
void addIncludeFile(const Include &include);
QList<Include> resolvedIncludes() const
{ return _resolvedIncludes; }
QList<Include> unresolvedIncludes() const
{ return _unresolvedIncludes; }
2008-12-02 12:01:29 +01:00
QList<Block> skippedBlocks() const
{ return _skippedBlocks; }
2008-12-09 15:23:47 +01:00
QList<MacroUse> macroUses() const
{ return _macroUses; }
QList<UndefinedMacroUse> undefinedMacroUses() const
{ return _undefinedMacroUses; }
void setIncludeGuardMacroName(const QByteArray &includeGuardMacroName)
{ _includeGuardMacroName = includeGuardMacroName; }
QByteArray includeGuardMacroName() const
{ return _includeGuardMacroName; }
const Macro *findMacroDefinitionAt(unsigned line) const;
const MacroUse *findMacroUseAt(unsigned utf16charsOffset) const;
const UndefinedMacroUse *findUndefinedMacroUseAt(unsigned utf16charsOffset) const;
void keepSourceAndAST();
void releaseSourceAndAST();
CheckMode checkMode() const
{ return static_cast<CheckMode>(_checkMode); }
2008-12-02 12:01:29 +01:00
private:
QString _fileName;
Control *_control;
TranslationUnit *_translationUnit;
Namespace *_globalNamespace;
/// All messages generated during lexical/syntactic/semantic analysis.
2008-12-02 12:01:29 +01:00
QList<DiagnosticMessage> _diagnosticMessages;
QList<Include> _resolvedIncludes;
QList<Include> _unresolvedIncludes;
2008-12-08 12:59:33 +01:00
QList<Macro> _definedMacros;
2008-12-02 12:01:29 +01:00
QList<Block> _skippedBlocks;
2008-12-09 15:23:47 +01:00
QList<MacroUse> _macroUses;
QList<UndefinedMacroUse> _undefinedMacroUses;
/// the macro name of the include guard, if there is one.
QByteArray _includeGuardMacroName;
QByteArray m_fingerprint;
QByteArray _source;
QDateTime _lastModified;
QAtomicInt _keepSourceAndASTCount;
unsigned _revision;
unsigned _editorRevision;
quint8 _checkMode;
friend class Snapshot;
2008-12-02 12:01:29 +01:00
};
class CPLUSPLUS_EXPORT Snapshot
{
typedef QHash<Utils::FileName, Document::Ptr> Base;
public:
Snapshot();
~Snapshot();
typedef Base::const_iterator iterator;
typedef Base::const_iterator const_iterator;
typedef QPair<Document::Ptr, unsigned> IncludeLocation;
int size() const; // ### remove
bool isEmpty() const;
void insert(Document::Ptr doc); // ### remove
void remove(const Utils::FileName &fileName); // ### remove
void remove(const QString &fileName)
{ remove(Utils::FileName::fromString(fileName)); }
const_iterator begin() const { return _documents.begin(); }
const_iterator end() const { return _documents.end(); }
bool contains(const Utils::FileName &fileName) const;
bool contains(const QString &fileName) const
{ return contains(Utils::FileName::fromString(fileName)); }
Document::Ptr document(const Utils::FileName &fileName) const;
Document::Ptr document(const QString &fileName) const
{ return document(Utils::FileName::fromString(fileName)); }
const_iterator find(const Utils::FileName &fileName) const;
const_iterator find(const QString &fileName) const
{ return find(Utils::FileName::fromString(fileName)); }
2009-07-10 11:59:01 +02:00
Snapshot simplified(Document::Ptr doc) const;
Document::Ptr preprocessedDocument(const QByteArray &source,
const Utils::FileName &fileName) const;
Document::Ptr preprocessedDocument(const QByteArray &source,
const QString &fileName) const
{ return preprocessedDocument(source, Utils::FileName::fromString(fileName)); }
Document::Ptr documentFromSource(const QByteArray &preprocessedDocument,
const QString &fileName) const;
QSet<QString> allIncludesForDocument(const QString &fileName) const;
QList<IncludeLocation> includeLocationsOfDocument(const QString &fileName) const;
Utils::FileNameList filesDependingOn(const Utils::FileName &fileName) const;
Utils::FileNameList filesDependingOn(const QString &fileName) const
{ return filesDependingOn(Utils::FileName::fromString(fileName)); }
void updateDependencyTable() const;
bool operator==(const Snapshot &other) const;
2009-07-10 11:59:01 +02:00
private:
void allIncludesForDocument_helper(const QString &fileName, QSet<QString> &result) const;
mutable DependencyTable m_deps;
Base _documents;
};
} // namespace CPlusPlus
2008-12-02 12:01:29 +01:00
2010-05-28 17:17:11 +02:00
#endif // CPLUSPLUS_CPPDOCUMENT_H