blob: 4b49ced5e3dc62444e004537515a439735bfaee6 [file] [log] [blame]
Joe Onorato1754d742016-11-21 17:51:35 -08001/*
Yi Jinc23fad22017-09-15 17:24:59 -07002 * Copyright (C) 2017 The Android Open Source Project
Joe Onorato1754d742016-11-21 17:51:35 -08003 *
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
Yi Jinc23fad22017-09-15 17:24:59 -070017#ifndef ANDROID_UTIL_PROTOBUF_H
18#define ANDROID_UTIL_PROTOBUF_H
Joe Onorato1754d742016-11-21 17:51:35 -080019
20#include <stdint.h>
Yi Jinc23fad22017-09-15 17:24:59 -070021
22namespace android {
23namespace util {
Yi Jin99c248f2017-08-25 18:11:58 -070024
Yi Jin974a9c22017-10-02 18:37:08 -070025const int FIELD_ID_SHIFT = 3;
26const uint8_t WIRE_TYPE_MASK = (1 << FIELD_ID_SHIFT) - 1;
27
Yi Jin99c248f2017-08-25 18:11:58 -070028const uint8_t WIRE_TYPE_VARINT = 0;
29const uint8_t WIRE_TYPE_FIXED64 = 1;
30const uint8_t WIRE_TYPE_LENGTH_DELIMITED = 2;
31const uint8_t WIRE_TYPE_FIXED32 = 5;
32
33/**
34 * Read the wire type from varint, it is the smallest 3 bits.
35 */
36uint8_t read_wire_type(uint32_t varint);
37
38/**
Yi Jin974a9c22017-10-02 18:37:08 -070039 * Read field id from varint, it is varint >> 3;
Yi Jin99c248f2017-08-25 18:11:58 -070040 */
41uint32_t read_field_id(uint32_t varint);
Joe Onorato1754d742016-11-21 17:51:35 -080042
43/**
Yi Jin974a9c22017-10-02 18:37:08 -070044 * Get the size of a varint.
Joe Onorato1754d742016-11-21 17:51:35 -080045 */
Yi Jin974a9c22017-10-02 18:37:08 -070046size_t get_varint_size(uint64_t varint);
47
48/**
49 * Write a varint into the buffer. Return the next position to write at.
50 * There must be 10 bytes in the buffer.
51 */
52uint8_t* write_raw_varint(uint8_t* buf, uint64_t val);
Joe Onorato1754d742016-11-21 17:51:35 -080053
54/**
Yi Jin0a3406f2017-06-22 19:23:11 -070055 * Write a protobuf WIRE_TYPE_LENGTH_DELIMITED header. Return the next position
56 * to write at. There must be 20 bytes in the buffer.
Joe Onorato1754d742016-11-21 17:51:35 -080057 */
58uint8_t* write_length_delimited_tag_header(uint8_t* buf, uint32_t fieldId, size_t size);
59
Yi Jinc23fad22017-09-15 17:24:59 -070060} // util
61} // android
Yi Jin99c248f2017-08-25 18:11:58 -070062
Yi Jinc23fad22017-09-15 17:24:59 -070063#endif // ANDROID_UTIL_PROTOUBUF_H