pyo3-object_store 0.12.0

object_store integration for pyo3.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
use std::collections::HashMap;
use std::sync::Arc;

use object_store::azure::{AzureConfigKey, MicrosoftAzure, MicrosoftAzureBuilder};
use object_store::ObjectStoreScheme;
use pyo3::prelude::*;
use pyo3::pybacked::PyBackedStr;
use pyo3::types::{PyDict, PyString, PyTuple, PyType};
use pyo3::{intern, IntoPyObjectExt};
use url::Url;

use crate::azure::credentials::PyAzureCredentialProvider;
use crate::client::PyClientOptions;
use crate::config::PyConfigValue;
use crate::error::{GenericError, ParseUrlError, PyObjectStoreError, PyObjectStoreResult};
use crate::path::PyPath;
use crate::retry::PyRetryConfig;
use crate::{MaybePrefixedStore, PyUrl};

#[derive(Debug, Clone, PartialEq)]
struct AzureConfig {
    prefix: Option<PyPath>,
    config: PyAzureConfig,
    client_options: Option<PyClientOptions>,
    retry_config: Option<PyRetryConfig>,
    credential_provider: Option<PyAzureCredentialProvider>,
}

impl AzureConfig {
    fn account_name(&self) -> &str {
        self.config
            .0
            .get(&PyAzureConfigKey(AzureConfigKey::AccountName))
            .expect("Account name should always exist in the config")
            .as_ref()
    }

    fn container_name(&self) -> &str {
        self.config
            .0
            .get(&PyAzureConfigKey(AzureConfigKey::ContainerName))
            .expect("Container should always exist in the config")
            .as_ref()
    }

    fn __getnewargs_ex__<'py>(&'py self, py: Python<'py>) -> PyResult<Bound<'py, PyTuple>> {
        let args = PyTuple::empty(py).into_bound_py_any(py)?;
        let kwargs = PyDict::new(py);

        if let Some(prefix) = &self.prefix {
            kwargs.set_item(intern!(py, "prefix"), prefix.as_ref().as_ref())?;
        }
        kwargs.set_item(intern!(py, "config"), &self.config)?;
        if let Some(client_options) = &self.client_options {
            kwargs.set_item(intern!(py, "client_options"), client_options)?;
        }
        if let Some(retry_config) = &self.retry_config {
            kwargs.set_item(intern!(py, "retry_config"), retry_config)?;
        }
        if let Some(credential_provider) = &self.credential_provider {
            kwargs.set_item("credential_provider", credential_provider)?;
        }

        PyTuple::new(py, [args, kwargs.into_bound_py_any(py)?])
    }
}

/// A Python-facing wrapper around a [`MicrosoftAzure`].
#[derive(Debug, Clone)]
#[pyclass(name = "AzureStore", frozen, subclass, from_py_object)]
pub struct PyAzureStore {
    store: Arc<MaybePrefixedStore<MicrosoftAzure>>,
    /// A config used for pickling. This must stay in sync with the underlying store's config.
    config: AzureConfig,
}

impl AsRef<Arc<MaybePrefixedStore<MicrosoftAzure>>> for PyAzureStore {
    fn as_ref(&self) -> &Arc<MaybePrefixedStore<MicrosoftAzure>> {
        &self.store
    }
}

impl PyAzureStore {
    /// Consume self and return the underlying [`MicrosoftAzure`].
    pub fn into_inner(self) -> Arc<MaybePrefixedStore<MicrosoftAzure>> {
        self.store
    }
}

#[pymethods]
impl PyAzureStore {
    // Create from parameters
    #[new]
    #[pyo3(signature = (container_name=None, *, prefix=None, config=None, client_options=None, retry_config=None, credential_provider=None, **kwargs))]
    fn new(
        container_name: Option<String>,
        mut prefix: Option<PyPath>,
        config: Option<PyAzureConfig>,
        client_options: Option<PyClientOptions>,
        retry_config: Option<PyRetryConfig>,
        credential_provider: Option<PyAzureCredentialProvider>,
        kwargs: Option<PyAzureConfig>,
    ) -> PyObjectStoreResult<Self> {
        let mut builder = MicrosoftAzureBuilder::from_env();
        let mut config = config.unwrap_or_default();

        if let Some(container_name) = container_name {
            // Note: we apply the bucket to the config, not directly to the builder, so they stay
            // in sync.
            config.insert_raising_if_exists(AzureConfigKey::ContainerName, container_name)?;
        }

        let mut combined_config = combine_config_kwargs(Some(config), kwargs)?;

        if let Some(client_options) = client_options.clone() {
            builder = builder.with_client_options(client_options.into())
        }
        if let Some(retry_config) = retry_config.clone() {
            builder = builder.with_retry(retry_config.into())
        }

        if let Some(credential_provider) = credential_provider.clone() {
            // Apply credential provider config onto main config
            if let Some(credential_config) = credential_provider.config() {
                for (key, val) in credential_config.0.iter() {
                    // Give precedence to passed-in config values
                    combined_config.insert_if_not_exists(key.clone(), val.clone());
                }
            }

            if let Some(passed_down_prefix) = credential_provider.prefix() {
                // Don't override a prefix manually passed in to AzureStore
                //
                // If a user wishes to override a prefix passed down by a credential provider, they
                // can pass `prefix=""` or `prefix="/"` to the AzureStore.
                if prefix.is_none() {
                    prefix = Some(passed_down_prefix.clone());
                }
            }

            builder = builder.with_credentials(Arc::new(credential_provider));
        }

        builder = combined_config.clone().apply_config(builder);

        Ok(Self {
            store: Arc::new(MaybePrefixedStore::new(builder.build()?, prefix.clone())),
            config: AzureConfig {
                prefix,
                config: combined_config,
                client_options,
                retry_config,
                credential_provider,
            },
        })
    }

    #[classmethod]
    #[pyo3(signature = (url, *, config=None, client_options=None, retry_config=None, credential_provider=None, **kwargs))]
    pub(crate) fn from_url<'py>(
        cls: &Bound<'py, PyType>,
        url: PyUrl,
        config: Option<PyAzureConfig>,
        client_options: Option<PyClientOptions>,
        retry_config: Option<PyRetryConfig>,
        credential_provider: Option<PyAzureCredentialProvider>,
        kwargs: Option<PyAzureConfig>,
    ) -> PyObjectStoreResult<Bound<'py, PyAny>> {
        // We manually parse the URL to find the prefix because `parse_url` does not apply the
        // prefix.
        let (_, prefix) =
            ObjectStoreScheme::parse(url.as_ref()).map_err(object_store::Error::from)?;
        let prefix: Option<String> = if prefix.parts().count() != 0 {
            Some(prefix.into())
        } else {
            None
        };
        let config = parse_url(config, url.as_ref())?;

        // Note: we pass **back** through Python so that if cls is a subclass, we instantiate the
        // subclass
        let kwargs = kwargs.unwrap_or_default().into_pyobject(cls.py())?;
        kwargs.set_item("prefix", prefix)?;
        kwargs.set_item("config", config)?;
        kwargs.set_item("client_options", client_options)?;
        kwargs.set_item("retry_config", retry_config)?;
        kwargs.set_item("credential_provider", credential_provider)?;
        Ok(cls.call((), Some(&kwargs))?)
    }

    fn __eq__(&self, other: &Bound<PyAny>) -> bool {
        // Ensure we never error on __eq__ by returning false if the other object is not the same
        // type
        other
            .cast::<PyAzureStore>()
            .map(|other| self.config == other.get().config)
            .unwrap_or(false)
    }

    fn __getnewargs_ex__<'py>(&'py self, py: Python<'py>) -> PyResult<Bound<'py, PyTuple>> {
        self.config.__getnewargs_ex__(py)
    }

    fn __repr__(&self) -> String {
        let account_name = self.config.account_name();
        let container_name = self.config.container_name();
        if let Some(prefix) = &self.config.prefix {
            format!(
                "AzureStore(container_name=\"{}\", account_name=\"{}\", prefix=\"{}\")",
                container_name,
                account_name,
                prefix.as_ref()
            )
        } else {
            format!(
                "AzureStore(container_name=\"{container_name}\", account_name=\"{account_name}\")"
            )
        }
    }

    #[getter]
    fn prefix(&self) -> Option<&PyPath> {
        self.config.prefix.as_ref()
    }

    #[getter]
    fn config(&self) -> &PyAzureConfig {
        &self.config.config
    }

    #[getter]
    fn client_options(&self) -> Option<&PyClientOptions> {
        self.config.client_options.as_ref()
    }

    #[getter]
    fn credential_provider(&self) -> Option<&PyAzureCredentialProvider> {
        self.config.credential_provider.as_ref()
    }

    #[getter]
    fn retry_config(&self) -> Option<&PyRetryConfig> {
        self.config.retry_config.as_ref()
    }
}

#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct PyAzureConfigKey(AzureConfigKey);

impl<'py> FromPyObject<'_, 'py> for PyAzureConfigKey {
    type Error = PyErr;

    fn extract(obj: Borrowed<'_, 'py, pyo3::PyAny>) -> PyResult<Self> {
        let s = obj.extract::<PyBackedStr>()?.to_lowercase();
        let key = s.parse().map_err(PyObjectStoreError::ObjectStoreError)?;
        Ok(Self(key))
    }
}

impl AsRef<str> for PyAzureConfigKey {
    fn as_ref(&self) -> &str {
        self.0.as_ref()
    }
}

impl<'py> IntoPyObject<'py> for &PyAzureConfigKey {
    type Target = PyString;
    type Output = Bound<'py, PyString>;
    type Error = PyErr;

    fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error> {
        let s = self.0.as_ref();
        // Anything with an `azure_storage_` prefix we can fully strip
        if let Some(stripped) = s.strip_prefix("azure_storage_") {
            return Ok(PyString::new(py, stripped));
        }
        Ok(PyString::new(
            py,
            s.strip_prefix("azure_")
                .expect("Expected config prefix to start with azure_"),
        ))
    }
}

impl<'py> IntoPyObject<'py> for PyAzureConfigKey {
    type Target = PyString;
    type Output = Bound<'py, PyString>;
    type Error = PyErr;

    fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error> {
        (&self).into_pyobject(py)
    }
}

impl From<AzureConfigKey> for PyAzureConfigKey {
    fn from(value: AzureConfigKey) -> Self {
        Self(value)
    }
}

impl From<PyAzureConfigKey> for AzureConfigKey {
    fn from(value: PyAzureConfigKey) -> Self {
        value.0
    }
}

#[derive(Clone, Debug, Default, PartialEq, Eq, IntoPyObject, IntoPyObjectRef)]
pub struct PyAzureConfig(HashMap<PyAzureConfigKey, PyConfigValue>);

// Note: we manually impl FromPyObject instead of deriving it so that we can raise an
// UnknownConfigurationKeyError instead of a `TypeError` on invalid config keys.
//
// We also manually impl this so that we can raise on duplicate keys.
impl<'py> FromPyObject<'_, 'py> for PyAzureConfig {
    type Error = PyErr;

    fn extract(obj: Borrowed<'_, 'py, pyo3::PyAny>) -> PyResult<Self> {
        let mut slf = Self::new();
        for (key, val) in obj.extract::<Bound<'py, PyDict>>()?.iter() {
            slf.insert_raising_if_exists(
                key.extract::<PyAzureConfigKey>()?,
                val.extract::<PyConfigValue>()?,
            )?;
        }
        Ok(slf)
    }
}

impl PyAzureConfig {
    fn new() -> Self {
        Self(HashMap::new())
    }

    fn apply_config(self, mut builder: MicrosoftAzureBuilder) -> MicrosoftAzureBuilder {
        for (key, value) in self.0.into_iter() {
            builder = builder.with_config(key.0, value.0);
        }
        builder
    }

    fn merge(mut self, other: PyAzureConfig) -> PyObjectStoreResult<PyAzureConfig> {
        for (key, val) in other.0.into_iter() {
            self.insert_raising_if_exists(key, val)?;
        }

        Ok(self)
    }

    fn insert_raising_if_exists(
        &mut self,
        key: impl Into<PyAzureConfigKey>,
        val: impl Into<String>,
    ) -> PyObjectStoreResult<()> {
        let key = key.into();
        let old_value = self.0.insert(key.clone(), PyConfigValue::new(val.into()));
        if old_value.is_some() {
            return Err(GenericError::new_err(format!(
                "Duplicate key {} provided",
                key.0.as_ref()
            ))
            .into());
        }

        Ok(())
    }

    /// Insert a key only if it does not already exist.
    ///
    /// This is used for URL parsing, where any parts of the URL **do not** override any
    /// configuration keys passed manually.
    fn insert_if_not_exists(&mut self, key: impl Into<PyAzureConfigKey>, val: impl Into<String>) {
        self.0.entry(key.into()).or_insert(PyConfigValue::new(val));
    }
}

fn combine_config_kwargs(
    config: Option<PyAzureConfig>,
    kwargs: Option<PyAzureConfig>,
) -> PyObjectStoreResult<PyAzureConfig> {
    match (config, kwargs) {
        (None, None) => Ok(Default::default()),
        (Some(x), None) | (None, Some(x)) => Ok(x),
        (Some(config), Some(kwargs)) => Ok(config.merge(kwargs)?),
    }
}

/// Sets properties on this builder based on a URL
///
/// This is vendored from
/// https://github.com/apache/arrow-rs/blob/f7263e253655b2ee613be97f9d00e063444d3df5/object_store/src/azure/builder.rs#L639-L705
///
/// We do our own URL parsing so that we can keep our own config in sync with what is passed to the
/// underlying ObjectStore builder. Passing the URL on verbatim makes it hard because the URL
/// parsing only happens in `build()`. Then the config parameters we have don't include any config
/// applied from the URL.
fn parse_url(config: Option<PyAzureConfig>, parsed: &Url) -> object_store::Result<PyAzureConfig> {
    let host = parsed
        .host_str()
        .ok_or_else(|| ParseUrlError::UrlNotRecognised {
            url: parsed.as_str().to_string(),
        })?;
    let mut config = config.unwrap_or_default();

    let validate = |s: &str| match s.contains('.') {
        true => Err(ParseUrlError::UrlNotRecognised {
            url: parsed.as_str().to_string(),
        }),
        false => Ok(s.to_string()),
    };

    match parsed.scheme() {
        "adl" | "azure" => {
            config.insert_if_not_exists(AzureConfigKey::ContainerName, validate(host)?);
        }
        "az" | "abfs" | "abfss" => {
            // abfs(s) might refer to the fsspec convention abfs://<container>/<path>
            // or the convention for the hadoop driver abfs[s]://<file_system>@<account_name>.dfs.core.windows.net/<path>
            if parsed.username().is_empty() {
                config.insert_if_not_exists(AzureConfigKey::ContainerName, validate(host)?);
            } else {
                match host.split_once('.') {
                    // Workspace-level Private Link detection
                    // "{workspaceid}.z??.(onelake|dfs|blob).fabric.microsoft.com"
                    Some((workspaceid, rest))
                        if rest.starts_with('z') && rest.ends_with("fabric.microsoft.com") =>
                    {
                        // Account name for WS-PL is two labels: "{workspaceid}.z{xy}"
                        let (zone, _) = rest.split_once('.').unwrap_or((rest, ""));

                        config.insert_if_not_exists(
                            AzureConfigKey::AccountName,
                            format!("{workspaceid}.{zone}"),
                        );
                        config.insert_if_not_exists(
                            AzureConfigKey::Endpoint,
                            format!("https://{}", host),
                        );

                        config.insert_if_not_exists(
                            AzureConfigKey::ContainerName,
                            validate(parsed.username())?,
                        );
                        config.insert_if_not_exists(AzureConfigKey::UseFabricEndpoint, "true");
                    }
                    Some((a, "dfs.core.windows.net")) | Some((a, "blob.core.windows.net")) => {
                        config.insert_if_not_exists(AzureConfigKey::AccountName, validate(a)?);
                        config.insert_if_not_exists(
                            AzureConfigKey::ContainerName,
                            validate(parsed.username())?,
                        );
                    }
                    Some((a, "dfs.fabric.microsoft.com"))
                    | Some((a, "blob.fabric.microsoft.com")) => {
                        config.insert_if_not_exists(AzureConfigKey::AccountName, validate(a)?);
                        config.insert_if_not_exists(
                            AzureConfigKey::ContainerName,
                            validate(parsed.username())?,
                        );
                        config.insert_if_not_exists(AzureConfigKey::UseFabricEndpoint, "true");
                    }
                    _ => {
                        return Err(ParseUrlError::UrlNotRecognised {
                            url: parsed.as_str().to_string(),
                        }
                        .into())
                    }
                }
            }
        }
        "https" => match host.split_once('.') {
            // Workspace-level Private Link detection
            // "{workspaceid}.z??.(onelake|dfs|blob).fabric.microsoft.com"
            Some((workspaceid, rest))
                if rest.starts_with('z') && rest.ends_with("fabric.microsoft.com") =>
            {
                // rest looks like: "z28.dfs.fabric.microsoft.com" / "z28.blob.fabric.microsoft.com" / etc.
                // Account name for WS-PL is two labels: "{workspaceid}.z{xy}"
                let (zone, _) = rest.split_once('.').unwrap_or((rest, ""));

                config.insert_if_not_exists(
                    AzureConfigKey::AccountName,
                    format!("{workspaceid}.{zone}"),
                );
                config.insert_if_not_exists(AzureConfigKey::Endpoint, format!("https://{}", host));

                // Attempt to infer the container name from the URL
                let container =
                    parsed.path_segments().unwrap().next().expect(
                        "iterator always contains at least one string (which may be empty)",
                    );

                if !container.is_empty() {
                    config
                        .insert_if_not_exists(AzureConfigKey::ContainerName, validate(container)?);
                }

                config.insert_if_not_exists(AzureConfigKey::UseFabricEndpoint, "true");
            }
            Some((a, "dfs.core.windows.net")) | Some((a, "blob.core.windows.net")) => {
                config.insert_if_not_exists(AzureConfigKey::AccountName, validate(a)?);
                let container =
                    parsed.path_segments().unwrap().next().expect(
                        "iterator always contains at least one string (which may be empty)",
                    );
                if !container.is_empty() {
                    config
                        .insert_if_not_exists(AzureConfigKey::ContainerName, validate(container)?);
                }
            }
            Some((a, "dfs.fabric.microsoft.com")) | Some((a, "blob.fabric.microsoft.com")) => {
                config.insert_if_not_exists(AzureConfigKey::AccountName, validate(a)?);
                // Attempt to infer the container name from the URL
                // - https://onelake.dfs.fabric.microsoft.com/<workspaceGUID>/<itemGUID>/Files/test.csv
                // - https://onelake.dfs.fabric.microsoft.com/<workspace>/<item>.<itemtype>/<path>/<fileName>
                //
                // See <https://learn.microsoft.com/en-us/fabric/onelake/onelake-access-api>
                let workspace =
                    parsed.path_segments().unwrap().next().expect(
                        "iterator always contains at least one string (which may be empty)",
                    );
                if !workspace.is_empty() {
                    config.insert_if_not_exists(AzureConfigKey::ContainerName, workspace);
                }
                config.insert_if_not_exists(AzureConfigKey::UseFabricEndpoint, "true");
            }
            _ => {
                return Err(ParseUrlError::UrlNotRecognised {
                    url: parsed.as_str().to_string(),
                }
                .into())
            }
        },
        scheme => {
            let scheme = scheme.into();
            return Err(ParseUrlError::UnknownUrlScheme { scheme }.into());
        }
    }

    Ok(config)
}