blob: 775addf50319ae89f707f8ff81265b8d7e6090b4 [file] [log] [blame]
/*
* 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.
*/
#pragma once
#include <ignite/common/ignite_error.h>
#include <ignite/network/codec.h>
#include <cstddef>
#include <vector>
namespace ignite::network {
/**
* Codec that decodes messages prefixed with int32 length.
*/
class length_prefix_codec : public codec {
public:
/** Packet header size in bytes. */
static constexpr size_t PACKET_HEADER_SIZE = 4;
/**
* Constructor.
*/
length_prefix_codec();
/**
* Encode provided data.
*
* @param data Data to encode.
* @return Encoded data. Returning null is ok.
*
* @throw ignite_error on error.
*/
data_buffer_owning encode(data_buffer_owning &data) override;
/**
* Decode provided data.
*
* @param data Data to decode.
* @return Decoded data. Returning null means data is not yet ready.
*
* @throw ignite_error on error.
*/
data_buffer_ref decode(data_buffer_ref &data) override;
private:
/**
* Consume the right amount of provided data to make packet closer to desired size.
*
* @param data Data to consume.
* @param desired Desired resulting size of packet.
*/
void consume(data_buffer_ref &data, size_t desired);
/**
* reset packet buffer.
*/
void reset_buffer();
/** Size of the current packet. */
int32_t m_packet_size;
/** Current packet. */
std::vector<std::byte> m_packet;
/** Magic bytes received. */
bool m_magic_received;
};
/** Factory for length_prefix_codec. */
typedef detail::basic_factory<codec, length_prefix_codec> length_prefix_codec_factory;
} // namespace ignite::network