summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--descriptor.c57
-rw-r--r--descriptor.h46
2 files changed, 103 insertions, 0 deletions
diff --git a/descriptor.c b/descriptor.c
new file mode 100644
index 0000000..4a10abe
--- /dev/null
+++ b/descriptor.c
@@ -0,0 +1,57 @@
+
+/* FileDescriptorSet */
+struct pbstream_FieldDescriptorProto pbstream_FileDescriptorSet_fields[] = {
+ {"file", 1, PBSTREAM_LABEL_OPTIONAL, PBSTREAM_TYPE_MESSAGE, "FileDescriptorProto"},
+};
+struct pbstream_DescriptorProto pbstream_FileDescriptorSet_desc = {
+ "FileDescriptorSet", .field_count=1, .field = pbstream_FileDescriptorSet_fields,
+};
+
+/* FileDescriptorProto */
+struct pbstream_FieldDescriptorProto pbstream_FileDescriptorProto_fields[] = {
+ {"message_type", 4, PBSTREAM_LABEL_REPEATED, PBSTREAM_TYPE_MESSAGE, "DescriptorProto"},
+};
+struct pbstream_DescriptorProto pbstream_FileDescriptorProto_desc = {
+ "FileDescriptorProto", .field_count=1, .field = pbstream_FileDescriptorProto_fields
+};
+
+/* DescriptorProto */
+struct pbstream_FieldDescriptorProto pbstream_DescriptorProto_fields[] = {
+ {"name", 1, PBSTREAM_LABEL_OPTIONAL, PBSTREAM_TYPE_STRING},
+ {"field", 2, PBSTREAM_LABEL_REPEATED, PBSTREAM_TYPE_MESSAGE, "FieldDescriptorProto"},
+ {"nested_type", 3, PBSTREAM_LABEL_REPEATED, PBSTREAM_TYPE_MESSAGE, "DescriptorProto"},
+ {"enum_type", 4, PBSTREAM_LABEL_REPEATED, PBSTREAM_TYPE_MESSAGE, "EnumDescriptorProto"},
+};
+struct pbstream_DescriptorProto pbstream_DescriptorProto_desc = {
+ "DescriptorProto", .field_count=4, .field = pbstream_DescriptorProto_fields
+};
+
+/* FieldDescriptorProto */
+struct pbstream_FieldDescriptorProto pbstream_FieldDescriptorProto_fields[] = {
+ {"name", 1, PBSTREAM_LABEL_OPTIONAL, PBSTREAM_TYPE_STRING},
+ {"number", 3, PBSTREAM_LABEL_OPTIONAL, PBSTREAM_TYPE_INT32},
+ {"type", 5, PBSTREAM_LABEL_OPTIONAL, PBSTREAM_TYPE_ENUM, "Type"},
+ {"type_name", 6, PBSTREAM_LABEL_OPTIONAL, PBSTREAM_TYPE_STRING},
+};
+struct pbstream_DescriptorProto pbstream_FieldDescriptorProto_desc = {
+ "FieldDescriptorProto", .field_count=4, .field = pbstream_FieldDescriptorProto_fields
+};
+
+/* EnumDescriptorProto */
+struct pbstream_FieldDescriptorProto pbstream_EnumDescriptorProto_fields[] = {
+ {"name", 1, PBSTREAM_LABEL_OPTIONAL, PBSTREAM_TYPE_STRING},
+ {"value", 2, PBSTREAM_LABEL_REPEATED, PBSTREAM_TYPE_MESSAGE, "EnumValueDescriptorProto"},
+};
+struct pbstream_DescriptorProto pbstream_EnumDescriptorProto_desc = {
+ "EnumDescriptorProto", .field_count=2, .field = pbstream_EnumDescriptorProto_fields
+};
+
+/* EnumValueDescriptorProto */
+struct pbstream_FieldDescriptorProto pbstream_EnumValueDescriptorProto_fields[] = {
+ {"name", 1, PBSTREAM_LABEL_OPTIONAL, PBSTREAM_TYPE_STRING},
+ {"number", 2, PBSTREAM_LABEL_OPTIONAL, PBSTREAM_TYPE_INT32},
+};
+struct pbstream_DescriptorProto pbstream_EnumValueDescriptorProto_desc = {
+ "EnumDescriptorProto", .field_count=4, .field = pbstream_EnumValueDescriptorProto_fields
+};
+
diff --git a/descriptor.h b/descriptor.h
new file mode 100644
index 0000000..9ac0319
--- /dev/null
+++ b/descriptor.h
@@ -0,0 +1,46 @@
+
+enum pbstream_FieldDescriptorProtoType {
+ PBSTREAM_TYPE_INT32 = 5,
+ PBSTREAM_TYPE_STRING = 9,
+ PBSTREAM_TYPE_MESSAGE = 11,
+ PBSTREAM_TYPE_ENUM = 14,
+};
+
+struct pbstream_FileDescriptorSet {
+ int file_count;
+ struct pbstream_FileDescriptorProto *file;
+};
+
+struct pbstream_FileDescriptorProto {
+ int message_type_count;
+ struct pbstream_FileDescriptorProto *message_type;
+};
+
+struct pbstream_DescriptorProto {
+ char *name;
+ int field_count;
+ struct pbstream_FieldDescriptorProto *field;
+ int nested_type_count;
+ struct pbstream_DescriptorProto *nested_type;
+ int enum_type_count;
+ struct pbstream_EnumDescriptorProto *enum_type;
+};
+
+struct pbstream_FieldDescriptorProto {
+ char *name;
+ int32_t number;
+ enum pbstream_FieldDescriptorProtoType type;
+ char *type_name;
+};
+
+struct pbstream_EnumValueDescriptorProto {
+ char *name;
+ int32_t number;
+};
+
+struct pbstream_EnumDescriptorProto {
+ char *name;
+ int value_count;
+ struct pbstream_EnumValueDescriptorProto *value;
+};
+
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback