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
|
# This is a generated file! Please edit source .ksy file and use kaitai-struct-compiler to rebuild
from pkg_resources import parse_version
from .kaitaistruct import __version__ as ks_version, KaitaiStruct, KaitaiStream, BytesIO
import collections
if parse_version(ks_version) < parse_version('0.7'):
raise Exception("Incompatible Kaitai Struct Python API: 0.7 or later is required, but you have %s" % (ks_version))
class WindowsSystemtime(KaitaiStruct):
"""Microsoft Windows SYSTEMTIME structure, stores individual components
of date and time as individual fields, up to millisecond precision.
.. seealso::
Source - https://msdn.microsoft.com/en-us/library/windows/desktop/ms724950.aspx
"""
SEQ_FIELDS = ["year", "month", "dow", "day", "hour", "min", "sec", "msec"]
def __init__(self, _io, _parent=None, _root=None):
self._io = _io
self._parent = _parent
self._root = _root if _root else self
self._debug = collections.defaultdict(dict)
def _read(self):
self._debug['year']['start'] = self._io.pos()
self.year = self._io.read_u2le()
self._debug['year']['end'] = self._io.pos()
self._debug['month']['start'] = self._io.pos()
self.month = self._io.read_u2le()
self._debug['month']['end'] = self._io.pos()
self._debug['dow']['start'] = self._io.pos()
self.dow = self._io.read_u2le()
self._debug['dow']['end'] = self._io.pos()
self._debug['day']['start'] = self._io.pos()
self.day = self._io.read_u2le()
self._debug['day']['end'] = self._io.pos()
self._debug['hour']['start'] = self._io.pos()
self.hour = self._io.read_u2le()
self._debug['hour']['end'] = self._io.pos()
self._debug['min']['start'] = self._io.pos()
self.min = self._io.read_u2le()
self._debug['min']['end'] = self._io.pos()
self._debug['sec']['start'] = self._io.pos()
self.sec = self._io.read_u2le()
self._debug['sec']['end'] = self._io.pos()
self._debug['msec']['start'] = self._io.pos()
self.msec = self._io.read_u2le()
self._debug['msec']['end'] = self._io.pos()
|