Skip to content

Commit 48557de

Browse files
[include][src] Add API to get object name and thread name (#7507)
Signed-off-by: Fan YANG <[email protected]> Co-authored-by: Man, Jianting (Meco) <[email protected]>
1 parent 065a3e1 commit 48557de

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

include/rtthread.h

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ void rt_object_delete(rt_object_t object);
6060
rt_bool_t rt_object_is_systemobject(rt_object_t object);
6161
rt_uint8_t rt_object_get_type(rt_object_t object);
6262
rt_object_t rt_object_find(const char *name, rt_uint8_t type);
63+
rt_err_t rt_object_get_name(rt_object_t object, char *name, rt_uint8_t name_size);
6364

6465
#ifdef RT_USING_HEAP
6566
/* custom object */
@@ -169,6 +170,8 @@ void rt_thread_wakeup_set(struct rt_thread *thread, rt_wakeup_func_t func, void*
169170
#endif
170171
void rt_thread_timeout(void *parameter);
171172

173+
rt_err_t rt_thread_get_name(rt_thread_t thread, char *name, rt_uint8_t name_size);
174+
172175
#ifdef RT_USING_SIGNALS
173176
void rt_thread_alloc_sig(rt_thread_t tid);
174177
void rt_thread_free_sig(rt_thread_t tid);

src/object.c

+24
Original file line numberDiff line numberDiff line change
@@ -635,6 +635,30 @@ rt_object_t rt_object_find(const char *name, rt_uint8_t type)
635635
return RT_NULL;
636636
}
637637

638+
/**
639+
* @brief This function will return the name of the specified object container
640+
*
641+
* @param object the specified object to be get name
642+
* @param name buffer to store the object name string
643+
* @param name_size maximum size of the buffer to store object name
644+
*
645+
* @return -RT_EINVAL if any parameter is invalid or RT_EOK if the operation is successfully executed
646+
*
647+
* @note this function shall not be invoked in interrupt status
648+
*/
649+
rt_err_t rt_object_get_name(rt_object_t object, char *name, rt_uint8_t name_size)
650+
{
651+
rt_err_t result = -RT_EINVAL;
652+
if ((object != RT_NULL) && (name != RT_NULL) && (name_size != 0U))
653+
{
654+
const char *obj_name = object->name;
655+
(void) rt_strncpy(name, obj_name, (rt_size_t)name_size);
656+
result = RT_EOK;
657+
}
658+
659+
return result;
660+
}
661+
638662
#ifdef RT_USING_HEAP
639663
/**
640664
* This function will create a custom object

src/thread.c

+18
Original file line numberDiff line numberDiff line change
@@ -1142,4 +1142,22 @@ rt_thread_t rt_thread_find(char *name)
11421142

11431143
RTM_EXPORT(rt_thread_find);
11441144

1145+
/**
1146+
* @brief This function will return the name of the specified thread
1147+
*
1148+
* @note Please don't invoke this function in interrupt status
1149+
*
1150+
* @param thread the thread to retrieve thread name
1151+
* @param name buffer to store the thread name string
1152+
* @param name_size maximum size of the buffer to store the thread name
1153+
*
1154+
* @return If the return value is RT_EOK, the function is successfully executed
1155+
* If the return value is -RT_EINVAL, it means this operation failed
1156+
*/
1157+
rt_err_t rt_thread_get_name(rt_thread_t thread, char *name, rt_uint8_t name_size)
1158+
{
1159+
return (thread == RT_NULL) ? -RT_EINVAL : rt_object_get_name(&thread->parent, name, name_size);
1160+
}
1161+
RTM_EXPORT(rt_thread_get_name);
1162+
11451163
/**@}*/

0 commit comments

Comments
 (0)