]> git.llucax.com Git - software/pymin.git/blob - pymin/services/dhcp/__init__.py
Remove unused error classes.
[software/pymin.git] / pymin / services / dhcp / __init__.py
1 # vim: set encoding=utf-8 et sw=4 sts=4 :
2
3 from os import path
4
5 from pymin.seqtools import Sequence
6 from pymin.dispatcher import Handler, handler, HandlerError
7 from pymin.services.util import Restorable, ConfigWriter, InitdHandler, \
8                                 TransactionalHandler, ParametersHandler, \
9                                 DictSubHandler
10
11 __ALL__ = ('DhcpHandler',)
12
13 class Host(Sequence):
14     r"""Host(name, ip, mac) -> Host instance :: Class representing a host.
15
16     name - Host name, should be a fully qualified name, but no checks are done.
17     ip - IP assigned to the hostname.
18     mac - MAC address to associate to the hostname.
19     """
20
21     def __init__(self, name, ip, mac):
22         r"Initialize Host object, see class documentation for details."
23         self.name = name
24         self.ip = ip
25         self.mac = mac
26
27     def as_tuple(self):
28         r"Return a tuple representing the host."
29         return (self.name, self.ip, self.mac)
30
31     def update(self, ip=None, mac=None):
32         if ip is not None:
33             self.ip = ip
34         if mac is not None:
35             self.mac = mac
36
37 class HostHandler(DictSubHandler):
38     r"""HostHandler(parent) -> HostHandler instance :: Handle a list of hosts.
39
40     This class is a helper for DhcpHandler to do all the work related to hosts
41     administration.
42     """
43
44     handler_help = u"Manage DHCP hosts"
45
46     _cont_subhandler_attr = 'hosts'
47     _cont_subhandler_class = Host
48
49 class DhcpHandler(Restorable, ConfigWriter, InitdHandler, TransactionalHandler,
50                   ParametersHandler):
51     r"""DhcpHandler([pickle_dir[, config_dir]]) -> DhcpHandler instance.
52
53     Handles DHCP service commands for the dhcpd program.
54
55     pickle_dir - Directory where to write the persistent configuration data.
56
57     config_dir - Directory where to store de generated configuration files.
58
59     Both defaults to the current working directory.
60     """
61
62     handler_help = u"Manage DHCP service"
63
64     _initd_name = 'dhcpd'
65
66     _persistent_attrs = ('params', 'hosts')
67
68     _restorable_defaults = dict(
69             hosts = dict(),
70             params  = dict(
71                 domain_name = 'example.com',
72                 dns_1       = 'ns1.example.com',
73                 dns_2       = 'ns2.example.com',
74                 net_address = '192.168.0.0',
75                 net_mask    = '255.255.255.0',
76                 net_start   = '192.168.0.100',
77                 net_end     = '192.168.0.200',
78                 net_gateway = '192.168.0.1',
79             ),
80     )
81
82     _config_writer_files = 'dhcpd.conf'
83     _config_writer_tpl_dir = path.join(path.dirname(__file__), 'templates')
84
85     def __init__(self, pickle_dir='.', config_dir='.'):
86         r"Initialize DhcpHandler object, see class documentation for details."
87         self._persistent_dir = pickle_dir
88         self._config_writer_cfg_dir = config_dir
89         self._config_build_templates()
90         self._restore()
91         self.host = HostHandler(self)
92
93     def _get_config_vars(self, config_file):
94         return dict(hosts=self.hosts.values(), **self.params)
95
96
97 if __name__ == '__main__':
98
99     import os
100
101     h = DhcpHandler()
102
103     def dump():
104         print '-' * 80
105         print 'Variables:', h.list()
106         print h.show()
107         print
108         print 'Hosts:', h.host.list()
109         print h.host.show()
110         print '-' * 80
111
112     dump()
113
114     h.host.add('my_name','192.168.0.102','00:12:ff:56')
115
116     h.host.update('my_name','192.168.0.192','00:12:ff:56')
117
118     h.host.add('nico','192.168.0.188','00:00:00:00')
119
120     h.set('domain_name','baryon.com.ar')
121
122     try:
123         h.set('sarasa','baryon.com.ar')
124     except KeyError, e:
125         print 'Error:', e
126
127     h.commit()
128
129     dump()
130
131     os.system('rm -f *.pkl ' + ' '.join(h._config_writer_files))
132