HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
fatfs_tests.c
Go to the documentation of this file.
1 
30 #include "user_config.h"
31 #include "fatfs.h"
32 
33 #ifdef AVR
34 //#include <stdio.h>
35 #include <stdlib.h>
36 #endif
37 
38 #include "time.h"
39 #include "stringsup.h"
40 
41 
45 void fatfs_help( int full)
46 {
47  if(full)
48  {
49  printf(
50 #ifdef POSIX_TESTS
51  "Note: fatfs tests MUST start with \"fatfs\" keyword\n"
52 #else
53  "Note: fatfs prefix is optional\n"
54 #endif
55  "fatfs help\n"
56 #ifdef FATFS_UTILS_FULL
57  "fatfs attrib file p1 p2\n"
58  "fatfs cat file\n"
59  "fatfs cd dir\n"
60  "fatfs copy file1 file2\n"
61  "fatfs create file str\n"
62  "fatfs mmc_init\n"
63  "fatfs mmc_test\n"
64 #endif
65  "fatfs ls directory\n"
66 
67 #ifdef FATFS_UTILS_FULL
68  "fatfs mkdir dir\n"
69  "fatfs mkfs\n"
70  "fatfs pwd\n"
71 #endif
72  "fatfs status\n"
73 
74 #ifdef FATFS_UTILS_FULL
75  "fatfs stat file\n"
76  "fatfs rm file\n"
77  "fatfs rmdir dir\n"
78  "fatfs rename old new\n"
79 #endif
80  "\n"
81  );
82  }
83  else
84  {
85  printf("fatfs help\n");
86  }
87 
88 }
89 
90 
102 MEMSPACE
103 int fatfs_tests(int argc,char *argv[])
104 {
105  char *ptr;
106  int ind;
107 
108  ind = 0;
109  ptr = argv[ind];
110 
111  if(!ptr)
112  return(0);
113 
114 // If we have POSIX_TESTS we MUST prefix each test with "fatfs" keyword to avoid name clashing
115 
116  if( MATCHI(ptr,"fatfs") )
117  {
118  ptr = argv[++ind];
119  if ( !ptr || MATCHI(ptr,"help") )
120  {
121  fatfs_help(1);
122  return(1);
123  }
124  }
125 
126 #ifdef POSIX_TESTS
127  else
128  {
129  return(0);
130  }
131 #endif
132 
133  if (MATCHI(ptr,"ls") || MATCHI(ptr,"dir") )
134  {
135  int i;
136  int args = 0;
137  for(i=ind+1;i<argc;++i)
138  {
139  if(fatfs_ls(argv[i]) == 0)
140  {
141  return(-1);
142  }
143  ++args;
144  }
145  if(!args)
146  {
147  if(fatfs_ls("") == 0)
148  {
149  return(-1);
150  }
151  }
152  return(1);
153  }
154  else if (MATCHARGS(ptr,"status", (ind + 1), argc))
155  {
156  if(fatfs_status("/")== 0)
157  {
158  return(-1);
159  }
160  return(1);
161  }
162 
163 #ifdef FATFS_UTILS_FULL
164  else if (MATCHARGS(ptr,"mmc_test",(ind+0),argc ))
165  {
166  mmc_test();
167  return(1);
168  }
169 
170  else if (MATCHARGS(ptr,"mmc_init",(ind+0),argc))
171  {
172  mmc_init(1);
173  return(1);
174  }
175 
176  else if (MATCHARGS(ptr,"attrib",(ind+3),argc))
177  {
178  int res;
179  res = f_chmod(argv[ind],atol(argv[ind+1]),atol(argv[ind+2]));
180  if(res)
181  {
182  printf("fatfs attribute failed\n");
183  return(-1);
184  }
185  return(1);
186  }
187 
188  else if (MATCHARGS(ptr,"cat", (ind + 1), argc))
189  {
190  if( fatfs_cat(argv[ind]) < 0)
191  {
192  return(-1);
193  }
194  return(1);
195  }
196 
197 #if FF_FS_RPATH
198  else if (MATCHARGS(ptr,"cd", (ind + 1), argc))
199  {
200  if( fatfs_cd(argv[ind]) == 0)
201  {
202  printf("fatfs cd %s failed\n", argv[ind]);
203  return(-1);
204  }
205  return(1);
206  }
207 #endif
208 
209  else if (MATCHARGS(ptr,"copy", (ind + 2), argc))
210  {
211  if( fatfs_copy(argv[ind],argv[ind+1]) < 0)
212  {
213  printf("fatfs copy failed\n");
214  return(-1);
215  }
216  return(1);
217  }
218 
219  else if (MATCHARGS(ptr,"create", (ind + 2), argc))
220  {
221  if( fatfs_create(argv[ind],argv[ind+1]) < 0)
222  {
223  printf("fatfs create failed\n");
224  return(-1);
225  }
226  return(1);
227  }
228 
229  else if (MATCHARGS(ptr,"mkdir", (ind + 1), argc))
230  {
231  if( fatfs_mkdir(argv[ind]) == 0)
232  {
233  printf("fatfs mkdir %s failed\n", argv[ind]);
234  return(-1);
235  }
236  return(1);
237  }
238 
239  else if (MATCHARGS(ptr,"mkfs", (ind + 0), argc))
240  {
241  FATFS fs;
242  uint8_t *mem;
243  int res;
244 /* Register work area to the logical drive 0 */
245  res = f_mount(&fs, "0:", 0);
246  if (res)
247  {
248  printf("fatfs mkfs f_mount failed\n");
249  return(-1);
250  }
251  mem = safemalloc(1024);
252 /* Create FAT volume on the logical drive 0. 2nd argument is ignored. */
253  res = f_mkfs("0:", FM_FAT32, 0, mem, 1024);
254  safefree(mem);
255  if(res)
256  {
257  printf("fatfs mkfs f_mkfs failed\n");
258  return(-1);
259  }
260  return(1);
261  }
262 
263 #if FF_FS_RPATH
264 #if FF_FS_RPATH >= 2
265  else if (MATCHARGS(ptr,"pwd", (ind + 0), argc))
266  {
267  if( fatfs_pwd() == 0)
268  {
269  printf("fatfs pwd failed\n");
270  return(-1);
271  }
272  return(1);
273  }
274 #endif // #if FF_FS_RPATH >= 2
275 #endif // #if FF_FS_RPATH
276 
277  else if (MATCHARGS(ptr,"rename", (ind + 2), argc))
278  {
279  if( fatfs_rename(argv[ind],argv[ind+1]) == 0)
280  {
281  printf("fatfs mkdir %s failed\n", argv[ind]);
282  return(-1);
283  }
284  return(1);
285  }
286 
287  else if (MATCHARGS(ptr,"rmdir", (ind + 1), argc))
288  {
289  if( fatfs_rmdir(argv[ind]) == 0)
290  {
291  printf("fatfs rmdir %s failed\n", argv[ind]);
292  return(-1);
293  }
294  return(1);
295  }
296 
297  else if (MATCHARGS(ptr,"rm", (ind + 1), argc))
298  {
299  if( fatfs_rm(argv[ind]) == 0)
300  {
301  printf("fatfs rm %s failed\n", argv[ind]);
302  return(-1);
303  }
304  return(1);
305  }
306 
307  else if (MATCHARGS(ptr,"stat", (ind + 1), argc))
308  {
309  if( fatfs_stat(argv[ind]) == 0)
310  {
311  printf("fatfs stat %s failed\n", argv[ind]);
312  return(-1);
313  }
314  return(1);
315  }
316 #endif // FATFS_UTILS_FULL
317 
318  return(0);
319 }
320 
321 
322 #ifdef FATFS_UTILS_FULL
323 MEMSPACE
330 void mmc_test(void)
331 {
332  sep();
333  printf("START MMC TEST\n");
334  fatfs_status("/");
335  printf("MMC Directory List\n");
336  fatfs_ls("/");
337 
338 #ifdef FATFS_UTILS_FULL
339 #if FF_FS_RPATH
340  fatfs_cd("/");
341 #endif
342  fatfs_create("test.txt","this is a test");
343  fatfs_cat("test.txt");
344  fatfs_ls("/");
345  fatfs_copy("test.txt","test2.txt");
346  fatfs_cat("test2.txt");
347 #if FF_FS_RPATH
348  fatfs_mkdir("/tmp");
349  fatfs_copy("test.txt","tmp/test3.txt");
350  fatfs_cat("tmp/test3.txt");
351  fatfs_cd("/tmp");
352  fatfs_pwd();
353  fatfs_cat("test3.txt");
354  fatfs_ls("");
355 #endif
356 #endif
357 
358  printf("END MMC TEST\n");
359  sep();
360 }
361 
362 #endif
363 
364 
372 MEMSPACE
373 int fatfs_ls(char *name)
374 {
375  long p1;
376  UINT s1, s2;
377  int res;
378  FILINFO fno;
379  DIR dirs; /* Directory object */
380  FATFS *fs;
381  char buff[MAX_NAME_LEN+1];
382 
383  memset(buff,0,sizeof(buff)-1);
384 
385  if(!name || !*name)
386  {
387  strcpy(buff,".");
388  }
389  else
390  {
391  strcpy(buff,name);
392  }
393  printf("Listing:[%s]\n",buff);
394 
395  res = f_opendir(&dirs, buff);
396  if (res != FR_OK)
397  {
398  return(0);
399  }
400  p1 = s1 = s2 = 0;
401  while(1)
402  {
403  res = f_readdir(&dirs, &fno);
404  if (res != FR_OK)
405  break;
406  if(!fno.fname[0])
407  break;
408  if (fno.fattrib & AM_DIR)
409  {
410  s2++;
411  }
412  else
413  {
414  s1++; p1 += fno.fsize;
415  }
416  fatfs_filinfo_list(&fno);
417 #ifdef ESP8266
418  optimistic_yield(1000);
419  wdt_reset();
420 #endif
421  }
422  f_closedir(&dirs);
423  printf("%4u File(s),%10lu bytes total\n%4u Dir(s)", s1, p1, s2);
424  if (f_getfree(buff, (DWORD*)&p1, &fs) == FR_OK)
425  printf(", %10luK bytes free\n", p1 * fs->csize / 2);
426  if(res)
427  return(-1);
428  return(1);
429 }
430 
431 
432 #ifdef FATFS_UTILS_FULL
433 MEMSPACE
441 long fatfs_cat(char *name)
442 {
443  UINT s1;
444  FIL fp;
445  int res;
446  int i;
447  int ret;
448  long size;
449  char *ptr;
450  char buff[512];
451 
452  printf("Reading[%s]\n", name);
453  res = f_open(&fp, name, FA_OPEN_EXISTING | FA_READ);
454  if (res)
455  {
456  printf("cat error\n");
457  f_close(&fp);
458  return(0);
459  }
460 
461  size = 0;
462  while(1)
463  {
465  res = f_read(&fp, buff, 512, &s1);
466  if(res)
467  {
468  printf("cat read error\n");
469  return(0);
470  break;
471  }
472  ret = s1;
473  if (!s1)
474  {
475  break;
476  }
477  size += ret;
478  for(i=0;i<ret;++i)
479  {
480 //FIXME putchar depends on fdevopen having been called
481  if(stdout)
482  putchar(buff[i]);
483  else
484  uart_putc(0,buff[i]);
485  }
486 #ifdef ESP8266
487  optimistic_yield(1000);
488  wdt_reset();
489 #endif
490  }
491  printf("\n");
492  f_close(&fp);
493  printf("%lu bytes\n", size);
494  return(size);
495 }
496 
497 
506 
507 MEMSPACE
508 long fatfs_copy(char *from,char *to)
509 {
510  UINT s1, s2;
511  FIL file1,file2;
512  int res;
513  long size;
514  char *ptr;
515 #ifdef ESP8266
516 #define MSIZE 4096
517 #else
518 #define MSIZE 512
519 #endif
520  printf("Opening %s\n", from);
521  res = f_open(&file1, from, FA_OPEN_EXISTING | FA_READ);
522  if (res)
523  {
524  printf("f_open %s failed\n", from);
525  return(-1);
526  }
527  printf("Creating %s\n", to);
528  res = f_open(&file2, to, FA_CREATE_ALWAYS | FA_WRITE);
529  if (res)
530  {
531  printf("f_open %s failed\n", to);
532  f_close(&file1);
533  return(-1);
534  }
535  ptr = safecalloc(MSIZE,1);
536  if(!ptr)
537  {
538  printf("f_open calloc failed!\n");
539  f_close(&file1);
540  f_close(&file2);
541  return(-1);
542  }
543  printf("\nCopying...\n");
544  size = 0;
545  for (;;)
546  {
547  res = f_read(&file1, ptr, MSIZE, &s1);
548  if (res ) // error
549  {
550  printf("fatfs copy read %s error\n",from);
551  break;
552  }
553  if(s1 == 0)
554  break; /* eof */
555  res = f_write(&file2, ptr, s1, &s2);
556  if (res ) // error
557  {
558  printf("fatfs copy %s write\n",to);
559  break;
560  }
561  size += s2;
562  printf("Copied: %08ld\r", size);
563  if (res ) // error
564  break;
565  if(s2 == 0)
566  break; /* write error */
567  }
568  safefree(ptr);
569  f_close(&file1);
570  f_close(&file2);
571  printf("%lu bytes copied.\n", size);
572  if (res)
573  return(-1);
574  return(size);
575 }
576 
577 
586 MEMSPACE
587 int fatfs_create(char *name, char *str)
588 {
589  UINT s1;
590  UINT len;
591  int res;
592  FIL fp;
593  printf("Creating [%s]\n", name);
594  printf("Text[%s]\n", str);
595  res = f_open(&fp, name, FA_CREATE_ALWAYS | FA_WRITE);
596  if (res)
597  {
598  printf("fatfs_create f_open error\n");
599  f_close(&fp);
600  return(-1);
601  }
602 
603  len = strlen(str);
604  res = f_write(&fp, str, (UINT)len, &s1);
605 
606  if (res)
607  {
608  printf("fatfs_create f_write error\n");
609  return(-1);
610  }
611  if (len != s1)
612  {
613  printf("fatfs_create f_write error - wanted(%d) got(%d)\n",s1,len);
614  return(-1);
615  }
616 
617  f_close(&fp);
618  return((long) s1);
619 }
620 
621 
622 #if FF_FS_RPATH >= 2
623 MEMSPACE
631 int fatfs_cd(char *name)
632 {
633  int res;
634  printf("fatfs cd [%s]\n", name);
635  res = f_chdir(name);
636  if(res)
637  {
638  printf("fatfs_cd %s failed\n",name);
639  return(0);
640  }
641  return(1);
642 }
643 #endif
644 
652 MEMSPACE
653 int fatfs_mkdir(char *name)
654 {
655  int res;
656 
657  printf("fatfs mkdir [%s]\n", name);
658  res = f_mkdir(name);
659  if(res)
660  {
661  printf("mkdir %s failed\n",name);
662  return(0);
663  }
664  return(1);
665 }
666 
667 
668 #if FF_FS_RPATH >= 2
669 MEMSPACE
675 int fatfs_pwd(void)
676 {
677  int res;
678  char str[MAX_NAME_LEN+1];
679  res = f_getcwd(str, sizeof(str)-2);
680  if (res)
681  {
682  printf("fatfs pwd failed\n");
683  return(0);
684  }
685  printf("fatfs pwd [%s]\n", str);
686  return(1);
687 }
688 #endif
689 
698 MEMSPACE
699 int fatfs_rename(const char *oldpath, const char *newpath)
700 {
701 /* Rename an object */
702  int res;
703  printf("fatfs rename [%s] to [%s]\n", oldpath,newpath);
704  res = f_rename(oldpath, newpath);
705  if (res)
706  {
707  printf("fatfs rename failed\n");
708  return(0);
709  }
710  return(1);
711 }
712 
713 
721 
722 MEMSPACE
723 int fatfs_rm(char *name)
724 {
725  int res;
726  printf("fatfs rm [%s]\n", name);
727  res = f_unlink(name);
728  if (res)
729  {
730  printf("fatfs_rm %s failed\n", name);
731  return(0);
732  }
733  return(1);
734 }
735 
736 
744 MEMSPACE
745 int fatfs_rmdir(char *name)
746 {
747  int res;
748  printf("fatfs rmdir [%s]\n", name);
749  res = f_unlink(name);
750  if (res)
751  {
752  printf("fatfs rmdir %s failed\n", name);
753  return(0);
754  }
755  return(1);
756 }
757 
758 
766 
767 MEMSPACE
768 int fatfs_stat(char *name)
769 {
770  FILINFO info;
771  int res;
772 
773  printf("fatfs stat [%s]\n", name);
774  res = f_stat(name, &info);
775  if(res != FR_OK)
776  {
777  printf("fatfs f_stat %s failed\n",name);
778  return(0);
779  }
780  fatfs_filinfo_list(&info);
781  return(1);
782 }
783 #endif
fatfs_cat
MEMSPACE long fatfs_cat(char *name)
FATFS
Definition: ff.h:132
fatfs.h
MAX_NAME_LEN
#define MAX_NAME_LEN
Definition: posix.h:133
fatfs_copy
MEMSPACE long fatfs_copy(char *from, char *to)
mmc_test
MEMSPACE void mmc_test(void)
fatfs_mkdir
MEMSPACE int fatfs_mkdir(char *name)
printf
MEMSPACE int printf(const char *format,...)
fatfs_pwd
MEMSPACE int fatfs_pwd(void)
FIL
Definition: ff.h:205
f_write
FRESULT f_write(FIL *fp, const void *buff, UINT btw, UINT *bw)
Definition: ff.c:3990
atol
MEMSPACE long atol(const char *str)
Convert ASCII string to number in base 10.
Definition: mathio.c:299
f_stat
FRESULT f_stat(const TCHAR *path, FILINFO *fno)
Definition: ff.c:4755
MATCHI
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
Definition: parsing.c:183
f_rename
FRESULT f_rename(const TCHAR *path_old, const TCHAR *path_new)
Definition: ff.c:5108
FA_WRITE
#define FA_WRITE
Definition: ff.h:391
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
safecalloc
void * safecalloc(int size, int elements)
Safe Alloc - Display Error message if Calloc fails.
Definition: ram.c:122
putchar
int putchar(int c)
put a character to stdout See fdevopen() sets stream->put get for TTY devices
Definition: posix.c:363
f_open
FRESULT f_open(FIL *fp, const TCHAR *path, BYTE mode)
Definition: ff.c:3697
fatfs_rename
MEMSPACE int fatfs_rename(const char *oldpath, const char *newpath)
FA_CREATE_ALWAYS
#define FA_CREATE_ALWAYS
Definition: ff.h:394
stringsup.h
Various string and character functions.
f_mkfs
FRESULT f_mkfs(const TCHAR *path, const MKFS_PARM *opt, void *work, UINT len)
Definition: ff.c:5838
safefree
void safefree(void *p)
Safe free - Only free a pointer if it is in malloc memory range.
Definition: ram.c:158
uart_putc
#define uart_putc(a, c)
Definition: rs232.h:47
fatfs_rm
MEMSPACE int fatfs_rm(char *name)
FA_OPEN_EXISTING
#define FA_OPEN_EXISTING
Definition: ff.h:392
f_unlink
FRESULT f_unlink(const TCHAR *path)
Definition: ff.c:4930
UINT
unsigned int UINT
Definition: ff.h:53
fatfs_tests
MEMSPACE int fatfs_tests(int argc, char *argv[])
FatFs test parser.
Definition: fatfs_tests.c:103
fatfs_filinfo_list
MEMSPACE void fatfs_filinfo_list(FILINFO *info)
Display FILINFO structure in a readable format.
Definition: fatfs_sup.c:340
safemalloc
void * safemalloc(size_t size)
Safe Malloc - Display Error message if Malloc fails.
Definition: ram.c:139
strcpy
MEMSPACE WEAK_ATR char * strcpy(char *dest, const char *src)
copy a string
Definition: stringsup.c:160
strlen
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
Definition: stringsup.c:144
FA_READ
#define FA_READ
Definition: ff.h:390
time.h
Common Linux/POSIX time functions.
f_getcwd
FRESULT f_getcwd(TCHAR *buff, UINT len)
Definition: ff.c:4308
f_opendir
FRESULT f_opendir(DIR *dp, const TCHAR *path)
Definition: ff.c:4571
stdout
#define stdout
Definition: posix.h:274
sep
MEMSPACE void sep()
print seperator
Definition: parsing.c:35
fatfs_status
MEMSPACE int fatfs_status(char *name)
Compute space used, number of directories and files contained used by a drive.
Definition: fatfs_sup.c:259
FILINFO::fattrib
BYTE fattrib
Definition: ff.h:251
MATCHARGS
MEMSPACE int MATCHARGS(char *str, char *pat, int min, int argc)
Match two strings and compare argument index Display message if the number of arguments is too few.
Definition: parsing.c:161
fatfs_cd
MEMSPACE int fatfs_cd(char *name)
f_chdir
FRESULT f_chdir(const TCHAR *path)
Definition: ff.c:4246
DIR
Definition: ff.h:228
AM_DIR
#define AM_DIR
Definition: ff.h:418
mmc_init
MEMSPACE int mmc_init(int verbose)
Initialize MMC and FatFs interface, display diagnostics.
Definition: mmc_hal.c:219
FR_OK
@ FR_OK
Definition: ff.h:277
FILINFO::fname
TCHAR fname[FF_LFN_BUF+1]
Definition: ff.h:254
f_mount
FRESULT f_mount(FATFS *fs, const TCHAR *path, BYTE opt)
Definition: ff.c:3649
FILINFO::fsize
FSIZE_t fsize
Definition: ff.h:248
fatfs_help
MEMSPACE void fatfs_help(int full)
Display FatFs test diagnostics help menu.
Definition: fatfs_tests.c:45
f_closedir
FRESULT f_closedir(DIR *dp)
Definition: ff.c:4637
fatfs_rmdir
MEMSPACE int fatfs_rmdir(char *name)
FILINFO
Definition: ff.h:247
FATFS::csize
WORD csize
Definition: ff.h:140
DWORD
unsigned long DWORD
Definition: ff.h:56
f_chmod
FRESULT f_chmod(const TCHAR *path, BYTE attr, BYTE mask)
Definition: ff.c:5218
FM_FAT32
#define FM_FAT32
Definition: ff.h:403
fatfs_create
MEMSPACE int fatfs_create(char *name, char *str)
fatfs_stat
MEMSPACE int fatfs_stat(char *name)
f_mkdir
FRESULT f_mkdir(const TCHAR *path)
Definition: ff.c:5024
f_readdir
FRESULT f_readdir(DIR *dp, FILINFO *fno)
Definition: ff.c:4667
f_read
FRESULT f_read(FIL *fp, void *buff, UINT btr, UINT *br)
Definition: ff.c:3889
f_close
FRESULT f_close(FIL *fp)
Definition: ff.c:4193
fatfs_ls
MEMSPACE int fatfs_ls(char *name)
Definition: fatfs_tests.c:373
f_getfree
FRESULT f_getfree(const TCHAR *path, DWORD *nclst, FATFS **fatfs)
Definition: ff.c:4790