ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/Represent/Represent.cpp
(Generate patch)

Comparing Represent/represent.cpp (file contents):
Revision 366 by douglas, 2004-12-21T03:22:38-08:00 vs.
Revision 373 by douglas, 2004-12-22T17:27:28-08:00

# Line 4 | Line 4
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 < class Binary
11 > int Main(const app::Options& options)
12   {
13 < private:
16 <        std::vector<char> bytes;
17 < public:
18 <        Binary(std::string& string, bool signed_ = false);
19 <        template <typename Type>
20 <        Binary(const Type& type);
21 <        template <typename Type>
22 <        Type convert(bool signed_ = false);
23 <        operator std::string() const;
24 < };
13 >        Represent represent;
14  
15 < Binary::Binary(std::string& string, bool signed_) : bytes(string.size() / 8, 0)
27 < {
28 <        std::string::size_type off(string.size() % 8);
29 <
30 <        if (off != 0)
31 <        {
32 <                bytes.push_back(0);
33 <                string.insert(0, 8 - off, signed_ && string[0] == '1' ? '1' : '0');
34 <        }
35 <
36 <        std::string::size_type index(0);
37 <
38 <        _rmforeach (std::vector<char>, byte, bytes) _rfor (char, bit, 0, 8) *byte |= (string[index++] == '1') << bit;
39 < }
40 <
41 < template <typename Type>
42 < Binary::Binary(const Type& type) : bytes(sizeof (type))
43 < {
44 <        char* type_(reinterpret_cast<char*>(const_cast<Type*>(&type)));
45 <
46 <        _mforeach (std::vector<char>, byte, bytes) *byte = *type_++;
47 < }
48 <
49 < template <typename Type>
50 < Type Binary::convert(bool signed_)
51 < {
52 <        Type type;
53 <
54 <        if (sizeof (type) != bytes.size()) bytes.resize(sizeof (type), signed_ && bytes.back() >> 7 ? ~0 : 0);
55 <
56 <        char* type_(reinterpret_cast<char*>(&type));
57 <
58 <        _foreach (std::vector<char>, byte, bytes) *type_++ = *byte;
59 <
60 <        return type;
15 >        return 0;
16   }
17  
18 < Binary::operator std::string() const
18 > Represent::Represent()
19   {
20 <        std::string string;
20 >        api::Cerr << Binary("Hello, World!") << " = " << Hexadecimal("Hello, World") << " = Hello, World!" << ios::NewLine;
21  
22 <        _rforeach (std::vector<char>, byte, bytes) _rfor (char, bit, 0, 8) string +=1 & *byte >> bit ? '1' : '0';
22 >        std::string hello("Hello, World!");
23  
24 <        return string;
70 < }
24 >        api::Cerr << Binary(hello) << " = " << Hexadecimal(hello) << " = " << ext::String(hello) << ios::NewLine;
25  
26 < inline std::ostream& operator<<(std::ostream& out, const Binary& binary)
73 < {
74 <        return out << std::string(binary);
75 < }
26 >        _sforeach (std::string, atom, hello) api::Cerr << Binary(*atom) << " = " << Hexadecimal(*atom) << " = " << ext::String(atom, 1) << ios::NewLine;
27  
28 < int main(int argc, char* argv[])
78 < {
79 <        std::string hello("Hello, World!");
28 >        ext::String hello_(hello);
29  
30 <        _foreach (std::string, atom, hello)
82 <        {
83 <                std::cout << Binary(*atom) << " = " << *atom << std::endl;
84 <        }
85 <
86 <        _fori (index, -10, 11)
87 <        {
88 <                std::cout << Binary(index) << " = " << index << std::endl;
89 <        }
90 <
91 <        _foru (index, -10, 11)
92 <        {
93 <                std::cout << Binary(index) << " = " << index << std::endl;
94 <        }
95 <
96 <        for (float index(-1.0); index < 1.0; index += 0.1)
97 <        {
98 <                std::cout << Binary(index) << " = " << index << std::endl;
99 <        }
100 <
101 <        for (double index(-1.0); index < 1.0; index += 0.1)
102 <        {
103 <                std::cout << Binary(index) << " = " << index << std::endl;
104 <        }
30 >        api::Cerr << Binary(hello_) << " = " << Hexadecimal(hello_) << " = " << hello_ << ios::NewLine;
31  
32 <        std::string string("101001101001");
107 <        Binary binary(string, true);
32 >        _foreach (ext::String, atom, hello_) api::Cerr << Binary(*atom) << " = " << Hexadecimal(*atom) << " = " << ext::String(*atom) << ios::NewLine;
33  
34 <        std::cout << binary << " = " << string << std::endl;
34 >        _fori (index, -10, 11) api::Cerr << Binary(index) << " = " << Hexadecimal(index) << " = " << index << ios::NewLine;
35  
36 <        float value(binary.convert<float>());
36 >        _foru (index, 0xFFFFFFF6, 11) api::Cerr << Binary(index) << " = " << Hexadecimal(index) << " = " << index << ios::NewLine;
37  
38 <        std::cout << binary << " = " << value << std::endl << Binary(value) << " = " << value << std::endl;
38 >        for (float index(-1); index < 1.1; index += 0.1) api::Cerr << Binary(index) << " = " << Hexadecimal(index) << " = " << index << ios::NewLine;
39  
40 <        return 0;
40 >        for (double index(-1); index < 1.1; index += 0.1) api::Cerr << Binary(index) << " = " << Hexadecimal(index) << " = " << index << ios::NewLine;
41   }

Comparing Represent/represent.cpp (property svn:eol-style):
Revision 366 by douglas, 2004-12-21T03:22:38-08:00 vs.
Revision 373 by douglas, 2004-12-22T17:27:28-08:00

# Line 0 | Line 1
1 + native

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines