-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbits_utils.cpp
274 lines (211 loc) · 6.23 KB
/
bits_utils.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#include "bits_utils.h"
namespace AE
{
void initBitsUtils()
{
BitOrder = bit_order();
ByteOrder = byte_order();
}
ENDIANESS bit_order()
{
char test = 1;
if( (test << 1) == 0)
return Big_endian;
return Little_endian;
}
ENDIANESS byte_order()
{
/*int test = 1;
char *en_char = (char*) malloc( sizeof(char)*sizeof(int) );
memcpy(en_char, &test, sizeof(int) );
if (en_char[0] != 0)
return Little_endian;
else
return Big_endian;*/
union TestEndian te;
te.total = 0xFF;
if (te.octets.octet1 == 0xFF)
{
return Little_endian;
}
else
{
return Big_endian;
}
}
void PrintBinary(int x, int d)
{
char buffer[33];
int index;
index = 0;
while(d > 0)
{
if (x & 1)
buffer[index++] = '1';
else
buffer[index++]='0';
x >>= 1;
d--;
}
while(index > 0)
{
if(index % 8 == 0 && index != 0)
Logger::Log() << " ";
// printf("%c", buffer[--index] );
Logger::Log() << buffer[--index];
}
Logger::Log() << Logger::endline;
return;
}
Uchar extract_bits_from_byte(Uchar octet, Uchar pos, Uchar nb_bits)
{
Uchar resultat;
if(nb_bits + pos > CHAR_BIT)
nb_bits = CHAR_BIT - pos;
if(BIT_ORDER == Big_endian)
octet = BitReverseUchar(octet);
resultat = ( (octet << pos));
resultat = resultat >> (CHAR_BIT - nb_bits);
if(BIT_ORDER == Big_endian)
resultat = BitReverseUchar(resultat);
return resultat;
}
int puissance(int nombre, int nombre_de_fois)
{
int resultat = nombre;
if(nombre_de_fois == 1)
return resultat;
if(nombre_de_fois == 0)
return 1;
int i;
for(i = 0; i < nombre_de_fois-1; i++)
resultat *= nombre;
return resultat;
}
int extract_bits(Uchar *buffer, Uint pos, Uchar nb_bits) // Extrait les bits depuis un buffer en indiquant la position et le nombre de bits (exemple
// Un tableau de Uchar dont la taille est 3 [00110111] [01001110] [00001110], on veut extraire 111100 qui est en position 12 et son nombre de bits est 6
{
// Nous allons commencer par copier les octets concernant le byte (ensemble de bits) qu'on veut extraire
int first_octet = pos / (CHAR_BIT * sizeof(char) ); // L'index du premier octet (position)
//cout << endl << "NB_BITS : " << (int)nb_bits << endl;
int nb_octets = ceil( (float)( ( (int)pos % (int)CHAR_BIT ) + nb_bits) / (float)CHAR_BIT ); // Le nombre d'octets
//cout << "First octet : " << first_octet << " NB octets : " << nb_octets << endl;
/* Uchar *partie = (Uchar*) malloc(sizeof(Uchar) * nb_octets);
memset(partie, (Uchar)0, nb_octets);
int i;
//printf("**********\n");
for(i = 0; i < nb_octets; i++)
{
partie[i] = buffer[first_octet+i];
//PrintBinary( partie[i], 8);
//printf("\n");
}
//printf("**********\n");
*/
int resultat = 0;
int i = 0;
if(nb_octets > sizeof(int) ) // Si on demande à extraire plus d'octets que la taille du int...
nb_octets = sizeof(int); // On met nb_octets à la taille d'un int puisque c'est le maximum
memcpy(&resultat, buffer+first_octet, nb_octets);
//printf("*****\n");
//PrintBinary(resultat, 8*4);
//printf("\n*****\n");
//PrintBinary(resultat, 8*4);
if(ByteOrder == Little_endian)
resultat = ByteReverseInt(resultat) >> ( sizeof(int) - nb_octets )*CHAR_BIT;
//cout << "FOlel ";PrintBinary(resultat, 8*4);cout << endl;
resultat = resultat >> (nb_octets*CHAR_BIT - nb_bits - pos%CHAR_BIT);
char *masque = (char*) malloc( sizeof(char)*sizeof(int)*CHAR_BIT+1 );
for(i = 0; i < sizeof(int)*CHAR_BIT; i++)
masque[i] = '0';
masque[sizeof(int)*CHAR_BIT] = '\0';
for(i = 0; i < sizeof(int)*CHAR_BIT; i++)
{
if(i >= sizeof(int)*CHAR_BIT - nb_bits)
masque[i] = '1';
else
masque[i] = '0';
}
masque[sizeof(int)*CHAR_BIT] = '\0';
//printf("%s\n\n", masque);
resultat = resultat & bin_to_dec(masque, sizeof(int)*CHAR_BIT );
//PrintBinary(resultat, 8*4);
//if(BIT_ORDER == Big_endian)
// resultat = BitReverseInt(resultat);
return resultat;
}
int bin_to_dec(char *binaire, int taille) // On donne une chaine de caractères représentant un nombre binaire pour en faire un nombre décimal
{
int i = 0;
int resultat = 0; // Le résultat
for(i = 0; i < taille; i++)
{
if(binaire[i] == '0')
resultat = resultat * 2 + 0;
else if(binaire[i] == '1')
resultat = resultat * 2 + 1;
}
return resultat;
}
//Inverse l'ordre des bits dans un unsigned char
Uchar BitReverseUchar(Uchar in)
{
Uchar out = 0;
int n = 0;
while(1)
{
out|= in&0x01 ; // Copie du bit de poids faible
n++; // Compter les bits copiés
if(n >= sizeof(Uchar)*CHAR_BIT ) // Si tous les bits sont traités...
break ; // ...arrêter
in >>= 1; // Vider vers la droite (préparer le suivant)...
out <<= 1; // ...pour remplir vers la gauche (préparer la place)
}
return out;
}
//Inverse l'ordre des octets dans un int
int ByteReverseInt(const int in)
{
int out;
const char *pin = (const char*) ∈
char *pout = (char*)(&out+1)-1 ;
int i;
for( i = sizeof(int); i > 0 ; --i)
{
*pout-- = *pin++;
}
return out;
}
//Inverse l'ordre des bits d'un int
int BitReverseInt(int in)
{
int out = 0;
int n = 0;
while(1)
{
out |= in&0x01; // Copie du bit de poids faible
n++; // Compter les bits copiés
if(n >= sizeof(int)*CHAR_BIT ) // Si tous les bits sont traités...
break; // ...arrêter
in >>= 1; // Vider vers la droite (préparer le suivant)...
out <<= 1; // ...pour remplir vers la gauche (préparer la place)
}
return out;
}
//Inverse l'ordre des bits d'un short
int BitReverseShort(short in)
{
short out = 0;
int n = 0;
while(1)
{
out |= in&0x01; // Copie du bit de poids faible
n++; // Compter les bits copiés
if(n >= sizeof(short)*CHAR_BIT ) // Si tous les bits sont traités...
break; // ...arrêter
in >>= 1; // Vider vers la droite (préparer le suivant)...
out <<= 1; // ...pour remplir vers la gauche (préparer la place)
}
return out;
}
}