EmbeddedResourceBrowser 1.2.0

View on GitHub View on NuGet

EmbeddedResourceBrowser

A small utility library for browsing the embedded resources of an assembly.

Declared Types

Name Summary
EmbeddedDirectory

Represents a directory of embedded resources.

EmbeddedFile

Represents an embedded file.

FileSystemInfoExtensions

Exposes extension methods for EmbeddedDirectory and EmbeddedFile objects for usage with DirectoryInfo and FileInfo.

NamedReadOnlyList<T>

An IReadOnlyList<T> containing elements that can be accessed by their name.

Remarks

The library is rather small and provides a directory-like structure for browsing embedded resources. You can load resources in multiple ways depending on how you wish to use them in your application. Before detailing each approach it is important to note that embedded resources in .NET assemblies use the dot (.) character as a separator for directories. This can be a bit confusing because we can add the dot (.) in the name of a directory or a file and there will be absolutely no difference of having a directory structure or using the dot (.) in the name. For instance, the following two resources are identical and the compiler will issue an error indicating this.

Assembly/
    Directory/
        embedded file.txt
    Directory.embedded file.txt

Both resources are embedded (by default) with the following logical name:
Assembly.Directory.embedded file.txt

If you wish, you can provide a custom logical name for your embedded resource, keep in mind that you need to specify this manually. For instance, you can use the forwards slash (/) as a separator by specifying the logical name of an embedded resource. For more information refer to: Common MSBuild project items - EmbeddedResource.

<EmbeddedResource Include="Directory.embedded file.txt" LogicalName="AssemblyName/Directory/embedded file.txt"/>

The library detects the path separator from the embedded file name. It expects that embedded resource names start with the assembly name followed by the path separator. By default, this would mean the dot character (.), however resources can be embedded under a different name using the LogicalName attribute. When using this option ensure that the assembly name is added at the beginning of the name and add the path separator after it.

See EmbeddedDirectory for more information.

Working With One Assembly

Generally, you may be working with just one assembly from where you load embedded resources. In this case initialize a new EmbeddedDirectory by passing the assembly object containing the embedded resources to the constructor. This will load all resources in a directory tree where the root is the directory having the same name as the assembly name and all resources can be browsed, and loaded, from there. The following method will concatenate the contents of each embedded file at the top level of the assembly.

string ConcatResources()
{
    var embeddedDirectory = new EmbeddedDirectory(typeof(ACustomType).Assembly);

    var resultBuilder = new StringBuilder();
    foreach (var file in embeddedDirectory.Files)
        using (var streamReader = new StreamReader(file.OpenRead()))
            resultBuilder.AppendLine(streamReader.ReadToEnd());
    return resultBuilder.ToString();
}

Working With Multiple Assemblies

Sometimes the project can be rather complex and embedded resources are placed in multiple assemblies. In this case an EmbeddedDirectory can be created by providing all assemblies as constructor arguments which in turn will create a root directory containing a subdirectory for each provided assembly that have the same structure as in the working with one assembly scenario. The following method will concatenate the contents of each embedded file at the top level of each assembly, but also append the assembly name from where files are being read.

string ConcatResources()
{
    var embeddedDirectory = new EmbeddedDirectory(typeof(ACustomTypeFromAssembly1).Assembly, typeof(ACustomTypeFromAssembly2).Assembly);

    var resultBuilder = new StringBuilder();
    foreach (var assemblyDirectory in embeddedDirectory.Subdirectories)
    {
        resultBuilder.AppendLine(assemblyDirectory.Name);
        resultBuilder.AppendLine(new string('-', 80));
        foreach (var file in embeddedDirectory.Files)
            using (var streamReader = new StreamReader(file.OpenRead()))
                resultBuilder.AppendLine(streamReader.ReadToEnd());
    }
    return resultBuilder.ToString();
}

This works well with pattern matching. To find different file or directory structures you can use the GetAllFiles() and GetAllSubdirectories() methods to get all files/directories and use LINQ to match different structures.

Working With Multiple Assemblies (Merge Method)

A different scenario when working with multiple assemblies is when we want to have resources that are placed in multiple assemblies, but instead of loading each of them we want to have a precedence between them, so even though we have multiple assemblies with embedded resources, we want to provide an implicit set that can be overriden in other assemblies. For instance, I would like to provide a default set of embedded resources that can be overridden by users of my library.

Given the following structure of embedded directories, I can override any of these resources (or add) from a different assembly using the Merge(IEnumerable<Assembly>) method.

MyAssembly/
    Directory1/
        File 1.txt
        File 2.txt
    Directory2/
        File 1.txt

This would be the default set of resources, now, when loading mapping resources from multiple assemblies using the Merge(IEnumerable<Assembly>) method some of these resources can be overridden and a few more resources can be added to the set. Having a second assembly with the following structure will create an EmbeddedDirectory with resources from both assemblies.

OtherAssembly/
    Directory1/
        File 2.txt
        File 3.txt
    Directory3/
        File 1.txt

The resulting structure will be the following, note that the root directory, or any directory, does not have the assembly name anymore since directories can contain resources from mixed assemblies.

/
    Directory1/
        File 1.txt (from MyAssembly)
        File 2.txt (from OtherAssembly, matching resource names)
        File 3.txt (from OtherAssembly)
    Directory2/
        File 1.txt (from MyAssembly)
    Directory3/
        File 1.txt (from OtherAssembly)

To create an EmbeddedDirectory using the Merge(IEnumerable<Assembly>) method simply call the static method instead of calling the constructor.

string ConcatResources()
{
    var embeddedDirectory = EmbeddedDirectory.Merge(typeof(ACustomTypeFromAssembly1).Assembly, typeof(ACustomTypeFromAssembly2).Assembly);

    var resultBuilder = new StringBuilder();
    foreach (var file in embeddedDirectory.Files)
        using (var streamReader = new StreamReader(file.OpenRead()))
            resultBuilder.AppendLine(streamReader.ReadToEnd());
    return resultBuilder.ToString();
}

EmbeddedResourceBrowser 1.2.0 - View on GitHub - View on NuGet