• Stars
    star
    151
  • Rank 237,436 (Top 5 %)
  • Language
    C#
  • License
    Apache License 2.0
  • Created almost 3 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Bloat-free, no BS cloud storage SDK.

Stowage

Nuget Nuget (with prereleases) Nuget

logo

This documentation is for Stowage v2 which is a major redesign. Version 1 documentation can be found here.

Stowage is a bloat-free .NET cloud storage kit that supports at minimum THE major โ˜ providers.

  • Independent ๐Ÿ†“. Provides an independent implementation of the โ˜ storage APIs. Because you can't just have official corporate SDKs as a single source of truth.
  • Readable. Official SDKs like the ones for AWS, Google, or Azure are overengineered and unreadable. Some are autogenerated and look just bad and foreign to .NET ecosystem. Some won't even compile without some custom rituals.
  • Beautiful ๐Ÿฆ‹. Designed to fit into .NET ecosystem, not the other way around.
  • Rich ๐Ÿ’ฐ. Provide maximum functionality. However, in addition to that, provide humanly possible way to easily extend it with new functionality, without waiting for new SDK releases.
  • Embeddable ๐Ÿ”ฑ. Has zero external dependencies, relies only on built-in .NET API. Often official SDKs have a very deep dependency tree causing a large binary sizes and endless conflicts during runtime. This one is a single .NET .dll with no dependencies whatsoever.
  • Cross Cloud ๐ŸŒฅ. Same API. Any cloud. Best decisions made for you. It's like iPhone vs Windows Phone.
  • Cross Tested โŽ. It's not just cross cloud but also cross tested (I don't know how to call this). It tests that all cloud providers behave absolutely the same on various method calls. They should validate arguments the same, throw same exceptions in the same situations, and support the same set of functionality. Sounds simple, but it's rare to find in a library. And it important, otherwise what's the point of a generic API if you need to write a lot of if()s? (or pattern matching).

This library originally came out from being frustrated on working on my another library - Storage.Net. While it's OK, most of the time I had to deal with SDK incompatibilities, breaking changes, oddnesses, and slowness, whereas most of the time users needs something simple that just works.

Getting Started

Right, time to gear up. We'll do it step by step. First, you need to install the Nuget package.

Simplest case, using the local ๐Ÿ’ฝ and writing text "I'm a page!!!" to a file called "pagefile.sys" at the root of disk C::

using Stowage;

using(IFileStorage fs = Files.Of.LocalDisk("c:\\")) {
   await fs.WriteText("pagefile.sys", "I'm a page!!!!");
}

This is local disk, yeah? But what about cloud storage, like Azure Blob Storage? Piece of cake:

using Stowage;

using(IFileStorage fs = Files.Of.AzureBlobStorage("accountName", "accountKey", "containerName")) {
   var entries = await fs.Ls();
}

โ™’ Streaming

Streaming is a first-class feature. This means the streaming is real with no workarounds or in-memory buffers, so you can upload/download files of virtually unlimited sizes. Most official SDKs do not support streaming at all - surprisingly even the cloud leader's .NET SDK doesn't. Each requires some sort of crippled down version of stream - either knowing length beforehand, or will buffer it all in memory. I don't. I stream like a stream.

Proper streaming support also means that you can transform streams as you write to them or read from them - something that is not available in the native SDKs. For instance gzipping, encryption, anything else.

Streaming is also truly compatible with synchronous and asynchronous API.

Details/Documentation

Whenever a method appears here, I assume it belongs to IFileStorage interface, unless specified.

Listing/Browsing

Use .Ls() (short for list) - very easy to remember! Everyone knows what ls does, right? Optionally allows to list entries recursively.

Reading

The core method for reading is Stream OpenRead(IOPath path) - this returns a stream from file path. Stream is the lowest level data structure. There are other helper methods that by default rely on this method, like ReadText etc. Just have a quick look:

IFileStorage fs = ...;
Stream target = ...;

// copy to another stream
using Stream s = await fs.OpenRead("/myfile.txt");

// synchronous copy:
s.CopyTo(target);

// or alternatively, asynchronous copy (preferred):
await s.CopyToAsync(target);

// if you just need text:
string content = await fs.ReadText("/myfile.txt");

Of course there are more overloaded methods you can take advantage of.

Writing

The main method Stream OpenWrite(IOPath path, ...) opens(/creates?) a file for writing. It returns a real writeable stream you can write to and close afterwards. It behaves like a stream and is a stream.

There are other overloads which support writing text etc.

Destroying ๐Ÿงจ

Rm(IOPath path) trashes files or folders (or both) with options to do it recursively!

Other

There are other useful utility methods:

  • bool Exists(IOPath path) that checks for file existence. It supposed to be really efficient, hence a separate method.
  • Ren renames files and folders.
  • and more are coming - check IFileStorage interface to be up to date.

Supported Storage Systems (Built-In)

Instantiation instructions are in the code documentation (IntelliSense?) - I prefer this to writing out here locally.

Below are some details worth mentioning.

AWS S3

In AWS, the path addressing style is the following:

/bucket/path/object

Ls on the root folder returns list of buckets in the AWS account, whether you do have access to them or not.

Authentication

The most usual way to authenticate with S3 is to use the following method:

IFileStorage storage = Files.Of.AmazonS3(key, secret, region);

These are what Amazon calls "long-term" credentials. If you are using STS, the same method overload allows you to pass sessionToken.

Another way to authenticate is using CLI profile. This is useful when you machine is already authenticated using aws cli, awsume or similar tools that write credentials and configuration to ~/.aws/credentials and ~/.aws/config.

You only need to pass the profile name (and only if it's not a default one):

IFileStorage storage = Files.Of.AmazonS3FromCliProfile();

This method has other default parameters, such as regionName which can be specified or overridden if not found in CLI configuration.

Minio

Minio is essentially using the standard S3 protocol, but addressing style is slightly different. There is a helper extension that somewhat simplifies Minio authentication:

IFileStorage storage = Files.Of.Minio(endpoint, key, secret);

Azure Blob Storage

In Azure Blob Storage, path addressing style is the following:

/container/path/object

Note that there is no storage account in the path, mostly because Shared Key authentication is storage account scoped, not tenant scoped.

Ls on the root folder returns list of containers in the storage account.

Authentication

Azure provider supports authentication with Shared Key:

IFileStorage storage = Files.Of.AzureBlobStorage(accountName, sharedKey);

Since v2, authentication with Entra Id service principals is supported too:

IFileStorage storage = Files.Of.AzureBlobStorage(
    accountName,
    new ClientSecretCredential(tenantId, clientId, clientSecret));

Interactive authentication with user credentials, and managed identities are not yet supported, but watch this space.

Emulator

Azure emulator is supported, just use AzureBlobStorageWithLocalEmulator() method to connect to it.

๐Ÿ“ˆ Extending

There are many ways to extend functionality:

  1. Documentation. You might think it's not extending anything, however if user is not aware for some functionality it doesn't exist. Documenting it is making it available, hence extending. You must be slightly mad to follow my style of writing though.
  2. New functionality. Adding utility methods like copying files inside or between accounts, automatic JSON serialisation etc. is always good. Look IFileStorage interface and PolyfilledFileStorage. In most cases these two files are enough to add pure business logic. Not counting unit tests. Which you must write. Otherwise it's easier to do the whole thing by myself. Which is what will happen according to my experience.
  3. Native optimisations. Some functionality is generic, and some depends on a specific cloud provider. For instance, one can copy a file by downloading it locally, and uploading with a new name. Or utilise a native REST call that accepts source and target file name, if it exists. Involves digging deeper into specific provider's API.

When contributing a new provider, it's way more preferrable to embed it's code in the library, provided that:

  • there are no extra nuget dependencies.
  • it's cross-platform.

I'm a strong advocate of simplicity and not going to repeat the mistake of turning this into a nuget tree dependency hell!

โ” Who?

Related Projects

  • RCLONE - cross-platform open-source cloud sync tool.
  • Storage.Net - the roots of this project.

๐Ÿ’ฐ Contributing

You are welcome to contribute in any form, however I wouldn't bother, especially financially. Don't bother buying me a โ˜•, I can do it myself real cheap. During my years of OSS development everyone I know (including myself) have only lost money. Why I'm still doing this? Probably because it's just cool and I'm enjoying it.

More Repositories

1

config

โš™ Config.Net - the easiest configuration framework for .NET developers. No BS.
C#
626
star
2

storage

๐Ÿ’ฟ Storage abstractions with implementations for .NET/.NET Standard
C#
594
star
3

parquet-dotnet

Fully managed Apache Parquet implementation
C#
467
star
4

bt

Browser Tamer
C++
95
star
5

docker-explorer-windows

Native Windows client for Docker Desktop
C#
47
star
6

IronSnappy

๐Ÿ’พ .NET Managed port of Google Snappy
C#
46
star
7

ironcompress

.NET buffer compression library with native speed, supports gzip, snappy, brotli, zstd, lz4, lzo.
C#
35
star
8

parquet-viewer-uwp

Viewer for Apache Parquet files for Windows 10
C#
32
star
9

parquet-online

Online (web assembly) Parquet.Net experimental viewer
C#
25
star
10

win-shim

Lightweight and customisable shim executable for Windows.
C++
25
star
11

netbox

.NET support library with useful utility methods
C#
21
star
12

pluralsight-azureservicefabric-programmingmodels

C#
19
star
13

pluralsight-using-azureservicefabric-in-production

PowerShell
18
star
14

logmagic

.NET logging framework
C#
12
star
15

azure-servicefabric-arm

Azure Service Fabric cluster deployment for dummies
PowerShell
9
star
16

ironboard

reviewboard.org Visual Studio extension
C#
8
star
17

StorAMP

Beautiful, native Windows client for the popular cloud storage providers
C#
7
star
18

dotnet-markdown-cli-tool

.NET Markdown CLI Tool. Extends the "dotnet" command with "dotnet markdown" to generate API documentation for C# libraries as a Markdown document.
C#
7
star
19

clipnest

Perform most common string operations on the clipboard with ease
C++
5
star
20

onenote-sdk-dotnet

A simple REST client for Microsoft OneNote
C#
2
star
21

databricks-cli

The missing command line client for Databricks SQL
C#
2
star
22

grey

C++
2
star
23

win33

Win32 interop bindings
C#
2
star
24

bt-browser-extensions

Browser Extensions for Browser Tamer
JavaScript
1
star
25

delta-dotnet

delta.io implementation in pure .net
1
star
26

abot-awesomium

Awesomium integration into Abot framework
C#
1
star
27

common

Common C++ Helpers used by my other projects
C++
1
star