From: 박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 Date: Thu, 15 Nov 2018 02:25:53 +0000 (+0900) Subject: Introduce 'safemain' library (#2300) X-Git-Tag: nncc_backup~1317 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=77085b93057d83873f98efb67802024b6976b0c3;p=platform%2Fcore%2Fml%2Fnnfw.git Introduce 'safemain' library (#2300) This commit introduces 'safemain' library which provides 'main' function that captures std::exception on RELEASE build. Signed-off-by: Jonghyun Park --- diff --git a/contrib/safemain/CMakeLists.txt b/contrib/safemain/CMakeLists.txt new file mode 100644 index 0000000..c73306a --- /dev/null +++ b/contrib/safemain/CMakeLists.txt @@ -0,0 +1,2 @@ +add_library(safemain STATIC SafeMain.cpp) +set_target_properties(safemain PROPERTIES POSITION_INDEPENDENT_CODE ON) diff --git a/contrib/safemain/SafeMain.cpp b/contrib/safemain/SafeMain.cpp new file mode 100644 index 0000000..fc0fc96 --- /dev/null +++ b/contrib/safemain/SafeMain.cpp @@ -0,0 +1,43 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * 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 +#include + +int entry(int argc, char **argv); + +#ifdef NDEBUG +int main(int argc, char **argv) +{ + try + { + return entry(argc, argv); + } + catch (const std::exception &e) + { + std::cerr << "ERROR: " << e.what() << std::endl; + } + + return 255; +} +#else // NDEBUG +int main(int argc, char **argv) +{ + // NOTE main does not catch internal exceptions for debug build to make it easy to + // check the stacktrace with a debugger + return entry(argc, argv); +} +#endif // !NDEBUG