本文整理汇总了Python中PyQt5.QtCore.QBuffer.read方法的典型用法代码示例。如果您正苦于以下问题:Python QBuffer.read方法的具体用法?Python QBuffer.read怎么用?Python QBuffer.read使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PyQt5.QtCore.QBuffer
的用法示例。
在下文中一共展示了QBuffer.read方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: HexEditChunks
# 需要导入模块: from PyQt5.QtCore import QBuffer [as 别名]
# 或者: from PyQt5.QtCore.QBuffer import read [as 别名]
class HexEditChunks(object):
"""
Class implementing the storage backend for the hex editor.
When HexEditWidget loads data, HexEditChunks access them using a QIODevice
interface. When the app uses a QByteArray or Python bytearray interface,
QBuffer is used to provide again a QIODevice like interface. No data will
be changed, therefore HexEditChunks opens the QIODevice in
QIODevice.ReadOnly mode. After every access HexEditChunks closes the
QIODevice. That's why external applications can overwrite files while
HexEditWidget shows them.
When the the user starts to edit the data, HexEditChunks creates a local
copy of a chunk of data (4 kilobytes) and notes all changes there. Parallel
to that chunk, there is a second chunk, which keeps track of which bytes
are changed and which are not.
"""
BUFFER_SIZE = 0x10000
CHUNK_SIZE = 0x1000
READ_CHUNK_MASK = 0xfffffffffffff000
def __init__(self, ioDevice=None):
"""
Constructor
@param ioDevice io device to get the data from
@type QIODevice
"""
self.__ioDevice = None
self.__pos = 0
self.__size = 0
self.__chunks = []
if ioDevice is None:
buf = QBuffer()
self.setIODevice(buf)
else:
self.setIODevice(ioDevice)
def setIODevice(self, ioDevice):
"""
Public method to set an io device to read the binary data from.
@param ioDevice io device to get the data from
@type QIODevice
@return flag indicating successful operation
@rtype bool
"""
self.__ioDevice = ioDevice
ok = self.__ioDevice.open(QIODevice.ReadOnly)
if ok:
# open successfully
self.__size = self.__ioDevice.size()
self.__ioDevice.close()
else:
# fallback is an empty buffer
self.__ioDevice = QBuffer()
self.__size = 0
self.__chunks = []
self.__pos = 0
return ok
def data(self, pos=0, maxSize=-1, highlighted=None):
"""
Public method to get data out of the chunks.
@param pos position to get bytes from
@type int
@param maxSize maximum amount of bytes to get
@type int
@param highlighted reference to a byte array storing highlighting info
@type bytearray
@return retrieved data
@rtype bytearray
"""
ioDelta = 0
chunkIdx = 0
chunk = HexEditChunk()
buffer = bytearray()
if highlighted is not None:
del highlighted[:]
if pos >= self.__size:
return buffer
if maxSize < 0:
maxSize = self.__size
elif (pos + maxSize) > self.__size:
maxSize = self.__size - pos
self.__ioDevice.open(QIODevice.ReadOnly)
while maxSize > 0:
chunk.absPos = sys.maxsize
chunksLoopOngoing = True
while chunkIdx < len(self.__chunks) and chunksLoopOngoing:
#.........这里部分代码省略.........
示例2: HelpSchemeReply
# 需要导入模块: from PyQt5.QtCore import QBuffer [as 别名]
# 或者: from PyQt5.QtCore.QBuffer import read [as 别名]
class HelpSchemeReply(QIODevice):
"""
Class implementing a reply for a requested qthelp: page.
The Qt signal *closed* is emitted to signal that the web engine has read the data.
see: https://fossies.org/linux/eric6/eric/WebBrowser/Network/QtHelpSchemeHandler.py
All credits for this class go to:
Detlev Offenbach, the developer of The Eric Python IDE(https://eric-ide.python-projects.org)
"""
closed = pyqtSignal()
def __init__(self, job, engine, parent=None):
"""
Constructor
:param job: reference to the URL request
:type job: QWebEngineUrlRequestJob
:param engine: reference to the help engine
:type engine: QHelpEngine
:param parent: reference to the parent object
:type parent: QObject
"""
super(HelpSchemeReply, self).__init__(parent)
url = job.requestUrl()
strUrl = url.toString()
self.__buffer = QBuffer()
# For some reason the url to load maybe wrong (passed from web engine)
# though the css file and the references inside should work that way.
# One possible problem might be that the css is loaded at the same
# level as the html, thus a path inside the css like
# (../images/foo.png) might cd out of the virtual folder
if not engine.findFile(url).isValid():
if strUrl.startswith(QtHelp_DOCROOT):
newUrl = job.requestUrl()
if not newUrl.path().startswith("/qdoc/"):
newUrl.setPath("/qdoc" + newUrl.path())
url = newUrl
strUrl = url.toString()
self.__mimeType = mimetypes.guess_type(strUrl)[0]
if self.__mimeType is None:
# do our own (limited) guessing
self.__mimeType = self.__mimeFromUrl(url)
if engine.findFile(url).isValid():
data = engine.fileData(url)
else:
data = QByteArray(self.tr(
"""<html>"""
"""<head><title>Error 404...</title></head>"""
"""<body><div align="center"><br><br>"""
"""<h1>The page could not be found</h1><br>"""
"""<h3>'{0}'</h3></div></body>"""
"""</html>""").format(strUrl)
.encode("utf-8"))
self.__buffer.setData(data)
self.__buffer.open(QIODevice.ReadOnly)
self.open(QIODevice.ReadOnly)
def bytesAvailable(self):
"""
Public method to get the number of available bytes.
:returns: number of available bytes
:rtype: int
"""
return self.__buffer.bytesAvailable()
def readData(self, maxlen):
"""
Public method to retrieve data from the reply object.
:param maxlen: maximum number of bytes to read (integer)
:returns: string containing the data (bytes)
"""
return self.__buffer.read(maxlen)
def close(self):
"""
Public method used to close the reply.
"""
super(HelpSchemeReply, self).close()
self.closed.emit()
def __mimeFromUrl(self, url):
"""
Private method to guess the mime type given an URL.
:param url: URL to guess the mime type from (QUrl)
:returns: mime type for the given URL (string)
"""
path = url.path()
ext = os.path.splitext(path)[1].lower()
if ext in ExtensionMap:
#.........这里部分代码省略.........