Xuanwo commented on code in PR #3017: URL: https://github.com/apache/incubator-opendal/pull/3017#discussion_r1317421064
########## core/src/docs/rfcs/3017_remove_write_copy_from.md: ########## @@ -0,0 +1,74 @@ +- Proposal Name: `remove_write_copy_from` +- Start Date: 2023-09-06 +- RFC PR: [apache/incubator-opendal#3017](https://github.com/apache/incubator-opendal/pull/3017) +- Tracking Issue: [apache/incubator-opendal#0000](https://github.com/apache/incubator-opendal/issues/0000) + +# Summary + +Remove the `oio::Write::copy_from()` API pending a more thoughtful design. + +# Motivation + +In [RFC-2083: Writer Sink API](./2083_writer_sink_api.md), we launched an API, initially named `sink` and changed to `copy_from`, that enables data writing from a `Reader` to a `Writer` object. + +The current API signature is: + +```rust +pub trait Write: Unpin + Send + Sync { + /// Copies data from the given reader to the writer. + /// + /// # Behavior + /// + /// - `Ok(n)` indicates successful writing of `n` bytes. + /// - `Err(err)` indicates a failure, resulting in zero bytes written. + /// + /// A situation where `n < size` may arise; the caller should then transmit the remaining bytes until the full amount is written. + async fn copy_from(&mut self, size: u64, src: oio::Reader) -> Result<u64>; +} +``` + +The API has the following limitations: + +- Incompatibility with existing buffering and retry mechanisms. +- Imposes ownership requirements on the reader, complicating its use. The reader must be recreated for every write operation. + +Due to restrictions in both Rust and Hyper's APIs, the following ideal implementation is currently unattainable: + +```rust +pub trait Write: Unpin + Send + Sync { + async fn copy_from(&mut self, size: u64, src: &mut impl oio::Read) -> Result<u64>; +} +``` + +- Rust doesn't allow us to have `impl oio::Read` in trait method if we want object safe. +- hyper doesn't allow us to use reference here, it requires `impl Stream + 'static`. + +Given these constraints, the proposal is to remove `oio::Write::copy_from` until a more fitting design becomes feasible. + +# Guide-level explanation + +The `Writer::sink()` and `Writer::copy()` methods will be deprecated. As a substitute, users can utilize `AsyncWrite` to copy a file or stream. Additional helper functions like `Writer::copy_from(r: &dyn AsyncRead)` may be provided if necessary. Review Comment: Added. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
