-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Refactor IPackage
#4174
Refactor IPackage
#4174
Changes from all commits
64eae38
d91404e
5ac7fcb
ce3f505
0c74bbb
c1fc16b
3eca4b0
8ae31ed
8027b2c
6537ba2
b85c768
15b9c8f
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 |
---|---|---|
|
@@ -70,11 +70,14 @@ namespace AppInstaller::CLI::Workflow | |
const std::string& word = context.Get<Data::CompletionData>().Word(); | ||
auto stream = context.Reporter.Completion(); | ||
|
||
for (const auto& vc : context.Get<Execution::Data::Package>()->GetAvailableVersionKeys()) | ||
for (const auto& ap : context.Get<Execution::Data::Package>()->GetAvailable()) | ||
{ | ||
if (word.empty() || Utility::ICUCaseInsensitiveStartsWith(vc.Version, word)) | ||
for (const auto& vc : ap->GetVersionKeys()) | ||
{ | ||
OutputCompletionString(stream, vc.Version); | ||
if (word.empty() || Utility::ICUCaseInsensitiveStartsWith(vc.Version, word)) | ||
{ | ||
OutputCompletionString(stream, vc.Version); | ||
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. Does the order in which these are output matter? 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. I think we should set a goal of output in "best match order"; aka the order that places the most likely completion first and so forth. I believe that PowerShell's implementation does use the order as the tab completion cycle. I assume what you are indicating is that the order will change when there are multiple available packages. This is true, but I'm not sure that is incorrect in this case. |
||
} | ||
} | ||
} | ||
} | ||
|
@@ -86,12 +89,15 @@ namespace AppInstaller::CLI::Workflow | |
|
||
std::vector<std::string> channels; | ||
|
||
for (const auto& vc : context.Get<Execution::Data::Package>()->GetAvailableVersionKeys()) | ||
for (const auto& ap : context.Get<Execution::Data::Package>()->GetAvailable()) | ||
{ | ||
if ((word.empty() || Utility::ICUCaseInsensitiveStartsWith(vc.Channel, word)) && | ||
std::find(channels.begin(), channels.end(), vc.Channel) == channels.end()) | ||
for (const auto& vc : ap->GetVersionKeys()) | ||
{ | ||
channels.emplace_back(vc.Channel); | ||
if ((word.empty() || Utility::ICUCaseInsensitiveStartsWith(vc.Channel, word)) && | ||
std::find(channels.begin(), channels.end(), vc.Channel) == channels.end()) | ||
{ | ||
channels.emplace_back(vc.Channel); | ||
} | ||
} | ||
} | ||
|
||
|
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.
Package->GetAvailable().at(0)
What if the version we're looking for is not in the first available source?
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.
This code requires a source name, and at this time there is no way to name a composite source. Thus, there will only ever be one available package.
As I mentioned in the description, this is a case where separating
CompositeSource
out fromISource
would be very helpful. But that change would be even larger.