-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic translation of NSExceptions to Status
When the Swift API is misused from within a callback from core a NSException may escape, which we want to propagate. Since this is always a fatal error that cannot be programmatically handled by the user, we can always translate this to UnknownError rather than trying to preserve the original error code.
- Loading branch information
Showing
7 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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,45 @@ | ||
/************************************************************************* | ||
* | ||
* Copyright 2024 Realm Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
**************************************************************************/ | ||
|
||
#include <realm/exceptions.hpp> | ||
|
||
#include <realm/util/demangle.hpp> | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
namespace realm { | ||
Status exception_to_status() noexcept | ||
{ | ||
try { | ||
throw; | ||
} | ||
catch (NSException* e) { | ||
return Status(ErrorCodes::UnknownError, e.reason.UTF8String); | ||
} | ||
catch (const Exception& e) { | ||
return e.to_status(); | ||
} | ||
catch (const std::exception& e) { | ||
return Status(ErrorCodes::UnknownError, | ||
util::format("Caught std::exception of type %1: %2", util::get_type_name(e), e.what())); | ||
} | ||
catch (...) { | ||
REALM_UNREACHABLE(); | ||
} | ||
} | ||
} // namespace realm |
This file contains 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 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,39 @@ | ||
/************************************************************************* | ||
* | ||
* Copyright 2024 Realm Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
**************************************************************************/ | ||
|
||
#include "test.hpp" | ||
|
||
#include "realm/status.hpp" | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
namespace realm { | ||
namespace { | ||
TEST(Status_NSException) | ||
{ | ||
try { | ||
@throw [NSException exceptionWithName:@"Exception Name" reason:@"Expected reason" userInfo:nil]; | ||
} | ||
catch (...) { | ||
auto status = exception_to_status(); | ||
CHECK_EQUAL(status.code(), ErrorCodes::UnknownError); | ||
CHECK_EQUAL(status.reason(), "Expected reason"); | ||
} | ||
} | ||
} // namespace | ||
} // namespace realm |