summaryrefslogtreecommitdiffstats
path: root/firmware/logf.c
blob: 6e3e5324500d97a1ed302224d7adb9fd0a921491 (plain)
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2005 by Daniel Stenberg
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/

/*
 * logf() logs MAX_LOGF_ENTRY (29) bytes per entry in a circular buffer. Each
 * logged string is space- padded for easier and faster output on screen. Just
 * output MAX_LOGF_ENTRY characters on each line. MAX_LOGF_ENTRY bytes fit
 * nicely on the iRiver remote LCD (128 pixels with an 8x6 pixels font).
 *
 * When the length of log exceeds MAX_LOGF_ENTRY bytes, dividing into the
 * string of length is MAX_LOGF_ENTRY-1 bytes.
 *
 * logfbuffer[*]:
 *
 *    |<-   MAX_LOGF_ENTRY bytes   ->|1|
 *    | log data area                |T|
 *
 *  T : log terminate flag
 *   == LOGF_TERMINATE_ONE_LINE(0x00)      : log data end (one line)
 *   == LOGF_TERMINATE_CONTINUE_LINE(0x01) : log data continues
 *   == LOGF_TERMINATE_MULTI_LINE(0x02)    : log data end (multi line)
 */

#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#include "config.h"
#include "lcd-remote.h"
#include "logf.h"
#include "serial.h"

#ifdef HAVE_USBSTACK
#include "usb_core.h"
#include "usbstack/usb_serial.h"
#endif

/* Only provide all this if asked to */
#ifdef ROCKBOX_HAS_LOGF

#ifndef __PCTOOL__
unsigned char logfbuffer[MAX_LOGF_LINES][MAX_LOGF_ENTRY+1];
int logfindex;
bool logfwrap;
#endif

#ifdef HAVE_REMOTE_LCD
static void displayremote(void)
{
    /* TODO: we should have a debug option that enables/disables this! */
    int w, h;
    int lines;
    int columns;
    int i;
    int index;

    lcd_remote_getstringsize("A", &w, &h);
    lines = LCD_REMOTE_HEIGHT/h;
    columns = LCD_REMOTE_WIDTH/w;
    lcd_remote_clear_display();
    
    index = logfindex;
    for(i = lines-1; i>=0; i--) {
        unsigned char buffer[columns+1];

        if(--index < 0) {
            if(logfwrap)
                index = MAX_LOGF_LINES-1;
            else
                break; /* done */
        }
        
        memcpy(buffer, logfbuffer[index], columns);
        buffer[columns]=0;
        lcd_remote_puts(0, i, buffer);
    }
    lcd_remote_update();   
}
#else
#define displayremote()
#endif

#ifdef __PCTOOL__
void _logf(const char *format, ...)
{
    char buf[1024];
    va_list ap;
    va_start(ap, format);
    
    vsnprintf(buf, sizeof buf, format, ap);
    printf("DEBUG: %s\n", buf);
}
#else
static void check_logfindex(void)
{
    if(logfindex >= MAX_LOGF_LINES) {
        /* wrap */
        logfwrap = true;
        logfindex = 0;
    }
}

void _logf(const char *format, ...)
{
    int len;
    int tlen;
    unsigned char buf[MAX_LOGF_ONE_LINE_SIZE];
    unsigned char *ptr;
    va_list ap;
    bool multiline = false;

    va_start(ap, format);
    vsnprintf(buf, MAX_LOGF_ONE_LINE_SIZE, format, ap);
    va_end(ap);

    len = strlen(buf);
#if defined(HAVE_SERIAL) && !defined(SIMULATOR)
    serial_tx(buf);
    serial_tx("\r\n");
#endif
#ifdef USB_ENABLE_SERIAL
    usb_serial_send(buf, len);
    usb_serial_send("\r\n", 2);
#endif

    tlen = 0;
    check_logfindex();
    while(len > MAX_LOGF_ENTRY)
    {
        ptr = logfbuffer[logfindex];
        strlcpy(ptr, buf + tlen, MAX_LOGF_ENTRY);
        ptr[MAX_LOGF_ENTRY] = LOGF_TERMINATE_CONTINUE_LINE;
        logfindex++;
        check_logfindex();
        len -= MAX_LOGF_ENTRY-1;
        tlen += MAX_LOGF_ENTRY-1;
        multiline = true;
    }
    ptr = logfbuffer[logfindex];
    strcpy(ptr, buf + tlen);

    if(len < MAX_LOGF_ENTRY)
        /* pad with spaces up to the MAX_LOGF_ENTRY byte border */
        memset(ptr+len, ' ', MAX_LOGF_ENTRY-len);
    ptr[MAX_LOGF_ENTRY] = (multiline)?LOGF_TERMINATE_MULTI_LINE:LOGF_TERMINATE_ONE_LINE;

    logfindex++; /* leave it where we write the next time */

    displayremote();
}
#endif

#endif