File: mrcinterpreter.py

package info (click to toggle)
python-mrcfile 1.5.4-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 63,824 kB
  • sloc: python: 3,871; sh: 28; makefile: 16
file content (385 lines) | stat: -rw-r--r-- 14,951 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
# Copyright (c) 2016, Science and Technology Facilities Council
# This software is distributed under a BSD licence. See LICENSE.txt.
"""
mrcinterpreter
--------------

Module which exports the :class:`MrcInterpreter` class.

Classes:
    :class:`MrcInterpreter`: An object which can interpret an I/O stream as MRC
    data.

"""

# Import Python 3 features for future-proofing
from __future__ import (absolute_import, division, print_function,
                        unicode_literals)

import warnings

import numpy as np

from . import utils
from .dtypes import HEADER_DTYPE
from .mrcobject import MrcObject
from .constants import MAP_ID


class MrcInterpreter(MrcObject):

    """An object which interprets an I/O stream as MRC / CCP4 map data.

    The header and data are handled as numpy arrays - see
    :class:`~mrcfile.mrcobject.MrcObject` for details.

    :class:`MrcInterpreter` can be used directly, but it is mostly intended as
    a superclass to provide common stream-handling functionality. This can be
    used by subclasses which will handle opening and closing the stream.

    This class implements the :meth:`~object.__enter__` and
    :meth:`~object.__exit__` special methods which allow it to be used by the
    Python context manager in a :keyword:`with` block. This ensures that
    :meth:`close` is called after the object is finished with.

    When reading the I/O stream, a :exc:`ValueError` is raised if the data is
    invalid in one of the following ways:

    #. The header's ``map`` field is not set correctly to confirm the file
       type.
    #. The machine stamp is invalid and so the data's byte order cannot be
       determined.
    #. The mode number is not recognised. Currently accepted modes are 0, 1, 2,
       4 and 6.
    #. The file is not large enough for the specified extended header size.
    #. The data block is not large enough for the specified data type and
       dimensions.

    :class:`MrcInterpreter` offers a permissive read mode for handling
    problematic files. If ``permissive`` is set to :data:`True` and any of the
    validity checks fails, a :mod:`warning <warnings>` is issued instead of an
    exception, and file interpretation continues. If the mode number is invalid
    or the data block is too small, the
    :attr:`~mrcfile.mrcobject.MrcObject.data` attribute will be set to
    :data:`None`. In this case, it might be possible to inspect and correct the
    header, and then call :meth:`_read` again to read the data correctly. See
    the :doc:`usage guide <../usage_guide>` for more details.

    Methods:

    * :meth:`flush`
    * :meth:`close`

    Methods relevant to subclasses:

    * :meth:`_read`
    * :meth:`_read_data`
    * :meth:`_read_bytearray_from_stream`

    """

    def __init__(self, iostream=None, permissive=False, header_only=False,
                 **kwargs):
        """Initialise a new MrcInterpreter object.

        This initialiser reads the stream if it is given. In general,
        subclasses should call :meth:`__init__` without giving an ``iostream``
        argument, then set the ``_iostream`` attribute themselves and call
        :meth:`_read` when ready.

        To use the MrcInterpreter class directly, pass a stream when creating
        the object (or for a write-only stream, create an MrcInterpreter with
        no stream, call :meth:`._create_default_attributes` and set the
        ``_iostream`` attribute directly).

        Args:
            iostream: The I/O stream to use to read and write MRC data. The
                default is :data:`None`.
            permissive: Read the stream in permissive mode. The default is
                :data:`False`.
            header_only: Only read the header (and extended header) from the
                file. The default is :data:`False`.

        Raises:
            :exc:`ValueError`: If ``iostream`` is given, the data it contains
                cannot be interpreted as a valid MRC file and ``permissive``
                is :data:`False`.

        Warns:
            RuntimeWarning: If ``iostream`` is given, the data it contains
                cannot be interpreted as a valid MRC file and ``permissive``
                is :data:`True`.
        """
        super(MrcInterpreter, self).__init__(**kwargs)

        self._iostream = iostream
        self._permissive = permissive

        # If iostream is given, initialise by reading it
        if self._iostream is not None:
            self._read(header_only)

    def __enter__(self):
        """Called by the context manager at the start of a :keyword:`with`
        block.

        Returns:
            This object (``self``).
        """
        return self

    def __exit__(self, exc_type, exc_val, exc_tb):
        """Called by the context manager at the end of a :keyword:`with`
        block.

        This ensures that the :meth:`close` method is called.
        """
        self.close()

    def __del__(self):
        """Attempt to flush the stream when this object is garbage collected.

        It's better not to rely on this - instead, use a :keyword:`with`
        block or explicitly call the :meth:`close` method.
        """
        try:
            self.close()
        except Exception:
            pass

    def _read(self, header_only=False):
        """Read the header, extended header and data from the I/O stream.

        Before calling this method, the stream should be open and positioned at
        the start of the header. This method will advance the stream to the end
        of the data block (or the end of the extended header if ``header_only``
        is :data:`True`.

        Args:
            header_only: Only read the header and extended header from the
                stream. The default is :data:`False`.

        Raises:
            :exc:`ValueError`: If the data in the stream cannot be interpreted
                 as a valid MRC file and ``permissive`` is :data:`False`.

        Warns:
            RuntimeWarning:  If the data in the stream cannot be interpreted
                 as a valid MRC file and ``permissive`` is :data:`True`.
        """
        self._read_header()
        self._read_extended_header()
        if not header_only:
            self._read_data()

    def _read_header(self):
        """Read the MRC header from the I/O stream.

        The header will be read from the current stream position, and the
        stream will be advanced by 1024 bytes.

        Raises:
            :exc:`ValueError`: If the data in the stream cannot be interpreted
                 as a valid MRC file and ``permissive`` is :data:`False`.

        Warns:
            RuntimeWarning:  If the data in the stream cannot be interpreted
                 as a valid MRC file and ``permissive`` is :data:`True`.
        """
        # Read 1024 bytes from the stream
        header_arr, bytes_read = self._read_bytearray_from_stream(HEADER_DTYPE.itemsize)
        if bytes_read < HEADER_DTYPE.itemsize:
            raise ValueError("Couldn't read enough bytes for MRC header")

        # Use a recarray to allow access to fields as attributes
        # (e.g. header.mode instead of header['mode'])
        header = np.frombuffer(header_arr, dtype=HEADER_DTYPE).reshape(()).view(np.recarray)

        # Check the map ID to make sure this is an MRC file. The full map ID
        # should be 'MAP ', but we check only the first three bytes because
        # this is the form specified in the MRC2014 paper and is used by some
        # other software.
        if bytes(header.map)[:3] != MAP_ID[:3]:
            msg = ("Map ID string not found - "
                   "not an MRC file, or file is corrupt")
            if self._permissive:
                warnings.warn(msg, RuntimeWarning)
            else:
                raise ValueError(msg)

        # Read the machine stamp to get the file's byte order
        try:
            byte_order = utils.byte_order_from_machine_stamp(header.machst)
        except ValueError as err:
            if self._permissive:
                byte_order = '<' # try little-endian as a sensible default
                warnings.warn(str(err), RuntimeWarning)
            else:
                raise

        # Create a new dtype with the correct byte order and update the header
        header.dtype = header.dtype.newbyteorder(byte_order)

        # Check mode is valid; if not, try the opposite byte order
        # (Some MRC files have been seen 'in the wild' that are correct except
        # that the machine stamp indicates the wrong byte order.)
        if self._permissive:
            try:
                utils.dtype_from_mode(header.mode)
            except ValueError:
                try:
                    opp_mode = header.mode.view(header.mode.dtype.newbyteorder())
                    utils.dtype_from_mode(opp_mode)
                    # If we get here the new byte order is probably correct
                    # Use it and issue a warning
                    header.dtype = header.dtype.newbyteorder()
                    pretty_machst = utils.pretty_machine_stamp(header.machst)
                    msg = "Machine stamp '{0}' does not match the apparent byte order '{1}'"
                    warnings.warn(msg.format(pretty_machst, header.mode.dtype.byteorder),
                                  RuntimeWarning)
                except ValueError:
                    # Neither byte order gives a valid mode. Ignore for now,
                    # and a warning will be issued by _read_data()
                    pass

        header.flags.writeable = not self._read_only
        self._header = header

    def _read_extended_header(self):
        """Read the extended header from the stream.

        If there is no extended header, a zero-length array is assigned to the
        extended_header attribute.

        The dtype is set as void (``'V1'``).

        Raises:
            :exc:`ValueError`: If the stream is not long enough to contain the
                extended header indicated by the header and ``permissive``
                is :data:`False`.

        Warns:
            RuntimeWarning: If the stream is not long enough to contain the
                extended header indicated by the header and ``permissive``
                is :data:`True`.
        """
        ext_header_arr, bytes_read = self._read_bytearray_from_stream(int(self.header.nsymbt))

        if bytes_read < self.header.nsymbt:
            msg = ("Expected {0} bytes in extended header but could only read {1}"
                   .format(self.header.nsymbt, bytes_read))
            if self._permissive:
                warnings.warn(msg, RuntimeWarning)
                self._extended_header = None
                return
            else:
                raise ValueError(msg)

        self._extended_header = np.frombuffer(ext_header_arr, dtype='V1')

        self._extended_header.flags.writeable = not self._read_only

    def _read_data(self, max_bytes=0):
        """Read the data array from the stream.

        This method uses information from the header to set the data array's
        shape and dtype.

        Args:
            max_bytes: Read at most this many bytes from the stream. If zero or
                negative, the full size of the data block as defined in the header
                will be read, even if this is very large.

        Raises:
            :exc:`ValueError`: If the stream is not long enough to contain the
                data indicated by the header and ``permissive`` is
                :data:`False`.

        Warns:
            RuntimeWarning: If the stream is not long enough to contain the
                data indicated by the header and ``permissive`` is
                :data:`True`.
        """
        try:
            dtype = utils.data_dtype_from_header(self.header)
        except ValueError as err:
            if self._permissive:
                warnings.warn("{0} - data block cannot be read".format(err),
                              RuntimeWarning)
                self._data = None
                return
            else:
                raise

        shape = utils.data_shape_from_header(self.header)

        nbytes = dtype.itemsize
        for axis_length in shape:
            nbytes *= axis_length

        if max_bytes > 0 and nbytes > max_bytes:
            msg = ("Expected {0} bytes in data block but limit is {1}"
                   .format(nbytes, max_bytes))
            if self._permissive:
                warnings.warn(msg, RuntimeWarning)
                self._data = None
                return
            else:
                raise ValueError(msg)

        data_arr, bytes_read = self._read_bytearray_from_stream(nbytes)

        if bytes_read < nbytes:
            msg = ("Expected {0} bytes in data block but could only read {1}"
                   .format(nbytes, bytes_read))
            if self._permissive:
                warnings.warn(msg, RuntimeWarning)
                self._data = None
                return
            else:
                raise ValueError(msg)

        self._data = np.frombuffer(data_arr, dtype=dtype).reshape(shape)
        self._data.flags.writeable = not self._read_only

    def _read_bytearray_from_stream(self, number_of_bytes):
        """Read a :class:`bytearray` from the stream.

        This default implementation relies on the stream implementing the
        :meth:`~io.BufferedIOBase.readinto` method to avoid copying the new
        array while creating the mutable :class:`bytearray`. Subclasses
        should override this if their stream does not support
        :meth:`~io.BufferedIOBase.readinto`.

        Returns:
            A 2-tuple of the :class:`bytearray` and the number of bytes that
            were read from the stream.
        """
        result_array = bytearray(number_of_bytes)
        bytes_read = self._iostream.readinto(result_array)
        return result_array, bytes_read

    def close(self):
        """Flush to the stream and clear the header and data attributes."""
        if self._header is not None and not self._iostream.closed:
            self.flush()
        self._header = None
        self._extended_header = None
        self._close_data()

    def flush(self):
        """Flush the header and data arrays to the I/O stream.

        This implementation seeks to the start of the stream, writes the
        header, extended header and data arrays, and then truncates the stream.

        Subclasses should override this implementation for streams which do not
        support :meth:`~io.IOBase.seek` or :meth:`~io.IOBase.truncate`.
        """
        if not self._read_only:
            self._iostream.seek(0)
            self._iostream.write(self.header)
            self._iostream.write(self.extended_header)
            self._iostream.write(np.ascontiguousarray(self.data))
            self._iostream.truncate()
            self._iostream.flush()