__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# -*- test-case-name: twisted.internet.test.test_pollingfile -*-
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
"""
Implements a simple polling interface for file descriptors that don't work with
select() - this is pretty much only useful on Windows.
"""
from zope.interface import implementer
from twisted.internet.interfaces import IConsumer, IPushProducer
MIN_TIMEOUT = 0.000000001
MAX_TIMEOUT = 0.1
class _PollableResource:
active = True
def activate(self):
self.active = True
def deactivate(self):
self.active = False
class _PollingTimer:
# Everything is private here because it is really an implementation detail.
def __init__(self, reactor):
self.reactor = reactor
self._resources = []
self._pollTimer = None
self._currentTimeout = MAX_TIMEOUT
self._paused = False
def _addPollableResource(self, res):
self._resources.append(res)
self._checkPollingState()
def _checkPollingState(self):
for resource in self._resources:
if resource.active:
self._startPolling()
break
else:
self._stopPolling()
def _startPolling(self):
if self._pollTimer is None:
self._pollTimer = self._reschedule()
def _stopPolling(self):
if self._pollTimer is not None:
self._pollTimer.cancel()
self._pollTimer = None
def _pause(self):
self._paused = True
def _unpause(self):
self._paused = False
self._checkPollingState()
def _reschedule(self):
if not self._paused:
return self.reactor.callLater(self._currentTimeout, self._pollEvent)
def _pollEvent(self):
workUnits = 0.0
anyActive = []
for resource in self._resources:
if resource.active:
workUnits += resource.checkWork()
# Check AFTER work has been done
if resource.active:
anyActive.append(resource)
newTimeout = self._currentTimeout
if workUnits:
newTimeout = self._currentTimeout / (workUnits + 1.0)
if newTimeout < MIN_TIMEOUT:
newTimeout = MIN_TIMEOUT
else:
newTimeout = self._currentTimeout * 2.0
if newTimeout > MAX_TIMEOUT:
newTimeout = MAX_TIMEOUT
self._currentTimeout = newTimeout
if anyActive:
self._pollTimer = self._reschedule()
# If we ever (let's hope not) need the above functionality on UNIX, this could
# be factored into a different module.
import pywintypes
import win32api
import win32file
import win32pipe
@implementer(IPushProducer)
class _PollableReadPipe(_PollableResource):
def __init__(self, pipe, receivedCallback, lostCallback):
# security attributes for pipes
self.pipe = pipe
self.receivedCallback = receivedCallback
self.lostCallback = lostCallback
def checkWork(self):
finished = 0
fullDataRead = []
while 1:
try:
buffer, bytesToRead, result = win32pipe.PeekNamedPipe(self.pipe, 1)
# finished = (result == -1)
if not bytesToRead:
break
hr, data = win32file.ReadFile(self.pipe, bytesToRead, None)
fullDataRead.append(data)
except win32api.error:
finished = 1
break
dataBuf = b"".join(fullDataRead)
if dataBuf:
self.receivedCallback(dataBuf)
if finished:
self.cleanup()
return len(dataBuf)
def cleanup(self):
self.deactivate()
self.lostCallback()
def close(self):
try:
win32api.CloseHandle(self.pipe)
except pywintypes.error:
# You can't close std handles...?
pass
def stopProducing(self):
self.close()
def pauseProducing(self):
self.deactivate()
def resumeProducing(self):
self.activate()
FULL_BUFFER_SIZE = 64 * 1024
@implementer(IConsumer)
class _PollableWritePipe(_PollableResource):
def __init__(self, writePipe, lostCallback):
self.disconnecting = False
self.producer = None
self.producerPaused = False
self.streamingProducer = 0
self.outQueue = []
self.writePipe = writePipe
self.lostCallback = lostCallback
try:
win32pipe.SetNamedPipeHandleState(
writePipe, win32pipe.PIPE_NOWAIT, None, None
)
except pywintypes.error:
# Maybe it's an invalid handle. Who knows.
pass
def close(self):
self.disconnecting = True
def bufferFull(self):
if self.producer is not None:
self.producerPaused = True
self.producer.pauseProducing()
def bufferEmpty(self):
if self.producer is not None and (
(not self.streamingProducer) or self.producerPaused
):
self.producer.producerPaused = False
self.producer.resumeProducing()
return True
return False
# almost-but-not-quite-exact copy-paste from abstract.FileDescriptor... ugh
def registerProducer(self, producer, streaming):
"""Register to receive data from a producer.
This sets this selectable to be a consumer for a producer. When this
selectable runs out of data on a write() call, it will ask the producer
to resumeProducing(). A producer should implement the IProducer
interface.
FileDescriptor provides some infrastructure for producer methods.
"""
if self.producer is not None:
raise RuntimeError(
"Cannot register producer %s, because producer %s was never "
"unregistered." % (producer, self.producer)
)
if not self.active:
producer.stopProducing()
else:
self.producer = producer
self.streamingProducer = streaming
if not streaming:
producer.resumeProducing()
def unregisterProducer(self):
"""Stop consuming data from a producer, without disconnecting."""
self.producer = None
def writeConnectionLost(self):
self.deactivate()
try:
win32api.CloseHandle(self.writePipe)
except pywintypes.error:
# OMG what
pass
self.lostCallback()
def writeSequence(self, seq):
"""
Append a C{list} or C{tuple} of bytes to the output buffer.
@param seq: C{list} or C{tuple} of C{str} instances to be appended to
the output buffer.
@raise TypeError: If C{seq} contains C{unicode}.
"""
if str in map(type, seq):
raise TypeError("Unicode not allowed in output buffer.")
self.outQueue.extend(seq)
def write(self, data):
"""
Append some bytes to the output buffer.
@param data: C{str} to be appended to the output buffer.
@type data: C{str}.
@raise TypeError: If C{data} is C{unicode} instead of C{str}.
"""
if isinstance(data, str):
raise TypeError("Unicode not allowed in output buffer.")
if self.disconnecting:
return
self.outQueue.append(data)
if sum(map(len, self.outQueue)) > FULL_BUFFER_SIZE:
self.bufferFull()
def checkWork(self):
numBytesWritten = 0
if not self.outQueue:
if self.disconnecting:
self.writeConnectionLost()
return 0
try:
win32file.WriteFile(self.writePipe, b"", None)
except pywintypes.error:
self.writeConnectionLost()
return numBytesWritten
while self.outQueue:
data = self.outQueue.pop(0)
errCode = 0
try:
errCode, nBytesWritten = win32file.WriteFile(self.writePipe, data, None)
except win32api.error:
self.writeConnectionLost()
break
else:
# assert not errCode, "wtf an error code???"
numBytesWritten += nBytesWritten
if len(data) > nBytesWritten:
self.outQueue.insert(0, data[nBytesWritten:])
break
else:
resumed = self.bufferEmpty()
if not resumed and self.disconnecting:
self.writeConnectionLost()
return numBytesWritten
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| iocpreactor | Folder | 0755 |
|
|
| test | Folder | 0755 |
|
|
| __init__.py | File | 521 B | 0644 |
|
| _baseprocess.py | File | 1.96 KB | 0644 |
|
| _deprecate.py | File | 743 B | 0644 |
|
| _dumbwin32proc.py | File | 12.29 KB | 0644 |
|
| _glibbase.py | File | 12.61 KB | 0644 |
|
| _idna.py | File | 1.39 KB | 0644 |
|
| _newtls.py | File | 8.97 KB | 0644 |
|
| _pollingfile.py | File | 8.49 KB | 0644 |
|
| _posixserialport.py | File | 1.99 KB | 0644 |
|
| _posixstdio.py | File | 4.88 KB | 0644 |
|
| _producer_helpers.py | File | 3.82 KB | 0644 |
|
| _resolver.py | File | 9.46 KB | 0644 |
|
| _signals.py | File | 14.06 KB | 0644 |
|
| _sslverify.py | File | 70.68 KB | 0644 |
|
| _threadedselect.py | File | 11.31 KB | 0644 |
|
| _win32serialport.py | File | 4.69 KB | 0644 |
|
| _win32stdio.py | File | 3.04 KB | 0644 |
|
| abstract.py | File | 18.84 KB | 0644 |
|
| address.py | File | 5.14 KB | 0644 |
|
| asyncioreactor.py | File | 10.87 KB | 0644 |
|
| base.py | File | 46.82 KB | 0644 |
|
| cfreactor.py | File | 22.75 KB | 0644 |
|
| default.py | File | 1.85 KB | 0644 |
|
| defer.py | File | 95.88 KB | 0644 |
|
| endpoints.py | File | 76.59 KB | 0644 |
|
| epollreactor.py | File | 8.73 KB | 0644 |
|
| error.py | File | 13.14 KB | 0644 |
|
| fdesc.py | File | 3.16 KB | 0644 |
|
| gireactor.py | File | 3.42 KB | 0644 |
|
| glib2reactor.py | File | 1.24 KB | 0644 |
|
| gtk2reactor.py | File | 3.55 KB | 0644 |
|
| gtk3reactor.py | File | 512 B | 0644 |
|
| inotify.py | File | 14.06 KB | 0644 |
|
| interfaces.py | File | 95.89 KB | 0644 |
|
| kqreactor.py | File | 10.56 KB | 0644 |
|
| main.py | File | 1006 B | 0644 |
|
| pollreactor.py | File | 5.83 KB | 0644 |
|
| posixbase.py | File | 20.88 KB | 0644 |
|
| process.py | File | 43.14 KB | 0644 |
|
| protocol.py | File | 26.93 KB | 0644 |
|
| pyuisupport.py | File | 853 B | 0644 |
|
| reactor.py | File | 1.77 KB | 0644 |
|
| selectreactor.py | File | 5.96 KB | 0644 |
|
| serialport.py | File | 2.2 KB | 0644 |
|
| ssl.py | File | 8.47 KB | 0644 |
|
| stdio.py | File | 1006 B | 0644 |
|
| task.py | File | 32.9 KB | 0644 |
|
| tcp.py | File | 53.97 KB | 0644 |
|
| testing.py | File | 29.12 KB | 0644 |
|
| threads.py | File | 4.13 KB | 0644 |
|
| tksupport.py | File | 1.92 KB | 0644 |
|
| udp.py | File | 18.18 KB | 0644 |
|
| unix.py | File | 21.98 KB | 0644 |
|
| utils.py | File | 8.48 KB | 0644 |
|
| win32eventreactor.py | File | 14.84 KB | 0644 |
|
| wxreactor.py | File | 5.15 KB | 0644 |
|
| wxsupport.py | File | 1.27 KB | 0644 |
|