Class: OpenDAL::IO
- Inherits:
-
Object
- Object
- OpenDAL::IO
- Defined in:
- src/io.rs,
lib/opendal_ruby/io.rb
Overview
OpenDAL::IO
is similar to Ruby's IO
and StringIO
for accessing files.
You can't create an instance of OpenDAL::IO
except using Operator#open.
Instance Method Summary collapse
-
#binmode ⇒ nil
Enables binary mode for the stream.
-
#binmode? ⇒ Boolean
Returns if the stream is on binary mode.
-
#close ⇒ nil
Close streams.
-
#close_read ⇒ nil
Closes the read stream.
-
#close_write ⇒ nil
Closes the write stream.
-
#closed? ⇒ Boolean
Returns if streams are closed.
-
#closed_read? ⇒ Boolean
Returns if the read stream is closed.
-
#closed_write? ⇒ Boolean
Returns if the write stream is closed.
-
#eof ⇒ Boolean
(also: #eof?)
Checks if the stream is at the end of the file.
-
#length ⇒ Integer
(also: #size)
Returns the total length of the stream.
-
#pos=(new_position) ⇒ Object
Sets the file position to
new_position
. -
#readline ⇒ String
Reads a single line from the stream.
-
#readlines ⇒ Array<String>
Reads all lines from the stream into an array.
-
#rewind ⇒ Object
Rewinds the stream to the beginning.
-
#seek(offset, whence) ⇒ Object
Moves the file position based on the offset and whence.
-
#tell ⇒ Integer
(also: #pos)
Returns the current position of the file pointer in the stream.
-
#write(buffer) ⇒ Integer
Writes data to the stream.
Instance Method Details
#binmode ⇒ nil
Enables binary mode for the stream.
116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'src/io.rs', line 116
fn binary_mode(ruby: &Ruby, rb_self: &Self) -> Result<(), Error> {
let mut cell = rb_self.0.borrow_mut();
match &mut *cell {
FileState::Reader(_, ref mut is_binary_mode) => {
*is_binary_mode = true;
Ok(())
}
FileState::Writer(_, ref mut is_binary_mode) => {
*is_binary_mode = true;
Ok(())
}
FileState::Closed => Err(Error::new(ruby.exception_io_error(), "closed stream")),
}
}
|
#binmode? ⇒ Boolean
Returns if the stream is on binary mode.
136 137 138 139 140 141 142 |
# File 'src/io.rs', line 136
fn is_binary_mode(ruby: &Ruby, rb_self: &Self) -> Result<bool, Error> {
match *rb_self.0.borrow() {
FileState::Reader(_, is_binary_mode) => Ok(is_binary_mode),
FileState::Writer(_, is_binary_mode) => Ok(is_binary_mode),
FileState::Closed => Err(Error::new(ruby.exception_io_error(), "closed stream")),
}
}
|
#close ⇒ nil
Close streams.
148 149 150 151 152 153 154 155 156 |
# File 'src/io.rs', line 148
fn close(&self) -> Result<(), Error> {
// skips closing reader because `StdReader` doesn't have `close()`.
let mut cell = self.0.borrow_mut();
if let FileState::Writer(writer, _) = &mut *cell {
writer.close().map_err(format_io_error)?;
}
*cell = FileState::Closed;
Ok(())
}
|
#close_read ⇒ nil
Closes the read stream.
162 163 164 165 |
# File 'src/io.rs', line 162
fn close_read(&self) -> Result<(), Error> {
*self.0.borrow_mut() = FileState::Closed;
Ok(())
}
|
#close_write ⇒ nil
Closes the write stream.
171 172 173 174 175 176 177 178 |
# File 'src/io.rs', line 171
fn close_write(&self) -> Result<(), Error> {
let mut cell = self.0.borrow_mut();
if let FileState::Writer(writer, _) = &mut *cell {
writer.close().map_err(format_io_error)?;
}
*cell = FileState::Closed;
Ok(())
}
|
#closed? ⇒ Boolean
Returns if streams are closed.
184 185 186 |
# File 'src/io.rs', line 184
fn is_closed(&self) -> Result<bool, Error> {
Ok(matches!(*self.0.borrow(), FileState::Closed))
}
|
#closed_read? ⇒ Boolean
Returns if the read stream is closed.
192 193 194 |
# File 'src/io.rs', line 192
fn is_closed_read(&self) -> Result<bool, Error> {
Ok(!matches!(*self.0.borrow(), FileState::Reader(_, _)))
}
|
#closed_write? ⇒ Boolean
Returns if the write stream is closed.
200 201 202 203 |
# File 'src/io.rs', line 200
fn is_closed_write(&self) -> Result<bool, Error> {
Ok(!matches!(*self.0.borrow(), FileState::Writer(_, _)))
}
}
|
#eof ⇒ Boolean Also known as: eof?
Checks if the stream is at the end of the file.
52 53 54 55 56 |
# File 'lib/opendal_ruby/io.rb', line 52 def eof position = tell seek(0, ::IO::SEEK_END) tell == position end |
#length ⇒ Integer Also known as: size
Returns the total length of the stream.
62 63 64 65 66 |
# File 'lib/opendal_ruby/io.rb', line 62 def length current_position = tell seek(0, ::IO::SEEK_END) tell.tap { self.pos = current_position } end |
#pos=(new_position) ⇒ Object
Sets the file position to new_position
.
44 45 46 |
# File 'lib/opendal_ruby/io.rb', line 44 def pos=(new_position) seek(new_position, ::IO::SEEK_SET) end |
#readline ⇒ String
Reads a single line from the stream.
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'src/io.rs', line 243
fn readline(ruby: &Ruby, rb_self: &Self) -> Result<String, Error> {
if let FileState::Reader(reader, _) = &mut *rb_self.0.borrow_mut() {
let mut buffer = String::new();
let size = reader.read_line(&mut buffer).map_err(format_io_error)?;
if size == 0 {
return Err(Error::new(
ruby.exception_eof_error(),
"end of file reached",
));
}
Ok(buffer)
} else {
Err(Error::new(
ruby.exception_runtime_error(),
"I/O operation failed for reading on closed file.",
))
}
}
|
#readlines ⇒ Array<String>
Reads all lines from the stream into an array.
25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/opendal_ruby/io.rb', line 25 def readlines results = [] loop do results << readline rescue EOFError break end results end |
#rewind ⇒ Object
Rewinds the stream to the beginning.
38 39 40 |
# File 'lib/opendal_ruby/io.rb', line 38 def rewind seek(0, ::IO::SEEK_SET) end |
#seek(offset, whence) ⇒ Object
Moves the file position based on the offset and whence.
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'src/io.rs', line 293
fn seek(ruby: &Ruby, rb_self: &Self, offset: i64, whence: u8) -> Result<u8, Error> {
match &mut *rb_self.0.borrow_mut() {
FileState::Reader(reader, _) => {
let whence = match whence {
0 => SeekFrom::Start(offset as u64),
1 => SeekFrom::Current(offset),
2 => SeekFrom::End(offset),
_ => return Err(Error::new(ruby.exception_arg_error(), "invalid whence")),
};
reader.seek(whence).map_err(format_io_error)?;
Ok(0)
}
FileState::Writer(_, _) => Err(Error::new(
ruby.exception_runtime_error(),
"I/O operation failed for reading on write only file.",
)),
FileState::Closed => Err(Error::new(
ruby.exception_runtime_error(),
"I/O operation failed for reading on closed file.",
)),
}
}
|
#tell ⇒ Integer Also known as: pos
Returns the current position of the file pointer in the stream.
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 |
# File 'src/io.rs', line 323
fn tell(ruby: &Ruby, rb_self: &Self) -> Result<u64, Error> {
match &mut *rb_self.0.borrow_mut() {
FileState::Reader(reader, _) => {
Ok(reader.stream_position().map_err(format_io_error)?)
}
FileState::Writer(_, _) => Err(Error::new(
ruby.exception_runtime_error(),
"I/O operation failed for reading on write only file.",
)),
FileState::Closed => Err(Error::new(
ruby.exception_runtime_error(),
"I/O operation failed for reading on closed file.",
)),
}
}
|
#write(buffer) ⇒ Integer
Writes data to the stream.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
# File 'src/io.rs', line 268
fn write(ruby: &Ruby, rb_self: &Self, bs: String) -> Result<usize, Error> {
if let FileState::Writer(writer, _) = &mut *rb_self.0.borrow_mut() {
Ok(writer
.write_all(bs.as_bytes())
.map(|_| bs.len())
.map_err(format_io_error)?)
} else {
Err(Error::new(
ruby.exception_runtime_error(),
"I/O operation failed for reading on write only file.",
))
}
}
}
|