blob: 342e05e18267c4ea8a92e5117ca4d715c45e8740 [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.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef TINK_PYTHON_CC_PYTHON_FILE_OBJECT_ADAPTER_H_
#define TINK_PYTHON_CC_PYTHON_FILE_OBJECT_ADAPTER_H_
#include "absl/strings/string_view.h"
#include "tink/util/status.h"
#include "tink/util/statusor.h"
namespace crypto {
namespace tink {
// Adapts a Python file object for use in C++.
// This is CLIFed and implemented in Python.
class PythonFileObjectAdapter {
public:
// Writes 'data' to the underlying stream and returns the number of bytes
// written, which can be less than the size of 'data'.
virtual util::StatusOr<int> Write(absl::string_view data) = 0;
// Closes the underlying stream.
virtual util::Status Close() = 0;
virtual ~PythonFileObjectAdapter() {}
};
} // namespace tink
} // namespace crypto
#endif // TINK_PYTHON_CC_PYTHON_FILE_OBJECT_ADAPTER_H_