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
|
/*
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
* http://ugfx.org/license.html
*/
/********************************************************
* The PETITFS file-system
********************************************************/
#include "gfx.h"
#if GFX_USE_GFILE && GFILE_NEED_PETITFS
#include "gfile_fs.h"
#include "gfile_petitfs_wrapper.h"
static bool_t petitfsExists(const char* fname);
static bool_t petitfsOpen(GFILE* f, const char* fname);
static int petitfsRead(GFILE* f, void* buf, int size);
static bool_t petitfsSetPos(GFILE* f, long int pos);
#if GFILE_NEED_FILELISTS && _FS_MINIMIZE <= 1
static gfileList *petitfsFlOpen(const char *path, bool_t dirs);
static const char *petitfsFlRead(gfileList *pfl);
static void petitfsFlClose(gfileList *pfl);
#endif
const GFILEVMT FsPetitFSVMT = {
GFSFLG_WRITEABLE | GFSFLG_SEEKABLE,
'F',
0,
petitfsExists,
0, // No Filesize
0,
petitfsOpen,
0, // No Close
petitfsRead,
0, // No Write
petitfsSetPos,
0, // No Getsize
0, // No EOF
0, 0, 0, // No Mount, UnMount or Sync
#if GFILE_NEED_FILELISTS
#if _USE_DIR
petitfsFlOpen, petitfsFlRead, petitfsFlClose
#else
0, 0, 0
#endif
#endif
};
// Our directory list structure
typedef struct petitfsList {
gfileList fl; // This must be the first element.
DIR dir;
FILINFO fno;
} petitfsList;
// optimize these later on. Use an array to have multiple
static bool_t petitfs_mounted = FALSE;
static FATFS petitfs_fs;
static bool_t petitfsExists(const char* fname)
{
// Mount first
if (!petitfs_mounted && pf_mount(&petitfs_fs) != FR_OK)
return FALSE;
// Open
if (pf_open(fname) != FR_OK)
return FALSE;
return TRUE;
}
static bool_t petitfsOpen(GFILE* f, const char* fname)
{
// No writing
if ((f->flags & GFILEFLG_WRITE))
return FALSE;
// Mount first
if (!petitfs_mounted && pf_mount(&petitfs_fs) != FR_OK)
return FALSE;
// Open
if (pf_open(fname) != FR_OK)
return FALSE;
f->obj = &petitfs_fs;
return TRUE;
}
static int petitfsRead(GFILE* f, void* buf, int size)
{
int br;
(void) f;
if (pf_read(buf, size, (UINT*)&br) != FR_OK)
return 0;
return br;
}
static bool_t petitfsSetPos(GFILE* f, long int pos)
{
(void) f;
return pf_lseek((DWORD)pos) == FR_OK;
}
#if GFILE_NEED_FILELISTS
static gfileList *petitfsFlOpen(const char *path, bool_t dirs) {
petitfsList *p;
(void) dirs;
if (!(p = gfxAlloc(sizeof(petitfsList))))
return 0;
if (pf_opendir(&p->dir, path) != FR_OK) {
gfxFree(p);
return 0;
}
return &p->fl;
}
static const char *petitfsFlRead(gfileList *pfl) {
#define ffl ((petitfsList *)pfl)
while(1) {
// Read the next entry
if (pf_readdir(&ffl->dir, &ffl->fno) != FR_OK || !ffl->fno.fname[0])
return 0;
/* Ignore dot entries */
if (ffl->fno.fname[0] == '.') continue;
/* Is it a directory */
if (ffl->fl.dirs) {
if ((ffl->fno.fattrib & AM_DIR))
break;
} else {
if (!(ffl->fno.fattrib & (AM_DIR|AM_HID|AM_SYS)))
break;
}
}
return ffl->fno.fname;
}
static void petitfsFlClose(gfileList *pfl) {
gfxFree(pfl);
}
#endif
#endif //GFX_USE_GFILE && GFILE_NEED_PETITFS
|