Line data Source code
1 : /*
2 : * Copyright (c) 2024 Project CHIP Authors
3 : * All rights reserved.
4 : *
5 : * Licensed under the Apache License, Version 2.0 (the "License");
6 : * you may not use this file except in compliance with the License.
7 : * You may obtain a copy of the License at
8 : *
9 : * http://www.apache.org/licenses/LICENSE-2.0
10 : *
11 : * Unless required by applicable law or agreed to in writing, software
12 : * distributed under the License is distributed on an "AS IS" BASIS,
13 : * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 : * See the License for the specific language governing permissions and
15 : * limitations under the License.
16 : */
17 : #include <pw_assert_matter/handler.h>
18 :
19 : #include <lib/support/CodeUtils.h>
20 : #include <pw_preprocessor/compiler.h>
21 : #include <pw_string/string_builder.h>
22 :
23 0 : void pw_assert_matter_HandleFailure(const char * file_name, int line_number, const char * function_name, const char * format, ...)
24 : {
25 :
26 0 : pw::StringBuffer<64> builder;
27 :
28 0 : builder.Format("Assertion failed: %s:%d (in %s):", file_name, line_number, function_name);
29 :
30 : va_list args;
31 0 : va_start(args, format);
32 0 : builder.FormatVaList(format, args);
33 0 : va_end(args);
34 :
35 0 : ChipLogError(Support, "%s", builder.c_str());
36 0 : chipDie();
37 : }
38 :
39 0 : extern "C" void pw_assert_HandleFailure(void)
40 : {
41 0 : pw_assert_matter_HandleFailure("<NOFILE>", -1, "<UNKNOWN_FUNCTION>", "Crash: PW_ASSERT() or PW_DASSERT() failure");
42 : }
|