Skip to content

Commit 6cf057d

Browse files
authored
Merge pull request project-chip#196 from gerickson/user/gerickson/github-issue-192
Import the Missing ErrorStr.cpp Source File Merging so we can get unit tests in, @bhaskar-apple @rwalker-apple Can we follow up with the issue @gerickson filed?
2 parents 5fca16f + 3d8db56 commit 6cf057d

File tree

4 files changed

+167
-0
lines changed

4 files changed

+167
-0
lines changed

src/lib/core/CHIPError.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,16 @@
2828

2929
namespace chip {
3030

31+
/**
32+
* Register a text error formatter for CHIP core errors.
33+
*/
34+
void RegisterCHIPLayerErrorFormatter(void)
35+
{
36+
static ErrorFormatter sCHIPErrorFormatter = { FormatCHIPError, NULL };
37+
38+
RegisterErrorFormatter(&sCHIPErrorFormatter);
39+
}
40+
3141
/**
3242
* Given a CHIP error, returns a human-readable NULL-terminated C string
3343
* describing the error.

src/lib/core/CHIPError.h

+1
Original file line numberDiff line numberDiff line change
@@ -1741,6 +1741,7 @@ typedef CHIP_CONFIG_ERROR_TYPE CHIP_ERROR;
17411741

17421742
namespace chip {
17431743

1744+
extern void RegisterCHIPLayerErrorFormatter(void);
17441745
extern bool FormatCHIPError(char * buf, uint16_t bufSize, int32_t err);
17451746

17461747
} // namespace chip

src/lib/support/ErrorStr.cpp

+155
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
/*
2+
*
3+
* Copyright (c) 2020 Project CHIP Authors
4+
* Copyright (c) 2013-2017 Nest Labs, Inc.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
/**
20+
* @file
21+
* This file implements functions to translate error codes used
22+
* throughout the CHIP package into human-readable strings.
23+
*
24+
*/
25+
26+
#ifndef __STDC_FORMAT_MACROS
27+
#define __STDC_FORMAT_MACROS
28+
#endif
29+
30+
#include <inttypes.h>
31+
#include <stdio.h>
32+
33+
#include <core/CHIPCore.h>
34+
#include <support/CodeUtils.h>
35+
36+
namespace chip {
37+
38+
/**
39+
* Static buffer to store the formatted error string.
40+
*/
41+
static char sErrorStr[CHIP_CONFIG_ERROR_STR_SIZE];
42+
43+
/**
44+
* Linked-list of error formatter functions.
45+
*/
46+
static const ErrorFormatter * sErrorFormatterList = NULL;
47+
48+
/**
49+
* This routine returns a human-readable NULL-terminated C string
50+
* describing the provided error.
51+
*
52+
* @param[in] err The error for format and describe.
53+
*
54+
* @return A pointer to a NULL-terminated C string describing the
55+
* provided error.
56+
*/
57+
DLL_EXPORT const char * ErrorStr(int32_t err)
58+
{
59+
if (err == 0)
60+
{
61+
return "No Error";
62+
}
63+
64+
// Search the registered error formatter for one that will format the given
65+
// error code.
66+
for (const ErrorFormatter * errFormatter = sErrorFormatterList; errFormatter != NULL; errFormatter = errFormatter->Next)
67+
{
68+
if (errFormatter->FormatError(sErrorStr, sizeof(sErrorStr), err))
69+
{
70+
return sErrorStr;
71+
}
72+
}
73+
74+
// Use a default formatting if no formatter found.
75+
FormatError(sErrorStr, sizeof(sErrorStr), NULL, err, NULL);
76+
return sErrorStr;
77+
}
78+
79+
/**
80+
* Add a new error formatter function to the global list of error formatters.
81+
*
82+
* @param[in] errFormatter An ErrorFormatter structure containing a
83+
* pointer to the new error function. Note
84+
* that a pointer to the supplied ErrorFormatter
85+
* structure will be retained by the function.
86+
* Thus the memory for the structure must
87+
* remain reserved.
88+
*/
89+
DLL_EXPORT void RegisterErrorFormatter(ErrorFormatter * errFormatter)
90+
{
91+
// Do nothing if a formatter with the same format function is already in the list.
92+
for (const ErrorFormatter * existingFormatter = sErrorFormatterList; existingFormatter != NULL;
93+
existingFormatter = existingFormatter->Next)
94+
{
95+
if (existingFormatter->FormatError == errFormatter->FormatError)
96+
{
97+
return;
98+
}
99+
}
100+
101+
// Add the formatter to the global list.
102+
errFormatter->Next = sErrorFormatterList;
103+
sErrorFormatterList = errFormatter;
104+
}
105+
106+
#if !CHIP_CONFIG_CUSTOM_ERROR_FORMATTER
107+
108+
/**
109+
* Generates a human-readable NULL-terminated C string describing the provided error.
110+
*
111+
* @param[in] buf Buffer into which the error string will be placed.
112+
* @param[in] bufSize Size of the supplied buffer in bytes.
113+
* @param[in] subsys A short string describing the subsystem that originated
114+
* the error, or NULL if the origin of the error is
115+
* unknown/unavailable. This string should be 10
116+
* characters or less.
117+
* @param[in] err The error to be formatted.
118+
* @param[in] desc A string describing the cause or meaning of the error,
119+
* or NULL if no such information is available.
120+
*/
121+
DLL_EXPORT void FormatError(char * buf, uint16_t bufSize, const char * subsys, int32_t err, const char * desc)
122+
{
123+
#if CHIP_CONFIG_SHORT_ERROR_STR
124+
125+
if (subsys == NULL)
126+
{
127+
(void) snprintf(buf, bufSize, "Error " CHIP_CONFIG_SHORT_FORM_ERROR_VALUE_FORMAT, err);
128+
}
129+
else
130+
{
131+
(void) snprintf(buf, bufSize, "Error %s:" CHIP_CONFIG_SHORT_FORM_ERROR_VALUE_FORMAT, subsys, err);
132+
}
133+
134+
#else // CHIP_CONFIG_SHORT_ERROR_STR
135+
136+
int len = 0;
137+
138+
if (subsys != NULL)
139+
{
140+
len = snprintf(buf, bufSize, "%s ", subsys);
141+
}
142+
143+
len += snprintf(buf + len, bufSize - len, "Error %" PRId32 " (0x%08" PRIX32 ")", err, (uint32_t) err);
144+
145+
if (desc != NULL)
146+
{
147+
(void) snprintf(buf + len, bufSize - len, ": %s", desc);
148+
}
149+
150+
#endif // CHIP_CONFIG_SHORT_ERROR_STR
151+
}
152+
153+
#endif // CHIP_CONFIG_CUSTOM_ERROR_FORMATTER
154+
155+
} // namespace chip

src/lib/support/SupportLayer.am

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ CHIP_BUILD_SUPPORT_LAYER_SOURCE_FILES = \
2626
support/Base64.cpp \
2727
support/CHIPFaultInjection.cpp \
2828
support/logging/CHIPLogging.cpp \
29+
support/ErrorStr.cpp \
2930
support/FibonacciUtils.cpp \
3031
support/RandUtils.cpp \
3132
$(NULL)

0 commit comments

Comments
 (0)