-
Notifications
You must be signed in to change notification settings - Fork 3.6k
[pigeon] FlutterApi error handling #5008
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
17 commits
Select commit
Hold shift + click to select a range
ba0e620
dart and java
tarrinneal 1f533f6
kotlin
tarrinneal 90b248a
nullable enums strike again
tarrinneal fd7a2a8
update kotlin unit tests
tarrinneal bef9c87
Objc with return enum wrapping change
tarrinneal 911c823
swift
tarrinneal d05b3b9
basic tests
tarrinneal 244644d
rev
tarrinneal b806939
windows
tarrinneal 77bbc05
Merge branch 'main' of github.com:flutter/packages into FAEH
tarrinneal 95f331e
NullableResult
tarrinneal 0424f05
integration tests
tarrinneal 41ec8cd
SetUp
tarrinneal ce0af94
java SETuP
tarrinneal c03dd9c
"nits"
tarrinneal dddc81d
gen
tarrinneal 2b276f6
nits 2.0
tarrinneal 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
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
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 |
|---|---|---|
|
|
@@ -271,17 +271,31 @@ void MessageFlutterApi::FlutterMethod( | |
| EncodableValue encoded_api_arguments = EncodableValue(EncodableList{ | ||
| a_string_arg ? EncodableValue(*a_string_arg) : EncodableValue(), | ||
| }); | ||
| channel->Send( | ||
| encoded_api_arguments, | ||
| [on_success = std::move(on_success), on_error = std::move(on_error)]( | ||
| const uint8_t* reply, size_t reply_size) { | ||
| std::unique_ptr<EncodableValue> response = | ||
| GetCodec().DecodeMessage(reply, reply_size); | ||
| const auto& encodable_return_value = *response; | ||
| channel->Send(encoded_api_arguments, [on_success = std::move(on_success), | ||
| on_error = std::move(on_error)]( | ||
| const uint8_t* reply, | ||
| size_t reply_size) { | ||
| std::unique_ptr<EncodableValue> response = | ||
|
||
| GetCodec().DecodeMessage(reply, reply_size); | ||
| const auto& encodable_return_value = *response; | ||
| const auto* list_return_value = | ||
| std::get_if<EncodableList>(&encodable_return_value); | ||
| if (list_return_value) { | ||
| if (list_return_value->size() > 1) { | ||
| on_error(FlutterError(std::get<std::string>(list_return_value->at(0)), | ||
| std::get<std::string>(list_return_value->at(1)), | ||
| list_return_value->at(2))); | ||
| } else { | ||
| const auto& return_value = | ||
| std::get<std::string>(encodable_return_value); | ||
| std::get<std::string>(list_return_value->at(0)); | ||
| on_success(return_value); | ||
| }); | ||
| } | ||
| } else { | ||
| on_error(FlutterError("channel-error", | ||
| "Unable to establish connection on channel.", | ||
| EncodableValue(""))); | ||
| } | ||
| }); | ||
| } | ||
|
|
||
| } // namespace pigeon_example | ||
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.