rust/pv_core: Document possible errors of open_file and create_file

Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Reviewed-by: Steffen Eiden <seiden@linux.ibm.com>
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
This commit is contained in:
Marc Hartmayer
2024-11-11 12:07:56 +00:00
committed by Steffen Eiden
parent 8d0c620257
commit d1d0bd39ba

View File

@@ -1,17 +1,19 @@
// SPDX-License-Identifier: MIT
//
// Copyright IBM Corp. 2023
use crate::{
macros::{bail_spec, file_error},
Error, FileAccessErrorType, FileIoErrorType, Result,
};
use std::{
fs::File,
io::{Read, Write},
path::Path,
};
use zerocopy::{AsBytes, BigEndian, FromBytes, FromZeroes, U64};
use crate::{
macros::{bail_spec, file_error},
Error, FileAccessErrorType, FileIoErrorType, Result,
};
/// Trait that describes bitflags, represented by `T`.
pub trait Flags<T>: From<T> + for<'a> From<&'a T> {
/// Set the specified bit to one.
@@ -184,6 +186,10 @@ pub fn try_parse_u64(hex_str: &str, ctx: &str) -> Result<u64> {
/// Wraps [`File::open`]
///
/// * `path` - Path to file
///
/// # Errors
///
/// This function will return errors according to [`File::open`].
pub fn open_file<P: AsRef<Path>>(path: P) -> Result<File> {
File::open(&path).map_err(|e| Error::FileAccess {
ty: FileAccessErrorType::Open,
@@ -197,6 +203,10 @@ pub fn open_file<P: AsRef<Path>>(path: P) -> Result<File> {
/// Wraps [`File::create`]
///
/// * `path` - Path to file
///
/// # Errors
///
/// This function will return errors according to [`File::create`].
pub fn create_file<P: AsRef<Path>>(path: P) -> Result<File> {
File::create(&path).map_err(|e| Error::FileAccess {
ty: FileAccessErrorType::Create,