Source code for gavo.grammars.dictlistgrammar

"""
A (quite trivial) grammar that iterates over lists of dicts.
"""

#c Copyright 2008-2023, the GAVO project <gavo@ari.uni-heidelberg.de>
#c
#c This program is free software, covered by the GNU GPL.  See the
#c COPYING file in the source distribution.


from gavo import base
from gavo.grammars.common import Grammar, RowIterator


[docs]class ListIterator(RowIterator): def __init__(self, *args, **kwargs): RowIterator.__init__(self, *args, **kwargs) self.recNo = 0 self.notify = self.grammar.notify if self.grammar.asPars: self.sourceRow = self.sourceToken[0] def _iterRows(self): if self.grammar.asPars: return self.recNo = 1 for rec in self.sourceToken: res = rec.copy() yield res self.recNo += 1
[docs] def getLocator(self): return "List, index=%d"%self.recNo
[docs]class DictlistGrammar(Grammar): """A grammar that "parses" from lists of dicts. Actually, it will just return the dicts as they are passed. This is mostly useful internally, though it might come in handy in custom code. """ name_ = "dictlistGrammar" rowIterator = ListIterator _asPars = base.BooleanAttribute("asPars", default=False, description= "Just return the first item of the list as parameters row and exit?") _notify = base.BooleanAttribute("notify", default=False, description="Enable notification of begin/end of processing (as" " for other grammars; dictlistGrammars are usually internal," " where notification is unwelcome). Note that the -M option" " of gavo imp will only work if you set it to true.", copyable=True)