[5235] | 1 | ## |
---|
| 2 | ## jambtables.py |
---|
| 3 | ## Login : <uli@pu.smp.net> |
---|
| 4 | ## Started on Tue Jun 22 06:31:42 2010 Uli Fouquet |
---|
| 5 | ## $Id$ |
---|
| 6 | ## |
---|
| 7 | ## Copyright (C) 2010 Uli Fouquet |
---|
| 8 | ## This program is free software; you can redistribute it and/or modify |
---|
| 9 | ## it under the terms of the GNU General Public License as published by |
---|
| 10 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 11 | ## (at your option) any later version. |
---|
| 12 | ## |
---|
| 13 | ## This program is distributed in the hope that it will be useful, |
---|
| 14 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | ## GNU General Public License for more details. |
---|
| 17 | ## |
---|
| 18 | ## You should have received a copy of the GNU General Public License |
---|
| 19 | ## along with this program; if not, write to the Free Software |
---|
| 20 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 21 | ## |
---|
[5270] | 22 | """WAeUP SIRP support for JAMB tables. |
---|
| 23 | |
---|
| 24 | JAMB tables are datasets delivered by JAMB. |
---|
| 25 | """ |
---|
[5235] | 26 | import csv |
---|
| 27 | import os |
---|
| 28 | import shutil |
---|
| 29 | import tempfile |
---|
| 30 | import grok |
---|
| 31 | |
---|
| 32 | from datetime import datetime |
---|
| 33 | from BTrees.OOBTree import OOBTree |
---|
| 34 | from BTrees.Length import Length |
---|
| 35 | |
---|
[5248] | 36 | from waeup.sirp.jambtables.interfaces import IJAMBDataTable |
---|
| 37 | |
---|
[5245] | 38 | #: The header fields required for a valid JAMB table CSV file. |
---|
| 39 | JAMB_DATA_HEADERS = [ |
---|
| 40 | 'firstname', 'lastname', 'middlenames', 'screening_type', |
---|
| 41 | 'screening_venue', 'reg_no', 'sex', 'course1', 'jamb_state', |
---|
| 42 | 'screening_date', 'jamb_lga', 'fst_sit_fname', 'date_of_birth'] |
---|
| 43 | |
---|
[5235] | 44 | def filter_data(datadict): |
---|
| 45 | """Filter items whose key contains 'ignore' |
---|
[5246] | 46 | |
---|
| 47 | The function will remove all fields whose name start with |
---|
| 48 | ``ignore``. All data will be convertetd to unicode except |
---|
| 49 | ``data_of_birth``, which is turned into a `dateteime` object. |
---|
[5235] | 50 | """ |
---|
| 51 | keys = datadict.keys() |
---|
| 52 | for key in keys: |
---|
| 53 | if not 'ignore' in key: |
---|
| 54 | continue |
---|
| 55 | del datadict[key] |
---|
[5245] | 56 | for name in JAMB_DATA_HEADERS: |
---|
[5235] | 57 | datadict[name] = unicode(datadict[name]) |
---|
| 58 | datadict['date_of_birth'] = datetime.strptime( |
---|
| 59 | datadict['date_of_birth'], |
---|
| 60 | '%d/%m/%Y' |
---|
| 61 | ).date() |
---|
| 62 | |
---|
| 63 | return datadict |
---|
| 64 | |
---|
| 65 | |
---|
| 66 | class JAMBDataTable(grok.Model): |
---|
| 67 | """A data table that contains JAMB data. |
---|
| 68 | |
---|
| 69 | JAMB data tables are plain but fast as they store nearly no data |
---|
| 70 | inside the ZODB. All data is held on-disk in CSV tables. |
---|
| 71 | |
---|
| 72 | As a consequence these tables are read-only. |
---|
| 73 | """ |
---|
[5270] | 74 | #: Implement :class:`IJAMBDataTable` |
---|
[5248] | 75 | grok.implements(IJAMBDataTable) |
---|
[5235] | 76 | |
---|
[5254] | 77 | #: The datetime when data was imported. |
---|
[5235] | 78 | import_datetime = None |
---|
[5254] | 79 | |
---|
| 80 | #: The username of the person that initiated the last import. |
---|
| 81 | importer_username = None |
---|
[5235] | 82 | |
---|
| 83 | def __init__(self): |
---|
| 84 | super(JAMBDataTable, self).__init__() |
---|
| 85 | self._datafile_path = None |
---|
| 86 | self._data_len = 0 |
---|
| 87 | self._temporary = False |
---|
| 88 | return |
---|
| 89 | |
---|
| 90 | def __del__(self): |
---|
| 91 | self.clear() |
---|
| 92 | |
---|
| 93 | def __iter__(self): |
---|
| 94 | reader = None |
---|
| 95 | if self._datafile_path is not None: |
---|
| 96 | reader = csv.DictReader(open(self._datafile_path, 'rb')) |
---|
| 97 | if reader is None: |
---|
| 98 | raise StopIteration |
---|
| 99 | for line in reader: |
---|
| 100 | data_dict = filter_data(line) |
---|
| 101 | yield data_dict |
---|
| 102 | |
---|
[5242] | 103 | def keys(self): |
---|
| 104 | """Get iterator over all registration numbers stored in table. |
---|
| 105 | """ |
---|
| 106 | for item in self: |
---|
| 107 | yield item['reg_no'] |
---|
| 108 | |
---|
| 109 | def items(self): |
---|
| 110 | """Get tuples of registration number and datasets for each entry in |
---|
| 111 | data table. |
---|
| 112 | """ |
---|
| 113 | for item in self: |
---|
| 114 | yield (item['reg_no'], item) |
---|
| 115 | |
---|
[5235] | 116 | def clear(self): |
---|
| 117 | """Remove all existing entries. |
---|
[5254] | 118 | |
---|
| 119 | Unsets also the :attr:`import_datetime` and |
---|
| 120 | :attr:`importer_username` attributes. |
---|
[5235] | 121 | """ |
---|
[5238] | 122 | self.import_datetime = None |
---|
[5254] | 123 | self.importer_username = None |
---|
[5235] | 124 | if self._datafile_path is None: |
---|
| 125 | return |
---|
| 126 | if self._temporary: |
---|
| 127 | if not os.path.exists(self._datafile_path): |
---|
| 128 | return |
---|
| 129 | shutil.rmtree(os.path.dirname(self._datafile_path)) |
---|
[5240] | 130 | self._datafile_path = None |
---|
[5235] | 131 | |
---|
[5254] | 132 | def importFromCSV(self, filepath, username=None): |
---|
[5235] | 133 | """Importing data from a CSV file means to copy the source to a safe |
---|
| 134 | location. |
---|
[5254] | 135 | |
---|
| 136 | If the username is set, it will be stored as well in |
---|
| 137 | :attr:`importer_username`. |
---|
[5235] | 138 | """ |
---|
| 139 | self.clear() |
---|
| 140 | self.import_datetime = datetime.now() |
---|
[5254] | 141 | self.importer_username = None |
---|
| 142 | if username is not None: |
---|
| 143 | self.importer_username = unicode(username) |
---|
[5235] | 144 | self._copyDataFile(filepath) |
---|
| 145 | |
---|
| 146 | def _copyDataFile(self, path): |
---|
| 147 | """Copy file in path to the JAMBData storage. |
---|
| 148 | |
---|
| 149 | See :meth:`_getJAMBTableStorage`. |
---|
| 150 | """ |
---|
| 151 | storage = self._getJAMBTableStorage() |
---|
| 152 | self._datafile_path = os.path.join( |
---|
| 153 | storage, os.path.basename(path) |
---|
| 154 | ) |
---|
| 155 | shutil.copy2(path, self._datafile_path) |
---|
| 156 | return |
---|
| 157 | |
---|
| 158 | def _getJAMBTableStorage(self): |
---|
| 159 | """Get a path to store copies of datatables. |
---|
| 160 | |
---|
| 161 | We normally store data in a ``jambdata`` subdir of datacenter, |
---|
| 162 | but if none exists, we create a temporary dir and set |
---|
| 163 | `temporary` to ``True``. |
---|
| 164 | |
---|
| 165 | Any not existent directory is created. |
---|
| 166 | |
---|
| 167 | Note, that temporary dirs will be deleted when the |
---|
| 168 | JAMBDataTable object is destroyed. |
---|
| 169 | |
---|
| 170 | Returns absolute path to the JAMB data storage. |
---|
| 171 | """ |
---|
| 172 | site = grok.getSite() |
---|
| 173 | if site is None: |
---|
| 174 | jambtable_storage = tempfile.mkdtemp() |
---|
| 175 | self._temporary = True |
---|
| 176 | else: |
---|
| 177 | datacenter = site['datacenter'] |
---|
| 178 | jambtable_storage = os.path.join(datacenter.storage, 'jambdata') |
---|
| 179 | if not os.path.isdir(jambtable_storage): |
---|
| 180 | os.mkdir(jambtable_storage) |
---|
| 181 | return os.path.abspath(jambtable_storage) |
---|