-
Notifications
You must be signed in to change notification settings - Fork 3
Added Microsoft.Extensions.Hosting support #18
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
Open
GerardSmit
wants to merge
5
commits into
master
Choose a base branch
from
feature/hosting
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
654a09e
Added Microsoft.Extensions.Hosting support
GerardSmit d02a48a
Fallback to the message context
GerardSmit 6e21105
Moved Discord-related classes to Miki.Framework.Discord
GerardSmit 49e9412
Improved module dependency injection
GerardSmit ede6821
Added UseStage<> to CommandPipelineBuilder
GerardSmit 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
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
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 |
---|---|---|
@@ -1,136 +1,52 @@ | ||
namespace Miki.Framework.Commands | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Reflection; | ||
using Microsoft.Extensions.DependencyInjection; | ||
using Microsoft.Extensions.DependencyInjection.Extensions; | ||
|
||
namespace Miki.Framework.Commands | ||
{ | ||
using Miki.Framework.Commands.Nodes; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Reflection; | ||
using System.Threading.Tasks; | ||
|
||
public class CommandTreeBuilder | ||
{ | ||
[Obsolete("use 'CommandTreeBuilder::AddCommandBuildStep()' intead")] | ||
public event Action<NodeContainer, IServiceProvider> OnContainerLoaded; | ||
private readonly List<Type> types = new List<Type>(); | ||
|
||
private readonly IServiceProvider services; | ||
|
||
private List<ICommandBuildStep> buildSteps; | ||
|
||
public CommandTreeBuilder(IServiceProvider services) | ||
public CommandTreeBuilder(IServiceCollection services) | ||
{ | ||
this.services = services; | ||
Services = services; | ||
} | ||
|
||
public CommandTreeBuilder AddCommandBuildStep(ICommandBuildStep buildStep) | ||
{ | ||
if(buildSteps == null) | ||
{ | ||
buildSteps = new List<ICommandBuildStep>(); | ||
} | ||
buildSteps.Add(buildStep); | ||
return this; | ||
} | ||
|
||
public CommandTree Create(Assembly assembly) | ||
|
||
public IServiceCollection Services { get; } | ||
|
||
public CommandTreeBuilder AddType(Type type) | ||
{ | ||
var allTypes = assembly.GetTypes() | ||
.Where(x => x.GetCustomAttribute<ModuleAttribute>() != null); | ||
var root = new CommandTree(); | ||
foreach(var t in allTypes) | ||
{ | ||
var module = LoadModule(t, root.Root); | ||
if(module != null) | ||
{ | ||
root.Root.Children.Add(module); | ||
} | ||
} | ||
return root; | ||
} | ||
|
||
private NodeContainer LoadModule(Type t, NodeContainer parent) | ||
{ | ||
var moduleAttrib = t.GetCustomAttribute<ModuleAttribute>(); | ||
if(moduleAttrib == null) | ||
{ | ||
throw new InvalidOperationException("Modules must have a valid ModuleAttribute."); | ||
} | ||
|
||
NodeContainer module = new NodeModule(moduleAttrib.Name, parent, services, t); | ||
OnContainerLoaded?.Invoke(module, services); | ||
|
||
var allCommands = t.GetNestedTypes(BindingFlags.NonPublic | BindingFlags.Public) | ||
.Where(x => x.GetCustomAttribute<CommandAttribute>() != null); | ||
foreach(var c in allCommands) | ||
{ | ||
module.Children.Add(LoadCommand(c, module)); | ||
} | ||
|
||
var allSingleCommands = t.GetMethods() | ||
.Where(x => x.GetCustomAttribute<CommandAttribute>() != null); | ||
foreach(var c in allSingleCommands) | ||
{ | ||
module.Children.Add(LoadCommand(c, module)); | ||
} | ||
|
||
return module; | ||
types.Add(type); | ||
return this; | ||
} | ||
private Node LoadCommand(Type t, NodeContainer parent) | ||
{ | ||
var commandAttrib = t.GetCustomAttribute<CommandAttribute>(); | ||
if(commandAttrib == null) | ||
{ | ||
throw new InvalidOperationException( | ||
$"Multi command of type '{t.ToString()}' must have a valid CommandAttribute."); | ||
} | ||
|
||
if(commandAttrib.Aliases?.Count() == 0) | ||
{ | ||
throw new InvalidOperationException( | ||
$"Multi commands cannot have an invalid name."); | ||
} | ||
|
||
var multiCommand = new NodeNestedExecutable(commandAttrib.AsMetadata(), parent, services, t); | ||
OnContainerLoaded?.Invoke(multiCommand, services); | ||
|
||
var allCommands = t.GetNestedTypes() | ||
.Where(x => x.GetCustomAttribute<CommandAttribute>() != null); | ||
foreach(var c in allCommands) | ||
{ | ||
multiCommand.Children.Add(LoadCommand(c, multiCommand)); | ||
} | ||
|
||
var allSingleCommands = t.GetMethods() | ||
.Where(x => x.GetCustomAttribute<CommandAttribute>() != null); | ||
foreach(var c in allSingleCommands) | ||
{ | ||
var attrib = c.GetCustomAttribute<CommandAttribute>(); | ||
if(attrib.Aliases == null | ||
|| attrib.Aliases.Count() == 0) | ||
{ | ||
var node = LoadCommand(c, multiCommand); | ||
if(node is IExecutable execNode) | ||
{ | ||
multiCommand.SetDefaultExecution(async (e) | ||
=> await execNode.ExecuteAsync(e)); | ||
} | ||
} | ||
else | ||
{ | ||
multiCommand.Children.Add(LoadCommand(c, multiCommand)); | ||
} | ||
} | ||
return multiCommand; | ||
} | ||
private Node LoadCommand(MethodInfo m, NodeContainer parent) | ||
{ | ||
var commandAttrib = m.GetCustomAttribute<CommandAttribute>(); | ||
var command = new NodeExecutable(commandAttrib.AsMetadata(), parent, m); | ||
|
||
public CommandTreeBuilder AddAssembly(Assembly assembly) | ||
{ | ||
types.AddRange(assembly.GetTypes().Where(x => x.GetCustomAttribute<ModuleAttribute>() != null)); | ||
return this; | ||
} | ||
|
||
public CommandTree Build(IServiceProvider provider) | ||
{ | ||
var root = new CommandTree(); | ||
var compiler = ActivatorUtilities.CreateInstance<CommandTreeCompiler>(provider); | ||
|
||
foreach (var type in types) | ||
{ | ||
var module = compiler.LoadModule(type, root.Root); | ||
|
||
if (module != null) | ||
{ | ||
root.Root.Children.Add(module); | ||
} | ||
} | ||
|
||
return root; | ||
} | ||
|
||
if(m.ReturnType != typeof(Task)) | ||
{ | ||
throw new Exception("Methods with attribute 'Command' require to be Tasks."); | ||
} | ||
return command; | ||
} | ||
} | ||
} |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are these public now? they shouldn't be used externally.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So you can easily add services when you make an extension method, e.g.:
Now you can call the extension method
AddWarningsModule
and all the required services are added: