-
Notifications
You must be signed in to change notification settings - Fork 130
No longer rely on static state in ConfigurationReader #151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b1e4661
Refactor: Introduce SettingValueResolver
tsimbalar 901f7c1
Refactor `ConfigurationReader` to share common things
tsimbalar cd457d0
Refactor : Introduce AssemblyFinder
tsimbalar 3e5677c
Refactor: rename SettingsValueResolver to ResolutionContext
tsimbalar 912e1b8
Improve test to validate content of Configuration parameter
tsimbalar 00178a1
Add comments explaining behavior of DependencyContext.Default
tsimbalar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
src/Serilog.Settings.Configuration/Settings/Configuration/Assemblies/AssemblyFinder.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Reflection; | ||
using Microsoft.Extensions.DependencyModel; | ||
|
||
namespace Serilog.Settings.Configuration.Assemblies | ||
{ | ||
abstract class AssemblyFinder | ||
{ | ||
public abstract IReadOnlyList<AssemblyName> FindAssembliesContainingName(string nameToFind); | ||
|
||
protected static bool IsCaseInsensitiveMatch(string text, string textToFind) | ||
{ | ||
return text != null && text.ToLowerInvariant().Contains(textToFind.ToLowerInvariant()); | ||
} | ||
|
||
public static AssemblyFinder Auto() | ||
{ | ||
// Need to check `Assembly.GetEntryAssembly()` first because | ||
// `DependencyContext.Default` throws an exception when `Assembly.GetEntryAssembly()` returns null | ||
if (Assembly.GetEntryAssembly() != null && DependencyContext.Default != null) | ||
{ | ||
return new DependencyContextAssemblyFinder(DependencyContext.Default); | ||
tsimbalar marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
return new DllScanningAssemblyFinder(); | ||
} | ||
|
||
public static AssemblyFinder ForSource(ConfigurationAssemblySource configurationAssemblySource) | ||
{ | ||
switch (configurationAssemblySource) | ||
{ | ||
case ConfigurationAssemblySource.UseLoadedAssemblies: | ||
return Auto(); | ||
case ConfigurationAssemblySource.AlwaysScanDllFiles: | ||
return new DllScanningAssemblyFinder(); | ||
default: | ||
throw new ArgumentOutOfRangeException(nameof(configurationAssemblySource), configurationAssemblySource, null); | ||
} | ||
} | ||
|
||
public static AssemblyFinder ForDependencyContext(DependencyContext dependencyContext) | ||
{ | ||
return new DependencyContextAssemblyFinder(dependencyContext); | ||
} | ||
} | ||
} |
File renamed without changes.
28 changes: 28 additions & 0 deletions
28
...ttings.Configuration/Settings/Configuration/Assemblies/DependencyContextAssemblyFinder.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Reflection; | ||
using Microsoft.Extensions.DependencyModel; | ||
|
||
namespace Serilog.Settings.Configuration.Assemblies | ||
{ | ||
sealed class DependencyContextAssemblyFinder : AssemblyFinder | ||
{ | ||
readonly DependencyContext _dependencyContext; | ||
|
||
public DependencyContextAssemblyFinder(DependencyContext dependencyContext) | ||
{ | ||
_dependencyContext = dependencyContext ?? throw new ArgumentNullException(nameof(dependencyContext)); | ||
} | ||
|
||
public override IReadOnlyList<AssemblyName> FindAssembliesContainingName(string nameToFind) | ||
{ | ||
var query = from library in _dependencyContext.RuntimeLibraries | ||
from assemblyName in library.GetDefaultAssemblyNames(_dependencyContext) | ||
where IsCaseInsensitiveMatch(assemblyName.Name, nameToFind) | ||
select assemblyName; | ||
|
||
return query.ToList().AsReadOnly(); | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...log.Settings.Configuration/Settings/Configuration/Assemblies/DllScanningAssemblyFinder.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Reflection; | ||
|
||
namespace Serilog.Settings.Configuration.Assemblies | ||
{ | ||
sealed class DllScanningAssemblyFinder : AssemblyFinder | ||
{ | ||
public override IReadOnlyList<AssemblyName> FindAssembliesContainingName(string nameToFind) | ||
{ | ||
var query = from outputAssemblyPath in System.IO.Directory.GetFiles(AppDomain.CurrentDomain.BaseDirectory, "*.dll") | ||
tsimbalar marked this conversation as resolved.
Show resolved
Hide resolved
|
||
let assemblyFileName = System.IO.Path.GetFileNameWithoutExtension(outputAssemblyPath) | ||
where IsCaseInsensitiveMatch(assemblyFileName, nameToFind) | ||
select AssemblyName.GetAssemblyName(outputAssemblyPath); | ||
|
||
return query.ToList().AsReadOnly(); | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.