6cb6c92b2a6c9eba57be255091f7adcf61f8b55f
[platform/core/uifw/dali-csharp-binder.git] / dali-csharp-binder / src / common.cpp
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // INTERNAL INCLUDES
19 #include "common.h"
20
21 void SWIG_ExceptionMessageWithFileAndLine(const int& code, const char* what, const char* filename, const int& linenumber, const char* funcname)
22 {
23   std::string message(what);
24   std::stringstream fileAndLine;
25   fileAndLine << " file: " << (filename) << " line: " << (linenumber) << " func: " << (funcname);
26   message += fileAndLine.str();
27   SWIG_CSharpException((code), message.c_str());
28 }
29
30 void internal_try_catch(const std::function<void(void)>& func, const char* filename, const int& linenumber, const char* funcname) {
31     try {
32         func();
33     } CALL_CATCH_EXCEPTION_WITH_CUSTOM_FILE_AND_LINE(, filename, linenumber, funcname);
34 }