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