mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
183 lines
5.4 KiB
183 lines
5.4 KiB
10 years ago
|
// Copyright 2015 by Thorsten von Eicken, see LICENSE.txt
|
||
|
|
||
10 years ago
|
#include <esp8266.h>
|
||
6 years ago
|
#include "serial/uart.h"
|
||
10 years ago
|
#include "cgi.h"
|
||
10 years ago
|
#include "config.h"
|
||
10 years ago
|
#include "log.h"
|
||
|
|
||
9 years ago
|
#ifdef LOG_DBG
|
||
9 years ago
|
#define DBG(format, ...) do { os_printf(format, ## __VA_ARGS__); } while(0)
|
||
9 years ago
|
#else
|
||
|
#define DBG(format, ...) do { } while(0)
|
||
|
#endif
|
||
|
|
||
10 years ago
|
// Web log for the esp8266 to replace outputting to uart1.
|
||
|
// The web log has a 1KB circular in-memory buffer which os_printf prints into and
|
||
|
// the HTTP handler simply displays the buffer content on a web page.
|
||
|
|
||
10 years ago
|
// see console.c for invariants (same here)
|
||
|
#define BUF_MAX (1400)
|
||
10 years ago
|
static char log_buf[BUF_MAX];
|
||
|
static int log_wr, log_rd;
|
||
10 years ago
|
static int log_pos;
|
||
10 years ago
|
static bool log_no_uart; // start out printing to uart
|
||
|
static bool log_newline; // at start of a new line
|
||
|
|
||
9 years ago
|
// write to the uart designated for logging
|
||
|
static void uart_write_char(char c) {
|
||
|
if (flashConfig.log_mode == LOG_MODE_ON1)
|
||
|
uart1_write_char(c);
|
||
|
else
|
||
|
uart0_write_char(c);
|
||
|
}
|
||
9 years ago
|
|
||
10 years ago
|
// called from wifi reset timer to turn UART on when we loose wifi and back off
|
||
|
// when we connect to wifi AP. Here this is gated by the flash setting
|
||
10 years ago
|
void ICACHE_FLASH_ATTR
|
||
|
log_uart(bool enable) {
|
||
9 years ago
|
if (!enable && !log_no_uart && flashConfig.log_mode < LOG_MODE_ON0) {
|
||
9 years ago
|
// we're asked to turn uart off, and uart is on, and the flash setting isn't always-on
|
||
9 years ago
|
DBG("Turning OFF uart log\n");
|
||
9 years ago
|
os_delay_us(4*1000L); // time for uart to flush
|
||
|
log_no_uart = !enable;
|
||
|
} else if (enable && log_no_uart && flashConfig.log_mode != LOG_MODE_OFF) {
|
||
|
// we're asked to turn uart on, and uart is off, and the flash setting isn't always-off
|
||
|
log_no_uart = !enable;
|
||
9 years ago
|
DBG("Turning ON uart log\n");
|
||
9 years ago
|
}
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
// write a character into the log buffer
|
||
10 years ago
|
static void ICACHE_FLASH_ATTR
|
||
|
log_write(char c) {
|
||
9 years ago
|
log_buf[log_wr] = c;
|
||
|
log_wr = (log_wr+1) % BUF_MAX;
|
||
|
if (log_wr == log_rd) {
|
||
|
log_rd = (log_rd+1) % BUF_MAX; // full, eat first char
|
||
|
log_pos++;
|
||
|
}
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
// write a character to the log buffer and the uart, and handle newlines specially
|
||
10 years ago
|
static void ICACHE_FLASH_ATTR
|
||
|
log_write_char(char c) {
|
||
9 years ago
|
// log timestamp
|
||
|
if (log_newline) {
|
||
|
char buff[16];
|
||
|
int l = os_sprintf(buff, "%6d> ", (system_get_time()/1000)%1000000);
|
||
|
if (!log_no_uart)
|
||
9 years ago
|
for (int i=0; i<l; i++) uart_write_char(buff[i]);
|
||
|
if (1) // set to 0 to remove timestamps from log buffer to save some space
|
||
9 years ago
|
for (int i=0; i<l; i++) log_write(buff[i]);
|
||
|
log_newline = false;
|
||
|
}
|
||
|
if (c == '\n') log_newline = true;
|
||
9 years ago
|
// Uart output unless disabled
|
||
|
if (!log_no_uart) {
|
||
9 years ago
|
if (c == '\n') uart_write_char('\r');
|
||
|
uart_write_char(c);
|
||
9 years ago
|
}
|
||
|
// Store in log buffer
|
||
|
if (c == '\n') log_write('\r');
|
||
|
log_write(c);
|
||
10 years ago
|
}
|
||
|
|
||
|
int ICACHE_FLASH_ATTR
|
||
10 years ago
|
ajaxLog(HttpdConnData *connData) {
|
||
9 years ago
|
char buff[2048];
|
||
|
int len; // length of text in buff
|
||
|
int log_len = (log_wr+BUF_MAX-log_rd) % BUF_MAX; // num chars in log_buf
|
||
|
int start = 0; // offset onto log_wr to start sending out chars
|
||
|
|
||
|
if (connData->conn==NULL) return HTTPD_CGI_DONE; // Connection aborted. Clean up.
|
||
|
jsonHeader(connData, 200);
|
||
|
|
||
|
// figure out where to start in buffer based on URI param
|
||
|
len = httpdFindArg(connData->getArgs, "start", buff, sizeof(buff));
|
||
|
if (len > 0) {
|
||
|
start = atoi(buff);
|
||
|
if (start < log_pos) {
|
||
|
start = 0;
|
||
|
} else if (start >= log_pos+log_len) {
|
||
|
start = log_len;
|
||
|
} else {
|
||
|
start = start - log_pos;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// start outputting
|
||
|
len = os_sprintf(buff, "{\"len\":%d, \"start\":%d, \"text\": \"",
|
||
|
log_len-start, log_pos+start);
|
||
|
|
||
|
int rd = (log_rd+start) % BUF_MAX;
|
||
|
while (len < 2040 && rd != log_wr) {
|
||
|
uint8_t c = log_buf[rd];
|
||
|
if (c == '\\' || c == '"') {
|
||
|
buff[len++] = '\\';
|
||
|
buff[len++] = c;
|
||
|
} else if (c < ' ') {
|
||
|
len += os_sprintf(buff+len, "\\u%04x", c);
|
||
|
} else {
|
||
|
buff[len++] = c;
|
||
|
}
|
||
|
rd = (rd + 1) % BUF_MAX;
|
||
|
}
|
||
|
os_strcpy(buff+len, "\"}"); len+=2;
|
||
|
httpdSend(connData, buff, len);
|
||
|
return HTTPD_CGI_DONE;
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static char *dbg_mode[] = { "auto", "off", "on0", "on1" };
|
||
10 years ago
|
|
||
|
int ICACHE_FLASH_ATTR
|
||
|
ajaxLogDbg(HttpdConnData *connData) {
|
||
9 years ago
|
if (connData->conn==NULL) return HTTPD_CGI_DONE; // Connection aborted. Clean up.
|
||
|
char buff[512];
|
||
|
int len, status = 400;
|
||
|
len = httpdFindArg(connData->getArgs, "mode", buff, sizeof(buff));
|
||
|
if (len > 0) {
|
||
|
int8_t mode = -1;
|
||
9 years ago
|
if (os_strcmp(buff, "auto") == 0) mode = LOG_MODE_AUTO;
|
||
|
if (os_strcmp(buff, "off") == 0) mode = LOG_MODE_OFF;
|
||
|
if (os_strcmp(buff, "on0") == 0) mode = LOG_MODE_ON0;
|
||
|
if (os_strcmp(buff, "on1") == 0) mode = LOG_MODE_ON1;
|
||
9 years ago
|
if (mode >= 0) {
|
||
|
flashConfig.log_mode = mode;
|
||
9 years ago
|
if (mode != LOG_MODE_AUTO) log_uart(mode >= LOG_MODE_ON0);
|
||
9 years ago
|
status = configSave() ? 200 : 400;
|
||
|
}
|
||
|
} else if (connData->requestType == HTTPD_METHOD_GET) {
|
||
|
status = 200;
|
||
|
}
|
||
|
|
||
|
jsonHeader(connData, status);
|
||
|
os_sprintf(buff, "{\"mode\": \"%s\"}", dbg_mode[flashConfig.log_mode]);
|
||
|
httpdSend(connData, buff, -1);
|
||
|
return HTTPD_CGI_DONE;
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
void ICACHE_FLASH_ATTR dumpMem(void *addr, int len) {
|
||
|
uint8_t *a = addr;
|
||
|
int off = 0;
|
||
|
while (off < len) {
|
||
|
os_printf("%p ", a);
|
||
9 years ago
|
for (int i = 0; i < 16 && off + i < len; i++) {
|
||
9 years ago
|
os_printf(" %02x", a[i]);
|
||
9 years ago
|
}
|
||
9 years ago
|
os_printf(" ");
|
||
|
for (int i=0; i<16 && off<len; i++,off++,a++)
|
||
|
os_printf("%c", *a > 0x20 && *a < 0x3f ? *a : '.');
|
||
|
os_printf("\n");
|
||
|
}
|
||
|
}
|
||
10 years ago
|
|
||
10 years ago
|
void ICACHE_FLASH_ATTR logInit() {
|
||
9 years ago
|
log_no_uart = flashConfig.log_mode == LOG_MODE_OFF; // ON unless set to always-off
|
||
|
log_wr = 0;
|
||
|
log_rd = 0;
|
||
10 years ago
|
os_install_putc1((void *)log_write_char);
|
||
|
}
|
||
|
|
||
|
|