同步操作将从 OpenHarmony-SIG/python 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
"""Simple class to read IFF chunks.An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia FileFormat)) has the following structure:+----------------+| ID (4 bytes) |+----------------+| size (4 bytes) |+----------------+| data || ... |+----------------+The ID is a 4-byte string which identifies the type of chunk.The size field (a 32-bit value, encoded using big-endian byte order)gives the size of the whole chunk, including the 8-byte header.Usually an IFF-type file consists of one or more chunks. The proposedusage of the Chunk class defined here is to instantiate an instance atthe start of each chunk and read from the instance until it reachesthe end, after which a new instance can be instantiated. At the endof the file, creating a new instance will fail with an EOFErrorexception.Usage:while True:try:chunk = Chunk(file)except EOFError:breakchunktype = chunk.getname()while True:data = chunk.read(nbytes)if not data:pass# do something with dataThe interface is file-like. The implemented methods are:read, close, seek, tell, isatty.Extra methods are: skip() (called by close, skips to the end of the chunk),getname() (returns the name (ID) of the chunk)The __init__ method has one required argument, a file-like object(including a chunk instance), and one optional argument, a flag whichspecifies whether or not chunks are aligned on 2-byte boundaries. Thedefault is 1, i.e. aligned."""class Chunk:def __init__(self, file, align=True, bigendian=True, inclheader=False):import structself.closed = Falseself.align = align # whether to align to word (2-byte) boundariesif bigendian:strflag = '>'else:strflag = '<'self.file = fileself.chunkname = file.read(4)if len(self.chunkname) < 4:raise EOFErrortry:self.chunksize = struct.unpack_from(strflag+'L', file.read(4))[0]except struct.error:raise EOFError from Noneif inclheader:self.chunksize = self.chunksize - 8 # subtract headerself.size_read = 0try:self.offset = self.file.tell()except (AttributeError, OSError):self.seekable = Falseelse:self.seekable = Truedef getname(self):"""Return the name (ID) of the current chunk."""return self.chunknamedef getsize(self):"""Return the size of the current chunk."""return self.chunksizedef close(self):if not self.closed:try:self.skip()finally:self.closed = Truedef isatty(self):if self.closed:raise ValueError("I/O operation on closed file")return Falsedef seek(self, pos, whence=0):"""Seek to specified position into the chunk.Default position is 0 (start of chunk).If the file is not seekable, this will result in an error."""if self.closed:raise ValueError("I/O operation on closed file")if not self.seekable:raise OSError("cannot seek")if whence == 1:pos = pos + self.size_readelif whence == 2:pos = pos + self.chunksizeif pos < 0 or pos > self.chunksize:raise RuntimeErrorself.file.seek(self.offset + pos, 0)self.size_read = posdef tell(self):if self.closed:raise ValueError("I/O operation on closed file")return self.size_readdef read(self, size=-1):"""Read at most size bytes from the chunk.If size is omitted or negative, read until the endof the chunk."""if self.closed:raise ValueError("I/O operation on closed file")if self.size_read >= self.chunksize:return b''if size < 0:size = self.chunksize - self.size_readif size > self.chunksize - self.size_read:size = self.chunksize - self.size_readdata = self.file.read(size)self.size_read = self.size_read + len(data)if self.size_read == self.chunksize and \self.align and \(self.chunksize & 1):dummy = self.file.read(1)self.size_read = self.size_read + len(dummy)return datadef skip(self):"""Skip the rest of the chunk.If you are not interested in the contents of the chunk,this method should be called so that the file points tothe start of the next chunk."""if self.closed:raise ValueError("I/O operation on closed file")if self.seekable:try:n = self.chunksize - self.size_read# maybe fix alignmentif self.align and (self.chunksize & 1):n = n + 1self.file.seek(n, 1)self.size_read = self.size_read + nreturnexcept OSError:passwhile self.size_read < self.chunksize:n = min(8192, self.chunksize - self.size_read)dummy = self.read(n)if not dummy:raise EOFError
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。