/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #define __STDC_LIMIT_MACROS #include "Decoder.hh" #include "Zigzag.hh" #include "Exception.hh" #include #include namespace rmf_avro { using boost::make_shared; class BinaryDecoder : public Decoder { StreamReader in_; const uint8_t* next_; const uint8_t* end_; void init(InputStream& ib); void decodeNull(); bool decodeBool(); int32_t decodeInt(); int64_t decodeLong(); float decodeFloat(); double decodeDouble(); void decodeString(std::string& value); void skipString(); void decodeBytes(std::vector& value); void skipBytes(); void decodeFixed(size_t n, std::vector& value); void skipFixed(size_t n); size_t decodeEnum(); size_t arrayStart(); size_t arrayNext(); size_t skipArray(); size_t mapStart(); size_t mapNext(); size_t skipMap(); size_t decodeUnionIndex(); int64_t doDecodeLong(); size_t doDecodeItemCount(); void more(); }; DecoderPtr binaryDecoder() { return make_shared(); } void BinaryDecoder::init(InputStream& is) { in_.reset(is); } void BinaryDecoder::decodeNull() { } bool BinaryDecoder::decodeBool() { uint8_t v = in_.read(); if (v == 0) { return false; } else if (v == 1) { return true; } throw Exception("Invalid value for bool"); } int32_t BinaryDecoder::decodeInt() { int64_t val = doDecodeLong(); if (val < INT32_MIN || val > INT32_MAX) { throw Exception( boost::format("Value out of range for Avro int: %1%") % val); } return static_cast(val); } int64_t BinaryDecoder::decodeLong() { return doDecodeLong(); } float BinaryDecoder::decodeFloat() { float result; in_.readBytes(reinterpret_cast(&result), sizeof(float)); return result; } double BinaryDecoder::decodeDouble() { double result; in_.readBytes(reinterpret_cast(&result), sizeof(double)); return result; } void BinaryDecoder::decodeString(std::string& value) { size_t len = decodeInt(); value.resize(len); if (len > 0) { in_.readBytes(reinterpret_cast(&value[0]), len); } } void BinaryDecoder::skipString() { size_t len = decodeInt(); in_.skipBytes(len); } void BinaryDecoder::decodeBytes(std::vector& value) { size_t len = decodeInt(); value.resize(len); if (len > 0) { in_.readBytes(&value[0], len); } } void BinaryDecoder::skipBytes() { size_t len = decodeInt(); in_.skipBytes(len); } void BinaryDecoder::decodeFixed(size_t n, std::vector& value) { value.resize(n); if (n > 0) { in_.readBytes(&value[0], n); } } void BinaryDecoder::skipFixed(size_t n) { in_.skipBytes(n); } size_t BinaryDecoder::decodeEnum() { return static_cast(doDecodeLong()); } size_t BinaryDecoder::arrayStart() { return doDecodeItemCount(); } size_t BinaryDecoder::doDecodeItemCount() { int64_t result = doDecodeLong(); if (result < 0) { doDecodeLong(); return static_cast(-result); } return static_cast(result); } size_t BinaryDecoder::arrayNext() { return static_cast(doDecodeLong()); } size_t BinaryDecoder::skipArray() { for (; ;) { int64_t r = doDecodeLong(); if (r < 0) { size_t n = static_cast(doDecodeLong()); in_.skipBytes(n); } else { return static_cast(r); } } } size_t BinaryDecoder::mapStart() { return doDecodeItemCount(); } size_t BinaryDecoder::mapNext() { return doDecodeItemCount(); } size_t BinaryDecoder::skipMap() { return skipArray(); } size_t BinaryDecoder::decodeUnionIndex() { return static_cast(doDecodeLong()); } int64_t BinaryDecoder::doDecodeLong() { uint64_t encoded = 0; int shift = 0; uint8_t u; do { if (shift >= 64) { throw Exception("Invalid Avro varint"); } u = in_.read(); encoded |= static_cast(u & 0x7f) << shift; shift += 7; } while (u & 0x80); return decodeZigzag64(encoded); } } // namespace rmf_avro