blob: f196ddc119671656cb776f674313c9339f059bd4 [file] [log] [blame]
Joe Onorato1754d742016-11-21 17:51:35 -08001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef PROTOBUF_H
18#define PROTOBUF_H
19
20#include <stdint.h>
21
22/**
23 * Write a varint into the buffer. Return the next position to write at.
Yi Jin0a3406f2017-06-22 19:23:11 -070024 * There must be 10 bytes in the buffer. The same as
25 * EncodedBuffer.writeRawVarint32
Joe Onorato1754d742016-11-21 17:51:35 -080026 */
27uint8_t* write_raw_varint(uint8_t* buf, uint32_t val);
28
29/**
Yi Jin0a3406f2017-06-22 19:23:11 -070030 * Write a protobuf WIRE_TYPE_LENGTH_DELIMITED header. Return the next position
31 * to write at. There must be 20 bytes in the buffer.
Joe Onorato1754d742016-11-21 17:51:35 -080032 */
33uint8_t* write_length_delimited_tag_header(uint8_t* buf, uint32_t fieldId, size_t size);
34
35enum {
36 // IncidentProto.header
37 FIELD_ID_INCIDENT_HEADER = 1
38};
39
Yi Jin0a3406f2017-06-22 19:23:11 -070040#endif // PROTOBUF_H