mirror of
https://github.com/dj0abr/SSB_HighSpeed_Modem.git
synced 2024-10-31 15:37:12 -04:00
205 lines
6.6 KiB
C++
Executable File
205 lines
6.6 KiB
C++
Executable File
/*
|
|
(**************************************************************************)
|
|
(* *)
|
|
(* Schifra *)
|
|
(* Reed-Solomon Error Correcting Code Library *)
|
|
(* *)
|
|
(* Release Version 0.0.1 *)
|
|
(* http://www.schifra.com *)
|
|
(* Copyright (c) 2000-2020 Arash Partow, All Rights Reserved. *)
|
|
(* *)
|
|
(* The Schifra Reed-Solomon error correcting code library and all its *)
|
|
(* components are supplied under the terms of the General Schifra License *)
|
|
(* agreement. The contents of the Schifra Reed-Solomon error correcting *)
|
|
(* code library and all its components may not be copied or disclosed *)
|
|
(* except in accordance with the terms of that agreement. *)
|
|
(* *)
|
|
(* URL: http://www.schifra.com/license.html *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
*/
|
|
|
|
|
|
#ifndef INCLUDE_SCHIFRA_REED_SOLOMON_ENCODER_HPP
|
|
#define INCLUDE_SCHIFRA_REED_SOLOMON_ENCODER_HPP
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "schifra_galois_field.hpp"
|
|
#include "schifra_galois_field_element.hpp"
|
|
#include "schifra_galois_field_polynomial.hpp"
|
|
#include "schifra_reed_solomon_block.hpp"
|
|
#include "schifra_ecc_traits.hpp"
|
|
|
|
|
|
namespace schifra
|
|
{
|
|
|
|
namespace reed_solomon
|
|
{
|
|
|
|
template <std::size_t code_length, std::size_t fec_length, std::size_t data_length = code_length - fec_length>
|
|
class encoder
|
|
{
|
|
public:
|
|
|
|
typedef traits::reed_solomon_triat<code_length, fec_length,data_length> trait;
|
|
typedef block<code_length, fec_length> block_type;
|
|
|
|
encoder(const galois::field& gfield, const galois::field_polynomial& generator)
|
|
: encoder_valid_(code_length == gfield.size()),
|
|
field_(gfield),
|
|
generator_(generator)
|
|
{}
|
|
|
|
~encoder()
|
|
{}
|
|
|
|
inline bool encode(block_type& rsblock) const
|
|
{
|
|
if (!encoder_valid_)
|
|
{
|
|
rsblock.error = block_type::e_encoder_error0;
|
|
return false;
|
|
}
|
|
|
|
const galois::field_polynomial parities = msg_poly(rsblock) % generator_;
|
|
const galois::field_symbol mask = field_.mask();
|
|
|
|
if (parities.deg() == (fec_length - 1))
|
|
{
|
|
for (std::size_t i = 0; i < fec_length; ++i)
|
|
{
|
|
rsblock.fec(i) = parities[fec_length - 1 - i].poly() & mask;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/*
|
|
Note: Encoder should never branch here.
|
|
Possible issues to look for:
|
|
1. Generator polynomial degree is not equivelent to fec length
|
|
2. Field and code length are not consistent.
|
|
|
|
*/
|
|
rsblock.error = block_type::e_encoder_error1;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
inline bool encode(const std::string& data, block_type& rsblock) const
|
|
{
|
|
std::string::const_iterator itr = data.begin();
|
|
const galois::field_symbol mask = field_.mask();
|
|
|
|
for (std::size_t i = 0; i < data_length; ++i, ++itr)
|
|
{
|
|
rsblock.data[i] = static_cast<typename block_type::symbol_type>(*itr) & mask;
|
|
}
|
|
|
|
return encode(rsblock);
|
|
}
|
|
|
|
private:
|
|
|
|
encoder();
|
|
encoder(const encoder& enc);
|
|
encoder& operator=(const encoder& enc);
|
|
|
|
inline galois::field_polynomial msg_poly(const block_type& rsblock) const
|
|
{
|
|
galois::field_polynomial message(field_, code_length);
|
|
|
|
for (std::size_t i = fec_length; i < code_length; ++i)
|
|
{
|
|
message[i] = rsblock.data[code_length - 1 - i];
|
|
}
|
|
|
|
return message;
|
|
}
|
|
|
|
const bool encoder_valid_;
|
|
const galois::field& field_;
|
|
const galois::field_polynomial generator_;
|
|
};
|
|
|
|
template <std::size_t code_length,
|
|
std::size_t fec_length ,
|
|
std::size_t data_length = code_length - fec_length,
|
|
std::size_t natural_length = 255, // Needs to be in-sync with field size
|
|
std::size_t padding_length = natural_length - data_length - fec_length>
|
|
class shortened_encoder
|
|
{
|
|
public:
|
|
|
|
typedef traits::reed_solomon_triat<code_length,fec_length,data_length> trait;
|
|
typedef block<code_length,fec_length> block_type;
|
|
typedef block<natural_length,fec_length> short_block_t;
|
|
|
|
shortened_encoder(const galois::field& gfield,
|
|
const galois::field_polynomial& generator)
|
|
: encoder_(gfield, generator)
|
|
{}
|
|
|
|
inline bool encode(block_type& rsblock) const
|
|
{
|
|
short_block_t block;
|
|
|
|
std::fill_n(&block[0], padding_length, typename block_type::symbol_type(0));
|
|
|
|
for (std::size_t i = 0; i < data_length; ++i)
|
|
{
|
|
block.data[padding_length + i] = rsblock.data[i];
|
|
}
|
|
|
|
if (encoder_.encode(block))
|
|
{
|
|
for (std::size_t i = 0; i < fec_length; ++i)
|
|
{
|
|
rsblock.fec(i) = block.fec(i);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
else
|
|
return false;
|
|
}
|
|
|
|
inline bool encode(const std::string& data, block_type& rsblock) const
|
|
{
|
|
short_block_t block;
|
|
|
|
std::fill_n(&block[0], padding_length, typename block_type::symbol_type(0));
|
|
|
|
for (std::size_t i = 0; i < data_length; ++i)
|
|
{
|
|
block.data[padding_length + i] = data[i];
|
|
}
|
|
|
|
if (encoder_.encode(block))
|
|
{
|
|
for (std::size_t i = 0; i < code_length; ++i)
|
|
{
|
|
rsblock.data[i] = block.data[padding_length + i];
|
|
}
|
|
|
|
return true;
|
|
}
|
|
else
|
|
return false;
|
|
}
|
|
|
|
private:
|
|
|
|
const encoder<natural_length,fec_length> encoder_;
|
|
};
|
|
|
|
} // namespace reed_solomon
|
|
|
|
} // namespace schifra
|
|
|
|
#endif
|