separating data structure from global state
This commit is contained in:
parent
61d3eb177c
commit
95117bcfdc
|
@ -102,11 +102,11 @@ static void printWarning(const char *fmt, va_list ap) {
|
||||||
resetLogging(&logger); // todo: is 'reset' really needed here?
|
resetLogging(&logger); // todo: is 'reset' really needed here?
|
||||||
appendMsgPrefix(&logger);
|
appendMsgPrefix(&logger);
|
||||||
|
|
||||||
append(&logger, WARNING_PREFIX);
|
logger.append(WARNING_PREFIX);
|
||||||
|
|
||||||
printToStream(&warningStream, fmt, ap);
|
printToStream(&warningStream, fmt, ap);
|
||||||
|
|
||||||
append(&logger, warningBuffer);
|
logger.append(warningBuffer);
|
||||||
append(&logger, DELIMETER);
|
append(&logger, DELIMETER);
|
||||||
scheduleLogging(&logger);
|
scheduleLogging(&logger);
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,9 +8,8 @@
|
||||||
#ifndef PID_H_
|
#ifndef PID_H_
|
||||||
#define PID_H_
|
#define PID_H_
|
||||||
|
|
||||||
#include "global.h"
|
#include "main.h"
|
||||||
#include "engine_configuration_generated_structures.h"
|
#include "engine_configuration_generated_structures.h"
|
||||||
#include "datalogging.h"
|
|
||||||
|
|
||||||
#if EFI_PROD_CODE || EFI_SIMULATOR
|
#if EFI_PROD_CODE || EFI_SIMULATOR
|
||||||
#include "tunerstudio_configuration.h"
|
#include "tunerstudio_configuration.h"
|
||||||
|
|
|
@ -29,6 +29,7 @@ extern "C"
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#include "cli_registry.h"
|
#include "cli_registry.h"
|
||||||
#include "datalogging.h"
|
#include "datalogging.h"
|
||||||
|
#include "loggingcentral.h"
|
||||||
#include "eficonsole.h"
|
#include "eficonsole.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,6 @@
|
||||||
#include "memstreams.h"
|
#include "memstreams.h"
|
||||||
#include "console_io.h"
|
#include "console_io.h"
|
||||||
#include "rfiutil.h"
|
#include "rfiutil.h"
|
||||||
#include "loggingcentral.h"
|
|
||||||
|
|
||||||
static MemoryStream intermediateLoggingBuffer;
|
static MemoryStream intermediateLoggingBuffer;
|
||||||
static uint8_t intermediateLoggingBufferData[INTERMEDIATE_LOGGING_BUFFER_SIZE] CCM_OPTIONAL;
|
static uint8_t intermediateLoggingBufferData[INTERMEDIATE_LOGGING_BUFFER_SIZE] CCM_OPTIONAL;
|
||||||
|
@ -65,18 +64,23 @@ static ALWAYS_INLINE bool validateBuffer(Logging *logging, const char *text, uin
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void append(Logging *logging, const char *text) {
|
void Logging::append(const char *text) {
|
||||||
efiAssertVoid(CUSTOM_ERR_6602, text != NULL, "append NULL");
|
efiAssertVoid(CUSTOM_ERR_6602, text != NULL, "append NULL");
|
||||||
uint32_t extraLen = efiStrlen(text);
|
uint32_t extraLen = efiStrlen(text);
|
||||||
bool isCapacityProblem = validateBuffer(logging, text, extraLen);
|
bool isCapacityProblem = validateBuffer(this, text, extraLen);
|
||||||
if (isCapacityProblem) {
|
if (isCapacityProblem) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
strcpy(logging->linePointer, text);
|
strcpy(linePointer, text);
|
||||||
/**
|
/**
|
||||||
* And now we are pointing at the zero char at the end of the buffer again
|
* And now we are pointing at the zero char at the end of the buffer again
|
||||||
*/
|
*/
|
||||||
logging->linePointer += extraLen;
|
linePointer += extraLen;
|
||||||
|
}
|
||||||
|
|
||||||
|
// todo: inline
|
||||||
|
void append(Logging *logging, const char *text) {
|
||||||
|
logging->append(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -64,8 +64,6 @@ void resetLogging(Logging *logging);
|
||||||
void appendMsgPrefix(Logging *logging);
|
void appendMsgPrefix(Logging *logging);
|
||||||
void appendMsgPostfix(Logging *logging);
|
void appendMsgPostfix(Logging *logging);
|
||||||
|
|
||||||
void scheduleMsg(Logging *logging, const char *fmt, ...);
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C"
|
extern "C"
|
||||||
|
|
|
@ -9,5 +9,6 @@
|
||||||
|
|
||||||
void initLoggingCentral(void);
|
void initLoggingCentral(void);
|
||||||
char * swapOutputBuffers(int *actualOutputBufferSize);
|
char * swapOutputBuffers(int *actualOutputBufferSize);
|
||||||
|
void scheduleMsg(Logging *logging, const char *fmt, ...);
|
||||||
|
|
||||||
#endif /* UTIL_LOGGINGCENTRAL_H_ */
|
#endif /* UTIL_LOGGINGCENTRAL_H_ */
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#include "datalogging.h"
|
#include "datalogging.h"
|
||||||
|
#include "loggingcentral.h"
|
||||||
#include "eficonsole.h"
|
#include "eficonsole.h"
|
||||||
#include "cli_registry.h"
|
#include "cli_registry.h"
|
||||||
#include "chprintf.h"
|
#include "chprintf.h"
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#include "datalogging.h"
|
#include "datalogging.h"
|
||||||
|
#include "loggingcentral.h"
|
||||||
|
|
||||||
extern "C"
|
extern "C"
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue