]> git.llucax.com Git - z.facultad/75.42/string.git/blob - unicode.cpp
127754b2b1fed3b0b92e9f5e48a60f98050377a8
[z.facultad/75.42/string.git] / unicode.cpp
1 /* vim: set et sts=4 sw=4 fdm=indent fdn=1 fo+=t tw=80:
2  *
3  * Taller de Programación (75.42).
4  *
5  * Ejercicio Número 4:
6  * Ordena texto ASCII o Unicode.
7  *
8  * Copyleft 2003 - Leandro Lucarella <llucare@fi.uba.ar>
9  * Puede copiar, modificar y distribuir este programa bajo los términos de
10  * la licencia GPL (http://www.gnu.org/).
11  *
12  * Creado: Mon Sep 22 21:00:07 ART 2003
13  *
14  * $Id$
15  */
16
17 #include "unicode.h"
18
19 #ifdef DEBUG
20 #   include <iostream>
21 #endif
22
23 Unicode::Unicode(short c): caracter(c) {
24 #ifdef DEBUG
25     std::cerr << "En constructor de Unicode." << std::endl;
26 #endif
27 }
28
29 Unicode::Unicode(const Unicode& unicode): caracter(unicode.caracter) {
30 #ifdef DEBUG
31     std::cerr << "En constructor de copia de Unicode." << std::endl;
32 #endif
33 }
34
35 Unicode::~Unicode(void) {
36 #ifdef DEBUG
37     std::cerr << "En destructor de Unicode." << std::endl;
38 #endif
39 }
40 #include <iostream>
41 bool Unicode::is_endl(void) {
42 #ifdef DEBUG
43     std::cerr << "En Unicode::is_endl()." << std::endl;
44 #endif
45     // Si los últimos 8 bits son 0xA = 10 = '\n' devuelve true.
46     return (static_cast<char>(caracter) == '\n')
47         || (static_cast<char>(caracter >> 8) == '\n');
48 }
49
50 Unicode& Unicode::operator=(const Unicode& unicode) {
51 #ifdef DEBUG
52     std::cerr << "En operator= de Unicode." << std::endl;
53 #endif
54     caracter = unicode.caracter;
55     return *this;
56 }
57
58 bool Unicode::operator<(const Unicode& unicode) {
59 #ifdef DEBUG
60     std::cerr << "En operator< de Unicode." << std::endl;
61 #endif
62     return caracter < unicode.caracter;
63 }
64
65 bool Unicode::operator==(const Unicode& unicode) {
66 #ifdef DEBUG
67     std::cerr << "En operator== de Unicode." << std::endl;
68 #endif
69     return caracter == unicode.caracter;
70 }
71
72 Unicode::operator short(void) const {
73 #ifdef DEBUG
74     std::cerr << "En cast de Unicode a char." << std::endl;
75 #endif
76     return static_cast<short>(caracter);
77 }
78
79 Unicode::operator char(void) const {
80 #ifdef DEBUG
81     std::cerr << "En cast de Unicode a char." << std::endl;
82 #endif
83     return static_cast<char>(caracter);
84 }
85
86 std::ostream& operator<<(std::ostream& out, const Unicode& unicode) {
87 #ifdef DEBUG
88     std::cerr << "En operator<< de Unicode." << std::endl;
89 #endif
90     // Imprime el caracter como 2 caracteres ASCII.
91     // Si el primer caracter (bits mas significativos) es cero, entonces no lo
92     // imprime (es ASCII "puro").
93     if (unicode.caracter >> 8) {
94         out << static_cast<char>(unicode.caracter >> 8);
95     }
96     return out << static_cast<char>(unicode.caracter);
97 }
98
99 std::istream& operator>>(std::istream& in, Unicode& unicode) {
100 #ifdef DEBUG
101     std::cerr << "En operator>> de Unicode." << std::endl;
102 #endif
103     char c1;
104     char c2;
105     // Lee los 2 primeros caracteres que no sean espacio.
106     in >> c1 >> std::noskipws >> c2 >> std::skipws;
107     // Los asigno como un short cuyos bits mas significativos corresponden al
108     // caracter 1 y los menos significativos al caracter 2.
109     unicode.caracter = (static_cast<short>(c1) << 8) + c2;
110     return in;
111 }
112