Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 17 | #include <android/util/protobuf.h> |
Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 18 | |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 19 | namespace android { |
| 20 | namespace util { |
| 21 | |
| 22 | uint8_t |
| 23 | read_wire_type(uint32_t varint) |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 24 | { |
| 25 | return (uint8_t) (varint & 0x07); |
| 26 | } |
Yi Jin | 0ed9b68 | 2017-08-18 14:51:20 -0700 | [diff] [blame] | 27 | |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 28 | uint32_t |
| 29 | read_field_id(uint32_t varint) |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 30 | { |
| 31 | return varint >> 3; |
| 32 | } |
| 33 | |
| 34 | uint8_t* |
Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 35 | write_raw_varint(uint8_t* buf, uint32_t val) |
| 36 | { |
| 37 | uint8_t* p = buf; |
| 38 | while (true) { |
| 39 | if ((val & ~0x7F) == 0) { |
| 40 | *p++ = (uint8_t)val; |
| 41 | return p; |
| 42 | } else { |
| 43 | *p++ = (uint8_t)((val & 0x7F) | 0x80); |
| 44 | val >>= 7; |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 | |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 49 | uint8_t* |
Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 50 | write_length_delimited_tag_header(uint8_t* buf, uint32_t fieldId, size_t size) |
| 51 | { |
| 52 | buf = write_raw_varint(buf, (fieldId << 3) | 2); |
| 53 | buf = write_raw_varint(buf, size); |
| 54 | return buf; |
| 55 | } |
| 56 | |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 57 | } // util |
| 58 | } // android |