aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/nanopb/pb_common.h
diff options
context:
space:
mode:
authorGravatar Lukacs T. Berki <lberki@google.com>2016-04-01 15:34:12 +0200
committerGravatar Lukacs T. Berki <lberki@google.com>2016-04-06 14:30:37 +0200
commit8796230139f1be08c1cf21eb5571da563abce603 (patch)
tree3e490c4cf88c0979d78bf5db0c8c25ff0942d6e0 /third_party/nanopb/pb_common.h
parent168031d21624741411ac238373cbd8544b8948df (diff)
Add nanopb to the set of third-party libraries.
This is needed for gRPC. Change-Id: I68c6b500d0e26742a25afef1754f5fcabf959ef0
Diffstat (limited to 'third_party/nanopb/pb_common.h')
-rw-r--r--third_party/nanopb/pb_common.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/third_party/nanopb/pb_common.h b/third_party/nanopb/pb_common.h
new file mode 100644
index 0000000000..60b3d37491
--- /dev/null
+++ b/third_party/nanopb/pb_common.h
@@ -0,0 +1,42 @@
+/* pb_common.h: Common support functions for pb_encode.c and pb_decode.c.
+ * These functions are rarely needed by applications directly.
+ */
+
+#ifndef PB_COMMON_H_INCLUDED
+#define PB_COMMON_H_INCLUDED
+
+#include "pb.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* Iterator for pb_field_t list */
+struct pb_field_iter_s {
+ const pb_field_t *start; /* Start of the pb_field_t array */
+ const pb_field_t *pos; /* Current position of the iterator */
+ unsigned required_field_index; /* Zero-based index that counts only the required fields */
+ void *dest_struct; /* Pointer to start of the structure */
+ void *pData; /* Pointer to current field value */
+ void *pSize; /* Pointer to count/has field */
+};
+typedef struct pb_field_iter_s pb_field_iter_t;
+
+/* Initialize the field iterator structure to beginning.
+ * Returns false if the message type is empty. */
+bool pb_field_iter_begin(pb_field_iter_t *iter, const pb_field_t *fields, void *dest_struct);
+
+/* Advance the iterator to the next field.
+ * Returns false when the iterator wraps back to the first field. */
+bool pb_field_iter_next(pb_field_iter_t *iter);
+
+/* Advance the iterator until it points at a field with the given tag.
+ * Returns false if no such field exists. */
+bool pb_field_iter_find(pb_field_iter_t *iter, uint32_t tag);
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif
+