Skip to content
Precode_Matrix.hpp 3.03 KiB
Newer Older
Luker's avatar
Luker committed
/*
 * Copyright (c) 2015, Luca Fulchir<luca@fulchir.it>, All rights reserved.
 *
 * This file is part of "libRaptorQ".
 *
 * libRaptorQ is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3
 * of the License, or (at your option) any later version.
 *
 * libRaptorQ is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * and a copy of the GNU Lesser General Public License
 * along with libRaptorQ.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef RAPTORQ_PRECODE_MATRIX_HPP
#define RAPTORQ_PRECODE_MATRIX_HPP

#include "common.hpp"
#include "Parameters.hpp"
#include "Rand.hpp"
#include "multiplication.hpp"
#include <Eigen/Dense>

namespace RaptorQ {
namespace Impl {

// track the bitmask of holes for received symbols.
// also make it easy to know how many non-repair symbols we are missing.
class RAPTORQ_API Bitmask
{
public:
Luker's avatar
Luker committed
	const uint16_t _max_nonrepair;
Luker's avatar
Luker committed

	Bitmask (const uint16_t symbols);

	void add (const size_t id);
	bool exists (const size_t id) const;
	uint16_t get_holes () const;
private:
	std::vector<size_t> mask;
	uint16_t holes;
};

using DenseMtx = Eigen::Matrix<Octet, Eigen::Dynamic, Eigen::Dynamic,
															Eigen::RowMajor>;

class RAPTORQ_API Precode_Matrix
{
public:
	const Parameters _params;

	Precode_Matrix(const Parameters &params)
		:_params (params)
	{}

Luker's avatar
Luker committed
	void gen (const uint16_t repair_overhead);
Luker's avatar
Luker committed

Luker's avatar
Luker committed
	DenseMtx intermediate_eigen (DenseMtx &D);
Luker's avatar
Luker committed
	DenseMtx intermediate (DenseMtx &D);
Luker's avatar
Luker committed
	DenseMtx intermediate (DenseMtx &D, const Bitmask &mask,
Luker's avatar
Luker committed
									const std::vector<uint32_t> &repair_esi);
	DenseMtx encode (const DenseMtx &C, const uint32_t iSI) const;

private:
	DenseMtx A;
	uint16_t _repair_overhead;

	// indenting here prepresent which function needs which other.
	// not standard, ask me if I care.
	void init_LDPC1 (const uint16_t S, const uint16_t B);
	void init_LDPC2 (const uint16_t skip, const uint16_t rows,
														const uint16_t cols);
	void add_identity (const uint16_t size, const uint16_t skip_row,
													const uint16_t skip_col);

	void init_HDPC ();
		DenseMtx make_MT() const;		// rfc 6330, pgg 24, used for HDPC
		DenseMtx make_GAMMA() const;	// rfc 6330, pgg 24, used for HDPC
	void add_G_ENC ();


	void decode_phase0 (const Bitmask &mask,
									const std::vector<uint32_t> &repair_esi);
	std::tuple<bool, uint16_t, uint16_t> decode_phase1 (DenseMtx &X,DenseMtx &D,
													std::vector<uint16_t> &c);
	bool decode_phase2 (DenseMtx &D, const uint16_t i,const uint16_t u);
	void decode_phase3 (const DenseMtx &X, DenseMtx &D, const uint16_t i);
	void decode_phase4 (DenseMtx &D, const uint16_t i, const uint16_t u);
	void decode_phase5 (DenseMtx &D, const uint16_t i);
};

}	// namespace Impl
}	// namespace RaptorQ

#endif