fassert.c 3.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
/*
 * Copyright : (C) 2022 Phytium Information Technology, Inc.
 * All Rights Reserved.
 *
 * This program is OPEN SOURCE software: you can redistribute it and/or modify it
 * under the terms of the Phytium Public License as published by the Phytium Technology Co.,Ltd,
 * either version 1.0 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY;
 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the Phytium Public License for more details.
 *
 *
 * FilePath: ft_assert.c
 * Date: 2021-04-07 09:53:07
 * LastEditTime: 2022-02-17 18:04:28
 * Description:  This files is for assertion implmentation
 *
 * Modify History:
 *  Ver   Who        Date         Changes
 * ----- ------     --------    --------------------------------------
 * 1.0   huanghe    2021.4       init commit
 * 1.1   zhugengyu  2022.3       re-define assert macro
 */

/***************************** Include Files *********************************/
#include "ftypes.h"
#include "fassert.h"

/************************** Constant Definitions *****************************/

/**************************** Type Definitions *******************************/
typedef struct
{
    u32 status; /* 当前断言状态 */
    FAssertCB cb; /* 断言回调函数 */
} FAssertInfo; /* 断言实例类型 */

/***************** Macros (Inline Functions) Definitions *********************/

/************************** Function Prototypes ******************************/
static void FAssertCallback(const char *file, s32 line, int ret);

/************************** Variable Definitions *****************************/
static FAssertInfo assert_info =
{
    .status = FASSERT_NONE,
    .cb     = FAssertCallback
}; /* 断言实例 */

/*****************************************************************************/
/**
 * @name: FAssertSetStatus
 * @msg: 设置断言状态
 * @return {*}
 * @param {FAssertStatus} status, 断言状态
 */
void FAssertSetStatus(FAssertStatus status)
{
    assert_info.status = status;
}

/**
 * @name: FAssertGetStatus
 * @msg: 获取当前断言状态
 * @return {FAssertStatus} 当前断言状态
 */
FAssertStatus FAssertGetStatus(void)
{
    return assert_info.status;
}

/**
 * @name: FAssertCallback
 * @msg: 默认的断言回调函数
 * @return {*}
 * @param {char} *file, 断言发生的源文件
 * @param {s32} line, 断言发生的源文件行号
 * @param {int} ret, 保留给Non-block断言使用
 */
static void FAssertCallback(const char *file, s32 line, int ret)
{
    f_printk("Assert Error at %s : %ld \r\n", file, line);
}

/**
 * @name: FAssertSetCB
 * @msg: 设置断言回调函数
 * @return {*}
 * @param {FAssertCB} cb, 断言回调函数
 */
void FAssertSetCB(FAssertCB cb)
{
    if (NULL != cb)
        assert_info.cb = cb;
}

/**
 * @name: FAssert
 * @msg: 断言实现
 * @return {*}
 * @param {char} *file, 断言发生的源文件
 * @param {s32} line, 断言发生的源文件行号
 * @param {int} code, 断言发生的退出码,保留给Non-block断言使用
 */
void FAssert(const char *file, s32 line, int code)
{
    if (NULL != assert_info.cb)
    {
        /* 如果要实现Non-block断言,需要在回调中返回 */
        assert_info.cb(file, line, code);
    }

    while (TRUE)
    {
        ;
    }
}