opendal/services/alluxio/
writer.rs1use std::sync::Arc;
19
20use super::core::AlluxioCore;
21use crate::raw::*;
22use crate::*;
23
24pub type AlluxioWriters = AlluxioWriter;
25
26pub struct AlluxioWriter {
27 core: Arc<AlluxioCore>,
28
29 _op: OpWrite,
30 path: String,
31 stream_id: Option<u64>,
32}
33
34impl AlluxioWriter {
35 pub fn new(core: Arc<AlluxioCore>, _op: OpWrite, path: String) -> Self {
36 AlluxioWriter {
37 core,
38 _op,
39 path,
40 stream_id: None,
41 }
42 }
43}
44
45impl oio::Write for AlluxioWriter {
46 async fn write(&mut self, bs: Buffer) -> Result<()> {
47 let stream_id = match self.stream_id {
48 Some(stream_id) => stream_id,
49 None => {
50 let stream_id = self.core.create_file(&self.path).await?;
51 self.stream_id = Some(stream_id);
52 stream_id
53 }
54 };
55 self.core.write(stream_id, bs).await?;
56 Ok(())
57 }
58
59 async fn close(&mut self) -> Result<Metadata> {
60 let Some(stream_id) = self.stream_id else {
61 return Ok(Metadata::default());
62 };
63 self.core.close(stream_id).await?;
64
65 Ok(Metadata::default())
66 }
67
68 async fn abort(&mut self) -> Result<()> {
69 Err(Error::new(
70 ErrorKind::Unsupported,
71 "AlluxioWriter doesn't support abort",
72 ))
73 }
74}