use std::fmt::Debug;
use std::fmt::Formatter;
use std::sync::Arc;
use http::Response;
use http::StatusCode;
use log::debug;
use reqsign::AzureStorageConfig;
use reqsign::AzureStorageLoader;
use reqsign::AzureStorageSigner;
use super::core::AzdlsCore;
use super::error::parse_error;
use super::lister::AzdlsLister;
use super::writer::AzdlsWriter;
use super::writer::AzdlsWriters;
use crate::raw::*;
use crate::services::AzdlsConfig;
use crate::*;
const KNOWN_AZDLS_ENDPOINT_SUFFIX: &[&str] = &[
"dfs.core.windows.net",
"dfs.core.usgovcloudapi.net",
"dfs.core.chinacloudapi.cn",
];
impl Configurator for AzdlsConfig {
type Builder = AzdlsBuilder;
fn into_builder(self) -> Self::Builder {
AzdlsBuilder {
config: self,
http_client: None,
}
}
}
#[doc = include_str!("docs.md")]
#[derive(Default, Clone)]
pub struct AzdlsBuilder {
config: AzdlsConfig,
http_client: Option<HttpClient>,
}
impl Debug for AzdlsBuilder {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let mut ds = f.debug_struct("AzdlsBuilder");
ds.field("config", &self.config);
ds.finish()
}
}
impl AzdlsBuilder {
pub fn root(mut self, root: &str) -> Self {
self.config.root = if root.is_empty() {
None
} else {
Some(root.to_string())
};
self
}
pub fn filesystem(mut self, filesystem: &str) -> Self {
self.config.filesystem = filesystem.to_string();
self
}
pub fn endpoint(mut self, endpoint: &str) -> Self {
if !endpoint.is_empty() {
self.config.endpoint = Some(endpoint.trim_end_matches('/').to_string());
}
self
}
pub fn account_name(mut self, account_name: &str) -> Self {
if !account_name.is_empty() {
self.config.account_name = Some(account_name.to_string());
}
self
}
pub fn account_key(mut self, account_key: &str) -> Self {
if !account_key.is_empty() {
self.config.account_key = Some(account_key.to_string());
}
self
}
pub fn http_client(mut self, client: HttpClient) -> Self {
self.http_client = Some(client);
self
}
}
impl Builder for AzdlsBuilder {
const SCHEME: Scheme = Scheme::Azdls;
type Config = AzdlsConfig;
fn build(self) -> Result<impl Access> {
debug!("backend build started: {:?}", &self);
let root = normalize_root(&self.config.root.unwrap_or_default());
debug!("backend use root {}", root);
let filesystem = match self.config.filesystem.is_empty() {
false => Ok(&self.config.filesystem),
true => Err(Error::new(ErrorKind::ConfigInvalid, "filesystem is empty")
.with_operation("Builder::build")
.with_context("service", Scheme::Azdls)),
}?;
debug!("backend use filesystem {}", &filesystem);
let endpoint = match &self.config.endpoint {
Some(endpoint) => Ok(endpoint.clone()),
None => Err(Error::new(ErrorKind::ConfigInvalid, "endpoint is empty")
.with_operation("Builder::build")
.with_context("service", Scheme::Azdls)),
}?;
debug!("backend use endpoint {}", &endpoint);
let client = if let Some(client) = self.http_client {
client
} else {
HttpClient::new().map_err(|err| {
err.with_operation("Builder::build")
.with_context("service", Scheme::Azdls)
})?
};
let config_loader = AzureStorageConfig {
account_name: self
.config
.account_name
.clone()
.or_else(|| infer_storage_name_from_endpoint(endpoint.as_str())),
account_key: self.config.account_key.clone(),
sas_token: None,
..Default::default()
};
let cred_loader = AzureStorageLoader::new(config_loader);
let signer = AzureStorageSigner::new();
Ok(AzdlsBackend {
core: Arc::new(AzdlsCore {
filesystem: self.config.filesystem.clone(),
root,
endpoint,
client,
loader: cred_loader,
signer,
}),
})
}
}
#[derive(Debug, Clone)]
pub struct AzdlsBackend {
core: Arc<AzdlsCore>,
}
impl Access for AzdlsBackend {
type Reader = HttpBody;
type Writer = AzdlsWriters;
type Lister = oio::PageLister<AzdlsLister>;
type BlockingReader = ();
type BlockingWriter = ();
type BlockingLister = ();
fn info(&self) -> Arc<AccessorInfo> {
let mut am = AccessorInfo::default();
am.set_scheme(Scheme::Azdls)
.set_root(&self.core.root)
.set_name(&self.core.filesystem)
.set_native_capability(Capability {
stat: true,
read: true,
write: true,
write_can_append: true,
write_with_if_none_match: true,
write_with_if_not_exists: true,
create_dir: true,
delete: true,
rename: true,
list: true,
shared: true,
..Default::default()
});
am.into()
}
async fn create_dir(&self, path: &str, _: OpCreateDir) -> Result<RpCreateDir> {
let mut req = self.core.azdls_create_request(
path,
"directory",
&OpWrite::default(),
Buffer::new(),
)?;
self.core.sign(&mut req).await?;
let resp = self.core.send(req).await?;
let status = resp.status();
match status {
StatusCode::CREATED | StatusCode::OK => Ok(RpCreateDir::default()),
_ => Err(parse_error(resp)),
}
}
async fn stat(&self, path: &str, _: OpStat) -> Result<RpStat> {
if path == "/" {
return Ok(RpStat::new(Metadata::new(EntryMode::DIR)));
}
let resp = self.core.azdls_get_properties(path).await?;
if resp.status() != StatusCode::OK {
return Err(parse_error(resp));
}
let mut meta = parse_into_metadata(path, resp.headers())?;
let resource = resp
.headers()
.get("x-ms-resource-type")
.ok_or_else(|| {
Error::new(
ErrorKind::Unexpected,
"azdls should return x-ms-resource-type header, but it's missing",
)
})?
.to_str()
.map_err(|err| {
Error::new(
ErrorKind::Unexpected,
"azdls should return x-ms-resource-type header, but it's not a valid string",
)
.set_source(err)
})?;
meta = match resource {
"file" => meta.with_mode(EntryMode::FILE),
"directory" => meta.with_mode(EntryMode::DIR),
v => {
return Err(Error::new(
ErrorKind::Unexpected,
"azdls returns not supported x-ms-resource-type",
)
.with_context("resource", v))
}
};
Ok(RpStat::new(meta))
}
async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)> {
let resp = self.core.azdls_read(path, args.range()).await?;
let status = resp.status();
match status {
StatusCode::OK | StatusCode::PARTIAL_CONTENT => Ok((RpRead::new(), resp.into_body())),
_ => {
let (part, mut body) = resp.into_parts();
let buf = body.to_buffer().await?;
Err(parse_error(Response::from_parts(part, buf)))
}
}
}
async fn write(&self, path: &str, args: OpWrite) -> Result<(RpWrite, Self::Writer)> {
let w = AzdlsWriter::new(self.core.clone(), args.clone(), path.to_string());
let w = if args.append() {
AzdlsWriters::Two(oio::AppendWriter::new(w))
} else {
AzdlsWriters::One(oio::OneShotWriter::new(w))
};
Ok((RpWrite::default(), w))
}
async fn delete(&self, path: &str, _: OpDelete) -> Result<RpDelete> {
let resp = self.core.azdls_delete(path).await?;
let status = resp.status();
match status {
StatusCode::OK | StatusCode::NOT_FOUND => Ok(RpDelete::default()),
_ => Err(parse_error(resp)),
}
}
async fn list(&self, path: &str, args: OpList) -> Result<(RpList, Self::Lister)> {
let l = AzdlsLister::new(self.core.clone(), path.to_string(), args.limit());
Ok((RpList::default(), oio::PageLister::new(l)))
}
async fn rename(&self, from: &str, to: &str, _args: OpRename) -> Result<RpRename> {
if let Some(resp) = self.core.azdls_ensure_parent_path(to).await? {
let status = resp.status();
match status {
StatusCode::CREATED | StatusCode::CONFLICT => {}
_ => return Err(parse_error(resp)),
}
}
let resp = self.core.azdls_rename(from, to).await?;
let status = resp.status();
match status {
StatusCode::CREATED => Ok(RpRename::default()),
_ => Err(parse_error(resp)),
}
}
}
fn infer_storage_name_from_endpoint(endpoint: &str) -> Option<String> {
let endpoint: &str = endpoint
.strip_prefix("http://")
.or_else(|| endpoint.strip_prefix("https://"))
.unwrap_or(endpoint);
let mut parts = endpoint.splitn(2, '.');
let storage_name = parts.next();
let endpoint_suffix = parts
.next()
.unwrap_or_default()
.trim_end_matches('/')
.to_lowercase();
if KNOWN_AZDLS_ENDPOINT_SUFFIX
.iter()
.any(|s| *s == endpoint_suffix.as_str())
{
storage_name.map(|s| s.to_string())
} else {
None
}
}
#[cfg(test)]
mod tests {
use super::infer_storage_name_from_endpoint;
#[test]
fn test_infer_storage_name_from_endpoint() {
let endpoint = "https://account.dfs.core.windows.net";
let storage_name = infer_storage_name_from_endpoint(endpoint);
assert_eq!(storage_name, Some("account".to_string()));
}
#[test]
fn test_infer_storage_name_from_endpoint_with_trailing_slash() {
let endpoint = "https://account.dfs.core.windows.net/";
let storage_name = infer_storage_name_from_endpoint(endpoint);
assert_eq!(storage_name, Some("account".to_string()));
}
}