foxBMS  1.2.1
The foxBMS Battery Management System API Documentation
database.h File Reference

Database module header. More...

#include "database_cfg.h"
#include "database_helper.h"
#include "os.h"
Include dependency graph for database.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  DATA_QUEUE_MESSAGE
 

Macros

#define DATA_MAX_ENTRIES_PER_ACCESS   (4u)
 
#define GET_MACRO(_1, _2, _3, _4, NAME, ...)   NAME
 
#define DATA_READ_DATA(...)
 
#define DATA_WRITE_DATA(...)
 
#define DATA_DUMMY_VALUE_UINT8_T_ALTERNATING_BIT_PATTERN   ((uint8_t)0xAAu)
 

Typedefs

typedef enum DATA_BLOCK_ACCESS_TYPE DATA_BLOCK_ACCESS_TYPE_e
 data block access types (read or write) More...
 
typedef struct DATA_QUEUE_MESSAGE DATA_QUEUE_MESSAGE_s
 

Enumerations

enum  DATA_BLOCK_ACCESS_TYPE { DATA_WRITE_ACCESS , DATA_READ_ACCESS }
 data block access types (read or write) More...
 

Functions

void DATA_DummyFunction (void)
 Dummy void function of the database module. More...
 
STD_RETURN_TYPE_e DATA_Init (void)
 Initialization of database manager. More...
 
void DATA_Task (void)
 trigger of database manager More...
 
STD_RETURN_TYPE_e DATA_Write_1_DataBlock (void *pDataFromSender0)
 Stores a datablock in database. More...
 
STD_RETURN_TYPE_e DATA_Write_2_DataBlocks (void *pDataFromSender0, void *pDataFromSender1)
 Stores a datablock in database. More...
 
STD_RETURN_TYPE_e DATA_Write_3_DataBlocks (void *pDataFromSender0, void *pDataFromSender1, void *pDataFromSender2)
 Stores a datablock in database. More...
 
STD_RETURN_TYPE_e DATA_Write_4_DataBlocks (void *pDataFromSender0, void *pDataFromSender1, void *pDataFromSender2, void *pDataFromSender3)
 Stores a datablock in database. More...
 
STD_RETURN_TYPE_e DATA_Read_1_DataBlock (void *pDataToReceiver0)
 Reads a datablock in database by value. More...
 
STD_RETURN_TYPE_e DATA_Read_2_DataBlocks (void *pDataToReceiver0, void *pDataToReceiver1)
 Reads a datablock in database by value. More...
 
STD_RETURN_TYPE_e DATA_Read_3_DataBlocks (void *pDataToReceiver0, void *pDataToReceiver1, void *pDataToReceiver2)
 Reads a datablock in database by value. More...
 
STD_RETURN_TYPE_e DATA_Read_4_DataBlocks (void *pDataToReceiver0, void *pDataToReceiver1, void *pDataToReceiver2, void *pDataToReceiver3)
 Reads a datablock in database by value. More...
 
void DATA_ExecuteDataBIST (void)
 Executes a built-in self-test for the database module. More...
 

Detailed Description

Database module header.

SPDX-License-Identifier: BSD-3-Clause

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

We kindly request you to use one or more of the following phrases to refer to foxBMS in your hardware, software, documentation or advertising materials:

  • ″This product uses parts of foxBMS®″
  • ″This product includes parts of foxBMS®″
  • ″This product is derived from foxBMS®″
Author
foxBMS Team
Date
2015-08-18 (date of creation)
Updated
2021-07-23 (date of last update)
Prefix
DATA

Provides interfaces to database module

Definition in file database.h.

Macro Definition Documentation

◆ DATA_DUMMY_VALUE_UINT8_T_ALTERNATING_BIT_PATTERN

#define DATA_DUMMY_VALUE_UINT8_T_ALTERNATING_BIT_PATTERN   ((uint8_t)0xAAu)

dummy value for the built-in self-test (alternating bit pattern)

Definition at line 105 of file database.h.

◆ DATA_MAX_ENTRIES_PER_ACCESS

#define DATA_MAX_ENTRIES_PER_ACCESS   (4u)

Maximum number of database entries that can be read or written during one access call to the database

Definition at line 71 of file database.h.

◆ DATA_READ_DATA

#define DATA_READ_DATA (   ...)
Value:
__VA_ARGS__, \
(__VA_ARGS__)
void DATA_DummyFunction(void)
Dummy void function of the database module.
Definition: database.c:201
STD_RETURN_TYPE_e DATA_Read_1_DataBlock(void *pDataToReceiver0)
Reads a datablock in database by value.
Definition: database.c:204
#define GET_MACRO(_1, _2, _3, _4, NAME,...)
Definition: database.h:74
STD_RETURN_TYPE_e DATA_Read_3_DataBlocks(void *pDataToReceiver0, void *pDataToReceiver1, void *pDataToReceiver2)
Reads a datablock in database by value.
Definition: database.c:214
STD_RETURN_TYPE_e DATA_Read_2_DataBlocks(void *pDataToReceiver0, void *pDataToReceiver1)
Reads a datablock in database by value.
Definition: database.c:209
STD_RETURN_TYPE_e DATA_Read_4_DataBlocks(void *pDataToReceiver0, void *pDataToReceiver1, void *pDataToReceiver2, void *pDataToReceiver3)
Reads a datablock in database by value.
Definition: database.c:219

variadic macro for read access to the database

Definition at line 76 of file database.h.

◆ DATA_WRITE_DATA

#define DATA_WRITE_DATA (   ...)
Value:
__VA_ARGS__, \
(__VA_ARGS__)
STD_RETURN_TYPE_e DATA_Write_4_DataBlocks(void *pDataFromSender0, void *pDataFromSender1, void *pDataFromSender2, void *pDataFromSender3)
Stores a datablock in database.
Definition: database.c:263
STD_RETURN_TYPE_e DATA_Write_1_DataBlock(void *pDataFromSender0)
Stores a datablock in database.
Definition: database.c:248
STD_RETURN_TYPE_e DATA_Write_3_DataBlocks(void *pDataFromSender0, void *pDataFromSender1, void *pDataFromSender2)
Stores a datablock in database.
Definition: database.c:258
STD_RETURN_TYPE_e DATA_Write_2_DataBlocks(void *pDataFromSender0, void *pDataFromSender1)
Stores a datablock in database.
Definition: database.c:253

variadic macro for write access to the database

Definition at line 86 of file database.h.

◆ GET_MACRO

#define GET_MACRO (   _1,
  _2,
  _3,
  _4,
  NAME,
  ... 
)    NAME

helper macro for the variadic macros for read and write functions

Definition at line 74 of file database.h.

Typedef Documentation

◆ DATA_BLOCK_ACCESS_TYPE_e

data block access types (read or write)

◆ DATA_QUEUE_MESSAGE_s

struct for database queue, contains pointer to data, database entry and access type

Enumeration Type Documentation

◆ DATA_BLOCK_ACCESS_TYPE

data block access types (read or write)

Enumerator
DATA_WRITE_ACCESS 

write access to data block

DATA_READ_ACCESS 

read access to data block

Definition at line 99 of file database.h.

Function Documentation

◆ DATA_DummyFunction()

void DATA_DummyFunction ( void  )

Dummy void function of the database module.

This function is needed in the database module in order to implement the DATA_READ_DATA() and DATA_WRITE_DATA() in a ISO C99 standard compatible way. The invocation of a macro that accepts a variable number of arguments (and this is the case for DATA_READ_DATA() and DATA_WRITE_DATA()) needs more arguments in the invocation than there are parameters in the macro definition. For the most simple case, that DATA_READ_DATA() and DATA_WRITE_DATA() are only called with one argument, a violation of the standard would appear if the DATA_DummyFunction() would be omitted: GET_MACRO(databaseVaribale, DATA_Read_4_DataBlocks, DATA_Read_3_DataBlocks, DATA_Read_2_DataBlocks, DATA_Read_2_DataBlocks, DATA_Read_1_DataBlock)(databaseVaribale) So the macro invocation has six parameters, but it needs seven and an ISO C99 violation would appear. Adding the DATA_DummyFunction() fixes this violation. For details see 6.10.3 (paragraph 4) of the ISO C99 standard.

Definition at line 201 of file database.c.

◆ DATA_ExecuteDataBIST()

void DATA_ExecuteDataBIST ( void  )

Executes a built-in self-test for the database module.

This test writes and reads a database entry in order to check that the database module is working as expected. If the test fails, it will fail an assertion.

Definition at line 292 of file database.c.

◆ DATA_Init()

STD_RETURN_TYPE_e DATA_Init ( void  )

Initialization of database manager.

Returns
STD_OK if initialization successful, otherwise STD_NOT_OK

Definition at line 103 of file database.c.

◆ DATA_Read_1_DataBlock()

STD_RETURN_TYPE_e DATA_Read_1_DataBlock ( void *  pDataToReceiver0)

Reads a datablock in database by value.

This function reads data from database and copy this content in passed struct

Warning
Do not call this function from inside a critical section, as it is computationally complex.
Parameters
[out]pDataToReceiver0(type: void *)
Returns
STD_OK if access was successful, otherwise STD_NOT_OK

Definition at line 204 of file database.c.

Here is the call graph for this function:

◆ DATA_Read_2_DataBlocks()

STD_RETURN_TYPE_e DATA_Read_2_DataBlocks ( void *  pDataToReceiver0,
void *  pDataToReceiver1 
)

Reads a datablock in database by value.

This function reads data from database and copy this content in passed struct

Warning
Do not call this function from inside a critical section, as it is computationally complex.
Parameters
[out]pDataToReceiver0(type: void *)
[out]pDataToReceiver1(type: void *)
Returns
STD_OK if access was successful, otherwise STD_NOT_OK

Definition at line 209 of file database.c.

Here is the call graph for this function:

◆ DATA_Read_3_DataBlocks()

STD_RETURN_TYPE_e DATA_Read_3_DataBlocks ( void *  pDataToReceiver0,
void *  pDataToReceiver1,
void *  pDataToReceiver2 
)

Reads a datablock in database by value.

This function reads data from database and copy this content in passed struct

Warning
Do not call this function from inside a critical section, as it is computationally complex.
Parameters
[out]pDataToReceiver0(type: void *)
[out]pDataToReceiver1(type: void *)
[out]pDataToReceiver2(type: void *)
Returns
STD_OK if access was successful, otherwise STD_NOT_OK

Definition at line 214 of file database.c.

Here is the call graph for this function:

◆ DATA_Read_4_DataBlocks()

STD_RETURN_TYPE_e DATA_Read_4_DataBlocks ( void *  pDataToReceiver0,
void *  pDataToReceiver1,
void *  pDataToReceiver2,
void *  pDataToReceiver3 
)

Reads a datablock in database by value.

This function reads data from database and copy this content in passed struct

Warning
Do not call this function from inside a critical section, as it is computationally complex.
Parameters
[out]pDataToReceiver0(type: void *)
[out]pDataToReceiver1(type: void *)
[out]pDataToReceiver2(type: void *)
[out]pDataToReceiver3(type: void *)
Returns
STD_OK if access was successful, otherwise STD_NOT_OK

Definition at line 219 of file database.c.

Here is the call graph for this function:

◆ DATA_Task()

void DATA_Task ( void  )

trigger of database manager

TODO

Definition at line 153 of file database.c.

Here is the call graph for this function:

◆ DATA_Write_1_DataBlock()

STD_RETURN_TYPE_e DATA_Write_1_DataBlock ( void *  pDataFromSender0)

Stores a datablock in database.

This function stores passed data in database and updates timestamp and previous timestamp in passed struct

Warning
Do not call this function from inside a critical section, as it is computationally complex.
Parameters
[in,out]pDataFromSender0(type: void *)
Returns
STD_OK if access was successful, otherwise STD_NOT_OK

Definition at line 248 of file database.c.

Here is the call graph for this function:

◆ DATA_Write_2_DataBlocks()

STD_RETURN_TYPE_e DATA_Write_2_DataBlocks ( void *  pDataFromSender0,
void *  pDataFromSender1 
)

Stores a datablock in database.

This function stores passed data in database and updates timestamp and previous timestamp in passed struct

Warning
Do not call this function from inside a critical section, as it is computationally complex.
Parameters
[in,out]pDataFromSender0(type: void *)
[in,out]pDataFromSender1(type: void *)
Returns
STD_OK if access was successful, otherwise STD_NOT_OK

Definition at line 253 of file database.c.

Here is the call graph for this function:

◆ DATA_Write_3_DataBlocks()

STD_RETURN_TYPE_e DATA_Write_3_DataBlocks ( void *  pDataFromSender0,
void *  pDataFromSender1,
void *  pDataFromSender2 
)

Stores a datablock in database.

This function stores passed data in database and updates timestamp and previous timestamp in passed struct

Warning
Do not call this function from inside a critical section, as it is computationally complex.
Parameters
[in,out]pDataFromSender0(type: void *)
[in,out]pDataFromSender1(type: void *)
[in,out]pDataFromSender2(type: void *)
Returns
STD_OK if access was successful, otherwise STD_NOT_OK

Definition at line 258 of file database.c.

Here is the call graph for this function:

◆ DATA_Write_4_DataBlocks()

STD_RETURN_TYPE_e DATA_Write_4_DataBlocks ( void *  pDataFromSender0,
void *  pDataFromSender1,
void *  pDataFromSender2,
void *  pDataFromSender3 
)

Stores a datablock in database.

This function stores passed data in database and updates timestamp and previous timestamp in passed struct

Warning
Do not call this function from inside a critical section, as it is computationally complex.
Parameters
[in,out]pDataFromSender0(type: void *)
[in,out]pDataFromSender1(type: void *)
[in,out]pDataFromSender2(type: void *)
[in,out]pDataFromSender3(type: void *)
Returns
STD_OK if access was successful, otherwise STD_NOT_OK

Definition at line 263 of file database.c.

Here is the call graph for this function: