summaryrefslogtreecommitdiff
path: root/src/upb_serialize.h
blob: 9f24c92de4fca0040b24f4fc484f2d0ae4a03909 (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
39
/*
 * upb - a minimalist implementation of protocol buffers.
 *
 * Implements a upb_sink that writes protobuf data to the binary wire format.
 *
 * For messages that have any submessages, the serializer needs a buffer
 * containing the submessage sizes, so they can be properly written at the
 * front of each message.  Note that groups do *not* have this requirement.
 *
 * Copyright (c) 2009 Joshua Haberman.  See LICENSE for details.
 */

#ifndef UPB_SERIALIZE_H_
#define UPB_SERIALIZE_H_

#include "upb.h"
#include "upb_sink.h"

#ifdef __cplusplus
extern "C" {
#endif

size_t upb_get_serialized_tag_size(uint32_t fieldnum);
size_t upb_get_serialized_value_size(union upb_value v, struct upb_fielddef *f);

struct upb_serializer;
typedef struct upb_serializer upb_serializer;

upb_serializer *upb_serializer_new();
void upb_serializer_free(upb_serializer *s);

void upb_serializer_reset(upb_serializer *s, uint32_t *sizes);
upb_sink *upb_serializer_sink(upb_serializer *s);

#ifdef __cplusplus
}  /* extern "C" */
#endif

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