]> git.llucax.com Git - z.facultad/75.74/practicos.git/blob - practicas/pipi/src/ipaddr.cpp
IPOut mínimo andando.
[z.facultad/75.74/practicos.git] / practicas / pipi / src / ipaddr.cpp
1
2 #include "ipaddr.h"
3 #include <sstream>
4
5 /// Constructor
6 IPAddr::IPAddr()
7 {
8     atoms[0] = 0;
9     atoms[1] = 0;
10     atoms[2] = 0;
11     atoms[3] = 0;
12 }
13
14 /// Constructor
15 IPAddr::IPAddr(atom a1, atom a2, atom a3, atom a4)
16 {
17     atoms[0] = a1;
18     atoms[1] = a2;
19     atoms[2] = a3;
20     atoms[3] = a4;
21 }
22
23 /// Constructor
24 IPAddr::IPAddr(unsigned ip)
25 {
26     atoms[0] = ip >> 24;
27     atoms[1] = ip >> 16;
28     atoms[2] = ip >> 8;
29     atoms[3] = ip;
30 }
31
32 /// Constructor
33 IPAddr::IPAddr(std::string ip) throw (std::logic_error)
34 {
35     std::istringstream iss(ip);
36     for (int i = 0; i < 4; ++i)
37     {
38         if (!std::getline(iss, ip, '.'))
39             throw std::logic_error("Dirección IP inválida");
40         atoms[i] = std::atoi(ip.c_str());
41     }
42 }
43
44 /// Operador de casteo a unsigned
45 IPAddr::operator unsigned () const
46 {
47     return (atoms[0] << 24) + (atoms[1] << 16) + (atoms[2] << 8) + atoms[3];
48 }
49
50 /// Operador de casteo a std::string
51 IPAddr::operator std::string () const
52 {
53     std::ostringstream oss;
54     oss << unsigned(atoms[0]) << "." << unsigned(atoms[1]) << "."
55         << unsigned(atoms[2]) << "." << unsigned(atoms[3]);
56     return oss.str();
57 }
58
59 std::ostream& operator<< (std::ostream& os, const IPAddr& ip)
60 {
61     return os << std::string(ip);
62 }
63
64 // vim: set et sw=4 sts=4 :