Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add function to determine if isolated #219

Merged
merged 2 commits into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions choreographer/browser_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ def __init__(
parser=parser,
)

def is_isolated(self) -> bool:
"""Return if process is isolated."""
return self._browser_impl.is_isolated()

async def open(self) -> None:
"""Open the browser."""
_logger.info("Opening browser.")
Expand Down Expand Up @@ -240,10 +244,11 @@ async def __aexit__(
async def _watchdog(self) -> None:
with warnings.catch_warnings():
warnings.filterwarnings("ignore", category=TmpDirWarning)
_logger.debug("Starting watchdog")
_logger.debug("In watchdog")
loop = asyncio.get_running_loop()
_logger.debug2("Running wait.")
await loop.run_in_executor(None, self.subprocess.wait)
_logger.warning("Browser is being closed by watchdog.")
_logger.warning("Wait expired, Browser is being closed by watchdog.")
self._watch_dog_task = None
await self.close()
await asyncio.sleep(1)
Expand Down
1 change: 1 addition & 0 deletions choreographer/browsers/_interface_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ def get_popen_args(self) -> Mapping[str, Any]: ...
def get_cli(self) -> Sequence[str]: ...
def get_env(self) -> MutableMapping[str, str]: ...
def clean(self) -> None: ...
def is_isolated(self) -> bool: ...
14 changes: 13 additions & 1 deletion choreographer/browsers/chromium.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,24 @@ def __init__(
if not isinstance(channel, Pipe):
raise NotImplementedError("Websocket style channels not implemented yet.")

self._is_isolated = "snap" in str(self.path)

self.tmp_dir = TmpDirectory(
path=self._tmp_dir_path,
sneak="snap" in str(self.path),
sneak=self._is_isolated,
)
_logger.info(f"Temporary directory at: {self.tmp_dir.path}")

def is_isolated(self) -> bool:
"""
Return if /tmp directory is isolated by OS.

Returns:
bool indicating if /tmp is isolated.

"""
return self._is_isolated

def get_popen_args(self) -> Mapping[str, Any]:
"""Return the args needed to runc chromium with `subprocess.Popen()`."""
args = {}
Expand Down