-
-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stanley Kudrow
committed
Nov 12, 2024
1 parent
3071526
commit 0faf5b5
Showing
3 changed files
with
47 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,23 @@ | ||
"""Async executor versions of file functions from the os.path module.""" | ||
|
||
import asyncio | ||
from functools import partial, wraps | ||
from os import path | ||
|
||
from aiofiles.base import wrap | ||
|
||
def wrap(func): | ||
@wraps(func) | ||
async def run(*args, loop=None, executor=None, **kwargs): | ||
if loop is None: | ||
loop = asyncio.get_running_loop() | ||
pfunc = partial(func, *args, **kwargs) | ||
return await loop.run_in_executor(executor, pfunc) | ||
|
||
return run | ||
|
||
abspath = wrap(path.abspath) | ||
|
||
exists = wrap(path.exists) | ||
isfile = wrap(path.isfile) | ||
isdir = wrap(path.isdir) | ||
islink = wrap(path.islink) | ||
ismount = wrap(path.ismount) | ||
|
||
getsize = wrap(path.getsize) | ||
getmtime = wrap(path.getmtime) | ||
getatime = wrap(path.getatime) | ||
getctime = wrap(path.getctime) | ||
|
||
isfile = wrap(path.isfile) | ||
isdir = wrap(path.isdir) | ||
islink = wrap(path.islink) | ||
ismount = wrap(path.ismount) | ||
|
||
samefile = wrap(path.samefile) | ||
sameopenfile = wrap(path.sameopenfile) | ||
abspath = wrap(path.abspath) |