wasmcloud_provider_blobstore_azure/
lib.rs

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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
#![allow(clippy::type_complexity)]

use core::future::Future;
use core::pin::Pin;

use std::collections::HashMap;
use std::sync::Arc;

use anyhow::{bail, Context as _, Result};
use azure_storage::CloudLocation;
use azure_storage_blobs::prelude::*;
use bytes::{Bytes, BytesMut};
use futures::{Stream, StreamExt as _};
use tokio::sync::{mpsc, RwLock};
use tokio_stream::wrappers::ReceiverStream;
use tracing::{error, instrument};
use wasmcloud_provider_sdk::{
    get_connection, initialize_observability, load_host_data, propagate_trace_for_ctx,
    run_provider, serve_provider_exports, Context, HostData, LinkConfig, LinkDeleteInfo, Provider,
};
use wrpc_interface_blobstore::bindings::{
    exports::wrpc::blobstore::blobstore::Handler,
    serve,
    wrpc::blobstore::types::{ContainerMetadata, ObjectId, ObjectMetadata},
};

use config::StorageConfig;

mod config;

/// Blobstore Azblob provider
///
/// This struct will be the target of generated implementations (via wit-provider-bindgen)
/// for the blobstore provider WIT contract
#[derive(Default, Clone)]
pub struct BlobstoreAzblobProvider {
    /// Per-config storage for Azure connection clients
    config: Arc<RwLock<HashMap<String, BlobServiceClient>>>,
}

pub async fn run() -> anyhow::Result<()> {
    BlobstoreAzblobProvider::run().await
}

/// Handle provider control commands
/// put_link (new component link command), del_link (remove link command), and shutdown
impl Provider for BlobstoreAzblobProvider {
    #[instrument(level = "info", skip_all)]
    async fn receive_link_config_as_target(
        &self,
        link_config: LinkConfig<'_>,
    ) -> anyhow::Result<()> {
        let config = match StorageConfig::from_link_config(&link_config) {
            Ok(v) => v,
            Err(e) => {
                error!(error = %e, source_id = %link_config.source_id, "failed to read storage config");
                return Err(e);
            }
        };

        let builder = match &link_config.config.get("CLOUD_LOCATION") {
            Some(custom_location) => ClientBuilder::with_location(
                CloudLocation::Custom {
                    account: config.storage_account.clone(),
                    uri: custom_location.to_string(),
                },
                config.access_key(),
            ),
            None => ClientBuilder::new(config.storage_account.clone(), config.access_key()),
        };
        let client = builder.blob_service_client();

        let mut update_map = self.config.write().await;
        update_map.insert(link_config.source_id.to_string(), client);

        Ok(())
    }

    #[instrument(level = "info", skip_all, fields(source_id = info.get_source_id()))]
    async fn delete_link_as_target(&self, info: impl LinkDeleteInfo) -> anyhow::Result<()> {
        let component_id = info.get_source_id();
        self.config.write().await.remove(component_id);
        Ok(())
    }

    async fn shutdown(&self) -> anyhow::Result<()> {
        self.config.write().await.drain();
        Ok(())
    }
}

impl BlobstoreAzblobProvider {
    pub async fn run() -> anyhow::Result<()> {
        let HostData { config, .. } = load_host_data().context("failed to load host data")?;
        let flamegraph_path = config
            .get("FLAMEGRAPH_PATH")
            .map(String::from)
            .or_else(|| std::env::var("PROVIDER_BLOBSTORE_AZURE_FLAMEGRAPH_PATH").ok());
        initialize_observability!("blobstore-azure-provider", flamegraph_path);

        let provider = Self::default();
        let shutdown = run_provider(provider.clone(), "blobstore-azure-provider")
            .await
            .context("failed to run provider")?;
        let connection = get_connection();
        let wrpc = connection
            .get_wrpc_client(connection.provider_key())
            .await?;
        serve_provider_exports(&wrpc, provider, shutdown, serve)
            .await
            .context("failed to serve provider exports")
    }

    async fn get_config(&self, context: Option<&Context>) -> anyhow::Result<BlobServiceClient> {
        if let Some(source_id) = context.and_then(|Context { component, .. }| component.as_ref()) {
            self.config
                .read()
                .await
                .get(source_id)
                .with_context(|| format!("failed to lookup {source_id} configuration"))
                .cloned()
        } else {
            bail!(
                "failed to lookup source of invocation, could not construct Azure blobstore client"
            )
        }
    }
}

impl Handler<Option<Context>> for BlobstoreAzblobProvider {
    #[instrument(level = "trace", skip(self))]
    async fn clear_container(
        &self,
        cx: Option<Context>,
        name: String,
    ) -> anyhow::Result<Result<(), String>> {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            let client = client.container_client(&name);
            let mut blob_stream = client.list_blobs().into_stream();
            while let Some(blob_entry) = blob_stream.next().await {
                let blob_entry =
                    blob_entry.with_context(|| format!("failed to list blobs in '{name}'"))?;
                for blob in blob_entry.blobs.blobs() {
                    client
                        .blob_client(&blob.name)
                        .delete()
                        .await
                        .with_context(|| {
                            format!("failed to delete blob '{}' in '{name}'", blob.name)
                        })?;
                }
            }
            Ok(())
        }
        .await
        .map_err(|err: anyhow::Error| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn container_exists(
        &self,
        cx: Option<Context>,
        name: String,
    ) -> anyhow::Result<Result<bool, String>> {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            client
                .container_client(name)
                .exists()
                .await
                .context("failed to check container existence")
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn create_container(
        &self,
        cx: Option<Context>,
        name: String,
    ) -> anyhow::Result<Result<(), String>> {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            client
                .container_client(name)
                .create()
                .await
                .context("failed to create container")
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn delete_container(
        &self,
        cx: Option<Context>,
        name: String,
    ) -> anyhow::Result<Result<(), String>> {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            client
                .container_client(name)
                .delete()
                .await
                .context("failed to delete container")
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn get_container_info(
        &self,
        cx: Option<Context>,
        name: String,
    ) -> anyhow::Result<Result<ContainerMetadata, String>> {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            let properties = client
                .container_client(name)
                .get_properties()
                .await
                .context("failed to get container properties")?;

            let created_at = properties
                .date
                .unix_timestamp()
                .try_into()
                .context("failed to convert created_at date to u64")?;

            // NOTE: The `created_at` format is currently undefined
            // https://github.com/WebAssembly/wasi-blobstore/issues/7
            anyhow::Ok(ContainerMetadata { created_at })
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn list_container_objects(
        &self,
        cx: Option<Context>,
        name: String,
        limit: Option<u64>,
        offset: Option<u64>,
    ) -> anyhow::Result<
        Result<
            (
                Pin<Box<dyn Stream<Item = Vec<String>> + Send>>,
                Pin<Box<dyn Future<Output = Result<(), String>> + Send>>,
            ),
            String,
        >,
    > {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            let mut names = client.container_client(name).list_blobs().into_stream();
            let (tx, rx) = mpsc::channel(16);
            anyhow::Ok((
                Box::pin(ReceiverStream::new(rx)) as Pin<Box<dyn Stream<Item = _> + Send>>,
                Box::pin(async move {
                    let mut offset = offset.unwrap_or_default().try_into().unwrap_or(usize::MAX);
                    let mut limit = limit
                        .and_then(|limit| limit.try_into().ok())
                        .unwrap_or(usize::MAX);
                    while let Some(res) = names.next().await {
                        let res = res
                            .context("failed to receive response")
                            .map_err(|err| format!("{err:#}"))?;
                        let mut chunk = vec![];
                        for name in res.blobs.blobs().map(|Blob { name, .. }| name) {
                            if limit == 0 {
                                break;
                            }
                            if offset > 0 {
                                offset -= 1;
                                continue;
                            }
                            chunk.push(name.clone());
                            limit -= 1;
                        }
                        if !chunk.is_empty() && tx.send(chunk).await.is_err() {
                            return Err("stream receiver closed".to_string());
                        }
                    }
                    Ok(())
                }) as Pin<Box<dyn Future<Output = _> + Send>>,
            ))
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn copy_object(
        &self,
        cx: Option<Context>,
        src: ObjectId,
        dest: ObjectId,
    ) -> anyhow::Result<Result<(), String>> {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            let copy_source = client
                .container_client(src.container)
                .blob_client(src.object)
                .url()
                .context("failed to get source object for copy")?;

            client
                .container_client(dest.container)
                .blob_client(dest.object)
                .copy(copy_source)
                .await
                .map(|_| ())
                .context("failed to copy source object")
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn delete_object(
        &self,
        cx: Option<Context>,
        id: ObjectId,
    ) -> anyhow::Result<Result<(), String>> {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            client
                .container_client(id.container)
                .blob_client(id.object)
                .delete()
                .await
                .map(|_| ())
                .context("failed to delete object")
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn delete_objects(
        &self,
        cx: Option<Context>,
        container: String,
        objects: Vec<String>,
    ) -> anyhow::Result<Result<(), String>> {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            let deletes = objects.iter().map(|object| async {
                client
                    .container_client(container.clone())
                    .blob_client(object.clone())
                    .delete()
                    .await
            });
            futures::future::join_all(deletes)
                .await
                .into_iter()
                .collect::<Result<Vec<_>, azure_storage::Error>>()
                .map(|_| ())
                .context("failed to delete objects")
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn get_container_data(
        &self,
        cx: Option<Context>,
        id: ObjectId,
        start: u64,
        end: u64,
    ) -> anyhow::Result<
        Result<
            (
                Pin<Box<dyn Stream<Item = Bytes> + Send>>,
                Pin<Box<dyn Future<Output = Result<(), String>> + Send>>,
            ),
            String,
        >,
    > {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            let mut stream = client
                .container_client(id.container)
                .blob_client(id.object)
                .get()
                .range(start..end)
                .into_stream();

            let (tx, rx) = mpsc::channel(16);
            anyhow::Ok((
                Box::pin(ReceiverStream::new(rx)) as Pin<Box<dyn Stream<Item = _> + Send>>,
                Box::pin(async move {
                    async move {
                        while let Some(res) = stream.next().await {
                            let res = res.context("failed to receive blob")?;
                            let buf = res
                                .data
                                .collect()
                                .await
                                .context("failed to receive bytes")?;
                            tx.send(buf).await.context("stream receiver closed")?;
                        }
                        anyhow::Ok(())
                    }
                    .await
                    .map_err(|err| format!("{err:#}"))
                }) as Pin<Box<dyn Future<Output = _> + Send>>,
            ))
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn get_object_info(
        &self,
        cx: Option<Context>,
        id: ObjectId,
    ) -> anyhow::Result<Result<ObjectMetadata, String>> {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            let info = client
                .container_client(id.container)
                .blob_client(id.object)
                .get_properties()
                .await
                .map_err(|e| anyhow::anyhow!(e))?;

            // NOTE: The `created_at` format is currently undefined
            // https://github.com/WebAssembly/wasi-blobstore/issues/7
            let created_at = info
                .blob
                .properties
                .creation_time
                .unix_timestamp()
                .try_into()
                .context("failed to convert created_at date to u64")?;
            anyhow::Ok(ObjectMetadata {
                created_at,
                size: info.blob.properties.content_length,
            })
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn has_object(
        &self,
        cx: Option<Context>,
        id: ObjectId,
    ) -> anyhow::Result<Result<bool, String>> {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            client
                .container_client(id.container)
                .blob_client(id.object)
                .exists()
                .await
                .map_err(|e| anyhow::anyhow!(e))
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self))]
    async fn move_object(
        &self,
        cx: Option<Context>,
        src: ObjectId,
        dest: ObjectId,
    ) -> anyhow::Result<Result<(), String>> {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;

            let source_client = client
                .container_client(src.container)
                .blob_client(src.object);

            // Copy and then delete the source object
            let copy_source = source_client
                .url()
                .context("failed to get source object for copy")?;

            client
                .container_client(dest.container)
                .blob_client(dest.object)
                .copy(copy_source)
                .await
                .map(|_| ())
                .context("failed to copy source object to move")?;

            source_client
                .delete()
                .await
                .map(|_| ())
                .context("failed to delete source object")
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }

    #[instrument(level = "trace", skip(self, data))]
    async fn write_container_data(
        &self,
        cx: Option<Context>,
        id: ObjectId,
        data: Pin<Box<dyn Stream<Item = Bytes> + Send>>,
    ) -> anyhow::Result<Result<Pin<Box<dyn Future<Output = Result<(), String>> + Send>>, String>>
    {
        Ok(async {
            propagate_trace_for_ctx!(cx);
            let client = self
                .get_config(cx.as_ref())
                .await
                .context("failed to retrieve azure blobstore client")?;
            let client = client.container_client(id.container).blob_client(id.object);
            anyhow::Ok(Box::pin(async move {
                // TODO: Stream data
                let data: BytesMut = data.collect().await;
                client
                    .put_block_blob(data)
                    .await
                    .map(|_| ())
                    .context("failed to write container data")
                    .map_err(|err| format!("{err:#}"))?;
                Ok(())
            }) as Pin<Box<dyn Future<Output = _> + Send>>)
        }
        .await
        .map_err(|err| format!("{err:#}")))
    }
}