updated build system
Some checks failed
BlockStorage/repertory/pipeline/head There was a failure building this commit
Some checks failed
BlockStorage/repertory/pipeline/head There was a failure building this commit
This commit is contained in:
parent
f9e2e72d84
commit
8feb244dc9
@ -112,9 +112,9 @@ auto directory::copy_to(std::string_view new_path,
|
|||||||
function_name,
|
function_name,
|
||||||
"failed to copy directory",
|
"failed to copy directory",
|
||||||
"not implemented",
|
"not implemented",
|
||||||
path_,
|
|
||||||
new_path,
|
|
||||||
utils::string::from_bool(overwrite),
|
utils::string::from_bool(overwrite),
|
||||||
|
new_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
} catch (const std::exception &e) {
|
} catch (const std::exception &e) {
|
||||||
utils::error::handle_exception(function_name, e);
|
utils::error::handle_exception(function_name, e);
|
||||||
@ -381,8 +381,8 @@ auto directory::move_to(std::string_view new_path) -> bool {
|
|||||||
function_name,
|
function_name,
|
||||||
"failed to move directory",
|
"failed to move directory",
|
||||||
"not implemented",
|
"not implemented",
|
||||||
path_,
|
|
||||||
new_path,
|
new_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
} catch (const std::exception &e) {
|
} catch (const std::exception &e) {
|
||||||
utils::error::handle_exception(function_name, e);
|
utils::error::handle_exception(function_name, e);
|
||||||
|
@ -145,8 +145,8 @@ auto smb_directory::copy_to(std::string_view new_path,
|
|||||||
function_name,
|
function_name,
|
||||||
"failed to copy directory",
|
"failed to copy directory",
|
||||||
"not implemented",
|
"not implemented",
|
||||||
path_,
|
|
||||||
new_path,
|
new_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
} catch (const std::exception &e) {
|
} catch (const std::exception &e) {
|
||||||
utils::error::handle_exception(function_name, e);
|
utils::error::handle_exception(function_name, e);
|
||||||
@ -342,6 +342,7 @@ auto smb_directory::get_directory(std::string_view path) const
|
|||||||
function_name,
|
function_name,
|
||||||
"failed to stat directory",
|
"failed to stat directory",
|
||||||
rel_path,
|
rel_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -351,6 +352,7 @@ auto smb_directory::get_directory(std::string_view path) const
|
|||||||
function_name,
|
function_name,
|
||||||
"path is not a directory",
|
"path is not a directory",
|
||||||
rel_path,
|
rel_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -461,6 +463,7 @@ auto smb_directory::get_file(std::string_view path) const -> fs_file_t {
|
|||||||
function_name,
|
function_name,
|
||||||
"failed to stat file",
|
"failed to stat file",
|
||||||
rel_path,
|
rel_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -470,6 +473,7 @@ auto smb_directory::get_file(std::string_view path) const -> fs_file_t {
|
|||||||
function_name,
|
function_name,
|
||||||
"path is not a file",
|
"path is not a file",
|
||||||
rel_path,
|
rel_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -664,8 +668,8 @@ auto smb_directory::move_to(std::string_view new_path) -> bool {
|
|||||||
function_name,
|
function_name,
|
||||||
"failed to move directory",
|
"failed to move directory",
|
||||||
"not implemented",
|
"not implemented",
|
||||||
path_,
|
|
||||||
new_path,
|
new_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
} catch (const std::exception &e) {
|
} catch (const std::exception &e) {
|
||||||
utils::error::handle_exception(function_name, e);
|
utils::error::handle_exception(function_name, e);
|
||||||
|
@ -55,8 +55,8 @@ auto smb_file::copy_to(std::string_view new_path,
|
|||||||
"failed to copy file",
|
"failed to copy file",
|
||||||
"not implemented",
|
"not implemented",
|
||||||
std::to_string(overwrite),
|
std::to_string(overwrite),
|
||||||
path_,
|
|
||||||
new_path,
|
new_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
} catch (const std::exception &e) {
|
} catch (const std::exception &e) {
|
||||||
utils::error::handle_exception(function_name, e);
|
utils::error::handle_exception(function_name, e);
|
||||||
@ -139,6 +139,7 @@ auto smb_file::get_time(smb_session *session, smb_tid tid, std::string path,
|
|||||||
"failed to stat file",
|
"failed to stat file",
|
||||||
"not implemented",
|
"not implemented",
|
||||||
rel_path,
|
rel_path,
|
||||||
|
path,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -194,8 +195,8 @@ auto smb_file::move_to(std::string_view new_path) -> bool {
|
|||||||
function_name,
|
function_name,
|
||||||
"failed to move file",
|
"failed to move file",
|
||||||
"new path must be in same share",
|
"new path must be in same share",
|
||||||
path_,
|
|
||||||
new_path,
|
new_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -216,9 +217,9 @@ auto smb_file::move_to(std::string_view new_path) -> bool {
|
|||||||
throw utils::error::create_exception({
|
throw utils::error::create_exception({
|
||||||
function_name,
|
function_name,
|
||||||
"failed to connect to share",
|
"failed to connect to share",
|
||||||
path_,
|
|
||||||
std::to_string(res),
|
std::to_string(res),
|
||||||
share_name_,
|
share_name_,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -227,7 +228,6 @@ auto smb_file::move_to(std::string_view new_path) -> bool {
|
|||||||
throw utils::error::create_exception({
|
throw utils::error::create_exception({
|
||||||
function_name,
|
function_name,
|
||||||
"failed to move file",
|
"failed to move file",
|
||||||
path_,
|
|
||||||
std::to_string(res),
|
std::to_string(res),
|
||||||
from_path,
|
from_path,
|
||||||
to_path,
|
to_path,
|
||||||
@ -268,9 +268,9 @@ auto smb_file::open(bool read_only) -> bool {
|
|||||||
throw utils::error::create_exception({
|
throw utils::error::create_exception({
|
||||||
function_name,
|
function_name,
|
||||||
"failed to connect to share",
|
"failed to connect to share",
|
||||||
path_,
|
|
||||||
std::to_string(res),
|
std::to_string(res),
|
||||||
share_name_,
|
share_name_,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -281,11 +281,10 @@ auto smb_file::open(bool read_only) -> bool {
|
|||||||
throw utils::error::create_exception({
|
throw utils::error::create_exception({
|
||||||
function_name,
|
function_name,
|
||||||
"failed to open file",
|
"failed to open file",
|
||||||
utils::string::from_bool(read_only),
|
|
||||||
path_,
|
|
||||||
std::to_string(res),
|
std::to_string(res),
|
||||||
path_,
|
utils::string::from_bool(read_only),
|
||||||
rel_path,
|
rel_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -385,9 +384,9 @@ auto smb_file::remove() -> bool {
|
|||||||
throw utils::error::create_exception({
|
throw utils::error::create_exception({
|
||||||
function_name,
|
function_name,
|
||||||
"failed to connect to share",
|
"failed to connect to share",
|
||||||
path_,
|
|
||||||
std::to_string(res),
|
std::to_string(res),
|
||||||
share_name_,
|
share_name_,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -399,8 +398,8 @@ auto smb_file::remove() -> bool {
|
|||||||
"failed to remove file",
|
"failed to remove file",
|
||||||
std::to_string(res),
|
std::to_string(res),
|
||||||
std::to_string(smb_session_get_nt_status(session_.get())),
|
std::to_string(smb_session_get_nt_status(session_.get())),
|
||||||
path_,
|
|
||||||
rel_path,
|
rel_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -444,6 +443,7 @@ auto smb_file::size() const -> std::optional<std::uint64_t> {
|
|||||||
function_name,
|
function_name,
|
||||||
"failed to stat directory",
|
"failed to stat directory",
|
||||||
rel_path,
|
rel_path,
|
||||||
|
path_,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user