blob: 1457c48f7ed6793cd4bd30709bd235755478133a [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ZIRCON_SYSTEM_HOST_BANJO_INCLUDE_BANJO_CODED_AST_H_
#define ZIRCON_SYSTEM_HOST_BANJO_INCLUDE_BANJO_CODED_AST_H_
#include <stdint.h>
#include <memory>
#include <string>
#include <vector>
#include "types.h"
// The types in this file define structures that much more closely map
// the coding tables (i.e., banjo_type_t) for (de)serialization,
// defined at ulib/banjo/include/coding.h and so on.
// In particular, compared to the flat_ast version:
// - All files in the library are resolved together
// - Names have been unnested and fully qualified
// - All data structure sizes and layouts have been computed
namespace banjo {
namespace coded {
enum struct CodingNeeded {
// There is interesting coding information about the location of
// pointers, allocations, or handles for this type.
kNeeded,
// There is no coding information needed for this type. That is,
// it contains no pointers or handles, and is just primitive
// types, or fixed size aggregates thereof.
kNotNeeded,
};
struct Type;
struct StructField {
StructField(const Type* type, uint32_t offset)
: type(type), offset(offset) {}
const Type* type;
const uint32_t offset;
};
struct Type {
virtual ~Type() = default;
enum struct Kind {
kPrimitive,
kHandle,
kInterfaceHandle,
kRequestHandle,
kStruct,
kStructPointer,
kUnion,
kUnionPointer,
kMessage,
kInterface,
kArray,
kString,
kVector,
};
Type(Kind kind, std::string coded_name, uint32_t size, CodingNeeded coding_needed)
: kind(kind), coded_name(std::move(coded_name)), size(size), coding_needed(coding_needed) {}
const Kind kind;
const std::string coded_name;
uint32_t size;
const CodingNeeded coding_needed;
};
struct PrimitiveType : public Type {
PrimitiveType(std::string name, types::PrimitiveSubtype subtype, uint32_t size)
: Type(Kind::kPrimitive, std::move(name), size, CodingNeeded::kNotNeeded),
subtype(subtype) {}
const types::PrimitiveSubtype subtype;
};
struct HandleType : public Type {
HandleType(std::string name, types::HandleSubtype subtype, types::Nullability nullability)
: Type(Kind::kHandle, std::move(name), 4u, CodingNeeded::kNeeded), subtype(subtype),
nullability(nullability) {}
const types::HandleSubtype subtype;
const types::Nullability nullability;
};
struct InterfaceHandleType : public Type {
InterfaceHandleType(std::string name, types::Nullability nullability)
: Type(Kind::kInterfaceHandle, std::move(name), 4u, CodingNeeded::kNeeded),
nullability(nullability) {}
const types::Nullability nullability;
};
struct RequestHandleType : public Type {
RequestHandleType(std::string name, types::Nullability nullability)
: Type(Kind::kRequestHandle, std::move(name), 4u, CodingNeeded::kNeeded),
nullability(nullability) {}
const types::Nullability nullability;
};
struct StructType : public Type {
StructType(std::string name, std::vector<StructField> fields, uint32_t size, std::string pointer_name,
std::string qname)
: Type(Kind::kStruct, std::move(name), size, CodingNeeded::kNeeded),
fields(std::move(fields)), pointer_name(std::move(pointer_name)),
qname(std::move(qname)) {}
std::vector<StructField> fields;
std::string pointer_name;
std::string qname;
bool referenced_by_pointer = false;
};
struct StructPointerType : public Type {
StructPointerType(std::string name, const StructType* struct_type)
: Type(Kind::kStructPointer, std::move(name), 8u, CodingNeeded::kNeeded),
struct_type(struct_type) {}
const StructType* struct_type;
};
struct UnionType : public Type {
UnionType(std::string name, std::vector<const Type*> types, uint32_t data_offset, uint32_t size,
std::string pointer_name, std::string qname)
: Type(Kind::kUnion, std::move(name), size, CodingNeeded::kNeeded), types(std::move(types)),
data_offset(data_offset), pointer_name(std::move(pointer_name)), qname(std::move(qname)) {
}
std::vector<const Type*> types;
const uint32_t data_offset;
std::string pointer_name;
std::string qname;
bool referenced_by_pointer = false;
};
struct UnionPointerType : public Type {
UnionPointerType(std::string name, const UnionType* union_type)
: Type(Kind::kUnionPointer, std::move(name), 8u, CodingNeeded::kNeeded),
union_type(union_type) {}
const UnionType* union_type;
};
struct MessageType : public Type {
MessageType(std::string name, std::vector<StructField> fields, uint32_t size, std::string qname)
: Type(Kind::kMessage, std::move(name), size, CodingNeeded::kNeeded),
fields(std::move(fields)), qname(std::move(qname)) {}
std::vector<StructField> fields;
std::string qname;
};
struct InterfaceType : public Type {
InterfaceType(std::vector<std::unique_ptr<MessageType>> messages)
: Type(Kind::kInterface, "", 0, CodingNeeded::kNotNeeded), messages(std::move(messages)) {}
std::vector<std::unique_ptr<MessageType>> messages;
};
struct ArrayType : public Type {
ArrayType(std::string name, const Type* element_type, uint32_t array_size,
uint32_t element_size)
: Type(Kind::kArray, std::move(name), array_size, element_type->coding_needed),
element_type(element_type), element_size(element_size) {}
const Type* const element_type;
const uint32_t element_size;
};
struct StringType : public Type {
StringType(std::string name, uint32_t max_size, types::Nullability nullability)
: Type(Kind::kString, std::move(name), 16u, CodingNeeded::kNeeded), max_size(max_size),
nullability(nullability) {}
const uint32_t max_size;
const types::Nullability nullability;
};
struct VectorType : public Type {
VectorType(std::string name, const Type* element_type, uint32_t max_count,
uint32_t element_size, types::Nullability nullability)
: Type(Kind::kVector, std::move(name), 16u, CodingNeeded::kNeeded),
element_type(element_type), max_count(max_count), element_size(element_size),
nullability(nullability) {}
const Type* const element_type;
const uint32_t max_count;
const uint32_t element_size;
const types::Nullability nullability;
};
} // namespace coded
} // namespace banjo
#endif // ZIRCON_SYSTEM_HOST_BANJO_INCLUDE_BANJO_CODED_AST_H_