mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
auto_port()支持多线程;支持查找用完端口
This commit is contained in:
parent
2939e4d42b
commit
ab1f85d192
@ -6,7 +6,7 @@
|
|||||||
from json import dumps, loads
|
from json import dumps, loads
|
||||||
from queue import Queue, Empty
|
from queue import Queue, Empty
|
||||||
from threading import Thread, Event
|
from threading import Thread, Event
|
||||||
from time import perf_counter
|
from time import perf_counter, sleep
|
||||||
|
|
||||||
from requests import get
|
from requests import get
|
||||||
from websocket import WebSocketTimeoutException, WebSocketException, WebSocketConnectionClosedException, \
|
from websocket import WebSocketTimeoutException, WebSocketException, WebSocketConnectionClosedException, \
|
||||||
@ -84,6 +84,7 @@ class ChromiumDriver(object):
|
|||||||
if timeout is not None and perf_counter() > timeout:
|
if timeout is not None and perf_counter() > timeout:
|
||||||
return {'error': {'message': 'timeout'}}
|
return {'error': {'message': 'timeout'}}
|
||||||
|
|
||||||
|
sleep(.02)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
except Exception:
|
except Exception:
|
||||||
|
@ -4,7 +4,9 @@
|
|||||||
@Contact : g1879@qq.com
|
@Contact : g1879@qq.com
|
||||||
"""
|
"""
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
from shutil import rmtree
|
||||||
from tempfile import gettempdir, TemporaryDirectory
|
from tempfile import gettempdir, TemporaryDirectory
|
||||||
|
from threading import Lock
|
||||||
|
|
||||||
from .options_manage import OptionsManager
|
from .options_manage import OptionsManager
|
||||||
from .._commons.tools import port_is_using, clean_folder
|
from .._commons.tools import port_is_using, clean_folder
|
||||||
@ -471,24 +473,34 @@ class ChromiumOptions(object):
|
|||||||
|
|
||||||
|
|
||||||
class PortFinder(object):
|
class PortFinder(object):
|
||||||
used_port = []
|
used_port = {}
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.tmp_dir = Path(gettempdir()) / 'DrissionPage' / 'TempFolder'
|
self.tmp_dir = Path(gettempdir()) / 'DrissionPage' / 'TempFolder'
|
||||||
self.tmp_dir.mkdir(parents=True, exist_ok=True)
|
self.tmp_dir.mkdir(parents=True, exist_ok=True)
|
||||||
if not PortFinder.used_port:
|
if not PortFinder.used_port:
|
||||||
clean_folder(self.tmp_dir)
|
clean_folder(self.tmp_dir)
|
||||||
|
self._lock = Lock()
|
||||||
|
|
||||||
def get_port(self):
|
def get_port(self):
|
||||||
"""查找一个可用端口
|
"""查找一个可用端口
|
||||||
:return: 可以使用的端口和用户文件夹路径组成的元组
|
:return: 可以使用的端口和用户文件夹路径组成的元组
|
||||||
"""
|
"""
|
||||||
for i in range(9600, 19800):
|
with self._lock:
|
||||||
if i in PortFinder.used_port or port_is_using('127.0.0.1', i):
|
for i in range(9600, 19600):
|
||||||
continue
|
if i in PortFinder.used_port:
|
||||||
|
continue
|
||||||
|
elif port_is_using('127.0.0.1', i):
|
||||||
|
PortFinder.used_port[i] = None
|
||||||
|
continue
|
||||||
|
path = TemporaryDirectory(dir=self.tmp_dir).name
|
||||||
|
PortFinder.used_port[i] = path
|
||||||
|
return i, path
|
||||||
|
|
||||||
path = TemporaryDirectory(dir=self.tmp_dir)
|
for i in range(9600, 19600):
|
||||||
PortFinder.used_port.append(i)
|
if port_is_using('127.0.0.1', i):
|
||||||
return i, path.name
|
continue
|
||||||
|
rmtree(PortFinder.used_port[i], ignore_errors=True)
|
||||||
|
return i, TemporaryDirectory(dir=self.tmp_dir).name
|
||||||
|
|
||||||
raise OSError('未找到可用端口。')
|
raise OSError('未找到可用端口。')
|
||||||
|
@ -127,7 +127,7 @@ class ChromiumOptions(object):
|
|||||||
|
|
||||||
|
|
||||||
class PortFinder(object):
|
class PortFinder(object):
|
||||||
used_port: list = ...
|
used_port: dict = ...
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_port() -> Tuple[int, str]: ...
|
def get_port() -> Tuple[int, str]: ...
|
||||||
|
@ -384,7 +384,6 @@ class ChromiumBase(BasePage):
|
|||||||
self.wait.load_complete()
|
self.wait.load_complete()
|
||||||
if self._scroll is None:
|
if self._scroll is None:
|
||||||
self._scroll = ChromiumPageScroll(self)
|
self._scroll = ChromiumPageScroll(self)
|
||||||
self.set.scroll.smooth(False)
|
|
||||||
return self._scroll
|
return self._scroll
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
Loading…
x
Reference in New Issue
Block a user