FileSystem.h 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // interface to file system for Forth programs
  2. //
  3. // Copyright (c) 2009 Openmoko Inc.
  4. //
  5. // Authors Christopher Hall <hsw@openmoko.com>
  6. //
  7. // Redistribution and use in source and binary forms, with or without
  8. // modification, are permitted provided that the following conditions are
  9. // met:
  10. //
  11. // 1. Redistributions of source code must retain the above copyright
  12. // notice, this list of conditions and the following disclaimer.
  13. //
  14. // 2. Redistributions in binary form must reproduce the above copyright
  15. // notice, this list of conditions and the following disclaimer in
  16. // the documentation and/or other materials provided with the
  17. // distribution.
  18. //
  19. // THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND ANY
  20. // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  22. // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE
  23. // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  26. // BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  27. // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  28. // OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  29. // IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. #if !defined(_FILE_SYSTEM_H_)
  31. #define _FILE_SYSTEM_H_ 1
  32. #include "forth.h"
  33. void FileSystem_initialise(void);
  34. void FileSystem_CloseAll(void);
  35. Forth_ReturnType FileSystem_rename(const Forth_PointerType OldFilename, Forth_CellType OldLength,
  36. const Forth_PointerType NewFilename, Forth_CellType NewLength);
  37. Forth_ReturnType FileSystem_delete(const Forth_PointerType filename, Forth_CellType length);
  38. Forth_ReturnType FileSystem_create(const Forth_PointerType filename, Forth_CellType length, Forth_CellType fam);
  39. Forth_ReturnType FileSystem_open(const Forth_PointerType filename, Forth_CellType length, Forth_CellType fam);
  40. Forth_ReturnType FileSystem_close(Forth_CellType handle);
  41. Forth_ReturnType FileSystem_read(Forth_CellType handle, void *buffer, Forth_CellType length);
  42. Forth_ReturnType FileSystem_write(Forth_CellType handle, void *buffer, Forth_CellType length);
  43. Forth_ReturnType FileSystem_sync(Forth_CellType handle);
  44. Forth_ReturnType FileSystem_lseek(Forth_CellType handle, Forth_CellType pos);
  45. Forth_ReturnType FileSystem_ltell(Forth_CellType handle);
  46. Forth_ReturnType FileSystem_lsize(Forth_CellType handle);
  47. Forth_CellType FileSystem_ReadOnly(void);
  48. Forth_CellType FileSystem_ReadWrite(void);
  49. Forth_CellType FileSystem_WriteOnly(void);
  50. Forth_CellType FileSystem_bin(Forth_CellType fam);
  51. Forth_ReturnType FileSystem_OpenDirectory(const Forth_PointerType directoryname, Forth_CellType length);
  52. Forth_ReturnType FileSystem_CloseDirectory(Forth_CellType handle);
  53. Forth_ReturnType FileSystem_ReadDirectory(Forth_CellType handle, void *buffer, Forth_CellType length);
  54. Forth_ReturnType FileSystem_AbsoluteRead(Forth_CellType sector, void *buffer, Forth_CellType count);
  55. Forth_ReturnType FileSystem_AbsoluteWrite(Forth_CellType sector, const void *buffer, Forth_CellType count);
  56. #endif