Adiciona interface IRPFDir para configuração de diretórios.
[cascardo/irpf-gui.git] / src / ocupacoes.py
1 #
2 #   Copyright 2013 Thadeu Lima de Souza Cascardo <cascardo@cascardo.info>
3 #
4 #   This program is free software: you can redistribute it and/or modify
5 #   it under the terms of the GNU General Public License as published by
6 #   the Free Software Foundation, either version 3 of the License, or
7 #   (at your option) any later version.
8 #
9 #   This program is distributed in the hope that it will be useful,
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #   GNU General Public License for more details.
13 #
14 #   You should have received a copy of the GNU General Public License
15 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 # -*- mode: python; encoding: utf-8; -*-
17 import xml.dom.minidom
18 import dirs
19
20 class Ocupacoes:
21     def __init__(self):
22         irpf_dir = dirs.get_default_irpf_dir()
23         self.xml = xml.dom.minidom.parse(irpf_dir.get_resource_file("ocupacoesPrincipal.xml"))
24         self.l = []
25         self.g = {}
26         self._list()
27         self._group()
28
29     def _list(self):
30         for i in self.xml.childNodes[0].childNodes:
31             if "COL4" in i.attributes.keys():
32                 self.l.append((i.attributes["COL1"].nodeValue, \
33                         i.attributes["COL2"].nodeValue, \
34                         i.attributes["COL3"].nodeValue, \
35                         i.attributes["COL4"].nodeValue))
36                 def list(self):
37                     return self.l
38
39     def _group(self):
40         for i in self.l:
41             if i[1] not in self.g:
42                 self.g[i[1]] = []
43             self.g[i[1]].append(i)
44
45     def groups(self):
46         return self.g
47
48     def get_ocupacao(self, code):
49         for i in self.l:
50             if i[0] == code:
51                 return i
52         return None
53
54 if __name__ == '__main__':
55     ocupacoes = Ocupacoes()
56     l = ocupacoes.groups()
57     for i in sorted(l):
58         print l[i][0][1] , l[i][0][2]
59         for j in l[i]:
60             print "\t %s %s" % (j[0], j[3])
61     print
62     print ocupacoes.get_ocupacao('212')[3]
63
64 # vim:tabstop=4:expandtab:smartindent