summaryrefslogtreecommitdiff
path: root/src/upb_enum.h
blob: cad240ac29cc72e25bc05aaf0a590f1793369848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * upb - a minimalist implementation of protocol buffers.
 *
 * Copyright (c) 2009 Joshua Haberman.  See LICENSE for details.
 *
 * upb_enum is a simple object that allows run-time reflection over the values
 * defined within an enum. */

#ifndef UPB_ENUM_H_
#define UPB_ENUM_H_

#include <stdint.h>
#include "upb_table.h"
#include "descriptor.h"

struct upb_enum {
  struct google_protobuf_EnumDescriptorProto *descriptor;
  struct upb_strtable nametoint;
  struct upb_inttable inttoname;
};

struct upb_enum_ntoi_entry {
  struct upb_strtable_entry e;
  uint32_t value;
};

struct upb_enum_iton_entry {
  struct upb_inttable_entry e;
  struct upb_string *string;
};

/* Initializes and frees an enum, respectively.  Caller retains ownership of
 * ed, but it must outlive e. */
void upb_enum_init(struct upb_enum *e,
                   struct google_protobuf_EnumDescriptorProto *ed);
void upb_enum_free(struct upb_enum *e);

#endif  /* UPB_ENUM_H_ */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback