mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-05 18:49:23 +01:00
Document unpreserve.Reader (expected format + method hooks).
This commit is contained in:
parent
84c1f1572d
commit
7d218ec8ce
@ -28,6 +28,35 @@
|
||||
###
|
||||
|
||||
class Reader(object):
|
||||
"""Opens a file and reads it in blocks, using the `Creator` class to
|
||||
instantiate an object for each of the blocks.
|
||||
|
||||
The format is of the form:
|
||||
|
||||
```
|
||||
entry_type entry_id1:
|
||||
command1 arg1 arg1b
|
||||
command2 arg2
|
||||
|
||||
entry_type entry_id2:
|
||||
command3 arg3 arg13
|
||||
```
|
||||
|
||||
When reading this file, the `Creator` will be instantiated with the
|
||||
provided args and kwargs to a `creator` object, whose methods will then
|
||||
be called in this pattern:
|
||||
|
||||
```
|
||||
creator.entry_type("entry_id1", 1)
|
||||
creator.command1("arg1 arg1b", 2)
|
||||
creator.command2("arg2", 3)
|
||||
creator.finish()
|
||||
|
||||
creator.entry_type'entry_id2", 5)
|
||||
creator.command3("arg3 arg3b", 6)
|
||||
creator.finish()
|
||||
```
|
||||
"""
|
||||
def __init__(self, Creator, *args, **kwargs):
|
||||
self.Creator = Creator
|
||||
self.args = args
|
||||
|
Loading…
Reference in New Issue
Block a user