summaryrefslogtreecommitdiffstats
path: root/apps/logfdisp.c
blob: da711bf1d383420d864deabb2e80474179b8ff2d (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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2005 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.
 *
 ****************************************************************************/
#include "config.h"

#ifdef ROCKBOX_HAS_LOGF
#include <file.h>
#include <sprintf.h>
#include <timefuncs.h>
#include <string.h>
#include <kernel.h>
#include <action.h>

#include <lcd.h>
#include "menu.h"
#include "logf.h"
#include "settings.h"
#include "logfdisp.h"
#include "action.h"

#ifdef HAVE_LCD_BITMAP
bool logfdisplay(void)
{
    int w, h;
    int lines;
    int columns;
    int i;
    int action;

    bool lcd = false; /* fixed atm */
    int index, user_index=0;

    lcd_getstringsize("A", &w, &h);
    lines = (lcd?
#ifdef HAVE_REMOTE_LCD
             LCD_REMOTE_HEIGHT
#else
             0
#endif
             :LCD_HEIGHT)/h;
    columns = (lcd?
#ifdef HAVE_REMOTE_LCD
             LCD_REMOTE_WIDTH
#else
             0
#endif
             :LCD_WIDTH)/w;

    if (columns > MAX_LOGF_ENTRY+1)
        columns = MAX_LOGF_ENTRY+1;
            
    if(!lines)
        return false;

    do {
        lcd_clear_display();
        
        index = logfindex + user_index;
        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);
            if (logfbuffer[index][MAX_LOGF_ENTRY] == LOGF_TERMINATE_CONTINUE_LINE)
                buffer[columns-1] = '>';
            else if (logfbuffer[index][MAX_LOGF_ENTRY] == LOGF_TERMINATE_MULTI_LINE)
                buffer[columns-1] = '\0';
            buffer[columns] = '\0';
        
            lcd_puts(0, i, buffer);
        }
        lcd_update();
        
        action = get_action(CONTEXT_STD, HZ);
        if(action == ACTION_STD_NEXT)
            user_index++;
        else if(action == ACTION_STD_PREV)
            user_index--;
        else if(action == ACTION_STD_OK)
            user_index = 0;
#ifdef HAVE_TOUCHSCREEN
        else if(action == ACTION_TOUCHSCREEN)
        {
            short x, y;
            static int prev_y;
            
            action = action_get_touchscreen_press(&x, &y);
            
            if(action & BUTTON_REL)
                prev_y = 0;
            else
            {
                if(prev_y != 0)
                    user_index += (prev_y - y) / h;
                
                prev_y = y;
            }
        }
#endif
    } while(action != ACTION_STD_CANCEL);

    return false;
}
#else /* HAVE_LCD_BITMAP */
bool logfdisplay(void)

{
    /* TODO: implement a browser for charcell bitmaps */
    return false;
}
#endif /* HAVE_LCD_BITMAP */

/* Store the logf log to logf.txt in the .rockbox directory. The order of the
 * entries will be "reversed" so that the most recently logged entry is on the
 * top of the file */
bool logfdump(void)
{
    int fd;

    if(!logfindex && !logfwrap)
        /* nothing is logged just yet */
        return false;
    
    fd = open(ROCKBOX_DIR "/logf.txt", O_CREAT|O_WRONLY|O_TRUNC);
    if(-1 != fd) {
        unsigned char buffer[MAX_LOGF_ONE_LINE_SIZE +1];
        unsigned char *ptr;
        int index = logfindex-1;
        int stop = logfindex;
        int tindex;
        bool dumpwrap = false;
        bool multiline;

        while(!dumpwrap || (index >= stop)) {
            if(index < 0) {
                if(logfwrap)
                {
                    index = MAX_LOGF_LINES-1;
                    dumpwrap = true;
                }
                else
                    break; /* done */
            }

            multiline = false;
            if (logfbuffer[index][MAX_LOGF_ENTRY] == LOGF_TERMINATE_MULTI_LINE)
            {
                multiline = true;
                do {
                    index--;
                    if(index < 0) {
                        if(logfwrap)
                        {
                            index = MAX_LOGF_LINES-1;
                            dumpwrap = true;
                        }
                        else
                            goto end_loop;
                    }
                } while(logfbuffer[index][MAX_LOGF_ENTRY] == LOGF_TERMINATE_CONTINUE_LINE);
                index++;
                if (index >= MAX_LOGF_LINES)
                    index = 0;
            }

            tindex = index-1;
            ptr = buffer;
            do {
                tindex++;
                memcpy(ptr, logfbuffer[tindex], MAX_LOGF_ENTRY);
                ptr += MAX_LOGF_ENTRY;
                if (tindex >= MAX_LOGF_LINES)
                    tindex = 0;
            } while(logfbuffer[tindex][MAX_LOGF_ENTRY] == LOGF_TERMINATE_CONTINUE_LINE);
            *ptr = '\0';
        
            fdprintf(fd, "%s\n", buffer);
            index--;
        }
end_loop:
        close(fd);
    }
    return false;
}

#endif /* ROCKBOX_HAS_LOGF */