summaryrefslogtreecommitdiffstats
path: root/firmware/common/file.c
blob: 86e1099918bbb1a0174ea179961f6bf7fbc4ce34 (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) 2002 by Björn Stenberg
 *
 * All files in this archive are subject to the GNU General Public License.
 * See the file COPYING in the source tree root for full license agreement.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#include <string.h>
#include "file.h"
#include "fat.h"
#include "types.h"
#include "dir.h"
#include "debug.h"

#define MAX_OPEN_FILES 4

struct filedesc {
    unsigned char sector[SECTOR_SIZE];
    int offset;
    struct fat_file fatfile;
    bool busy;
};

static struct filedesc openfiles[MAX_OPEN_FILES];

int open(char* pathname, int flags)
{
    DIR* dir;
    struct dirent* entry;
    int fd;
    char* name;
    int namelen;

    if ( pathname[0] != '/' ) {
        DEBUGF("'%s' is not an absolute path.\n",pathname);
        DEBUGF("Only absolute pathnames supported at the moment\n");
        return -1;
    }

    /* find a free file descriptor */
    for ( fd=0; fd<MAX_OPEN_FILES; fd++ )
        if ( !openfiles[fd].busy )
            break;

    if ( fd == MAX_OPEN_FILES ) {
        DEBUGF("Too many files open\n");
        return -1;
    }

    /* locate filename */
    name=strrchr(pathname+1,'/');
    if ( name ) {
        *name = 0;
        dir = opendir(pathname);
        *name = '/';
        name++;
    }
    else {
        dir = opendir("/");
        name = pathname+1;
    }
    if (!dir) {
        DEBUGF("Failed opening dir\n");
        return -1;
    }

    /* scan dir for name */
    namelen = strlen(name);
    while ((entry = readdir(dir))) {
        if ( !strncmp(name, entry->d_name, namelen) ) {
            fat_open(entry->startcluster, &(openfiles[fd].fatfile));
            break;
        }
        else {
            DEBUGF("entry: %s\n",entry->d_name);
        }
    }
    closedir(dir);
    if ( !entry ) {
        DEBUGF("Couldn't find %s in %s\n",name,pathname);
        /* fixme: we need to use proper error codes */
        return -1;
    }

    openfiles[fd].offset = 0;
    openfiles[fd].busy = TRUE;
    return fd;
}

int close(int fd)
{
    openfiles[fd].busy = FALSE;
    return 0;
}

int read(int fd, void* buf, int count)
{
    int sectors;
    int nread=0;

    /* are we in the middle of a cached sector? */
    if ( openfiles[fd].offset ) {
        if ( count > (SECTOR_SIZE - openfiles[fd].offset) ) {
            memcpy( buf, openfiles[fd].sector,
                    SECTOR_SIZE - openfiles[fd].offset );
            openfiles[fd].offset = 0;
            nread = SECTOR_SIZE - openfiles[fd].offset;
            count -= nread;
        }
        else {
            memcpy( buf, openfiles[fd].sector, count );
            openfiles[fd].offset += count;
            nread = count;
            count = 0;
        }
    }

    /* read whole sectors right into the supplied buffer */
    sectors = count / SECTOR_SIZE;
    if ( sectors ) {
        if ( fat_read(&(openfiles[fd].fatfile), sectors, buf+nread ) < 0 ) {
            DEBUGF("Failed reading %d sectors\n",sectors);
            return -1;
        }
        nread += sectors * SECTOR_SIZE;
        count -= sectors * SECTOR_SIZE;
        openfiles[fd].offset = 0;
    }

    /* trailing odd bytes? */
    if ( count ) {
        /* do we already have the sector cached? */
        if ( count < (SECTOR_SIZE - openfiles[fd].offset) ) {
            memcpy( buf + nread, openfiles[fd].sector, count );
            openfiles[fd].offset += count;
            nread += count;
            count = 0;
        }
        else {
            /* cache one sector and copy the trailing bytes */
            if ( fat_read(&(openfiles[fd].fatfile), 1,
                          &(openfiles[fd].sector)) < 0 ) {
                DEBUGF("Failed reading odd sector\n");
                return -1;
            }
            memcpy( buf + nread, openfiles[fd].sector, count );
            openfiles[fd].offset = nread;
            nread += count;
        }
    }

    return nread;
}

/*
 * local variables:
 * eval: (load-file "../rockbox-mode.el")
 * end:
 */