-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement storage lib of Arrow plasma as well as disk (#1904)
- Loading branch information
1 parent
b271cdd
commit b190fcd
Showing
15 changed files
with
1,028 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
# Copyright 1999-2020 Alibaba Group Holding Ltd. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import asyncio | ||
import functools | ||
from concurrent.futures import Executor | ||
from typing import Any, Type | ||
|
||
|
||
def _make_delegate_method(attr): | ||
async def method(self, *args, **kwargs): | ||
func = functools.partial(getattr(self._file, attr), *args, **kwargs) | ||
return await self._loop.run_in_executor(self._executor, func) | ||
|
||
return method | ||
|
||
|
||
def _make_proxy_method(attr): | ||
def method(self, *args, **kwargs): | ||
return getattr(self._file, attr)(*args, **kwargs) | ||
|
||
return method | ||
|
||
|
||
def _make_proxy_property(attr): | ||
def proxy_property(self): | ||
return getattr(self._file, attr) | ||
|
||
return property(proxy_property) | ||
|
||
|
||
def delegate_to_executor(*attrs): | ||
def wrap_cls(cls: Type): | ||
for attr in attrs: | ||
setattr(cls, attr, _make_delegate_method(attr)) | ||
return cls | ||
|
||
return wrap_cls | ||
|
||
|
||
def proxy_method_directly(*attrs): | ||
def wrap_cls(cls: Type): | ||
for attr in attrs: | ||
setattr(cls, attr, _make_proxy_method(attr)) | ||
return cls | ||
|
||
return wrap_cls | ||
|
||
|
||
def proxy_property_directly(*attrs): | ||
def wrap_cls(cls): | ||
for attr in attrs: | ||
setattr(cls, attr, _make_proxy_property(attr)) | ||
return cls | ||
|
||
return wrap_cls | ||
|
||
|
||
class AioBase: | ||
def __init__(self, | ||
file: Any, | ||
loop: asyncio.BaseEventLoop = None, | ||
executor: Executor = None): | ||
if loop is None: | ||
loop = asyncio.get_event_loop() | ||
if isinstance(file, AioBase): | ||
file = file._file | ||
|
||
self._file = file | ||
self._loop = loop | ||
self._executor = executor | ||
|
||
|
||
@delegate_to_executor( | ||
"close", | ||
"flush", | ||
"isatty", | ||
"read", | ||
"read1", | ||
"readinto", | ||
"readline", | ||
"readlines", | ||
"seek", | ||
"seekable", | ||
"tell", | ||
"truncate", | ||
"writable", | ||
"write", | ||
"writelines", | ||
) | ||
@proxy_method_directly("fileno", "readable") | ||
@proxy_property_directly("closed", "name", "mode") | ||
class AioFileObject(AioBase): | ||
def __aiter__(self): | ||
return self | ||
|
||
async def __anext__(self): | ||
"""Simulate normal file iteration.""" | ||
line = await self.readline() | ||
if line: | ||
return line | ||
else: | ||
raise StopAsyncIteration | ||
|
||
async def __aenter__(self): | ||
return self | ||
|
||
async def __aexit__(self, exc_type, exc_val, exc_tb): | ||
await self.close() | ||
self._file = None | ||
|
||
|
||
@delegate_to_executor( | ||
"cat", | ||
"ls", | ||
"delete", | ||
"disk_usage", | ||
"stat", | ||
"rm", | ||
"mv", | ||
"rename", | ||
"mkdir", | ||
"exists", | ||
"isdir", | ||
"isfile", | ||
"read_parquet", | ||
"walk", | ||
) | ||
@proxy_property_directly("pathsep") | ||
class AioFilesystem(AioBase): | ||
async def open(self, *args, **kwargs): | ||
func = functools.partial(self._file.open, *args, **kwargs) | ||
file = await self._loop.run_in_executor(self._executor, func) | ||
return AioFileObject(file) |
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# Copyright 1999-2020 Alibaba Group Holding Ltd. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
from .filesystem import FileSystemStorage | ||
from .plasma import PlasmaStorage |
Oops, something went wrong.