liblog/liblog.c

283 lines
4.9 KiB
C
Raw Normal View History

#include <gint/exc.h>
#include <gint/keyboard.h>
2019-09-18 17:44:47 +02:00
#include <gint/display.h>
#include <gint/std/stdlib.h>
#include <gint/std/stdio.h>
#include <gint/defs/attributes.h>
#include <liblog.h>
#include <stdint.h>
#include <gint/timer.h>
#ifdef FX9860G
2019-10-31 11:18:51 +01:00
static int number_max_messages=4096; // Ram 4Ko
#define MAX_LENGHT 22
#define WIDTH 8
#endif
2020-01-02 22:07:04 +01:00
#ifdef FXCG50
2019-10-31 11:18:51 +01:00
static int number_max_messages=10000; // Ram 10 Ko
#define MAX_LENGHT 132
#define WIDTH 17
#endif
typedef struct log_line log_line;
typedef struct log_line
{
void* previous;
char text[MAX_LENGHT];
void* next;
int cursor;
} log_line;
static log_line first_line=
2019-09-18 17:44:47 +02:00
{
0,
2020-01-02 22:07:04 +01:00
"Log beginning:",
0,
0
2019-09-18 17:44:47 +02:00
};
2019-09-28 14:28:05 +02:00
2020-01-02 22:07:04 +01:00
static log_line* current_line=&first_line;
2019-09-28 14:28:05 +02:00
2019-10-01 19:30:42 +02:00
static int number_messages=0;
2020-01-02 22:07:04 +01:00
static log_level_t priority=LOG_INFO;
2019-10-01 19:30:42 +02:00
2019-10-15 19:35:26 +02:00
static log_line* cut_line()
{
log_line* maillon = first_line.next;
log_line* maillon_suivant = maillon->next;
first_line.next=maillon_suivant;
if (maillon_suivant)
maillon_suivant->previous=&first_line;
2019-10-26 17:22:20 +02:00
number_messages--;
2019-10-15 19:35:26 +02:00
return maillon;
}
static void optimize()
{
while (number_messages*sizeof(log_line)>=number_max_messages)
{
log_line* line = cut_line();
free(line);
number_messages--;
}
}
void ll_set_size(int s)
{
2019-10-31 11:18:51 +01:00
number_max_messages=s;
2019-10-15 19:35:26 +02:00
optimize();
}
int ll_get_size();
2020-01-02 22:07:04 +01:00
void ll_set_state(log_state_t s)
2019-09-28 14:28:05 +02:00
{
2020-01-02 22:07:04 +01:00
if (s==LOG_DISABLE)
priority=LOG_QUIET;
if (s==LOG_ENABLE)
priority=LOG_INFO;
2019-09-28 14:28:05 +02:00
}
int ll_get_state()
{
2020-01-02 22:07:04 +01:00
if (priority=LOG_QUIET)
return 0;
else
return 1;
2019-09-28 14:28:05 +02:00
}
2019-10-01 19:30:42 +02:00
static void link_line(log_line* line)
{
current_line->next=line;
line->previous=current_line;
current_line=line;
}
static void clear_line(log_line* line)
{
line->next=0;
line->cursor=0;
for (int i=0; i<MAX_LENGHT; i++)
current_line->text[i]='\0';
2019-10-01 19:30:42 +02:00
}
static log_line* add_line()
{
int malloc_fail=0;
log_line* line;
2019-10-15 19:35:26 +02:00
2019-10-01 19:30:42 +02:00
int test=(number_messages*sizeof(log_line)>=number_max_messages);
if (!test)
{
line = malloc(sizeof(log_line));
if (0==line)
malloc_fail=1;
2019-10-15 19:35:26 +02:00
else
number_messages++;
2019-10-01 19:30:42 +02:00
}
2019-10-15 19:35:26 +02:00
2019-10-01 19:30:42 +02:00
if (test || malloc_fail) // fail du malloc ou dépassement de la limite de ram imposée lors du build
line=cut_line();
link_line(line);
clear_line(line);
2019-10-15 19:35:26 +02:00
optimize();
return current_line;
2019-10-01 19:30:42 +02:00
}
void ll_clear()
2019-09-18 17:44:47 +02:00
{
2019-10-01 19:30:42 +02:00
number_messages=0;
while (current_line->previous)
{
log_line* next=current_line->previous;
free(current_line);
current_line=next;
}
current_line->next=0;
current_line->cursor=0;
for (int i=0; i<MAX_LENGHT; i++)
current_line->text[i]='\0';
2019-09-18 17:44:47 +02:00
}
2019-10-01 19:30:42 +02:00
2019-09-18 17:44:47 +02:00
static void append_character(char c)
2019-09-18 17:44:47 +02:00
{
2019-10-01 19:30:42 +02:00
if (current_line==&first_line)
add_line();
if (c=='\n')
2019-09-18 17:44:47 +02:00
{
2019-09-29 18:30:29 +02:00
current_line->text[current_line->cursor] = '\0';
add_line();
2019-09-29 18:30:29 +02:00
return;
2019-09-18 17:44:47 +02:00
}
2019-09-29 18:30:29 +02:00
current_line->text[current_line->cursor] = c;
if (c!='\0')
2019-09-18 17:44:47 +02:00
{
current_line->cursor ++;
2019-10-15 19:35:26 +02:00
2019-09-29 18:30:29 +02:00
2019-09-28 14:28:05 +02:00
if (current_line->cursor == MAX_LENGHT-1)
add_line();
2019-09-29 18:30:29 +02:00
//current_line->text[current_line->cursor] = '\0';
#ifdef FXCG50
2019-09-29 18:30:29 +02:00
else if (dsize(&current_line->text[0])>396-7)
2019-09-28 14:28:05 +02:00
{
add_line();
2019-09-18 17:44:47 +02:00
}
2019-09-28 14:28:05 +02:00
#endif
2019-09-29 18:30:29 +02:00
}
2019-09-18 17:44:47 +02:00
}
// log something
void ll_send(const char * txt)
2019-09-18 17:44:47 +02:00
{
2020-01-02 22:07:04 +01:00
if (priority!=LOG_QUIET)
2019-09-18 17:44:47 +02:00
{
2019-09-28 14:28:05 +02:00
char c=1;
int i=0;
2019-09-29 18:30:29 +02:00
while (c!='\0')
2019-09-28 14:28:05 +02:00
{
c=txt[i];
append_character(c);
i++;
}
2019-09-18 17:44:47 +02:00
}
}
2020-01-02 22:07:04 +01:00
void ll_sendp(char const *s , log_level_t l)
{
if (l>=priority)
ll_send(s);
}
2019-10-01 19:30:42 +02:00
static void show_line(const log_line* l, int y)
{
dtext(1, y, &l->text[0], C_BLACK, C_NONE);
}
2019-09-20 13:43:21 +02:00
void ll_display_custom(log_line* line)
2019-09-18 17:44:47 +02:00
{
dfont(NULL);
2019-09-18 17:44:47 +02:00
dclear(C_WHITE);
for (int i=0; i<8; i++)
{
#ifdef FX9860G
2019-09-20 13:43:21 +02:00
show_line(line, 63 - 8*(i+1));
#endif
#ifdef FXCG50
2019-09-20 13:43:21 +02:00
show_line(line, 224 - 13*(i+1));
#endif
2019-09-20 13:43:21 +02:00
line=line->previous;
if (!line)
break;
}
2019-10-01 19:30:42 +02:00
dupdate_noint();
2019-09-18 17:44:47 +02:00
}
2019-09-20 13:43:21 +02:00
2019-10-01 19:30:42 +02:00
2019-09-20 13:43:21 +02:00
void ll_display()
{
ll_display_custom(current_line);
}
2019-10-31 11:18:51 +01:00
void ll_pause()
{
2019-10-31 11:18:51 +01:00
//for (int i=0; i<timer_count(); i++)
// if (i!=3) // keyboard timer
// timer_pause(i);
2019-10-01 19:30:42 +02:00
dclear(C_WHITE);
log_line* line=current_line;
while (1)
{
ll_display_custom(line);
int key = getkey().key;
if (key==KEY_UP)
{
log_line* linet=line->previous;
if (linet)
line=linet;
}
if (key==KEY_DOWN)
{
log_line* linet=line->next;
if (linet)
line=linet;
}
if (key==KEY_EXIT)
2019-10-15 19:35:26 +02:00
break;
}
2019-10-31 11:18:51 +01:00
//for (int i=0; i<timer_count(); i++)
// if (i!=3)
// timer_start(i);
}
2019-09-20 13:43:21 +02:00
GNORETURN void ll_panic(uint32_t code)
{
char str[10];
2019-09-28 14:28:05 +02:00
sprintf(str, "\nException !\n>> LogState=%d\n>> ErrCode=%d", state, code);
ll_set_state(1);
ll_send(str);
while (1)
2019-09-28 14:28:05 +02:00
ll_pause();
}
void ll_set_panic()
{
gint_panic_set(ll_panic);
}