mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
调整quit()逻辑
This commit is contained in:
parent
038d837dda
commit
0e57938e23
@ -7,12 +7,12 @@
|
|||||||
"""
|
"""
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from shutil import rmtree
|
from shutil import rmtree
|
||||||
from time import sleep, perf_counter
|
from time import perf_counter, sleep
|
||||||
|
|
||||||
from websocket import WebSocketBadStatusException
|
from websocket import WebSocketBadStatusException
|
||||||
|
|
||||||
from .driver import BrowserDriver, Driver
|
from .driver import BrowserDriver, Driver
|
||||||
from .._functions.tools import stop_process_on_port, raise_error
|
from .._functions.tools import raise_error
|
||||||
from .._units.downloader import DownloadManager
|
from .._units.downloader import DownloadManager
|
||||||
from ..errors import PageDisconnectedError
|
from ..errors import PageDisconnectedError
|
||||||
|
|
||||||
@ -196,38 +196,41 @@ class Browser(object):
|
|||||||
:param force: 是否立刻强制终止进程
|
:param force: 是否立刻强制终止进程
|
||||||
:return: None
|
:return: None
|
||||||
"""
|
"""
|
||||||
|
pids = [pid['id'] for pid in self.run_cdp('SystemInfo.getProcessInfo')['processInfo']]
|
||||||
for tab in self._all_drivers.values():
|
for tab in self._all_drivers.values():
|
||||||
for driver in tab:
|
for driver in tab:
|
||||||
driver.stop()
|
driver.stop()
|
||||||
try:
|
|
||||||
self.run_cdp('Browser.close')
|
|
||||||
except PageDisconnectedError:
|
|
||||||
self.driver.stop()
|
|
||||||
return
|
|
||||||
self.driver.stop()
|
|
||||||
|
|
||||||
if force:
|
if force:
|
||||||
ip, port = self.address.split(':')
|
from psutil import Process
|
||||||
if ip not in ('127.0.0.1', 'localhost'):
|
for pid in pids:
|
||||||
return
|
Process(pid).kill()
|
||||||
stop_process_on_port(port, self.process_id)
|
else:
|
||||||
return
|
try:
|
||||||
|
self.run_cdp('Browser.close')
|
||||||
|
self.driver.stop()
|
||||||
|
except PageDisconnectedError:
|
||||||
|
self.driver.stop()
|
||||||
|
|
||||||
if self.process_id:
|
from os import popen
|
||||||
from os import popen
|
from platform import system
|
||||||
from platform import system
|
end_time = perf_counter() + timeout
|
||||||
txt = f'tasklist | findstr {self.process_id}' if system().lower() == 'windows' \
|
while perf_counter() < end_time:
|
||||||
else f'ps -ef | grep {self.process_id}'
|
ok = True
|
||||||
end_time = perf_counter() + timeout
|
for pid in pids:
|
||||||
while perf_counter() < end_time:
|
txt = f'tasklist | findstr {pid}' if system().lower() == 'windows' else f'ps -ef | grep {pid}'
|
||||||
p = popen(txt)
|
p = popen(txt)
|
||||||
sleep(.1)
|
sleep(.05)
|
||||||
try:
|
try:
|
||||||
if f' {self.process_id} ' not in p.read():
|
if f' {pid} ' in p.read():
|
||||||
return
|
ok = False
|
||||||
|
break
|
||||||
except TypeError:
|
except TypeError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
if ok:
|
||||||
|
break
|
||||||
|
|
||||||
def _on_disconnect(self):
|
def _on_disconnect(self):
|
||||||
self.page._on_disconnect()
|
self.page._on_disconnect()
|
||||||
Browser.BROWSERS.pop(self.id, None)
|
Browser.BROWSERS.pop(self.id, None)
|
||||||
|
@ -12,8 +12,6 @@ from tempfile import gettempdir, TemporaryDirectory
|
|||||||
from threading import Lock
|
from threading import Lock
|
||||||
from time import perf_counter
|
from time import perf_counter
|
||||||
|
|
||||||
from psutil import process_iter, AccessDenied, NoSuchProcess, ZombieProcess, Process
|
|
||||||
|
|
||||||
from .._configs.options_manage import OptionsManager
|
from .._configs.options_manage import OptionsManager
|
||||||
from ..errors import (ContextLostError, ElementLostError, CDPError, PageDisconnectedError, NoRectError,
|
from ..errors import (ContextLostError, ElementLostError, CDPError, PageDisconnectedError, NoRectError,
|
||||||
AlertExistsError, WrongURLError, StorageError, CookieFormatError, JavaScriptError)
|
AlertExistsError, WrongURLError, StorageError, CookieFormatError, JavaScriptError)
|
||||||
@ -182,40 +180,6 @@ def wait_until(function, kwargs=None, timeout=10):
|
|||||||
raise TimeoutError
|
raise TimeoutError
|
||||||
|
|
||||||
|
|
||||||
def stop_process_on_port(port, pid=None):
|
|
||||||
"""强制关闭某个端口内的进程
|
|
||||||
:param port: 端口号
|
|
||||||
:param pid: 进程号
|
|
||||||
:return: None
|
|
||||||
"""
|
|
||||||
if pid:
|
|
||||||
try:
|
|
||||||
for p in Process(pid).children():
|
|
||||||
p.terminate()
|
|
||||||
Process(pid).terminate()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
for proc in process_iter(['pid', 'connections']):
|
|
||||||
try:
|
|
||||||
connections = proc.connections()
|
|
||||||
except (AccessDenied, NoSuchProcess):
|
|
||||||
continue
|
|
||||||
for conn in connections:
|
|
||||||
if conn.laddr.port == int(port):
|
|
||||||
try:
|
|
||||||
# proc.terminate()
|
|
||||||
parent = proc.parent()
|
|
||||||
if parent is None:
|
|
||||||
proc.kill()
|
|
||||||
elif parent.name() == 'explorer.exe':
|
|
||||||
proc.terminate()
|
|
||||||
except (NoSuchProcess, AccessDenied, ZombieProcess):
|
|
||||||
pass
|
|
||||||
except Exception as e:
|
|
||||||
print(f"{proc.pid} {port}: {e}")
|
|
||||||
|
|
||||||
|
|
||||||
def configs_to_here(save_name=None):
|
def configs_to_here(save_name=None):
|
||||||
"""把默认ini文件复制到当前目录
|
"""把默认ini文件复制到当前目录
|
||||||
:param save_name: 指定文件名,为None则命名为'dp_configs.ini'
|
:param save_name: 指定文件名,为None则命名为'dp_configs.ini'
|
||||||
|
@ -42,9 +42,6 @@ def get_hwnds_from_pid(pid: Union[str, int], title: str) -> list: ...
|
|||||||
def wait_until(function: callable, kwargs: dict = None, timeout: float = 10): ...
|
def wait_until(function: callable, kwargs: dict = None, timeout: float = 10): ...
|
||||||
|
|
||||||
|
|
||||||
def stop_process_on_port(port: Union[int, str], pid: int = None) -> None: ...
|
|
||||||
|
|
||||||
|
|
||||||
def configs_to_here(file_name: Union[Path, str] = None) -> None: ...
|
def configs_to_here(file_name: Union[Path, str] = None) -> None: ...
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user