Skip to content
Original file line number Diff line number Diff line change
@@ -0,0 +1,178 @@
# Copyright 2025 Google LLC
#
# 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.
"""
NOTE:
This is _experimental module for upcoming support for Rapid Storage.
(https://cloud.google.com/blog/products/storage-data-transfer/high-performance-storage-innovations-for-ai-hpc#:~:text=your%20AI%20workloads%3A-,Rapid%20Storage,-%3A%20A%20new)

APIs may not work as intended and are not stable yet. Feature is not
GA(Generally Available) yet, please contact your TAM(Technical Account Manager)
if you want to use these Rapid Storage APIs.

"""
from typing import Optional
from google.cloud import _storage_v2
from google.cloud.storage._experimental.asyncio.async_grpc_client import AsyncGrpcClient
from google.cloud.storage._experimental.asyncio.async_abstract_object_stream import (
_AsyncAbstractObjectStream,
)
from google.api_core.bidi_async import AsyncBidiRpc


class _AsyncWriteObjectStream(_AsyncAbstractObjectStream):
"""Class representing a gRPC bidi-stream for writing data from a GCS
``Appendable Object``.

This class provides a unix socket-like interface to a GCS ``Object``, with
methods like ``open``, ``close``, ``send``, and ``recv``.

:type client: :class:`~google.cloud.storage._experimental.asyncio.async_grpc_client.AsyncGrpcClient.grpc_client`
:param client: async grpc client to use for making API requests.

:type bucket_name: str
:param bucket_name: The name of the GCS ``bucket`` containing the object.

:type object_name: str
:param object_name: The name of the GCS ``Appendable Object`` to be write.

:type generation_number: int
:param generation_number: (Optional) If present, selects a specific revision of
this object. If None, a new object is created.

:type write_handle: bytes
:param write_handle: (Optional) An existing handle for writing the object.
If provided, opening the bidi-gRPC connection will be faster.
"""

def __init__(
self,
client: AsyncGrpcClient.grpc_client,
bucket_name: str,
object_name: str,
generation_number: Optional[int] = None, # None means new object
write_handle: Optional[bytes] = None,
) -> None:
if client is None:
raise ValueError("client must be provided")
if bucket_name is None:
raise ValueError("bucket_name must be provided")
if object_name is None:
raise ValueError("object_name must be provided")

super().__init__(
bucket_name=bucket_name,
object_name=object_name,
generation_number=generation_number,
)
self.client: AsyncGrpcClient.grpc_client = client
self.write_handle: Optional[bytes] = write_handle

self._full_bucket_name = f"projects/_/buckets/{self.bucket_name}"

self.rpc = self.client._client._transport._wrapped_methods[
self.client._client._transport.bidi_write_object
]

self.metadata = (("x-goog-request-params", f"bucket={self._full_bucket_name}"),)
self.socket_like_rpc: Optional[AsyncBidiRpc] = None
self._is_stream_open: bool = False
self.first_bidi_write_req = None
self.persisted_size = 0
self.object_resource: Optional[_storage_v2.Object] = None

async def open(self) -> None:
"""Opening an object for write , should do it's state lookup
to know what's the persisted size is.
"""
if self._is_stream_open:
raise ValueError("Stream is already open")

# Create a new object or overwrite existing one if generation_number
# is None. This makes it consistent with GCS JSON API behavior.
# Created object type would be Appendable Object.
if self.generation_number is None:
self.first_bidi_write_req = _storage_v2.BidiWriteObjectRequest(
write_object_spec=_storage_v2.WriteObjectSpec(
resource=_storage_v2.Object(
name=self.object_name, bucket=self._full_bucket_name
),
appendable=True,
),
)
else:
self.first_bidi_write_req = _storage_v2.BidiWriteObjectRequest(
append_object_spec=_storage_v2.AppendObjectSpec(
bucket=self._full_bucket_name,
object=self.object_name,
generation=self.generation_number,
),
state_lookup=True,
)

self.socket_like_rpc = AsyncBidiRpc(
self.rpc, initial_request=self.first_bidi_write_req, metadata=self.metadata
)

await self.socket_like_rpc.open() # this is actually 1 send
response = await self.socket_like_rpc.recv()
self._is_stream_open = True

if not response.resource and not response.resource.generation:
raise ValueError(
"Failed to obtain object generation after opening the stream"
)
self.generation_number = response.resource.generation

if not response.write_handle:
raise ValueError("Failed to obtain write_handle after opening the stream")

self.write_handle = response.write_handle

async def close(self) -> None:
"""Closes the bidi-gRPC connection."""
raise NotImplementedError(
"close() is not implemented yet in _AsyncWriteObjectStream"
)

async def send(
self, bidi_write_object_request: _storage_v2.BidiWriteObjectRequest
) -> None:
"""Sends a request message on the stream.

Args:
bidi_write_object_request (:class:`~google.cloud._storage_v2.types.BidiReadObjectRequest`):
The request message to send. This is typically used to specify
the read offset and limit.
"""
raise NotImplementedError(
"send() is not implemented yet in _AsyncWriteObjectStream"
)

async def recv(self) -> _storage_v2.BidiWriteObjectResponse:
"""Receives a response from the stream.

This method waits for the next message from the server, which could
contain object data or metadata.

Returns:
:class:`~google.cloud._storage_v2.types.BidiWriteObjectResponse`:
The response message from the server.
"""
raise NotImplementedError(
"recv() is not implemented yet in _AsyncWriteObjectStream"
)

@property
def is_stream_open(self) -> bool:
return self._is_stream_open
Loading