-
Notifications
You must be signed in to change notification settings - Fork 51
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
Parsing logic: fail gracefully on unexpected input #1237
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
e86030d
Add ReadError error type
franzpoeschel cb39cd1
Move error throwing outside of ADIOS1 library
franzpoeschel 7be1098
Backend additions: ADIOS2
franzpoeschel 44385e7
Backend additions: ADIOS1
franzpoeschel e679820
Backend additions: HDF5
franzpoeschel 8d3ddaf
Backend additions: JSON
franzpoeschel ce347bf
Fully clear task queue upon failure
franzpoeschel 62400e8
Error handling at Series level
franzpoeschel 7be0020
Error handling throughout the openPMD object model
franzpoeschel 15101bf
Testing, and adapt tests to new Error types
franzpoeschel 1345dfa
Replace no_such_file_error by ReadError
franzpoeschel fa6045f
Forward errors instead of creating new ones
franzpoeschel 758839d
Test opening single broken filebased iterations
franzpoeschel 683bdf9
Use std::stable_sort in ADIOS2 destructor
franzpoeschel 3477e07
Add removed .cpp files back to ADIOS1 backend implementation
franzpoeschel 9cdf7ae
Code review
franzpoeschel 5026e21
Add export attribute to functions in ThrowError.hpp
franzpoeschel 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 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
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,70 @@ | ||
/* Copyright 2022 Franz Poeschel | ||
* | ||
* This file is part of openPMD-api. | ||
* | ||
* openPMD-api is free software: you can redistribute it and/or modify | ||
* it under the terms of of either the GNU General Public License or | ||
* the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* openPMD-api is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License and the GNU Lesser General Public License | ||
* for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* and the GNU Lesser General Public License along with openPMD-api. | ||
* If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/* | ||
* For objects that must not include Error.hpp but still need to throw errors. | ||
* In some exotic compiler configurations (clang-6 with libc++), | ||
* including Error.hpp into the ADIOS1 backend leads to incompatible error type | ||
* symbols. | ||
* So, use only the functions defined in here in the ADIOS1 backend. | ||
* Definitions are in Error.cpp. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "openPMD/auxiliary/Export.hpp" | ||
|
||
#include <optional> | ||
#include <string> | ||
#include <vector> | ||
|
||
namespace openPMD::error | ||
{ | ||
enum class AffectedObject | ||
{ | ||
Attribute, | ||
Dataset, | ||
File, | ||
Group, | ||
Other | ||
}; | ||
|
||
enum class Reason | ||
{ | ||
NotFound, | ||
CannotRead, | ||
UnexpectedContent, | ||
Inaccessible, | ||
Other | ||
}; | ||
|
||
[[noreturn]] OPENPMDAPI_EXPORT void | ||
throwBackendConfigSchema(std::vector<std::string> jsonPath, std::string what); | ||
|
||
[[noreturn]] OPENPMDAPI_EXPORT void | ||
throwOperationUnsupportedInBackend(std::string backend, std::string what); | ||
|
||
[[noreturn]] OPENPMDAPI_EXPORT void throwReadError( | ||
AffectedObject affectedObject, | ||
Reason reason_in, | ||
std::optional<std::string> backend, | ||
std::string description_in); | ||
} // namespace openPMD::error |
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
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.
This macro should never be shipped. It introduces UB and is only used in some testing.
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.
The macro is still activated only in those special tests and not shipped (see the
if(openPMD_USE_INVASIVE_TESTS)
above). I need this macro insideIteration.cpp
in here:openPMD-api/src/Iteration.cpp
Line 542 in 8c0d2a2
This is the most reliable way to trigger errors to be thrown.
Are there workflows where users compile openPMD with
openPMD_USE_INVASIVE_TESTS
and still install the resulting compiled library? If yes, are there better ways to do this then?Just removing this line breaks the parsing test.
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.
ah, I see.
ok, extents its meaning but is ok.