Passed
Pull Request — master (#875)
by Konstantin
03:17
created

ocrd_models.ocrd_mets.OcrdMets.add_file()   D

Complexity

Conditions 12

Size

Total Lines 49
Code Lines 27

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 27
dl 0
loc 49
rs 4.8
c 0
b 0
f 0
cc 12
nop 10

How to fix   Complexity    Many Parameters   

Complexity

Complex classes like ocrd_models.ocrd_mets.OcrdMets.add_file() often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.

Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.

Many Parameters

Methods with many parameters are not only hard to understand, but their parameters also often become inconsistent when you need more, or different data.

There are several approaches to avoid long parameter lists:

1
"""
2
API to METS
3
"""
4
from datetime import datetime
5
import re
6
import typing
7
from lxml import etree as ET
8
from copy import deepcopy
9
10
from ocrd_utils import (
11
    is_local_filename,
12
    getLogger,
13
    generate_range,
14
    VERSION,
15
    REGEX_PREFIX,
16
    REGEX_FILE_ID
17
)
18
19
from .constants import (
20
    NAMESPACES as NS,
21
    TAG_METS_AGENT,
22
    TAG_METS_DIV,
23
    TAG_METS_FILE,
24
    TAG_METS_FILEGRP,
25
    TAG_METS_FILESEC,
26
    TAG_METS_FPTR,
27
    TAG_METS_METSHDR,
28
    TAG_METS_STRUCTMAP,
29
    IDENTIFIER_PRIORITY,
30
    TAG_MODS_IDENTIFIER,
31
    METS_XML_EMPTY,
32
)
33
34
from .ocrd_xml_base import OcrdXmlDocument, ET
35
from .ocrd_file import OcrdFile
36
from .ocrd_agent import OcrdAgent
37
38
REGEX_PREFIX_LEN = len(REGEX_PREFIX)
39
40
class OcrdMets(OcrdXmlDocument):
41
    """
42
    API to a single METS file
43
    """
44
45
    @staticmethod
46
    def empty_mets(now=None, cache_flag=False):
47
        """
48
        Create an empty METS file from bundled template.
49
        """
50
        if not now:
51
            now = datetime.now().isoformat()
52
        tpl = METS_XML_EMPTY.decode('utf-8')
53
        tpl = tpl.replace('{{ VERSION }}', VERSION)
54
        tpl = tpl.replace('{{ NOW }}', '%s' % now)
55
        return OcrdMets(content=tpl.encode('utf-8'), cache_flag=cache_flag)
56
57
    def __init__(self, **kwargs):
58
        """
59
        """
60
        super(OcrdMets, self).__init__(**kwargs)
61
        
62
        # If cache is enabled
63
        if self._cache_flag:
64
65
            # Cache for the files (mets:file) - two nested dictionaries
66
            # The outer dictionary's Key: 'fileGrp.USE'
67
            # The outer dictionary's Value: Inner dictionary
68
            # The inner dictionary's Key: 'file.ID'
69
            # The inner dictionary's Value: a 'file' object at some memory location
70
            self._file_cache = {}
71
72
            # Cache for the pages (mets:div)
73
            # The dictionary's Key: 'div.ID'
74
            # The dictionary's Value: a 'div' object at some memory location
75
            self._page_cache = {}
76
77
            # Cache for the file pointers (mets:fptr) - two nested dictionaries
78
            # The outer dictionary's Key: 'div.ID'
79
            # The outer dictionary's Value: Inner dictionary
80
            # The inner dictionary's Key: 'fptr.FILEID'
81
            # The inner dictionary's Value: a 'fptr' object at some memory location
82
            self._fptr_cache = {}
83
84
            # Note, if the empty_mets() function is used to instantiate OcrdMets
85
            # Then the cache is empty even after this operation
86
            self._fill_caches()
87
88
    def __exit__(self):
89
        """
90
91
        """
92
        if self._cache_flag:
93
            self._clear_caches()
94
95
    def __str__(self):
96
        """
97
        String representation
98
        """
99
        return 'OcrdMets[cached=%s,fileGrps=%s,files=%s]' % (self._cache_flag, self.file_groups, list(self.find_files()))
100
101
    def _fill_caches(self):
102
        """
103
        Fills the caches with fileGrps and FileIDs
104
        """
105
106
        tree_root = self._tree.getroot()
107
108
        # Fill with files
109
        el_fileSec = tree_root.find("mets:fileSec", NS)
110
        if el_fileSec is None:
111
            return
112
113
        log = getLogger('ocrd_models.ocrd_mets._fill_caches-files')
114
115
        for el_fileGrp in el_fileSec.findall('mets:fileGrp', NS):
116
            fileGrp_use = el_fileGrp.get('USE')
117
118
            # Assign an empty dictionary that will hold the files of the added fileGrp
119
            self._file_cache[fileGrp_use] = {}
120
121
            for el_file in el_fileGrp:
122
                file_id = el_file.get('ID')
123
                self._file_cache[fileGrp_use].update({file_id : el_file})
124
                # log.info("File added to the cache: %s" % file_id)
125
126
        # Fill with pages
127
        el_div_list = tree_root.findall(".//mets:div[@TYPE='page']", NS)
128
        if len(el_div_list) == 0:
129
            return
130
        log = getLogger('ocrd_models.ocrd_mets._fill_caches-pages')
131
132
        for el_div in el_div_list:
133
            div_id = el_div.get('ID')
134
            log.debug("DIV_ID: %s" % el_div.get('ID'))
135
136
            self._page_cache[div_id] = el_div
137
138
            # Assign an empty dictionary that will hold the fptr of the added page (div)
139
            self._fptr_cache[div_id] = {}
140
141
            # log.info("Page_id added to the cache: %s" % div_id)
142
143
            for el_fptr in el_div:
144
                self._fptr_cache[div_id].update({el_fptr.get('FILEID') : el_fptr})
145
                # log.info("Fptr added to the cache: %s" % el_fptr.get('FILEID'))
146
147
        # log.info("Len of page_cache: %s" % len(self._page_cache))
148
        # log.info("Len of fptr_cache: %s" % len(self._fptr_cache))
149
150
    def _clear_caches(self):
151
        """
152
        Deallocates the caches
153
        """
154
155
        self._file_cache = None
156
        self._page_cache = None
157
        self._fptr_cache = None
158
159
    @property
160
    def unique_identifier(self):
161
        """
162
        Get the unique identifier by looking through ``mods:identifier``
163
        See `specs <https://ocr-d.de/en/spec/mets#unique-id-for-the-document-processed>`_ for details.
164
        """
165
        for t in IDENTIFIER_PRIORITY:
166
            found = self._tree.getroot().find('.//mods:identifier[@type="%s"]' % t, NS)
167
            if found is not None:
168
                return found.text
169
        
170
    @unique_identifier.setter
171
    def unique_identifier(self, purl):
172
        """
173
        Set the unique identifier by looking through ``mods:identifier``
174
        See `specs <https://ocr-d.de/en/spec/mets#unique-id-for-the-document-processed>`_ for details.
175
        """
176
        id_el = None
177
        for t in IDENTIFIER_PRIORITY:
178
            id_el = self._tree.getroot().find('.//mods:identifier[@type="%s"]' % t, NS)
179
            if id_el is not None:
180
                break
181
        if id_el is None:
182
            mods = self._tree.getroot().find('.//mods:mods', NS)
183
            id_el = ET.SubElement(mods, TAG_MODS_IDENTIFIER)
184
            id_el.set('type', 'purl')
185
        id_el.text = purl
186
187
    @property
188
    def agents(self):
189
        """
190
        List all :py:class:`ocrd_models.ocrd_agent.OcrdAgent`s
191
        """
192
        return [OcrdAgent(el_agent) for el_agent in self._tree.getroot().findall('mets:metsHdr/mets:agent', NS)]
193
194
    def add_agent(self, *args, **kwargs):
195
        """
196
        Add an :py:class:`ocrd_models.ocrd_agent.OcrdAgent` to the list of agents in the ``metsHdr``.
197
        """
198
        el_metsHdr = self._tree.getroot().find('.//mets:metsHdr', NS)
199
        if el_metsHdr is None:
200
            el_metsHdr = ET.Element(TAG_METS_METSHDR)
201
            self._tree.getroot().insert(0, el_metsHdr)
202
        #  assert(el_metsHdr is not None)
203
        el_agent = ET.SubElement(el_metsHdr, TAG_METS_AGENT)
204
        #  print(ET.tostring(el_metsHdr))
205
        return OcrdAgent(el_agent, *args, **kwargs)
206
207
    @property
208
    def file_groups(self):
209
        """
210
        List the `@USE` of all `mets:fileGrp` entries.
211
        """
212
213
        # WARNING: Actually we cannot return strings in place of elements!
214
        if self._cache_flag:
215
           return list(self._file_cache.keys())
216
217
        return [el.get('USE') for el in self._tree.getroot().findall('.//mets:fileGrp', NS)]
218
219
    def find_all_files(self, *args, **kwargs):
220
        """
221
        Like :py:meth:`find_files` but return a list of all results.
222
        Equivalent to ``list(self.find_files(...))``
223
        """
224
        return list(self.find_files(*args, **kwargs))
225
226
    # pylint: disable=multiple-statements
227
    def find_files(self, ID=None, fileGrp=None, pageId=None, mimetype=None, url=None, local_only=False):
228
        """
229
        Search ``mets:file`` entries in this METS document and yield results.
230
        The :py:attr:`ID`, :py:attr:`pageId`, :py:attr:`fileGrp`,
231
        :py:attr:`url` and :py:attr:`mimetype` parameters can each be either a
232
        literal string, or a regular expression if the string starts with
233
        ``//`` (double slash).
234
        If it is a regex, the leading ``//`` is removed and candidates are matched
235
        against the regex with `re.fullmatch`. If it is a literal string, comparison
236
        is done with string equality.
237
        The :py:attr:`pageId` parameter supports the numeric range operator ``..``. For
238
        example, to find all files in pages ``PHYS_0001`` to ``PHYS_0003``,
239
        ``PHYS_0001..PHYS_0003`` will be expanded to ``PHYS_0001,PHYS_0002,PHYS_0003``.
240
        Keyword Args:
241
            ID (string) : ``@ID`` of the ``mets:file``
242
            fileGrp (string) : ``@USE`` of the ``mets:fileGrp`` to list files of
243
            pageId (string) : ``@ID`` of the corresponding physical ``mets:structMap`` entry (physical page)
244
            url (string) : ``@xlink:href`` (URL or path) of ``mets:Flocat`` of ``mets:file``
245
            mimetype (string) : ``@MIMETYPE`` of ``mets:file``
246
            local (boolean) : Whether to restrict results to local files in the filesystem
247
        Yields:
248
            :py:class:`ocrd_models:ocrd_file:OcrdFile` instantiations
249
        """
250
        pageId_list = []
251
        if pageId:
252
            pageId_patterns = []
253
            for pageId_token in re.split(r',', pageId):
254
                if pageId_token.startswith(REGEX_PREFIX):
255
                    pageId_patterns.append(re.compile(pageId_token[REGEX_PREFIX_LEN:]))
256
                elif '..' in pageId_token:
257
                    pageId_patterns += generate_range(*pageId_token.split('..', 1))
258
                else:
259
                    pageId_patterns += [pageId_token]
260
            if self._cache_flag:
261
                for page_id in self._page_cache.keys():
262
                    if page_id in pageId_patterns or \
263
                        any([isinstance(p, typing.Pattern) and p.fullmatch(page_id) for p in pageId_patterns]):
264
                        pageId_list += self._fptr_cache[page_id]
265
            else:
266
                for page in self._tree.getroot().xpath(
267
                    '//mets:div[@TYPE="page"]', namespaces=NS):
268
                    if page.get('ID') in pageId_patterns or \
269
                        any([isinstance(p, typing.Pattern) and p.fullmatch(page.get('ID')) for p in pageId_patterns]):
270
                        pageId_list += [fptr.get('FILEID') for fptr in page.findall('mets:fptr', NS)]
271
272
        if ID and ID.startswith(REGEX_PREFIX):
273
            ID = re.compile(ID[REGEX_PREFIX_LEN:])
274
        if fileGrp and fileGrp.startswith(REGEX_PREFIX):
275
            fileGrp = re.compile(fileGrp[REGEX_PREFIX_LEN:])
276
        if mimetype and mimetype.startswith(REGEX_PREFIX):
277
            mimetype = re.compile(mimetype[REGEX_PREFIX_LEN:])
278
        if url and url.startswith(REGEX_PREFIX):
279
            url = re.compile(url[REGEX_PREFIX_LEN:])
280
            
281
        candidates = []
282
        if self._cache_flag:
283
            if fileGrp:
284
                if isinstance(fileGrp, str):
285
                    candidates += self._file_cache.get(fileGrp, {}).values()
286
                else:
287
                    candidates = [x for fileGrp_needle, el_file_list in self._file_cache.items() if fileGrp.match(fileGrp_needle) for x in el_file_list.values()]
288
            else:
289
                candidates = [el_file for id_to_file in self._file_cache.values() for el_file in id_to_file.values()]
290
        else:
291
            candidates = self._tree.getroot().xpath('//mets:file', namespaces=NS)
292
            
293
        for cand in candidates:
294
            if ID:
295
                if isinstance(ID, str):
296
                    if not ID == cand.get('ID'): continue
297
                else:
298
                    if not ID.fullmatch(cand.get('ID')): continue
299
300
            if pageId is not None and cand.get('ID') not in pageId_list:
301
                continue
302
303
            if not self._cache_flag and fileGrp:
304
                if isinstance(fileGrp, str):
305
                    if cand.getparent().get('USE') != fileGrp: continue
306
                else:
307
                    if not fileGrp.fullmatch(cand.getparent().get('USE')): continue
308
309
            if mimetype:
310
                if isinstance(mimetype, str):
311
                    if cand.get('MIMETYPE') != mimetype: continue
312
                else:
313
                    if not mimetype.fullmatch(cand.get('MIMETYPE') or ''): continue
314
315
            if url:
316
                cand_locat = cand.find('mets:FLocat', namespaces=NS)
317
                if cand_locat is None:
318
                    continue
319
                cand_url = cand_locat.get('{%s}href' % NS['xlink'])
320
                if isinstance(url, str):
321
                    if cand_url != url: continue
322
                else:
323
                    if not url.fullmatch(cand_url): continue
324
325
            # Note: why we instantiate a class only to find out that the local_only is set afterwards
326
            # Checking local_only and url before instantiation should be better?
327
            f = OcrdFile(cand, mets=self)
328
329
            # If only local resources should be returned and f is not a file path: skip the file
330
            if local_only and not is_local_filename(f.url):
331
                continue
332
            yield f
333
334
    def add_file_group(self, fileGrp):
335
        """
336
        Add a new ``mets:fileGrp``.
337
        Arguments:
338
            fileGrp (string): ``@USE`` of the new ``mets:fileGrp``.
339
        """
340
        if ',' in fileGrp:
341
            raise Exception('fileGrp must not contain commas')
342
        el_fileSec = self._tree.getroot().find('mets:fileSec', NS)
343
        if el_fileSec is None:
344
            el_fileSec = ET.SubElement(self._tree.getroot(), TAG_METS_FILESEC)
345
        el_fileGrp = el_fileSec.find('mets:fileGrp[@USE="%s"]' % fileGrp, NS)
346
        if el_fileGrp is None:
347
            el_fileGrp = ET.SubElement(el_fileSec, TAG_METS_FILEGRP)
348
            el_fileGrp.set('USE', fileGrp)
349
            
350
            if self._cache_flag:
351
                # Assign an empty dictionary that will hold the files of the added fileGrp
352
                self._file_cache[fileGrp] = {}
353
                
354
        return el_fileGrp
355
356
    def rename_file_group(self, old, new):
357
        """
358
        Rename a ``mets:fileGrp`` by changing the ``@USE`` from :py:attr:`old` to :py:attr:`new`.
359
        """
360
        el_fileGrp = self._tree.getroot().find('mets:fileSec/mets:fileGrp[@USE="%s"]' % old, NS)
361
        if el_fileGrp is None:
362
            raise FileNotFoundError("No such fileGrp '%s'" % old)
363
        el_fileGrp.set('USE', new)
364
        
365
        if self._cache_flag:
366
            self._file_cache[new] = self._file_cache.pop(old)
367
368
    def remove_file_group(self, USE, recursive=False, force=False):
369
        """
370
        Remove a ``mets:fileGrp`` (single fixed ``@USE`` or multiple regex ``@USE``)
371
        Arguments:
372
            USE (string): ``@USE`` of the ``mets:fileGrp`` to delete. Can be a regex if prefixed with ``//``
373
            recursive (boolean): Whether to recursively delete each ``mets:file`` in the group
374
            force (boolean): Do not raise an exception if ``mets:fileGrp`` does not exist
375
        """
376
        log = getLogger('ocrd_models.ocrd_mets.remove_file_group')
377
        el_fileSec = self._tree.getroot().find('mets:fileSec', NS)
378
        if el_fileSec is None:
379
            raise Exception("No fileSec!")
380
        if isinstance(USE, str):
381
            if USE.startswith(REGEX_PREFIX):
382
                use = re.compile(USE[REGEX_PREFIX_LEN:])
383
                for cand in el_fileSec.findall('mets:fileGrp', NS):
384
                    if use.fullmatch(cand.get('USE')):
385
                        self.remove_file_group(cand, recursive=recursive)
386
                return
387
            else:
388
                el_fileGrp = el_fileSec.find('mets:fileGrp[@USE="%s"]' % USE, NS)
389
        else:
390
            el_fileGrp = USE
391
        if el_fileGrp is None:   # pylint: disable=len-as-condition
392
            msg = "No such fileGrp: %s" % USE
393
            if force:
394
                log.warning(msg)
395
                return
396
            raise Exception(msg)
397
398
        # The cache should also be used here
399
        if self._cache_flag:
400
            files = self._file_cache.get(el_fileGrp.get('USE'), {}).values()
401
        else:
402
            files = el_fileGrp.findall('mets:file', NS)
403
404
        if files:
405
            if not recursive:
406
                raise Exception("fileGrp %s is not empty and recursive wasn't set" % USE)
407
            for f in files:
408
                self.remove_one_file(ID=f.get('ID'), fileGrp=f.getparent().get('USE'))
409
410
        if self._cache_flag:
411
            # Note: Since the files inside the group are removed
412
            # with the 'remove_one_file' method above, 
413
            # we should not take care of that again.
414
            # We just remove the fileGrp.
415
            del self._file_cache[el_fileGrp.get('USE')]
416
417
        el_fileGrp.getparent().remove(el_fileGrp)
418
419
    def add_file(self, fileGrp, mimetype=None, url=None, ID=None, pageId=None, force=False, local_filename=None, ignore=False, **kwargs):
420
        """
421
        Instantiate and add a new :py:class:`ocrd_models.ocrd_file.OcrdFile`.
422
        Arguments:
423
            fileGrp (string): ``@USE`` of ``mets:fileGrp`` to add to
424
        Keyword Args:
425
            mimetype (string): ``@MIMETYPE`` of the ``mets:file`` to use
426
            url (string): ``@xlink:href`` (URL or path) of the ``mets:file`` to use
427
            ID (string): ``@ID`` of the ``mets:file`` to use
428
            pageId (string): ``@ID`` in the physical ``mets:structMap`` to link to
429
            force (boolean): Whether to add the file even if a ``mets:file`` with the same ``@ID`` already exists.
430
            ignore (boolean): Do not look for existing files at all. Shift responsibility for preventing errors from duplicate ID to the user.
431
            local_filename (string):
432
        """
433
        if not ID:
434
            raise ValueError("Must set ID of the mets:file")
435
        if not fileGrp:
436
            raise ValueError("Must set fileGrp of the mets:file")
437
        if not REGEX_FILE_ID.fullmatch(ID):
438
            raise ValueError("Invalid syntax for mets:file/@ID %s (not an xs:ID)" % ID)
439
        if not REGEX_FILE_ID.fullmatch(fileGrp):
440
            raise ValueError("Invalid syntax for mets:fileGrp/@USE %s (not an xs:ID)" % fileGrp)
441
        log = getLogger('ocrd_models.ocrd_mets.add_file')
442
443
        el_fileGrp = self.add_file_group(fileGrp)
444
        if not ignore:
445
            mets_file = next(self.find_files(ID=ID, fileGrp=fileGrp), None)
446
            if mets_file:
447
                if mets_file.fileGrp == fileGrp and \
448
                   mets_file.pageId == pageId and \
449
                   mets_file.mimetype == mimetype:
450
                    if not force:
451
                        raise FileExistsError(f"A file with ID=={ID} already exists {mets_file} and neither force nor ignore are set")
452
                    self.remove_file(ID=ID, fileGrp=fileGrp)
453
                else:
454
                    raise FileExistsError(f"A file with ID=={ID} already exists {mets_file} but unrelated - cannot mitigate")
455
456
        # To get rid of Python's FutureWarning - checking if v is not None
457
        kwargs = {k: v for k, v in locals().items() if k in ['url', 'ID', 'mimetype', 'pageId', 'local_filename'] and v is not None}
458
        # This separation is needed to reuse the same el_mets_file element in the caching if block
459
        el_mets_file = ET.SubElement(el_fileGrp, TAG_METS_FILE)
460
        # The caching of the physical page is done in the OcrdFile constructor
461
        mets_file = OcrdFile(el_mets_file, mets=self, **kwargs)
462
463
        if self._cache_flag:
464
            # Add the file to the file cache
465
            self._file_cache[fileGrp].update({ID: el_mets_file})
466
467
        return mets_file
468
469
    def remove_file(self, *args, **kwargs):
470
        """
471
        Delete each ``ocrd:file`` matching the query. Same arguments as :py:meth:`find_files`
472
        """
473
        files = list(self.find_files(*args, **kwargs))
474
        if files:
475
            for f in files:
476
                self.remove_one_file(f)
477
            if len(files) > 1:
478
                return files
479
            else:
480
                return files[0] # for backwards-compatibility
481
        if any(1 for kwarg in kwargs
482
               if isinstance(kwarg, str) and kwarg.startswith(REGEX_PREFIX)):
483
            # allow empty results if filter criteria involve a regex
484
            return []
485
        raise FileNotFoundError("File not found: %s %s" % (args, kwargs))
486
487
    def remove_one_file(self, ID, fileGrp=None):
488
        """
489
        Delete an existing :py:class:`ocrd_models.ocrd_file.OcrdFile`.
490
        Arguments:
491
            ID (string|OcrdFile): ``@ID`` of the ``mets:file`` to delete  Can also be an :py:class:`ocrd_models.ocrd_file.OcrdFile` to avoid search via ``ID``.
492
            fileGrp (string): ``@USE`` of the ``mets:fileGrp`` containing the ``mets:file``. Used only for optimization.
493
        Returns:
494
            The old :py:class:`ocrd_models.ocrd_file.OcrdFile` reference.
495
        """
496
        log = getLogger('ocrd_models.ocrd_mets.remove_one_file')
497
        log.debug("remove_one_file(%s %s)" % (ID, fileGrp))
498
        if isinstance(ID, OcrdFile):
499
            ocrd_file = ID
500
            ID = ocrd_file.ID
501
        else:
502
            ocrd_file = next(self.find_files(ID=ID, fileGrp=fileGrp), None)
503
504
        if not ocrd_file:
505
            raise FileNotFoundError("File not found: %s (fileGr=%s)" % (ID, fileGrp))
506
507
        # Delete the physical page ref
508
        fptrs = []
509
        if self._cache_flag:
510
            for page in self._fptr_cache.keys():
511
                if ID in self._fptr_cache[page]:
512
                    fptrs.append(self._fptr_cache[page][ID])
513
        else:
514
            fptrs = self._tree.getroot().findall('.//mets:fptr[@FILEID="%s"]' % ID, namespaces=NS)
515
516
        # Delete the physical page ref
517
        for fptr in fptrs:
518
            log.debug("Delete fptr element %s for page '%s'", fptr, ID)
519
            page_div = fptr.getparent()
520
            page_div.remove(fptr)
521
            # Remove the fptr from the cache as well
522
            if self._cache_flag:
523
                del self._fptr_cache[page_div.get('ID')][ID]
524
            # delete empty pages
525
            if not page_div.getchildren():
526
                log.debug("Delete empty page %s", page_div)
527
                page_div.getparent().remove(page_div)
528
                # Delete the empty pages from caches as well
529
                if self._cache_flag:
530
                    del self._page_cache[page_div.get('ID')]
531
                    del self._fptr_cache[page_div.get('ID')]
532
533
        # Delete the file reference from the cache
534
        if self._cache_flag:
535
            parent_use = ocrd_file._el.getparent().get('USE')
536
            del self._file_cache[parent_use][ocrd_file.ID]
537
538
        # Delete the file reference
539
        # pylint: disable=protected-access
540
        ocrd_file._el.getparent().remove(ocrd_file._el)
541
542
        return ocrd_file
543
544
    @property
545
    def physical_pages(self):
546
        """
547
        List all page IDs (the ``@ID`` of each physical ``mets:structMap`` ``mets:div``)
548
        """
549
        if self._cache_flag:
550
            return self._page_cache.values()
551
            
552
        return self._tree.getroot().xpath(
553
            'mets:structMap[@TYPE="PHYSICAL"]/mets:div[@TYPE="physSequence"]/mets:div[@TYPE="page"]/@ID',
554
            namespaces=NS)
555
556
    def get_physical_pages(self, for_fileIds=None):
557
        """
558
        List all page IDs (the ``@ID`` of each physical ``mets:structMap`` ``mets:div``),
559
        optionally for a subset of ``mets:file`` ``@ID`` :py:attr:`for_fileIds`.
560
        """
561
        if for_fileIds is None:
562
            return self.physical_pages
563
        ret = [None] * len(for_fileIds)
564
        
565
        if self._cache_flag:
566
            for pageId in self._fptr_cache.keys():
567
                for fptr in self._fptr_cache[pageId].keys():
568
                    if fptr in for_fileIds:
569
                        ret[for_fileIds.index(fptr)] = pageId
570
        else:
571
          for page in self._tree.getroot().xpath(
572
              'mets:structMap[@TYPE="PHYSICAL"]/mets:div[@TYPE="physSequence"]/mets:div[@TYPE="page"]',
573
                  namespaces=NS):
574
              for fptr in page.findall('mets:fptr', NS):
575
                  if fptr.get('FILEID') in for_fileIds:
576
                      ret[for_fileIds.index(fptr.get('FILEID'))] = page.get('ID')
577
        return ret
578
579
    def set_physical_page_for_file(self, pageId, ocrd_file, order=None, orderlabel=None):
580
        """
581
        Set the physical page ID (``@ID`` of the physical ``mets:structMap`` ``mets:div`` entry)
582
        corresponding to the ``mets:file`` :py:attr:`ocrd_file`, creating all structures if necessary.
583
        Arguments:
584
            pageId (string): ``@ID`` of the physical ``mets:structMap`` entry to use
585
            ocrd_file (object): existing :py:class:`ocrd_models.ocrd_file.OcrdFile` object
586
        Keyword Args:
587
            order (string): ``@ORDER`` to use
588
            orderlabel (string): ``@ORDERLABEL`` to use
589
        """
590
591
        # delete any page mapping for this file.ID
592
        candidates = []
593
        if self._cache_flag:
594
            for page_id in self._fptr_cache.keys():
595
                if ocrd_file.ID in self._fptr_cache[page_id].keys():
596
                    if self._fptr_cache[page_id][ocrd_file.ID] is not None:
597
                        candidates.append(self._fptr_cache[page_id][ocrd_file.ID])
598
        else:
599
            candidates = self._tree.getroot().findall(
600
                'mets:structMap[@TYPE="PHYSICAL"]/mets:div[@TYPE="physSequence"]/mets:div[@TYPE="page"]/mets:fptr[@FILEID="%s"]' %
601
                ocrd_file.ID, namespaces=NS)
602
603
        for el_fptr in candidates:
604
            if self._cache_flag:
605
                del self._fptr_cache[el_fptr.getparent().get('ID')][ocrd_file.ID]
606
            el_fptr.getparent().remove(el_fptr)
607
608
        # find/construct as necessary
609
        el_structmap = self._tree.getroot().find('mets:structMap[@TYPE="PHYSICAL"]', NS)
610
        if el_structmap is None:
611
            el_structmap = ET.SubElement(self._tree.getroot(), TAG_METS_STRUCTMAP)
612
            el_structmap.set('TYPE', 'PHYSICAL')
613
        el_seqdiv = el_structmap.find('mets:div[@TYPE="physSequence"]', NS)
614
        if el_seqdiv is None:
615
            el_seqdiv = ET.SubElement(el_structmap, TAG_METS_DIV)
616
            el_seqdiv.set('TYPE', 'physSequence')
617
        
618
        el_pagediv = None
619
        if self._cache_flag:
620
            if pageId in self._page_cache:
621
                el_pagediv = self._page_cache[pageId]
622
        else:
623
            el_pagediv = el_seqdiv.find('mets:div[@ID="%s"]' % pageId, NS)
624
        
625
        if el_pagediv is None:
626
            el_pagediv = ET.SubElement(el_seqdiv, TAG_METS_DIV)
627
            el_pagediv.set('TYPE', 'page')
628
            el_pagediv.set('ID', pageId)
629
            if order:
630
                el_pagediv.set('ORDER', order)
631
            if orderlabel:
632
                el_pagediv.set('ORDERLABEL', orderlabel)
633
            if self._cache_flag:
634
                # Create a new entry in the page cache
635
                self._page_cache[pageId] = el_pagediv
636
                # Create a new entry in the fptr cache and 
637
                # assign an empty dictionary to hold the fileids
638
                self._fptr_cache[pageId] = {}
639
                
640
        el_fptr = ET.SubElement(el_pagediv, TAG_METS_FPTR)
641
        el_fptr.set('FILEID', ocrd_file.ID)
642
643
        if self._cache_flag:
644
            # Assign the ocrd fileID to the pageId in the cache
645
            self._fptr_cache[el_pagediv.get('ID')].update({ocrd_file.ID : el_fptr})
646
647
    def get_physical_page_for_file(self, ocrd_file):
648
        """
649
        Get the physical page ID (``@ID`` of the physical ``mets:structMap`` ``mets:div`` entry)
650
        corresponding to the ``mets:file`` :py:attr:`ocrd_file`.
651
        """
652
        ret = []
653
        if self._cache_flag:
654
            for pageId in self._fptr_cache.keys():
655
                if ocrd_file.ID in self._fptr_cache[pageId].keys():
656
                    ret.append(self._page_cache[pageId].get('ID'))
657
        else:
658
            ret = self._tree.getroot().xpath(
659
                '/mets:mets/mets:structMap[@TYPE="PHYSICAL"]/mets:div[@TYPE="physSequence"]/mets:div[@TYPE="page"][./mets:fptr[@FILEID="%s"]]/@ID' %
660
                ocrd_file.ID, namespaces=NS)
661
662
        # To get rid of the python's FutureWarning
663
        if len(ret):
664
            return ret[0]
665
666
    def remove_physical_page(self, ID):
667
        """
668
        Delete page (physical ``mets:structMap`` ``mets:div`` entry ``@ID``) :py:attr:`ID`.
669
        """
670
        mets_div = None
671
        if self._cache_flag:
672
            if ID in self._page_cache.keys():
673
                mets_div = [self._page_cache[ID]]
674
        else:
675
            mets_div = self._tree.getroot().xpath(
676
                'mets:structMap[@TYPE="PHYSICAL"]/mets:div[@TYPE="physSequence"]/mets:div[@TYPE="page"][@ID="%s"]' % ID,
677
                namespaces=NS)
678
        if mets_div is not None:
679
            mets_div[0].getparent().remove(mets_div[0])
680
            if self._cache_flag:
681
                del self._page_cache[ID]
682
                del self._fptr_cache[ID]
683
684
    def remove_physical_page_fptr(self, fileId):
685
        """
686
        Delete all ``mets:fptr[@FILEID = fileId]`` to ``mets:file[@ID == fileId]`` for :py:attr:`fileId` from all ``mets:div`` entries in the physical ``mets:structMap``.
687
        Returns:
688
            List of pageIds that mets:fptrs were deleted from
689
        """
690
691
        # Question: What is the reason to keep a list of mets_fptrs?
692
        # Do we have a situation in which the fileId is same for different pageIds ?
693
        # From the examples I have seen inside 'assets' that is not the case
694
        # and the mets_fptrs list will always contain a single element.
695
        # If that's the case then we do not need to iterate 2 loops, just one.
696
        mets_fptrs = []
697
        if self._cache_flag:
698
            for page_id in self._fptr_cache.keys():
699
                if fileId in self._fptr_cache[page_id].keys():
700
                    mets_fptrs.append(self._fptr_cache[page_id][fileId]) 
701
        else:
702
            mets_fptrs = self._tree.getroot().xpath(
703
                'mets:structMap[@TYPE="PHYSICAL"]/mets:div[@TYPE="physSequence"]/mets:div[@TYPE="page"]/mets:fptr[@FILEID="%s"]' % fileId, namespaces=NS)
704
        ret = []
705
        for mets_fptr in mets_fptrs:
706
            mets_div = mets_fptr.getparent()
707
            ret.append(mets_div.get('ID'))
708
            if self._cache_flag:
709
                del self._fptr_cache[mets_div.get('ID')][mets_fptr.get('FILEID')]
710
            mets_div.remove(mets_fptr)
711
        return ret
712
713
    def merge(self, other_mets, force=False, fileGrp_mapping=None, fileId_mapping=None, pageId_mapping=None, after_add_cb=None, **kwargs):
714
        """
715
        Add all files from other_mets.
716
        Accepts the same kwargs as :py:func:`find_files`
717
        Keyword Args:
718
            force (boolean): Whether to :py:meth:`add_file`s with force (overwriting existing ``mets:file``s)
719
            fileGrp_mapping (dict): Map :py:attr:`other_mets` fileGrp to fileGrp in this METS
720
            fileId_mapping (dict): Map :py:attr:`other_mets` file ID to file ID in this METS
721
            pageId_mapping (dict): Map :py:attr:`other_mets` page ID to page ID in this METS
722
            after_add_cb (function): Callback received after file is added to the METS
723
        """
724
        if not fileGrp_mapping:
725
            fileGrp_mapping = {}
726
        if not fileId_mapping:
727
            fileId_mapping = {}
728
        if not pageId_mapping:
729
            pageId_mapping = {}
730
        for f_src in other_mets.find_files(**kwargs):
731
            f_dest = self.add_file(
732
                    fileGrp_mapping.get(f_src.fileGrp, f_src.fileGrp),
733
                    mimetype=f_src.mimetype,
734
                    url=f_src.url,
735
                    ID=fileId_mapping.get(f_src.ID, f_src.ID),
736
                    pageId=pageId_mapping.get(f_src.pageId, f_src.pageId),
737
                    force=force)
738
            # FIXME: merge metsHdr, amdSec, dmdSec as well
739
            # FIXME: merge structMap logical and structLink as well
740
            if after_add_cb:
741
                after_add_cb(f_dest)
742