// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include "glsl.h" #include "glslmemorypool.h" #include "glsltypes.h" #include #include #include #include namespace GLSL { class GLSL_EXPORT DiagnosticMessage { public: enum Kind { Warning, Error }; struct GLSL_EXPORT Location { int line = -1; int position = -1; int length = -1; bool operator==(const Location &rhs) const { return line == rhs.line && position == rhs.position && length == rhs.length; } }; DiagnosticMessage(); Kind kind() const; void setKind(Kind kind); bool isError() const; bool isWarning() const; QString fileName() const; void setFileName(const QString &fileName); int line() const; void setLine(int line); void setLocation(const Location &location); Location location() const; QString message() const; void setMessage(const QString &message); private: QString _fileName; QString _message; Kind _kind; Location _location; int _line; }; inline size_t qHash(const DiagnosticMessage::Location &location, size_t seed) { return ::qHashMulti(seed, location.line, location.position, location.length); } template class TypeTable { public: struct Compare { bool operator()(const Type &value, const Type &other) const { return value.isLessThan(&other); } }; const Type *intern(const Type &ty) { return &*_entries.insert(ty).first; } private: std::set _entries; }; class GLSL_EXPORT Engine { public: Engine(); ~Engine(); const QString *identifier(const QString &s); const QString *identifier(const char *s, int n); std::unordered_set identifiers() const; const QString *number(const QString &s); const QString *number(const char *s, int n); std::unordered_set numbers() const; // types const UndefinedType *undefinedType(); const VoidType *voidType(); const BoolType *boolType(); const IntType *intType(); const UIntType *uintType(); const FloatType *floatType(); const DoubleType *doubleType(); const SamplerType *samplerType(int kind); const ImageType *imageType(int kind); const VectorType *vectorType(const Type *elementType, int dimension); const MatrixType *matrixType(const Type *elementType, int columns, int rows); const ArrayType *arrayType(const Type *elementType); // symbols Namespace *newNamespace(); Struct *newStruct(Scope *scope = nullptr); Block *newBlock(Scope *scope = nullptr); Function *newFunction(Scope *scope = nullptr); Argument *newArgument(Function *function, const QString &name, const Type *type); Variable *newVariable(Scope *scope, const QString &name, const Type *type, int qualifiers = 0); InterfaceBlock *newInterfaceBlock(Scope *scope = nullptr); SubroutineType *newSubroutineType(Scope *scope); MemoryPool *pool(); bool blockDiagnosticMessages(bool block); QList diagnosticMessages() const; void clearDiagnosticMessages(); void addDiagnosticMessage(const DiagnosticMessage &m); void warning(const DiagnosticMessage::Location &location, const QString &message); void error(const DiagnosticMessage::Location &location, const QString &message); private: std::unordered_set _identifiers; std::unordered_set _numbers; TypeTable _vectorTypes; TypeTable _matrixTypes; TypeTable _arrayTypes; TypeTable _samplerTypes; TypeTable _imageTypes; MemoryPool _pool; QList _diagnosticMessages; QList _symbols; bool _blockDiagnosticMessages; }; } // namespace GLSL