1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 by Daniel Stenberg
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
23 * logf() logs entries in a circular buffer. Each logged string is null-terminated.
25 * When the length of log exceeds MAX_LOGF_SIZE bytes, the buffer wraps.
35 #include "lcd-remote.h"
42 #include "usbstack/usb_serial.h"
45 /* Only provide all this if asked to */
46 #ifdef ROCKBOX_HAS_LOGF
49 unsigned char logfbuffer
[MAX_LOGF_SIZE
];
54 #ifdef HAVE_REMOTE_LCD
55 static void displayremote(void)
57 /* TODO: we should have a debug option that enables/disables this! */
60 int cur_x
, cur_y
, delta_y
, delta_x
;
64 /* Memorize the pointer to the beginning of the last ... lines
65 I assume delta_y >= 6 to avoid wasting memory and allocating memory dynamically
66 I hope there is no font with height < 6 ! */
67 const int NB_ENTRIES
=LCD_REMOTE_HEIGHT
/ 6;
68 int line_start_ptr
[NB_ENTRIES
];
70 fontnr
= lcd_getfont();
71 font
= font_get(fontnr
);
73 /* get the horizontal size of each line */
74 font_getstringsize("A", NULL
, &delta_y
, fontnr
);
76 /* font too small ? */
79 /* nothing to print ? */
80 if(logfindex
== 0 && !logfwrap
)
84 h
= LCD_REMOTE_HEIGHT
;
94 line_start_ptr
[0] = i
;
98 if(logfbuffer
[i
] == '\0')
100 line_start_ptr
[++nb_lines
% NB_ENTRIES
] = i
+1;
105 /* does character fit on this line ? */
106 delta_x
= font_get_width(font
, logfbuffer
[i
]);
108 if(cur_x
+ delta_x
> w
)
111 line_start_ptr
[++nb_lines
% NB_ENTRIES
] = i
;
117 if(i
>= MAX_LOGF_SIZE
)
119 } while(i
!= logfindex
);
121 lcd_remote_clear_display();
123 i
= line_start_ptr
[ MAX(nb_lines
- h
/ delta_y
, 0) % NB_ENTRIES
];
129 if(logfbuffer
[i
] == '\0')
136 /* does character fit on this line ? */
137 delta_x
= font_get_width(font
, logfbuffer
[i
]);
139 if(cur_x
+ delta_x
> w
)
145 buf
[0] = logfbuffer
[i
];
146 lcd_remote_putsxy(cur_x
, cur_y
, buf
);
151 if(i
>= MAX_LOGF_SIZE
)
153 } while(i
!= logfindex
);
158 #define displayremote()
162 void _logf(const char *format
, ...)
166 va_start(ap
, format
);
168 vsnprintf(buf
, sizeof buf
, format
, ap
);
169 printf("DEBUG: %s\n", buf
);
172 static void check_logfindex(void)
174 if(logfindex
>= MAX_LOGF_SIZE
)
182 static int logf_push(void *userp
, unsigned char c
)
186 logfbuffer
[logfindex
++] = c
;
189 #if defined(HAVE_SERIAL) && !defined(SIMULATOR)
202 void _logf(const char *fmt
, ...)
204 #ifdef USB_ENABLE_SERIAL
205 int old_logfindex
= logfindex
;
211 #if (CONFIG_PLATFORM & PLATFORM_HOSTED)
213 vsnprintf(buf
, sizeof buf
, fmt
, ap
);
215 /* restart va_list otherwise the result if undefined when vuprintf is called */
220 vuprintf(logf_push
, NULL
, fmt
, ap
);
223 /* add trailing zero */
224 logf_push(NULL
, '\0');
226 #if defined(HAVE_SERIAL) && !defined(SIMULATOR)
229 #ifdef USB_ENABLE_SERIAL
231 if(logfindex
< old_logfindex
)
233 usb_serial_send(logfbuffer
+ old_logfindex
, MAX_LOGF_SIZE
- old_logfindex
);
234 usb_serial_send(logfbuffer
, logfindex
- 1);
237 usb_serial_send(logfbuffer
+ old_logfindex
, logfindex
- old_logfindex
- 1);
238 usb_serial_send("\r\n", 2);