blob: 42f1cd4c1555aa384a9019d08295e3b2c7d4a7bf [file] [log] [blame]
# 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.
"""FileObjectAdapter class.
Used in conjunction with SimpleOutputStreamAdapter to allow a C++ OutputStream
to write to a Python file-like objects.
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import google_type_annotations
from __future__ import print_function
import io
from tink.python.cc.clif import simple_output_stream
class FileObjectAdapter(simple_output_stream.SimpleOutputStream):
"""Wraps a Python file object to SimpleOutputStream for use in C++."""
# TODO(paulavidas) add BinaryIO type annotation to file_object, after
# cr/266767195 is resolved
def __init__(self, file_object):
if not file_object.writable():
raise TypeError('File object must be writable.')
self._file_object = file_object
def write(self, data: bytes) -> int:
"""Writes to underlying file object and returns number of bytes written."""
try:
written = self._file_object.write(data)
return 0 if written is None else written
except io.BlockingIOError as e:
return e.characters_written
def close(self) -> None:
self._file_object.close()
def position(self) -> int:
return self._file_object.tell()