source: main/waeup.kofa/trunk/src/waeup/kofa/utils/batching.py @ 14976

Last change on this file since 14976 was 14976, checked in by Henrik Bettermann, 7 years ago

Add missing 'continue'.

  • Property svn:keywords set to Id
File size: 32.7 KB
Line 
1## $Id: batching.py 14976 2018-03-21 10:48:00Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
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 2 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, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
18"""Kofa components for batch processing.
19
20Batch processors eat CSV files to add, update or remove large numbers
21of certain kinds of objects at once.
22"""
23import grok
24import datetime
25import os
26import shutil
27import tempfile
28import time
29import unicodecsv
30import zc.async.interfaces
31from cStringIO import StringIO
32from persistent.list import PersistentList
33from zope.component import createObject, getUtility
34from zope.component.hooks import setSite
35from zope.interface import Interface, implementer
36from zope.schema import getFields
37from zope.schema.interfaces import ConstraintNotSatisfied, RequiredMissing
38from zope.event import notify
39from waeup.kofa.async import AsyncJob
40from waeup.kofa.interfaces import (
41    IBatchProcessor, FatalCSVError, IObjectConverter, IJobManager,
42    ICSVExporter, IGNORE_MARKER, DuplicationError, JOB_STATUS_MAP,
43    IExportJobContainer, IExportJob, IExportContainerFinder)
44
45class BatchProcessor(grok.GlobalUtility):
46    """A processor to add, update, or remove data.
47
48    This is a non-active baseclass.
49    """
50    grok.implements(IBatchProcessor)
51    grok.context(Interface)
52    grok.baseclass()
53
54    # Name used in pages and forms...
55    name = u'Non-registered base processor'
56
57    # Internal name...
58    util_name = ''
59
60    # Items for this processor need an interface with zope.schema fields.
61    iface = Interface
62
63    # The name must be the same as the util_name attribute in order to
64    # register this utility correctly.
65    grok.name(util_name)
66
67    # Headers needed to locate items...
68    location_fields = []
69
70    # A factory with this name must be registered...
71    factory_name = ''
72
73    @property
74    def required_fields(self):
75        """Required fields that have no default.
76
77        A list of names of field, whose value cannot be set if not
78        given during creation. Therefore these fields must exist in
79        input.
80
81        Fields with a default != missing_value do not belong to this
82        category.
83        """
84        result = []
85        for key, field in getFields(self.iface).items():
86            if key in self.location_fields:
87                continue
88            if field.default is not field.missing_value:
89                continue
90            if field.required:
91                result.append(key)
92        return result
93
94    @property
95    def req(self):
96        result = dict(
97            create = self.location_fields + self.required_fields,
98            update = self.location_fields,
99            remove = self.location_fields,
100        )
101        return result
102
103    @property
104    def available_fields(self):
105        return sorted(list(set(
106                    self.location_fields + getFields(self.iface).keys())))
107
108    def getHeaders(self, mode='create'):
109        return self.available_fields
110
111    def checkHeaders(self, headerfields, mode='create'):
112        req = self.req[mode]
113        # Check for required fields...
114        for field in req:
115            if not field in headerfields:
116                raise FatalCSVError(
117                    "Need at least columns %s for import!" %
118                    ', '.join(["'%s'" % x for x in req]))
119        # Check for double fields. Cannot happen because this error is
120        # already catched in views
121        not_ignored_fields = [x for x in headerfields
122                              if not x.startswith('--')]
123        if len(set(not_ignored_fields)) < len(not_ignored_fields):
124            raise FatalCSVError(
125                "Double headers: each column name may only appear once.")
126        return True
127
128    def applyMapping(self, row, mapping):
129        """Apply mapping to a row of CSV data.
130        """
131        result = dict()
132        for key, replacement in mapping.items():
133            if replacement == u'--IGNORE--':
134                # Skip ignored columns in failed and finished data files.
135                continue
136            result[replacement] = row[key]
137        return result
138
139    def getMapping(self, path, headerfields, mode):
140        """Get a mapping from CSV file headerfields to actually used fieldnames.
141
142        """
143        result = dict()
144        reader = unicodecsv.reader(open(path, 'rb'))
145        raw_header = reader.next()
146        for num, field in enumerate(headerfields):
147            if field not in self.location_fields and mode == 'remove':
148                # Skip non-location fields when removing.
149                continue
150            if field == u'--IGNORE--':
151                # Skip ignored columns in failed and finished data files.
152                continue
153            result[raw_header[num]] = field
154        return result
155
156    def stringFromErrs(self, errors, inv_errors):
157        result = []
158        for err in errors:
159            fieldname, message = err
160            result.append("%s: %s" % (fieldname, message))
161        for err in inv_errors:
162            result.append("invariant: %s" % err)
163        return '; '.join(result)
164
165    def callFactory(self, *args, **kw):
166        return createObject(self.factory_name)
167
168    def parentsExist(self, row, site):
169        """Tell whether the parent object for data in ``row`` exists.
170        """
171        raise NotImplementedError('method not implemented')
172
173    def entryExists(self, row, site):
174        """Tell whether there already exists an entry for ``row`` data.
175        """
176        raise NotImplementedError('method not implemented')
177
178    def getParent(self, row, site):
179        """Get the parent object for the entry in ``row``.
180        """
181        raise NotImplementedError('method not implemented')
182
183    def getEntry(self, row, site):
184        """Get the object for the entry in ``row``.
185        """
186        raise NotImplementedError('method not implemented')
187
188    def addEntry(self, obj, row, site):
189        """Add the entry given given by ``row`` data.
190        """
191        raise NotImplementedError('method not implemented')
192
193    def delEntry(self, row, site):
194        """Delete entry given by ``row`` data.
195        """
196        raise NotImplementedError('method not implemented')
197
198    def checkUpdateRequirements(self, obj, row, site):
199        """Checks requirements the object must fulfill when being updated.
200
201        This method is not used in case of deleting or adding objects.
202
203        Returns error messages as strings in case of requirement
204        problems.
205        """
206        return None
207
208    def updateEntry(self, obj, row, site, filename):
209        """Update obj to the values given in row.
210
211        Returns a string describing the fields changed.
212        """
213        changed = []
214        for key, value in row.items():
215            # Skip fields to be ignored.
216            if value == IGNORE_MARKER:
217                continue
218            # Skip fields not declared in interface and which are
219            # not yet attributes of existing objects. We can thus not
220            # add non-existing attributes here.
221            if not hasattr(obj, key):
222                continue
223            # DefaultObjectConverter.fromStringDict fails for
224            # list-of-choices fields because we are using a different
225            # widget for this combination. Thus the ListFieldConverter
226            # returns a useless dictionary which causes getWidgetsData to
227            # skip the field. The value in row remains unchanged.
228            # We have to evaluate the string and replace the value here.
229            try:
230                evalvalue = eval(value)
231                if isinstance(evalvalue, list):
232                    value = evalvalue
233            except:
234                pass
235            try:
236                setattr(obj, key, value)
237            except AttributeError:
238                # Computed attributes can't be set.
239                continue
240            log_value = getattr(value, 'code', value)
241            changed.append('%s=%s' % (key, log_value))
242
243        # If any catalog is involved it must be updated.
244        #
245        # XXX: The event is also triggered when creating objects as
246        # updateEntry is called also when creating entries resulting
247        # in objectAdded and additional objectModified events.
248        if len(changed):
249            notify(grok.ObjectModifiedEvent(obj))
250
251        return ', '.join(changed)
252
253    def createLogfile(self, path, fail_path, num, warnings, mode, user,
254                      timedelta, logger=None):
255        """Write to log file.
256        """
257        if logger is None:
258            return
259        logger.info(
260            "processed: %s, %s mode, %s lines (%s successful/ %s failed), "
261            "%0.3f s (%0.4f s/item)" % (
262            path, mode, num, num - warnings, warnings,
263            timedelta, timedelta/(num or 1)))
264        return
265
266    def writeFailedRow(self, writer, row, warnings):
267        """Write a row with error messages to error CSV.
268
269        If warnings is a list of strings, they will be concatenated.
270        """
271        error_col = warnings
272        if isinstance(warnings, list):
273            error_col = ' / '.join(warnings)
274        row['--ERRORS--'] = error_col
275        writer.writerow(row)
276        return
277
278    def checkConversion(self, row, mode='ignore', ignore_empty=True):
279        """Validates all values in row.
280        """
281        converter = IObjectConverter(self.iface)
282        errs, inv_errs, conv_dict =  converter.fromStringDict(
283            row, self.factory_name, mode=mode)
284        return errs, inv_errs, conv_dict
285
286
287    def emptyRow(self, row):
288        """Detect empty rows.
289        """
290        for value in row.values():
291            if not value in (None, IGNORE_MARKER) and value.strip():
292                return False
293        return True
294
295    def doImport(self, path, headerfields, mode='create', user='Unknown',
296                 logger=None, ignore_empty=True):
297        """In contrast to most other methods, `doImport` is not supposed to
298        be customized, neither in custom packages nor in derived batch
299        processor classes. Therefore, this is the only place where we
300        do import data.
301
302        Before this method starts creating or updating persistent data, it
303        prepares two more files in a temporary folder of the filesystem: (1)
304        a file for pending data with file extension ``.pending`` and (2)
305        a file for successfully processed data with file extension
306        ``.finished``. Then the method starts iterating over all rows of
307        the CSV file. Each row is treated as follows:
308
309        1. An empty row is skipped.
310
311        2. Empty strings or lists (``[]``) in the row are replaced by
312           ignore markers.
313
314        3. The `BatchProcessor.checkConversion` method validates and converts
315           all values in the row. Conversion means the transformation of strings
316           into Python objects. For instance, number expressions have to be
317           transformed into integers, dates into datetime objects, phone number
318           expressions into phone number objects, etc. The converter returns a
319           dictionary with converted values or, if the validation of one of the
320           elements fails, an appropriate warning message. If the conversion
321           fails a pending record is created and stored in the pending data file
322           together with a warning message the converter has raised.
323
324        4. In **create mode** only:
325
326           The parent object must be found and a child
327           object with same object id must not exist. Otherwise the row
328           is skipped, a corresponding warning message is raised and a
329           record is stored in the pending data file.
330
331           Now `doImport` tries to add the new object with the data
332           from the conversion dictionary. In some cases this
333           may fail and a `DuplicationError` is raised. For example, a new
334           payment ticket is created but the same payment for same session
335           has already been made. In this case the object id is unique, no
336           other object with same id exists, but making the 'same' payment
337           twice does not make sense. The import is skipped and a
338           record is stored in the pending data file.
339
340        5. In **update mode** only:
341
342           If the object can't be found, the row is skipped,
343           a ``no such entry`` warning message is raised and a record is
344           stored in the pending data file.
345
346           The `BatchProcessor.checkUpdateRequirements` method checks additional
347           requirements the object must fulfill before being updated. These
348           requirements are not imposed by the data type but the context
349           of the object. For example, post-graduate students have a different
350           registration workflow. With this method we do forbid certain workflow
351           transitions or states.
352
353           Finally, `doImport` updates the existing object with the data
354           from the conversion dictionary.
355
356        6. In **remove mode** only:
357
358           If the object can't be found, the row is skipped,
359           a ``no such entry`` warning message is raised and a record is
360           stored in the pending data file.
361
362           Finally, `doImport` removes the existing object.
363
364        """
365        time_start = time.time()
366        self.checkHeaders(headerfields, mode)
367        mapping = self.getMapping(path, headerfields, mode)
368        reader = unicodecsv.DictReader(open(path, 'rb'))
369
370        temp_dir = tempfile.mkdtemp()
371
372        base = os.path.basename(path)
373        (base, ext) = os.path.splitext(base)
374        failed_path = os.path.join(temp_dir, "%s.pending%s" % (base, ext))
375        failed_headers = mapping.values()
376        failed_headers.append('--ERRORS--')
377        failed_writer = unicodecsv.DictWriter(open(failed_path, 'wb'),
378                                              failed_headers)
379        os.chmod(failed_path, 0664)
380        failed_writer.writerow(dict([(x,x) for x in failed_headers]))
381
382        finished_path = os.path.join(temp_dir, "%s.finished%s" % (base, ext))
383        finished_headers = mapping.values()
384        finished_writer = unicodecsv.DictWriter(open(finished_path, 'wb'),
385                                                finished_headers)
386        os.chmod(finished_path, 0664)
387        finished_writer.writerow(dict([(x,x) for x in finished_headers]))
388
389        num =0
390        num_warns = 0
391        site = grok.getSite()
392
393        for raw_row in reader:
394            num += 1
395            # Skip row if empty
396            if self.emptyRow(raw_row):
397                continue
398            string_row = self.applyMapping(raw_row, mapping)
399            if ignore_empty:
400                # Replace empty strings and empty lists with ignore-markers
401                for key, val in string_row.items():
402                    if val == '' or val == '[]':
403                        string_row[key] = IGNORE_MARKER
404            row = dict(string_row.items()) # create deep copy
405            errs, inv_errs, conv_dict = self.checkConversion(string_row, mode)
406            if errs or inv_errs:
407                num_warns += 1
408                conv_warnings = self.stringFromErrs(errs, inv_errs)
409                self.writeFailedRow(
410                    failed_writer, string_row, conv_warnings)
411                continue
412            row.update(conv_dict)
413
414            if mode == 'create':
415                if not self.parentsExist(row, site):
416                    num_warns += 1
417                    self.writeFailedRow(
418                        failed_writer, string_row,
419                        "Not all parents do exist yet.")
420                    continue
421                if self.entryExists(row, site):
422                    num_warns += 1
423                    self.writeFailedRow(
424                        failed_writer, string_row,
425                        "This object already exists.")
426                    continue
427                obj = self.callFactory()
428                # Override all values in row, also
429                # student_ids and applicant_ids which have been
430                # generated in the respective __init__ methods before.
431                self.updateEntry(obj, row, site, base)
432                try:
433                    self.addEntry(obj, row, site)
434                except KeyError, error:
435                    num_warns += 1
436                    self.writeFailedRow(
437                        failed_writer, string_row, error.message)
438                    continue
439                except DuplicationError, error:
440                    num_warns += 1
441                    self.writeFailedRow(
442                        failed_writer, string_row, error.msg)
443                    continue
444            elif mode == 'remove':
445                if not self.entryExists(row, site):
446                    num_warns += 1
447                    self.writeFailedRow(
448                        failed_writer, string_row,
449                        "Cannot remove: no such entry")
450                    continue
451                self.delEntry(row, site)
452            elif mode == 'update':
453                obj = self.getEntry(row, site)
454                if obj is None:
455                    num_warns += 1
456                    self.writeFailedRow(
457                        failed_writer, string_row,
458                        "Cannot update: no such entry")
459                    continue
460                update_errors = self.checkUpdateRequirements(obj, row, site)
461                if update_errors is not None:
462                    num_warns += 1
463                    self.writeFailedRow(
464                        failed_writer, string_row, update_errors)
465                    continue
466                try:
467                    self.updateEntry(obj, row, site, base)
468                except ConstraintNotSatisfied, err:
469                    num_warns += 1
470                    self.writeFailedRow(
471                        failed_writer, string_row,
472                        "ConstraintNotSatisfied: %s" % err)
473                    continue
474                except RequiredMissing, err:
475                    num_warns += 1
476                    self.writeFailedRow(
477                        failed_writer, string_row,
478                        "RequiredMissing: %s" % err)
479                    continue
480            finished_writer.writerow(string_row)
481
482        time_end = time.time()
483        timedelta = time_end - time_start
484
485        self.createLogfile(path, failed_path, num, num_warns, mode, user,
486                           timedelta, logger=logger)
487        failed_path = os.path.abspath(failed_path)
488        if num_warns == 0:
489            del failed_writer
490            os.unlink(failed_path)
491            failed_path = None
492        return (num, num_warns,
493                os.path.abspath(finished_path), failed_path)
494
495    def get_csv_skeleton(self):
496        """Export CSV file only with a header of available fields.
497
498        A raw string with CSV data should be returned.
499        """
500        outfile = StringIO()
501        writer = unicodecsv.DictWriter(outfile, self.available_fields)
502        writer.writerow(
503            dict(zip(self.available_fields, self.available_fields))) # header
504        outfile.seek(0)
505        return outfile.read()
506
507class ExporterBase(object):
508    """A base for exporters.
509    """
510    grok.implements(ICSVExporter)
511
512    #: Fieldnames considered by this exporter
513    fields = ('code', 'title', 'title_prefix')
514
515    #: The title under which this exporter will be displayed
516    #: (if registered as a utility)
517    title = 'Override this title'
518
519    def mangle_value(self, value, name, context=None):
520        """Hook for mangling values in derived classes.
521        """
522        if isinstance(value, bool):
523            value = value and '1' or '0'
524        elif isinstance(value, unicode):
525            # CSV writers like byte streams better than unicode
526            value = value.encode('utf-8')
527        elif isinstance(value, datetime.datetime):
528            #value = str(value)
529            value = str('%s#' % value) # changed 2014-07-06, see ticket #941
530        elif isinstance(value, datetime.date):
531            # Order is important here: check for date after datetime as
532            # datetimes are also dates.
533            #
534            # Append hash '#' to dates to circumvent unwanted excel automatic
535            value = str('%s#' % value)
536        elif value is None:
537            # None is not really representable in CSV files
538            value = ''
539        return value
540
541    def get_csv_writer(self, filepath=None):
542        """Get a CSV dict writer instance open for writing.
543
544        Returns a tuple (<writer>, <outfile>) where ``<writer>`` is a
545        :class:`csv.DictWriter` instance and outfile is the real file
546        which is written to. The latter is important when writing to
547        StringIO and can normally be ignored otherwise.
548
549        The returned file will already be filled with the header row.
550
551        Please note that if you give a filepath, the returned outfile
552        is open for writing only and you might have to close it before
553        reopening it for reading.
554        """
555        if filepath is None:
556            outfile = StringIO()
557        else:
558            outfile = open(filepath, 'wb')
559        writer = unicodecsv.DictWriter(outfile, self.fields)
560        writer.writerow(dict(zip(self.fields, self.fields))) # header
561        return writer, outfile
562
563    def write_item(self, obj, writer):
564        """Write a row extracted from `obj` into CSV file using `writer`.
565        """
566        row = {}
567        for name in self.fields:
568            value = getattr(obj, name, None)
569            value = self.mangle_value(value, name, obj)
570            row[name] = value
571        writer.writerow(row)
572        return
573
574    def close_outfile(self, filepath, outfile):
575        """Close outfile.
576        If filepath is None, the contents of outfile is returned.
577        """
578        outfile.seek(0)
579        if filepath is None:
580            return outfile.read()
581        outfile.close()
582        return
583
584    def get_filtered(self, site, **kw):
585        """Get datasets to export filtered by keyword arguments.
586        Returns an iterable.
587        """
588        raise NotImplementedError
589
590    def get_selected(self, site, selected):
591        """Get datasets to export for selected items
592        specified by a list of identifiers.
593        Returns an iterable.
594        """
595        raise NotImplementedError
596
597    def export(self, iterable, filepath=None):
598        """Export `iterable` as CSV file.
599        If `filepath` is ``None``, a raw string with CSV data should
600        be returned.
601        """
602        raise NotImplementedError
603
604    def export_all(self, site, filepath=None):
605        """Export all appropriate objects in `site` into `filepath` as
606        CSV data.
607        If `filepath` is ``None``, a raw string with CSV data should
608        be returned.
609        """
610        raise NotImplementedError
611
612    def export_filtered(self, site, filepath=None, **kw):
613        """Export items denoted by `kw`.
614        If `filepath` is ``None``, a raw string with CSV data should
615        be returned.
616        """
617        data = self.get_filtered(site, **kw)
618        return self.export(data, filepath=filepath)
619
620    def export_selected(self, site, filepath=None, **kw):
621        """Export those items specified by a list of identifiers
622        called `selected`.
623        If `filepath` is ``None``, a raw string with CSV data should
624        be returned.
625        """
626        selected = kw.get('selected', [])
627        data = self.get_selected(site, selected)
628        return self.export(data, filepath=filepath)
629
630def export_job(site, exporter_name, **kw):
631    """Export all entries delivered by exporter and store it in a temp file.
632
633    `site` gives the site to search. It will be passed to the exporter
634    and also be set as 'current site' as the function is used in
635    asynchronous jobs which run in their own threads and have no site
636    set initially. Therefore `site` must also be a valid value for use
637    with `zope.component.hooks.setSite()`.
638
639    `exporter_name` is the utility name under which the desired
640    exporter was registered with the ZCA.
641
642    The resulting CSV file will be stored in a new temporary directory
643    (using :func:`tempfile.mkdtemp`). It will be named after the
644    exporter used with `.csv` filename extension.
645
646    Returns the path to the created CSV file.
647
648    .. note:: It is the callers responsibility to clean up the used
649              file and its parent directory.
650    """
651    setSite(site)
652    exporter = getUtility(ICSVExporter, name=exporter_name)
653    output_dir = tempfile.mkdtemp()
654    filename = '%s.csv' % exporter_name
655    output_path = os.path.join(output_dir, filename)
656    if kw == {}:
657        exporter.export_all(site, filepath=output_path)
658    elif kw.has_key('selected'):
659        exporter.export_selected(site, filepath=output_path, **kw)
660    else:
661        exporter.export_filtered(site, filepath=output_path, **kw)
662    return output_path
663
664class AsyncExportJob(AsyncJob):
665    """An IJob that exports data to CSV files.
666
667    `AsyncExportJob` instances are regular `AsyncJob` instances with a
668    different constructor API. Instead of a callable to execute, you
669    must pass a `site` and some `exporter_name` to trigger an export.
670
671    The real work is done when an instance of this class is put into a
672    queue. See :mod:`waeup.kofa.async` to learn more about
673    asynchronous jobs.
674
675    The `exporter_name` must be the name under which an ICSVExporter
676    utility was registered with the ZCA.
677
678    The `site` must be a valid site  or ``None``.
679
680    The result of an `AsyncExportJob` is the path to generated CSV
681    file. The file will reside in a temporary directory that should be
682    removed after being used.
683    """
684    grok.implements(IExportJob)
685
686    def __init__(self, site, exporter_name, *args, **kwargs):
687        super(AsyncExportJob, self).__init__(
688            export_job, site, exporter_name, *args, **kwargs)
689
690    @property
691    def finished(self):
692        """A job is marked `finished` if it is completed.
693
694        Please note: a finished report job does not neccessarily
695        provide an IReport result. See meth:`failed`.
696        """
697        return self.status == zc.async.interfaces.COMPLETED
698
699    @property
700    def failed(self):
701        """A report job is marked failed iff it is finished and the
702        result is None.
703
704        While a job is unfinished, the `failed` status is ``None``.
705
706        Failed jobs normally provide a `traceback` to examine reasons.
707        """
708        if not self.finished:
709            return None
710        if getattr(self, 'result', None) is None:
711            return True
712        return False
713
714class ExportJobContainer(object):
715    """A mix-in that provides functionality for asynchronous export jobs.
716    """
717    grok.implements(IExportJobContainer)
718    running_exports = PersistentList()
719
720    def start_export_job(self, exporter_name, user_id, *args, **kwargs):
721        """Start asynchronous export job.
722
723        `exporter_name` is the name of an exporter utility to be used.
724
725        `user_id` is the ID of the user that triggers the export.
726
727        The job_id is stored along with exporter name and user id in a
728        persistent list.
729
730        The method supports additional positional and keyword
731        arguments, which are passed as-is to the respective
732        :class:`AsyncExportJob`.
733
734        Returns the job ID of the job started.
735        """
736        site = grok.getSite()
737        manager = getUtility(IJobManager)
738        job = AsyncExportJob(site, exporter_name, *args, **kwargs)
739        job_id = manager.put(job)
740        # Make sure that the persisted list is stored in ZODB
741        self.running_exports = PersistentList(self.running_exports)
742        self.running_exports.append((job_id, exporter_name, user_id))
743        return job_id
744
745    def get_running_export_jobs(self, user_id=None):
746        """Get export jobs for user with `user_id` as list of tuples.
747
748        Each tuples holds ``<job_id>, <exporter_name>, <user_id>`` in
749        that order. The ``<exporter_name>`` is the utility name of the
750        used exporter.
751
752        If `user_id` is ``None``, all running jobs are returned.
753        """
754        entries = []
755        to_delete = []
756        manager = getUtility(IJobManager)
757        for entry in self.running_exports:
758            if user_id is not None and entry[2] != user_id:
759                continue
760            if manager.get(entry[0]) is None:
761                to_delete.append(entry)
762                continue
763            entries.append(entry)
764        if to_delete:
765            self.running_exports = PersistentList(
766                [x for x in self.running_exports if x not in to_delete])
767        return entries
768
769    def get_export_jobs_status(self, user_id=None):
770        """Get running/completed export jobs for `user_id` as list of tuples.
771
772        Each tuple holds ``<raw status>, <status translated>,
773        <exporter title>`` in that order, where ``<status
774        translated>`` and ``<exporter title>`` are translated strings
775        representing the status of the job and the human readable
776        title of the exporter used.
777        """
778        entries = self.get_running_export_jobs(user_id)
779        result = []
780        manager = getUtility(IJobManager)
781        for entry in entries:
782            job = manager.get(entry[0])
783            if job is None:
784                continue
785            status, status_translated = JOB_STATUS_MAP[job.status]
786            exporter_name = getUtility(ICSVExporter, name=entry[1]).title
787            result.append((status, status_translated, exporter_name))
788        return result
789
790    def delete_export_entry(self, entry):
791        """Delete the export denoted by `entry`.
792
793        Removes given entry from the local `running_exports` list and also
794        removes the regarding job via the local job manager.
795
796        `entry` must be a tuple ``(<job id>, <exporter name>, <user
797        id>)`` as created by :meth:`start_export_job` or returned by
798        :meth:`get_running_export_jobs`.
799        """
800        manager = getUtility(IJobManager)
801        job = manager.get(entry[0])
802        if job is not None:
803            # remove created export file
804            if isinstance(job.result, basestring):
805                if os.path.exists(os.path.dirname(job.result)):
806                    shutil.rmtree(os.path.dirname(job.result))
807        manager.remove(entry[0], self)
808        new_entries = [x for x in self.running_exports
809                       if x != entry]
810        self.running_exports = PersistentList(new_entries)
811        return
812
813    def entry_from_job_id(self, job_id):
814        """Get entry tuple for `job_id`.
815
816        Returns ``None`` if no such entry can be found.
817        """
818        for entry in self.running_exports:
819            if entry[0] == job_id:
820                return entry
821        return None
822
823class VirtualExportJobContainer(ExportJobContainer):
824    """A virtual export job container.
825
826    Virtual ExportJobContainers can be used as a mixin just like real
827    ExportJobContainer.
828
829    They retrieve and store data in the site-wide ExportJobContainer.
830
831    Functionality is currently entirely as for regular
832    ExportJobContainers, except that data is stored elsewhere.
833
834    VirtualExportJobContainers need a registered
835    IExportContainerFinder utility to find a suitable container for
836    storing data.
837    """
838    grok.implements(IExportJobContainer)
839
840    @property
841    def _site_container(self):
842        return getUtility(IExportContainerFinder)()
843
844    # The following is a simple trick. While ExportJobContainers store
845    # only one attribute in ZODB, it is sufficient to replace this
846    # attribute `running_exports` with a suitable manager to make the
847    # whole virtual container work like the original but with the data
848    # stored in the site-wide exports container. This way, virtual
849    # export containers provide the whole functionality of a regular
850    # exports container but store no data at all with themselves.
851    @property
852    def running_exports(self):
853        """Exports stored in the site-wide exports container.
854        """
855        return self._site_container.running_exports
856
857    @running_exports.setter
858    def running_exports(self, value):
859        self._site_container.running_exports = value
860
861    @running_exports.deleter
862    def running_exports(self):
863        del self._site_container.running_exports
864
865    @property
866    def logger(self):
867        return self._site_container.logger
868
869@implementer(IExportContainerFinder)
870class ExportContainerFinder(grok.GlobalUtility):
871    """Finder for local (site-wide) export container.
872    """
873
874    def __call__(self):
875        """Get the local export container-
876
877        If no site can be determined or the site provides no export
878        container, None is returned.
879        """
880        site = grok.getSite()
881        if site is None:
882            return None
883        return site.get('datacenter', None)
Note: See TracBrowser for help on using the repository browser.