//==--- AbstractBasiceReader.h - Abstract basic value deserialization -----===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_ABSTRACTBASICREADER_H #define LLVM_CLANG_AST_ABSTRACTBASICREADER_H #include "clang/AST/DeclTemplate.h" #include <optional> namespace clang { namespace serialization { template <class T> inline T makeNullableFromOptional(const std::optional<T> &value) { … } template <class T> inline T *makePointerFromOptional(std::optional<T *> value) { … } // PropertyReader is a class concept that requires the following method: // BasicReader find(llvm::StringRef propertyName); // where BasicReader is some class conforming to the BasicReader concept. // An abstract AST-node reader is created with a PropertyReader and // performs a sequence of calls like so: // propertyReader.find(propertyName).read##TypeName() // to read the properties of the node it is deserializing. // BasicReader is a class concept that requires methods like: // ValueType read##TypeName(); // where TypeName is the name of a PropertyType node from PropertiesBase.td // and ValueType is the corresponding C++ type name. The read method may // require one or more buffer arguments. // // In addition to the concrete type names, BasicReader is expected to // implement these methods: // // template <class EnumType> // void writeEnum(T value); // // Reads an enum value from the current property. EnumType will always // be an enum type. Only necessary if the BasicReader doesn't provide // type-specific readers for all the enum types. // // template <class ValueType> // std::optional<ValueType> writeOptional(); // // Reads an optional value from the current property. // // template <class ValueType> // ArrayRef<ValueType> readArray(llvm::SmallVectorImpl<ValueType> &buffer); // // Reads an array of values from the current property. // // PropertyReader readObject(); // // Reads an object from the current property; the returned property // reader will be subjected to a sequence of property reads and then // discarded before any other properties are reader from the "outer" // property reader (which need not be the same type). The sub-reader // will be used as if with the following code: // // { // auto &&widget = W.find("widget").readObject(); // auto kind = widget.find("kind").readWidgetKind(); // auto declaration = widget.find("declaration").readDeclRef(); // return Widget(kind, declaration); // } // ReadDispatcher does type-based forwarding to one of the read methods // on the BasicReader passed in: // // template <class ValueType> // struct ReadDispatcher { // template <class BasicReader, class... BufferTypes> // static ValueType read(BasicReader &R, BufferTypes &&...); // }; // BasicReaderBase provides convenience implementations of the read methods // for EnumPropertyType and SubclassPropertyType types that just defer to // the "underlying" implementations (for UInt32 and the base class, // respectively). // // template <class Impl> // class BasicReaderBase { // protected: // BasicReaderBase(ASTContext &ctx); // Impl &asImpl(); // public: // ASTContext &getASTContext(); // ... // }; // The actual classes are auto-generated; see ClangASTPropertiesEmitter.cpp. #include "clang/AST/AbstractBasicReader.inc" /// DataStreamBasicReader provides convenience implementations for many /// BasicReader methods based on the assumption that the /// ultimate reader implementation is based on a variable-length stream /// of unstructured data (like Clang's module files). It is designed /// to pair with DataStreamBasicWriter. /// /// This class can also act as a PropertyReader, implementing find("...") /// by simply forwarding to itself. /// /// Unimplemented methods: /// readBool /// readUInt32 /// readUInt64 /// readIdentifier /// readSelector /// readSourceLocation /// readQualType /// readStmtRef /// readDeclRef template <class Impl> class DataStreamBasicReader : public BasicReaderBase<Impl> { … }; } // end namespace serialization } // end namespace clang #endif