-
Notifications
You must be signed in to change notification settings - Fork 0
/
AEBinary.h
199 lines (158 loc) · 4.14 KB
/
AEBinary.h
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
#ifndef AE_FLAG_CLASS
#define AE_FLAG_CLASS
#include <iostream>
namespace AE
{
/*typedef enum Endianess
{
Little_endian,
Big_endian,
Middle_endian
} BitsOrder;
typedef enum Bits_Order
{
Big_head,
Little_head
} Bits_Order;*/
union TestEndian
{
unsigned long total;
struct
{
unsigned char octet1;
unsigned char octet2;
unsigned char octet3;
unsigned char octet4;
} octets;
};
class Architecture
{
public:
static void Init();
/* *------------------------------------------------------*
| Fonctions pour savoir l'architecture de l'ordinateur |
*------------------------------------------------------* */
static int BitOrder();
static int ByteOrder();
private:
static int s_BitOrder;
static int s_ByteOrder;
public:
static int Little_endian;
static int Big_endian;
static int Middle_endian;
static int Big_head;
static int Little_head;
};
class BinUtils
{
public:
/* *--------------------------------------------------------------*
| Fonctions de Conversion Binaire->Décimal et Décimal->Binaire |
*--------------------------------------------------------------* */
template<class T>
static T toDecimal(std::string &binaire, int length=-1)
{
if(length == -1)
length = binaire.length();
int i = 0;
T resultat = 0; // Le résultat
for(i = 0; i < length; i++)
{
if(binaire[i] == '0')
resultat = resultat * 2 + 0;
else if(binaire[i] == '1')
resultat = resultat * 2 + 1;
}
return resultat;
}
template<class T>
static T toDecimal(char* binaire, int length=-1)
{
if(length == -1)
length = strlen(binaire);
int i = 0;
T resultat = 0; // Le résultat
for(i = 0; i < length; i++)
{
if(binaire[i] == '0')
resultat = resultat * 2 + 0;
else if(binaire[i] == '1')
resultat = resultat * 2 + 1;
}
return resultat;
}
template<class T>
static char* toBinary(T decimal)
{
char *binaire = new char[ sizeof(T) * 8 + 1 ];
binaire[ sizeof(T) * 8 ] = '\0';
for(int i = 0; i < sizeof(T) * 8; i++)
{
}
}
/*static int toInt(string binaire, int length=-1);
static int toInt(char *binaire, int length=-1);
static short toShort(string binaire, int length=-1);
static short toShort(char *binaire, int length=-1);
static char toChar(string binaire, int length=-1);
static char toChar(char *binaire, int length=-1);*/
/* ------------------------------------------------ */
/* Fonctions de reversement des bits et des bytes */
/* ------------------------------------------------ */
/** Cette fonction inverse l'ordre des bits des int, short, char etc... */
template<class T>
static T BitReverse(const T in)
{
T 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(T)*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;
}
/** Celle-ci inverse l'ordre des bytes dans les int, short, long etc... */
template<class T>
T ByteReverse(const T in)
{
T out;
const char *pin = (const char*) ∈
char *pout = (char*)(&out+1)-1;
int i;
for(i = sizeof(T); i > 0 ; --i)
{
*pout-- = *pin++;
}
return out;
}
};
class Binary
{
public:
Binary(void);
template<class T>
Binary(T);
Binary(char*);
Binary(std::string &);
template<class T>
operator T()
{
return (T)BinUtils::toDecimal(m_binary.c_str() );
}
template<class T>
T toDecimal()
{
return (T)BinUtils::toDecimal(m_binary.c_str() );
}
char *getBinary();
private:
std::string m_binary;
};
}
#endif