4 |
|
// |
5 |
|
// $Id$ |
6 |
|
|
7 |
< |
#include <iostream> |
8 |
< |
#include <string> |
9 |
< |
#include <vector> |
7 |
> |
#include "Hexadecimal.hpp" |
8 |
|
|
9 |
< |
#include <foreach.hpp> |
9 |
> |
#include <menes-app/simple.hpp> |
10 |
|
|
11 |
< |
/*template <typename Type> |
14 |
< |
std::string binary(const Type& type) |
11 |
> |
int Main(const app::Options& options) |
12 |
|
{ |
13 |
< |
std::ostringstream string; |
13 |
> |
Represent represent; |
14 |
|
|
15 |
< |
_rforu (index, 0, 8 * sizeof (type)) |
19 |
< |
{ |
20 |
< |
bool bit(1 & type >> index); |
21 |
< |
|
22 |
< |
string << bit; |
23 |
< |
} |
24 |
< |
|
25 |
< |
return string.str(); |
26 |
< |
}*/ |
27 |
< |
|
28 |
< |
class Binary |
29 |
< |
{ |
30 |
< |
private: |
31 |
< |
std::vector<char> bytes; |
32 |
< |
public: |
33 |
< |
Binary(const std::string& string); |
34 |
< |
template <typename Type> |
35 |
< |
Binary(const Type& type); |
36 |
< |
operator std::string() const; |
37 |
< |
}; |
38 |
< |
|
39 |
< |
Binary::Binary(const std::string& string) |
40 |
< |
{ |
41 |
< |
throw; |
42 |
< |
} |
43 |
< |
|
44 |
< |
template <typename Type> |
45 |
< |
Binary::Binary(const Type& type) : bytes(sizeof (type)) |
46 |
< |
{ |
47 |
< |
char* type_(reinterpret_cast<char*>(const_cast<Type*>(&type))); |
48 |
< |
|
49 |
< |
_mforeach (std::vector<char>, byte, bytes) *byte = *type_++; |
15 |
> |
return 0; |
16 |
|
} |
17 |
|
|
18 |
< |
Binary::operator std::string() const |
18 |
> |
Represent::Represent() |
19 |
|
{ |
20 |
< |
std::string string; |
20 |
> |
ext::String string("1001"); |
21 |
> |
Binary sign(string, true), unsign(string, false); |
22 |
|
|
23 |
< |
_rforeach (std::vector<char>, byte, bytes) |
57 |
< |
{ |
58 |
< |
_rfor (char, bit, 0, 8) |
59 |
< |
{ |
60 |
< |
string += 1 & *byte >> bit ? '1' : '0'; |
61 |
< |
} |
62 |
< |
} |
23 |
> |
api::Cerr << string << ios::NewLine << ext::String(sign) << ios::NewLine << ext::String(unsign) << ios::NewLine; |
24 |
|
|
25 |
< |
return string; |
65 |
< |
} |
25 |
> |
string = "deadbeef"; |
26 |
|
|
27 |
< |
std::ostream& operator<<(std::ostream& out, const Binary& binary) |
68 |
< |
{ |
69 |
< |
return out << std::string(binary); |
70 |
< |
} |
27 |
> |
Hexadecimal test(string, false); |
28 |
|
|
29 |
< |
int main(int argc, char* argv[]) |
73 |
< |
{ |
74 |
< |
std::string hello("Hello, World!"); |
29 |
> |
api::Cerr << string << ios::NewLine << ext::String(test) << ios::NewLine; |
30 |
|
|
31 |
< |
_foreach (std::string, atom, hello) |
77 |
< |
{ |
78 |
< |
std::cout << Binary(*atom) << " = " << *atom << std::endl; |
79 |
< |
} |
80 |
< |
|
81 |
< |
_fori (index, -10, 11) |
82 |
< |
{ |
83 |
< |
std::cout << Binary(index) << " = " << index << std::endl; |
84 |
< |
} |
85 |
< |
|
86 |
< |
_foru (index, -10, 11) |
87 |
< |
{ |
88 |
< |
std::cout << Binary(index) << " = " << index << std::endl; |
89 |
< |
} |
90 |
< |
|
91 |
< |
for (float index(-1.0); index < 1.0; index += 0.1) |
92 |
< |
{ |
93 |
< |
std::cout << Binary(index) << " = " << index << std::endl; |
94 |
< |
} |
95 |
< |
|
96 |
< |
for (double index(-1.0); index < 1.0; index += 0.1) |
97 |
< |
{ |
98 |
< |
std::cout << Binary(index) << " = " << index << std::endl; |
99 |
< |
} |
31 |
> |
Hexadecimal sign_(sign), unsign_(unsign); |
32 |
|
|
33 |
< |
return 0; |
33 |
> |
api::Cerr << ext::String(sign_) << ios::NewLine << ext::String(unsign_) << ios::NewLine; |
34 |
|
} |