Skip to content
Base_Packet.h 6.13 KiB
Newer Older
Valerio Pastore's avatar
Valerio Pastore committed
/*
 * PacketLib.h
 *
 *  Created on: Nov 24, 2022
 *      Author: valerio
 */

#ifndef INCLUDE_BASEPACKET_H_
#define INCLUDE_BASEPACKET_H_

#include <vector>
#include <map>
#include <string>
#include <cstring>
#include <algorithm>
Valerio Pastore's avatar
Valerio Pastore committed
#include <numeric>
Valerio Pastore's avatar
Valerio Pastore committed
#include <iostream>
#include <cmath>
Valerio Pastore's avatar
Valerio Pastore committed
#include <functional>
Valerio Pastore's avatar
Valerio Pastore committed

namespace inaf::oasbo::PacketLib {

Valerio Pastore's avatar
Valerio Pastore committed
template<typename ValueType>
class bit_iterator: public std::iterator<std::random_access_iterator_tag,
		ValueType> {
public:
	bit_iterator(const uint8_t *data, int offset, std::vector<int> fieldSizes,
			std::function<ValueType(const uint8_t *,size_t,int)> func) :
			m_data(data), m_offset(offset), m_fieldSizes(fieldSizes), m_func(func) {
	}

	bit_iterator(const bit_iterator &other) :
			m_data(other.m_data), m_offset(other.m_offset), m_fieldSizes(
					other.m_fieldSizes), m_func(other.m_func) {
	}

	bit_iterator& operator++() {
		++m_offset;
		return *this;
	}

	bit_iterator operator++(int) {
		bit_iterator temp(*this);
		++m_offset;
		return temp;
	}

	bit_iterator& operator--() {
		--m_offset;
		return *this;
	}

	bit_iterator operator--(int) {
		bit_iterator temp(*this);
		--m_offset;
		return temp;
	}

	bit_iterator operator+(int n) const {
		return bit_iterator(m_data, m_offset + n);
	}

	bit_iterator operator-(int n) const {
		return bit_iterator(m_data, m_offset - n);
	}

	int operator-(const bit_iterator &other) const {
		return m_offset - other.m_offset;
	}

	bool operator==(const bit_iterator &other) const {
		return m_data == other.m_data && m_offset == other.m_offset;
	}

	bool operator!=(const bit_iterator &other) const {
		return !(*this == other);
	}

	ValueType operator*() const {
		size_t offset = std::accumulate(m_fieldSizes.begin(), m_fieldSizes.begin() + m_offset, 0); // offset from the beginning of the byte
		int num_bits = m_fieldSizes[m_offset];
		return m_func(m_data,offset, num_bits);
	}

private:
	const uint8_t *m_data;
	int m_offset;
	std::vector<int> m_fieldSizes;
	std::function<ValueType(const uint8_t *,size_t,int)> m_func;
};

Valerio Pastore's avatar
Valerio Pastore committed
class BasePacketStructure {

public:
	virtual ~BasePacketStructure() = default;
	virtual std::vector<std::tuple<int, std::string, int>> getPacketStructure() = 0;
};

Valerio Pastore's avatar
Valerio Pastore committed
template<typename ValueType>
class BasePacketTempl {
Valerio Pastore's avatar
Valerio Pastore committed
protected:
Valerio Pastore's avatar
Valerio Pastore committed
	std::vector<int> fieldSizes;
Valerio Pastore's avatar
Valerio Pastore committed
	std::map<size_t, size_t> fieldNameToOffsetsMap;
Valerio Pastore's avatar
Valerio Pastore committed
	std::map<std::string, int> fieldNameToIndexMap;
	std::map<int, std::string> indexToFieldNameMap;
	uint8_t *binaryPointer;

	void updateFieldSizes(
			const std::vector<std::tuple<int, std::string, int>> &paramsTuple) {
		std::for_each(paramsTuple.begin(), paramsTuple.end(),
				[&](const std::tuple<int, std::string, int> &tup) {
Valerio Pastore's avatar
Valerio Pastore committed
					this->fieldSizes.push_back(std::get < 2 > (tup));
Valerio Pastore's avatar
Valerio Pastore committed

	void updateFieldOffsets(
			const std::vector<std::tuple<int, std::string, int>> &paramsTuple) {
		size_t offset = 0;
		for (size_t i = 0; i < paramsTuple.size(); i++) {
			fieldNameToOffsetsMap[i] = offset;
			offset += std::get < 2 > (paramsTuple[i]);
		}
	}
Valerio Pastore's avatar
Valerio Pastore committed
	void updateFieldNameAndIndexMap(
			const std::vector<std::tuple<int, std::string, int>> &paramsTuple) {
		std::for_each(paramsTuple.begin(), paramsTuple.end(),
				[&](const std::tuple<int, std::string, int> &tup) {
Valerio Pastore's avatar
Valerio Pastore committed
					this->fieldNameToIndexMap[std::get < 1 > (tup)] = std::get
							< 0 > (tup);
					this->indexToFieldNameMap[std::get < 0 > (tup)] = std::get
							< 1 > (tup);
Valerio Pastore's avatar
Valerio Pastore committed
	BasePacketTempl(std::vector<std::tuple<int, std::string, int>> paramsTuple) {
Valerio Pastore's avatar
Valerio Pastore committed
		this->updateFieldSizes(paramsTuple);
		this->updateFieldNameAndIndexMap(paramsTuple);
Valerio Pastore's avatar
Valerio Pastore committed
		this->updateFieldOffsets(paramsTuple);
Valerio Pastore's avatar
Valerio Pastore committed
		this->binaryPointer = new uint8_t[paramsTuple.size() * sizeof(ValueType)]; //tot number of field times the maximum bytesize of the value;
Valerio Pastore's avatar
Valerio Pastore committed
	virtual ~BasePacketTempl() = default;

	static ValueType _readValueFromBinaryAt_(const uint8_t *binaryPointer, size_t offset,
			int num_bits) {
		int bit_offset = offset % 8;
		int byte_offset = offset / 8;
		ValueType value = 0;

		for (int i = 0; i < num_bits; i++) {
			int byte_index = byte_offset + (bit_offset + i) / 8;
			int bit_index = (bit_offset + i) % 8;
			uint8_t byte = binaryPointer[byte_index];
			uint8_t bit_mask = 1 << (7 - bit_index);
			value |= (byte & bit_mask) ? (1 << (num_bits - i - 1)) : 0;
Valerio Pastore's avatar
Valerio Pastore committed
		}
		return value;
	}

Valerio Pastore's avatar
Valerio Pastore committed
	ValueType readValueFromBinaryAt(int index) {
Valerio Pastore's avatar
Valerio Pastore committed
		size_t offset = fieldNameToOffsetsMap.at(index); // offset from the beginning of the byte
Valerio Pastore's avatar
Valerio Pastore committed
		int num_bits = this->fieldSizes[index]; //remaining bits to read
		ValueType value = _readValueFromBinaryAt_(binaryPointer, offset, num_bits);
		return value;
	}

Valerio Pastore's avatar
Valerio Pastore committed
	std::vector<int> const* getFieldSizes() const {
		return &fieldSizes;
	}
	uint8_t const* getBinaryPointer() const {
		return binaryPointer;
	}
Valerio Pastore's avatar
Valerio Pastore committed

Valerio Pastore's avatar
Valerio Pastore committed
	void copyToBinaryPointer(const uint8_t *from, uint size) {
		std::memcpy(binaryPointer, from, size);
	}
	void copyToBinaryPointer(const uint8_t *from, uint size, uint offset) {
		std::memcpy(&binaryPointer[offset], from, size);
	}

	size_t indexOfField(std::string fieldName) {
		return this->fieldNameToIndexMap.at(fieldName);
	}
	std::string fieldNameOfIndex(size_t index) {
		return this->indexToFieldNameMap.at(index);
	}

Valerio Pastore's avatar
Valerio Pastore committed
	ValueType operator[](int index) {
Valerio Pastore's avatar
Valerio Pastore committed
		return readValueFromBinaryAt(index);
Valerio Pastore's avatar
Valerio Pastore committed
	ValueType operator[](std::string fieldName) {
Valerio Pastore's avatar
Valerio Pastore committed
		try{
Valerio Pastore's avatar
Valerio Pastore committed
		int index = this->fieldNameToIndexMap.at(fieldName);
		return readValueFromBinaryAt(index);
Valerio Pastore's avatar
Valerio Pastore committed
		}
		catch(const std::out_of_range& oor){
			std::cerr << "Error: no field with name '" << fieldName << "', returning 0" << std::endl;
			return 0;
		}
Valerio Pastore's avatar
Valerio Pastore committed

	bit_iterator<ValueType> begin() const {
		return bit_iterator<ValueType>(binaryPointer, 0, fieldSizes,
				&_readValueFromBinaryAt_);
	}

	bit_iterator<ValueType> end() const {
		return bit_iterator<ValueType>(binaryPointer, fieldSizes.size(), fieldSizes,
				&_readValueFromBinaryAt_);
	}

Valerio Pastore's avatar
Valerio Pastore committed
	virtual size_t getHeaderSize()=0;
	virtual size_t getPayloadSize()=0;
	virtual size_t getTailSize()=0;
	virtual size_t getMaxPacketSize()=0;
};
Valerio Pastore's avatar
Valerio Pastore committed

using valueType = size_t;
class BasePacket : public BasePacketTempl<valueType> {

protected:

public:
	BasePacket(std::vector<std::tuple<int, std::string, int>> paramsTuple) :
		BasePacketTempl<valueType>(paramsTuple) {
	}
	virtual ~BasePacket() = default;

};
Valerio Pastore's avatar
Valerio Pastore committed
}
#endif