-
Notifications
You must be signed in to change notification settings - Fork 11
Zimmer62 stuff #94
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
base: master
Are you sure you want to change the base?
Zimmer62 stuff #94
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,20 +11,20 @@ public static class Connector | |
| Justification = "The function wouldn't do anything without a plugin.")] | ||
| [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", | ||
| Justification = "I don't know what kinds of exceptions it _could_ throw.")] | ||
| public static void Connect<TPlugin>(string[] args) where TPlugin : HspiBase, new() | ||
| public static TPlugin Connect<TPlugin>(string[] args, bool pollForShutdown = true) where TPlugin : HspiBase, new() | ||
| { | ||
| // create an instance of our plugin. | ||
| var myPlugin = new TPlugin(); | ||
| Console.WriteLine(myPlugin.Name); | ||
|
|
||
| if (Environment.UserInteractive) | ||
| { | ||
| Console.Title = myPlugin.Name; | ||
| } | ||
|
|
||
| Parser.Default.ParseArguments<Options>(args) | ||
| .WithParsed(options => | ||
| { | ||
| // create an instance of our plugin. | ||
| var myPlugin = new TPlugin(); | ||
| Console.WriteLine(myPlugin.Name); | ||
|
|
||
| if (Environment.UserInteractive) | ||
| { | ||
| Console.Title = myPlugin.Name; | ||
| } | ||
|
|
||
| // Get our plugin to connect to HomeSeer | ||
| Console.WriteLine($"\nConnecting to HomeSeer at {options.Server}:{options.Port} ..."); | ||
| try | ||
|
|
@@ -43,7 +43,7 @@ public static class Connector | |
| // let the plugin do it's thing, wait until it shuts down or the connection to HomeSeer fails. | ||
| try | ||
| { | ||
| while (true) | ||
| while (pollForShutdown) | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, based on the behavior you may want to rename it
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Meh, I get what you're saying, but I don't know about |
||
| { | ||
| // do nothing for a bit | ||
| Thread.Sleep(200); | ||
|
|
@@ -68,8 +68,13 @@ public static class Connector | |
| Console.WriteLine($"Unhandled exception from Plugin: {ex.Message}"); | ||
| } | ||
|
|
||
| if (pollForShutdown) | ||
| { | ||
| Environment.Exit(0); | ||
| } | ||
| }); | ||
| Environment.Exit(0); | ||
|
|
||
| return myPlugin; | ||
| } | ||
| } | ||
| } | ||
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 if pollForShutdown is true, the app will exit when the plugin shuts down, and this method will block until it does. And if it isn’t true, this method will return a plug-in instance. Do multiple plugins get loaded at a time? If one of them is polling for shutdown and shuts down then the whole app will exit. Is this intended?
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.
HS does support multiple plugin instances, but that's ultimately going to be different code. The current HSPI code doesn't support multiple instances. Still have to figure out how all that works.