-
Notifications
You must be signed in to change notification settings - Fork 0
/
asymcode.cpp
159 lines (135 loc) · 3.29 KB
/
asymcode.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <iostream>
#include <fstream>
//#define NDEBUG
//#define BOOST_UBLAS_NDEBUG
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/io.hpp>
#define DEBUG 0
using namespace boost::numeric::ublas ;
#define WIDTH 10
#define CODEWIDTH 5// 256
matrix<int> H(1<<WIDTH,WIDTH);
matrix<int> onecount(1<<WIDTH,2);
matrix<int> CODE(1<<CODEWIDTH,WIDTH);
//genera matriz de codigo
void genMatrix()
{
int i,x;
for(i=0;i<(1<<WIDTH);i++)
for(x=0;x<WIDTH;x++)
H(i,x) = (i & (1<<x))? 1:0;
}
int hammingAsym(vector<int> V1,vector<int>V2)
{
unsigned int i,cnt;
unsigned int max=V1.size();
if (V2.size()<max) max=V2.size();
for (i=0,cnt=0;i<max;i++)
if (V1(i)!=V2(i))
cnt++;
return cnt;
}
// Genera codigo con mas ceros que unos
void genCode() {
int i,x;
// Genera matrix
genMatrix();
// calcula numero de unos por codeword
for(i=0;i<(1<<WIDTH);i++) {
int cnt=0;
for(x=0;x<WIDTH;x++)
cnt+=H(i,x);
onecount(i,0)=cnt;
onecount(i,1)=i;
}
//std::sort(onecount.data().begin(),onecount.data().end());
// elimina los que tienen demasiados unos
int count= 1<<WIDTH; // unos iniciales
int target= 1<<CODEWIDTH; //objetivo (cantidad de codewords que hay que lograr, tipicament la mitad)
for (x=WIDTH;x>0;x--)
{
for(i=0;i<(1<<WIDTH);i++) {
if (onecount(i,0)==x) {
onecount(i,0)=-1;
count--;
if (count==target)
break;
}
}
if (count==target)
break;
}
// Copiamos los bits que tienen menos ceros a la matriz CODE
for(i=0,count=0;i<(1<<WIDTH);i++) {
//printf("%d , %d\n",onecount(i,0),onecount(i,1));
if (onecount(i,0)>0) {
for(x=0;x<WIDTH;x++)
CODE(count,x)=H(i,x);
count++;
}
}
}
int main(int argc, char **argv)
{
vector<int> V1(WIDTH),V2(WIDTH);
unsigned int len,i,val,q;
unsigned char in[CODEWIDTH];
unsigned char out[WIDTH];
genCode();
if (strstr(argv[0],"asymenc"))
{ // codifica un canal
while((len=fread(in,1,CODEWIDTH,stdin))==CODEWIDTH) {
// bits->val
for (i=0,val=0;i<CODEWIDTH;i++)
val+=(in[i]-0x30)<<i;
// val->out
for (i=0;i<WIDTH;i++)
out[i]=CODE(val,i)+0x30;
if ((len=write(1,out,WIDTH)) !=WIDTH)
fprintf(stderr,"Error: write\n");
}
}
else {// decodifica un bloomfilter en un canal
int total=0,ones=0;
while (1) {
len=fread(out,1,WIDTH,stdin);
if (len!=WIDTH) //exit
{
fprintf(stderr,"relacion unos/ceros: %f\n",((float)ones)/((float)total));
return 0;
}
// Buscamos cual codigo se parece mas buscando el hamming minimo
int minhamming=999,selected=0,ham;
total+=WIDTH;
for (i=0;i<WIDTH;i++) {
V1(i)=out[i]-0x30;
if (out[i]=='1') ones++;
}
for (i=0;i<(1<<CODEWIDTH);i++) {
// Convertimos fila de la matriz en vector para llamar a hamAsym
for (q=0;q<WIDTH;q++)
V2(q)=CODE(i,q);
ham=hammingAsym(V1,V2);
if (ham<minhamming)
{
minhamming=ham;
selected=i;
}
}
if (minhamming>0) // se produjo un error
fprintf(stderr,"Error: %d bits\n",minhamming);
// Tenemos el codeword que mas se aproxima a la entrada,
// convertimos a bits y sacamos
for (i=0;i<CODEWIDTH;i++) {
in[i]=selected&(1<<i)?'1':'0';
}
if ((len=write(1,in,CODEWIDTH)) !=CODEWIDTH)
fprintf(stderr,"Error: write\n");
}
}
return 0;
}