fx_api.h
上传用户:super_houu
上传日期:2008-09-21
资源大小:4099k
文件大小:31k
源码类别:

DVD

开发平台:

Others

  1. /**************************************************************************/ 
  2. /*                                                                        */ 
  3. /*            Copyright (c) 1996-2002 by Express Logic Inc.               */ 
  4. /*                                                                        */ 
  5. /*  This software is copyrighted by and is the sole property of Express   */ 
  6. /*  Logic, Inc.  All rights, title, ownership, or other interests         */ 
  7. /*  in the software remain the property of Express Logic, Inc.  This      */ 
  8. /*  software may only be used in accordance with the corresponding        */ 
  9. /*  license agreement.  Any unauthorized use, duplication, transmission,  */ 
  10. /*  distribution, or disclosure of this software is expressly forbidden.  */ 
  11. /*                                                                        */
  12. /*  This Copyright notice may not be removed or modified without prior    */ 
  13. /*  written consent of Express Logic, Inc.                                */ 
  14. /*                                                                        */ 
  15. /*  Express Logic, Inc. reserves the right to modify this software        */ 
  16. /*  without notice.                                                       */ 
  17. /*                                                                        */ 
  18. /*  Express Logic, Inc.                     info@expresslogic.com         */
  19. /*  11423 West Bernardo Court               http://www.expresslogic.com   */
  20. /*  San Diego, CA  92127                                                  */
  21. /*                                                                        */
  22. /**************************************************************************/
  23. /**************************************************************************/
  24. /**************************************************************************/
  25. /**                                                                       */ 
  26. /** FileX Component                                                       */
  27. /**                                                                       */
  28. /**   Application Interface (API)                                         */
  29. /**                                                                       */
  30. /**************************************************************************/
  31. /**************************************************************************/
  32. /**************************************************************************/ 
  33. /*                                                                        */ 
  34. /*  APPLICATION INTERFACE DEFINITION                       RELEASE        */ 
  35. /*                                                                        */ 
  36. /*    fx_api.h                                            PORTABLE C      */ 
  37. /*                                                           3.0          */ 
  38. /*  AUTHOR                                                                */ 
  39. /*                                                                        */ 
  40. /*    William E. Lamie, Express Logic, Inc.                               */ 
  41. /*                                                                        */ 
  42. /*  DESCRIPTION                                                           */ 
  43. /*                                                                        */ 
  44. /*    This file defines the basic Application Interface (API) to the      */ 
  45. /*    high-performance FileX MS-DOS compatible embedded file system.      */ 
  46. /*    All service prototypes and data structure definitions are defined   */ 
  47. /*    in this file.                                                       */ 
  48. /*                                                                        */ 
  49. /*  RELEASE HISTORY                                                       */ 
  50. /*                                                                        */ 
  51. /*    DATE              NAME                      DESCRIPTION             */ 
  52. /*                                                                        */ 
  53. /*  01-01-1999     William E. Lamie         Initial Version 1.0           */ 
  54. /*  03-01-2000     William E. Lamie         Modified comment(s), added    */ 
  55. /*                                            FX_MAXIMUM_PATH constant,   */ 
  56. /*                                            added current path string,  */ 
  57. /*                                            added prototype for the     */ 
  58. /*                                            fx_system_time_get call,    */ 
  59. /*                                            and added prototypes for    */ 
  60. /*                                            utilities used by drivers,  */ 
  61. /*                                            resulting in version 1.0b.  */ 
  62. /*  01-28-2001     William E. Lamie         Modified comment(s), added    */ 
  63. /*                                            new constants, function     */ 
  64. /*                                            prototypes, local path      */ 
  65. /*                                            logic, smart FAT searching, */ 
  66. /*                                            and support for logical     */ 
  67. /*                                            sector caching, resulting   */ 
  68. /*                                            in version 2.0.             */ 
  69. /*  03-01-2002     Mohammad N. Minhaz       Modified comment(s),          */ 
  70. /*                                            added FAT32 constants and   */ 
  71. /*                                            structure fields, changed   */ 
  72. /*                                            directory name size for     */ 
  73. /*                                            long file name support,     */ 
  74. /*                                            added write protect flag,   */ 
  75. /*                                            and added support for       */ 
  76. /*                                            notification of drive when  */ 
  77. /*                                            clusters are freed,         */ 
  78. /*                                            resulting in version 3.0.   */ 
  79. /*                                                                        */
  80. /**************************************************************************/ 
  81. #ifndef  FX_API
  82. #define  FX_API
  83. #define _fx_utility_16_unsigned_read(source_ptr) 
  84.     (((((UINT) *((source_ptr) + 1)) & 0xFF) << 8) | 
  85.        ((UINT) *(source_ptr) & 0xFF))
  86. #define _fx_utility_16_unsigned_write(dest_ptr, value) 
  87.    {*((dest_ptr)) =       (UCHAR) ((value) & 0xFF);
  88.     *((dest_ptr) + 1) =   (UCHAR) (((value) >> 8) & 0xFF);}
  89. #define  _fx_utility_32_unsigned_read(source_ptr) 
  90.       (((((ULONG) *((source_ptr)+3)) & 0xFF) << 24) | 
  91.              ((((ULONG) *((source_ptr)+2)) & 0xFF) << 16) | 
  92.              ((((ULONG) *((source_ptr)+1)) & 0xFF) << 8)  | 
  93.               (((ULONG) *(source_ptr)) & 0xFF))
  94. #define _fx_utility_32_unsigned_write(dest_ptr,value) 
  95.    {*((UCHAR_PTR)(dest_ptr)) =       (UCHAR)  (((ULONG)(value)) & 0xFF);
  96.     *(((UCHAR_PTR)(dest_ptr)) + 1) =   (UCHAR) ((((ULONG)(value)) >> 8) & 0xFF);
  97.     *(((UCHAR_PTR)(dest_ptr)) + 2) =   (UCHAR) ((((ULONG)(value)) >> 16) & 0xFF);
  98.     *(((UCHAR_PTR)(dest_ptr)) + 3) =   (UCHAR) ((((ULONG)(value)) >> 24) & 0xFF);}
  99. /* Determine if a C++ compiler is being used.  If so, ensure that standard
  100.    C is used to process the API information.  */
  101. #ifdef   __cplusplus
  102. /* Yes, C++ compiler is present.  Use standard C.  */
  103. extern   "C" {
  104. #endif
  105. // Remove checking
  106. #define FX_DISABLE_ERROR_CHECKING
  107. // Added by Ofir in order to avoid semaphores and timers
  108. #define FX_NO_TIMER
  109. #define FX_NO_LOCAL_PATH
  110. #define FX_SINGLE_THREAD
  111. #define TX_NO_LOCAL_PATH
  112. /* Include the FileX port-specific file.  */
  113. #include "PlaycoreFileSysFileXHeaderfx_port.h"
  114. /* Define basic constants for FileX.  */
  115. #define FX_MEDIA_ID           0x4D454449UL
  116. #define FX_MEDIA_DIRECT_ID    0x4D454448UL
  117. #define FX_MEDIA_CLOSED_ID    0x4D454443UL
  118. #define FX_MEDIA_ABORTED_ID   0x4D454441UL
  119. #define FX_DIRECT_SUCCESS   0x91
  120. #define FX_MEDIA_INVALID    0x02
  121. #define FX_BUFFER_ERROR     0x21
  122. #define FX_FREE_CLUSTER         0x0000
  123. #define FX_FILE_ID            0x46494C45UL
  124. #define FX_FILE_CLOSED_ID     0x46494C43UL
  125. #define FX_FILE_ABORTED_ID    0x46494C41UL
  126. #define FX_MAXIMUM_PATH     255
  127. #ifdef V882_FLASH_CARD
  128. #ifdef FILEX_READ_4_SECTORS
  129. #define FX_MAX_SECTOR_CACHE 2
  130. #else
  131. #define FX_MAX_SECTOR_CACHE 2
  132. #endif
  133. #else
  134. #ifdef FILEX_READ_4_SECTORS
  135. #define FX_MAX_SECTOR_CACHE 6
  136. #else
  137. #define FX_MAX_SECTOR_CACHE 1
  138. #endif
  139. #endif
  140. /* FileX API input parameters and general constants.  */
  141. #define FX_FAIL             2          //XD_FAST_LOADING
  142. #define FX_TRUE             1
  143. #define FX_FALSE            0
  144. #define FX_NULL             0
  145. #define FX_OPEN_FOR_READ    0
  146. #define FX_OPEN_FOR_WRITE   1
  147. #define FX_NO_PARTITION        0xFFFFFFFFUL
  148. #define FX_FAT_ENTRY_START  2
  149. #define FX_DIR_ENTRY_SIZE   32UL
  150. #define FX_DIR_NAME_SIZE    8
  151. #define FX_DIR_EXT_SIZE     3
  152. #define FX_DIR_RESERVED     8
  153. #define FX_DIR_ENTRY_FREE   0xE5
  154. #define FX_DIR_ENTRY_DONE   0x00
  155. #define FX_READ_ONLY        0x01
  156. #define FX_HIDDEN           0x02
  157. #define FX_SYSTEM           0x04
  158. #define FX_VOLUME           0x08
  159. #define FX_DIRECTORY        0x10
  160. #define FX_ARCHIVE          0x20
  161. #define FX_LONG_NAME        0x0f
  162. #define FX_12_BIT_FAT_SIZE  4086
  163. #define FX_16_BIT_FAT_SIZE  65525
  164. /* Define MS-DOS FAT entry values.  */
  165. #define FX_RESERVED_1           0xFFF0
  166. #define FX_LAST_CLUSTER_1       0xFFF8
  167. #define FX_RESERVED_1_32        0x0FFFFFF0UL
  168. #define FX_LAST_CLUSTER_1_32    0x0FFFFFF8UL
  169. /* Define time/date MS-DOS constants.  */
  170. #define FX_YEAR_SHIFT       9
  171. #define FX_MONTH_SHIFT      5
  172. #define FX_HOUR_SHIFT       11
  173. #define FX_MINUTE_SHIFT     5
  174. #define FX_YEAR_MASK        0x7F
  175. #define FX_MONTH_MASK       0x0F
  176. #define FX_DAY_MASK         0x1F
  177. #define FX_HOUR_MASK        0x1F
  178. #define FX_MINUTE_MASK      0x3F
  179. #define FX_SECOND_MASK      0x1F
  180. #define FX_BASE_YEAR        1980
  181. #define FX_INITIAL_DATE     0x2C61          /* 3-1-2002 */
  182. #define FX_INITIAL_TIME     0x0000          /* 12:00 am */
  183. /* FileX API return values.  */
  184. #define FX_SUCCESS          0x00
  185. #define FX_FAT_READ_ERROR   0x03
  186. #define FX_NOT_FOUND        0x04
  187. #define FX_NOT_A_FILE       0x05
  188. #define FX_ACCESS_ERROR     0x06
  189. #define FX_NOT_OPEN         0x07
  190. #define FX_FILE_CORRUPT     0x08
  191. #define FX_END_OF_FILE      0x09
  192. #define FX_INVALID_PATH     0x0D
  193. #define FX_NOT_DIRECTORY    0x0E
  194. #define FX_NO_MORE_ENTRIES  0x0F
  195. #define FX_MEDIA_NOT_OPEN   0x11
  196. #define FX_NOT_IMPLEMENTED  0x22
  197. #define FX_WRITE_PROTECT 0x23
  198. #define FX_SECTOR_INVALID   0x89
  199. #define FX_IO_ERROR         0x90
  200. //#define FX_DIRECT_SUCCESS    0xF1
  201. #define FX_GENERAL_ERROR     0xF2
  202. #define FX_READ_ONLY_ERROR   0xF3
  203. /* FileX driver interface constants.  */
  204. #define FX_DRIVER_READ                0
  205. #define FX_DRIVER_WRITE               1
  206. #define FX_DRIVER_FLUSH               2
  207. #define FX_DRIVER_ABORT               3
  208. #define FX_DRIVER_INIT                4
  209. #define FX_DRIVER_BOOT_READ           5
  210. #define FX_DRIVER_RELEASE_SECTORS     6
  211. #define FX_DRIVER_ERASE               7
  212. #define FX_DRIVER_GET_MEDIA_GEOMETRY  8
  213. #define FX_DRIVER_GET_DEVICE_GEOMETRY 19 // new - NOTICE!
  214. #define FX_DRIVER_FORMAT_DEVICE       9
  215. #define FX_DRIVER_FORMAT_PARTITION    10
  216. #define FX_DRIVER_INIT_ON_FORMAT      11
  217. #define FX_DRIVER_OPEN_BURST          12
  218. #define FX_DRIVER_WRITE_BURST         13
  219. #define FX_DRIVER_CLOSE_BURST         14
  220. #define FX_DRIVER_CHECK_WP_STATUS     15
  221. /* Define the control block definitions for all system objects.  */
  222. /* Define media geometry structure. This structure contains fields describing
  223.    the media both physically and logically. It is initialized by calling
  224.    _fx_utility_get_media_geometry for the specified media. The structure
  225.    is divided into groups of related parameters. Changing this structure
  226.    requires good understanding of its functionality. */
  227. // These are invalid values used to initialize the parameter groups of the
  228. // structure.
  229. #define FX_UNDEF_CYLINDERS           0
  230. #define FX_UNDEF_START_END           0xFFFF
  231. #define FX_UNDEF_CLUSTER_SIZE        0
  232. #define FX_UNDEF_ROOT_ENTRIES        0
  233. #define FX_UNDEF_SIZE_IN_SECTORS     0xFFFFFFFFUL
  234. #define FX_UNDEF_SECTORS_PER_FAT     0
  235. #define FX_UNDEF_HIDDEN_SECTORS      0xFFFFFFFFUL
  236. #define FX_UNDEF_FAT_TYPE            0xFF
  237. #define FX_UNDEF_PARTITION_ALIGNMENT 0
  238. #define FX_UNDEF_MBR_SECTOR          0xFFFFFFFFUL
  239. #define FX_BOOT_SECTOR_SIZE 512
  240. typedef struct FX_GEOMETRY_STRUCT {
  241.     // Available CHS. 
  242.     USHORT uwCylinders;
  243.     USHORT uwHeads;
  244.     USHORT uwSectorsPerTrack;
  245.     // Partition Start.
  246.     USHORT uwStartHead;
  247.     USHORT uwStartSector;
  248.     USHORT uwStartCylinder;
  249.     USHORT uwEndHead;
  250.     USHORT uwEndSector;
  251.     USHORT uwEndCylinder;
  252.     ULONG  ulPartitionStartSector;
  253.     // Number of sectors in a cluster.
  254.     BYTE   bySectorsPerCluster;
  255.     // Number of 32-byte entries in the root directory.
  256.     USHORT uwRootEntries;
  257.     // Total number of sectors in the media.
  258.     ULONG  ulSizeInSectors;
  259.     // Number of sectors that make up one FAT.
  260.     USHORT uwSectorsPerFAT;
  261.     // Number of sectors from beginning of media to boot sector.
  262.     ULONG  ulHiddenSectors;
  263.     // Type of FAT.
  264.     // NOTE: This does not include FAT32, but rather FAT12, FAT16, and
  265.     // a newer version of FAT16 when the number of clusters exceeds 16
  266.     // bits (that is called here BIGDOS).
  267.     BYTE   byFatType;
  268.     #define FX_FAT12                    1
  269.     #define FX_FAT16                    4
  270.     #define FX_BIGDOS                   6
  271.     // Alignment for a first sector of a partition.
  272.     ULONG  ulPartitionAlignment;
  273.     // Number of sector on device, where MBR resides.
  274.     ULONG  ulMbrSector;
  275.     // For NANDs and NORs, this is the number of sectors that each erasable
  276.     // block contains.
  277.     USHORT uwSectorsPerBlockBits;
  278.     // This parameter refers only to NANDs. It states the type of the NAND,
  279.     // according to 4 defined groups (see FCU documentation for details).
  280.     UINT   uiNandType;
  281.     // This parameter refers only to NORs. It states the type of the NOR,
  282.     // currently supporting Intel and Amd.
  283.     UINT   uiNorType;
  284.     // This parameter refers only to NORs - it specifies if there is a special
  285.     // boot block (a block which can be erased in a smaller resolution).
  286.     BOOL   bNorBlockMapKnown;
  287. // This parameter holds the speed of the specific media we are working
  288.     // with, in case it affects calls to the FCU driver.
  289.     // The different speed options are media type specific.
  290.     UINT   uiSpeed;
  291.     // This parameter defines with which type of card we are working with - 
  292.     // SD(4bit) or MMC(1bit).
  293.     UINT   uiSdProtocol;
  294. } FX_GEOMETRY, *FX_GEOMETRY_PTR;
  295. /* Define directory entry type.  Directory entries are found in the
  296.    root directory and in directory files (sub-directories).  Default
  297.    the directory name length to 13 for 8.3 compatibility (the dot and
  298.    a NULL at the end).  The user may change this on the compilation 
  299.    command line.  */
  300. #ifndef FX_MAX_LONG_NAME_LEN
  301. //#define FX_MAX_LONG_NAME_LEN 13
  302. #define FX_MAX_LONG_NAME_LEN 65
  303. #endif
  304. typedef struct FX_DIR_ENTRY_STRUCT
  305. {
  306.     CHAR            fx_dir_entry_name[FX_MAX_LONG_NAME_LEN];
  307.     UINT            fx_dir_long_name_present;   /* 0 (default) => not present; 1 => present*/
  308.     UCHAR           fx_dir_entry_attributes;
  309.     UINT            fx_dir_entry_time;
  310.     UINT            fx_dir_entry_date;
  311.     ULONG           fx_dir_entry_cluster;
  312.     ULONG           fx_dir_entry_file_size;
  313.     ULONG           fx_dir_entry_log_sector;
  314.     ULONG           fx_dir_entry_byte_offset;
  315. } FX_DIR_ENTRY;
  316. /* Define the path data structure.  This structure will contain
  317.    the current path and the information for performing directory
  318.    entry operations.  */
  319. typedef struct FX_PATH_STRUCT
  320. {
  321.     /* Define the path information.  */
  322.     FX_DIR_ENTRY    fx_path_directory;
  323.     CHAR            fx_path_string[FX_MAXIMUM_PATH];
  324.     ULONG           fx_path_current_entry;
  325. } FX_PATH;
  326. typedef FX_PATH FX_LOCAL_PATH;
  327. /* Define the cache control data structure.  There are FX_MAX_SECTOR_CACHE
  328.    of these structures defined inside the FX_MEDIA structure.  Each entry 
  329.    maintains a cache representation of a media sector.  */
  330. typedef struct FX_CACHED_SECTOR_STRUCT
  331. {
  332.     /* Define the buffer pointer associated with this cache entry.  */
  333.     UCHAR_PTR       fx_cached_sector_memory_buffer;
  334.     /* Define the sector number that is cached.  */
  335.     ULONG           fx_cached_sector;
  336.     /* Define the flag that indicates whether or not the cached sector
  337.        has been modified and needs to be written to the media.  */
  338.     UINT            fx_cached_sector_buffer_dirty;
  339.     /* Define the next cached sector pointer.  This is used to implement
  340.        the "last used" algorithm when looking for cache entry to swap out to
  341.        the physical media.  */
  342.     struct FX_CACHED_SECTOR_STRUCT
  343.                     *fx_cached_sector_next_used;   
  344. } FX_CACHED_SECTOR;
  345. /* Define a driver function */
  346. //typedef VOID(*FX_DRIVER)(struct FX_MEDIA_STRUCT*);
  347. /* Define the media control block.  All information about each open
  348.    media device are maintained in by the FX_MEDIA data type.  */
  349. typedef struct FX_MEDIA_STRUCT
  350. {
  351.     /* Define the media ID used for error checking.  */
  352.     ULONG           fx_media_id;
  353.     /* Define the media's name.  */
  354.     CHAR_PTR        fx_media_name;
  355.     /* Define the media's protection object, which is a ThreadX semaphore.  
  356.        Only one thread is allowed to access any media or associated files
  357.        at a time.  If FX_SINGLE_THREAD is defined, the FileX services are 
  358.        going to be called from only one thread, hence the protection is 
  359.        not needed.  */
  360. #ifndef FX_SINGLE_THREAD
  361.     OS_SEMAPHORE    fx_media_protect;
  362. #endif
  363.     /* Remember the memory buffer area.  */
  364.     UCHAR_PTR       fx_media_memory_buffer;
  365.     UCHAR_PTR       fx_media_memory_buffer_orig;
  366.     ULONG           fx_media_memory_size;
  367.     /* Define the sector cache control structures for this media.  */
  368.     struct FX_CACHED_SECTOR_STRUCT
  369.                     fx_media_sector_cache[FX_MAX_SECTOR_CACHE];
  370.     /* Define the number of sectors actually cached based on the
  371.        user supplied buffer at media open time.  */
  372.     ULONG           fx_media_sector_cache_size;
  373.     /* Define the end of the cache area.  This is used to determine
  374.        if the I/O is for the internal memory of the media.  */
  375.     UCHAR_PTR       fx_media_sector_cache_end;
  376.     /* Define the list head of the cached sector entries.  This
  377.        pointer points to the most recenty used cache sector.  */
  378.     struct FX_CACHED_SECTOR_STRUCT
  379.                     *fx_media_sector_cache_list_ptr;
  380.     /* Define the basic information about the associated media.  */
  381.     UINT            fx_media_bytes_per_sector;
  382.     UINT            fx_media_sectors_per_track;
  383.     UINT            fx_media_heads;
  384.     ULONG           fx_media_total_sectors;
  385.     ULONG           fx_media_total_clusters;
  386.     UINT            fx_media_reserved_sectors;
  387.     UINT            fx_media_root_sector_start;
  388.     UINT            fx_media_root_sectors;
  389.     UINT            fx_media_data_sector_start;
  390.     UINT            fx_media_sectors_per_cluster;
  391.     UINT            fx_media_sectors_per_FAT;
  392.     UINT            fx_media_number_of_FATs;
  393.     UINT            fx_media_12_bit_FAT;
  394.     UINT            fx_media_32_bit_FAT;
  395.     ULONG           fx_media_hidden_sectors;
  396.     ULONG           fx_media_root_clus_32;
  397.     UINT            fx_media_root_directory_entries;
  398.     ULONG           fx_media_available_clusters;
  399.     ULONG           fx_media_cluster_search_start;
  400.     UCHAR           fx_media_type;
  401.     /* Define the information pertinent to the I/O driver interface.  */
  402.     VOID            *fx_media_driver_info;
  403.     UINT            fx_media_driver_request;
  404.     UINT            fx_media_driver_status;
  405.     UCHAR_PTR       fx_media_driver_buffer;
  406.     ULONG           fx_media_driver_logical_sector;
  407.     ULONG           fx_media_driver_sectors;
  408.     ULONG           fx_media_driver_physical_sector;
  409.     UINT            fx_media_driver_physical_track;
  410.     UINT            fx_media_driver_physical_head;  
  411.     UINT            fx_media_driver_write_protect;      /* The driver sets this to FX_TRUE when media is write protected.  */
  412.     UINT            fx_media_driver_free_sector_update; /* The driver sets this to FX_TRUE when it needs to know freed clusters.  */
  413.     /* Define the driver entry point.  */
  414.     //FX_DRIVER       fx_media_driver_entry;
  415.     /* Define the driver entry point.  */
  416.     VOID            (*fx_media_driver_entry)(struct FX_MEDIA_STRUCT *);
  417.     /* Define the current directory information for the media.  */
  418.     FX_PATH         fx_media_default_path;
  419.     /* Define the head pointer for the open files of this media.  */
  420.     struct FX_FILE_STRUCT
  421.                     *fx_media_opened_file_list;
  422.     /* Define the counter for keeping track of how many open files are 
  423.        present.  */
  424.     ULONG           fx_media_opened_file_count;
  425.     /* Define the next and previous link pointers for the open media list.  */
  426.     struct FX_MEDIA_STRUCT
  427.                     *fx_media_opened_next,
  428.                     *fx_media_opened_previous;
  429.     /* Define a variable for the application's use.  */
  430.     ULONG           fx_media_reserved_for_user;
  431.     /* Media geometry structure */
  432.     FX_GEOMETRY     fx_geometry;
  433. #ifdef FILEX_READ_4_SECTORS //JERRYC_2005AUG9
  434.  BYTE  fx_2nd_cache_entry;
  435. #endif
  436. } FX_MEDIA;
  437. typedef FX_MEDIA* FX_MEDIA_PTR;
  438. /* Define the FileX file control block.  All information about open
  439.    files are found in this data type.  */
  440. typedef struct FX_FORMAT_PARAMS_STRUCT
  441. {
  442.     // Volume ID.
  443.     ULONG ulVolumeId;
  444.     // Volume Label. Up to 11 are used, padded with ' '.
  445.     PCHAR szVolumeLabel;
  446.     // OEM name. Up to 8 are used, padded with ' '.
  447.     PCHAR szOemName;
  448.     // Specify number of FATs requested.
  449.     BYTE byNumOfFats;
  450. } FX_FORMAT_PARAMS, *FX_FORMAT_PARAMS_PTR;
  451. typedef struct FX_FILE_STRUCT
  452. {
  453.     /* Define the file ID used for error checking.  */
  454.     ULONG           fx_file_id;
  455.     /* Define the file's name.  */
  456.     CHAR_PTR        fx_file_name;
  457.     /* Define the open mode request.  */
  458.     UCHAR           fx_file_open_mode;
  459.     /* Define the file modified field.  */
  460.     UCHAR           fx_file_modified;
  461.     /* Define the complete directory entry structure.  */
  462.     FX_DIR_ENTRY    fx_file_dir_entry;
  463.     /* Define the data storage parameters.  */
  464.     ULONG           fx_file_total_clusters;
  465.     ULONG           fx_file_first_physical_cluster;
  466.     ULONG           fx_file_consecutive_cluster;
  467.     ULONG           fx_file_last_physical_cluster;
  468.     ULONG           fx_file_current_physical_cluster;
  469.     ULONG           fx_file_current_logical_sector;
  470.     ULONG           fx_file_current_logical_offset;
  471.     ULONG           fx_file_current_relative_cluster;
  472.     ULONG           fx_file_current_relative_sector;
  473.     ULONG           fx_file_current_file_offset;
  474.     ULONG           fx_file_current_file_size;
  475.     ULONG           fx_file_current_available_size;
  476.     /* Remember the media that is associated with this file. */
  477.     FX_MEDIA        *fx_file_media_ptr;
  478.     /* Define the pointers necessary to maintain the open file on 
  479.        the list of open files.  */
  480.     struct FX_FILE_STRUCT
  481.                     *fx_file_opened_next,
  482.                     *fx_file_opened_previous;
  483. } FX_FILE;
  484. /* Define the FileX API mappings based on the error checking 
  485.    selected by the user.  Note: this section is only applicable to 
  486.    application source code, hence the conditional that turns off this
  487.    stuff when the include file is processed by the FileX source. */
  488. #ifndef  FX_SOURCE_CODE
  489. /* Determine if error checking is desired.  If so, map API functions 
  490.    to the appropriate error checking front-ends.  Otherwise, map API
  491.    functions to the core functions that actually perform the work. 
  492.    Note: error checking is enabled by default.  */
  493. #ifdef FX_DISABLE_ERROR_CHECKING
  494. /* Services without error checking.  */
  495. #define fx_system_initialize            _fx_system_initialize
  496. #define fx_system_date_set              _fx_system_date_set
  497. #define fx_system_time_set              _fx_system_time_set
  498. #define fx_system_date_get              _fx_system_date_get
  499. #define fx_system_time_get              _fx_system_time_get
  500. #define fx_partition_create             _fx_partition_create
  501. #define fx_partition_format             _fx_partition_format
  502. #define fx_media_open                   _fx_media_open
  503. #define fx_media_invalidate             _fx_media_invalidate
  504. #define fx_media_close                  _fx_media_close
  505. #define fx_media_full_format            _fx_media_full_format
  506. #define fx_media_quick_format           _fx_media_quick_format
  507. #define fx_media_flush                  _fx_media_flush
  508. #define fx_media_space_available        _fx_media_space_available
  509. #define fx_media_read                   _fx_media_read
  510. #define fx_media_write                  _fx_media_write
  511. #define fx_media_erase                  _fx_media_erase
  512. #define fx_media_abort                  _fx_media_abort
  513. #define fx_directory_create             _fx_directory_create
  514. #define fx_directory_delete             _fx_directory_delete
  515. #define fx_directory_rename             _fx_directory_rename
  516. #define fx_directory_first_entry_find   _fx_directory_first_entry_find
  517. #define fx_directory_next_entry_find    _fx_directory_next_entry_find
  518. #define fx_directory_first_full_entry_find _fx_directory_first_full_entry_find
  519. #define fx_directory_next_full_entry_find  _fx_directory_next_full_entry_find
  520. #define fx_directory_name_test          _fx_directory_name_test
  521. #define fx_directory_information_get    _fx_directory_information_get
  522. #define fx_directory_default_set        _fx_directory_default_set
  523. #define fx_directory_default_get        _fx_directory_default_get
  524. #define fx_directory_local_path_clear   _fx_directory_local_path_clear
  525. #define fx_directory_local_path_get     _fx_directory_local_path_get
  526. #define fx_directory_local_path_set     _fx_directory_local_path_set
  527. #define fx_directory_local_path_restore _fx_directory_local_path_restore
  528. #define fx_file_create                  _fx_file_create
  529. #define fx_file_delete                  _fx_file_delete
  530. #define fx_file_rename                  _fx_file_rename
  531. #define fx_file_attributes_set          _fx_file_attributes_set
  532. #define fx_file_attributes_read         _fx_file_attributes_read
  533. #define fx_file_open                    _fx_file_open
  534. #define fx_file_close                   _fx_file_close
  535. #define fx_file_read                    _fx_file_read
  536. #define fx_file_write                   _fx_file_write
  537. #define fx_file_allocate                _fx_file_allocate
  538. #define fx_file_best_effort_allocate    _fx_file_best_effort_allocate
  539. #define fx_file_seek                    _fx_file_seek
  540. #define fx_file_relative_seek           _fx_file_relative_seek
  541. #define fx_file_truncate                _fx_file_truncate
  542. #define fx_file_open_by_addr            _fx_file_open_by_addr
  543. #else
  544. /* Services with error checking.  */
  545. #define fx_system_initialize            _fx_system_initialize
  546. #define fx_system_date_set              _fxe_system_date_set
  547. #define fx_system_time_set              _fxe_system_time_set
  548. #define fx_system_date_get              _fxe_system_date_get
  549. #define fx_system_time_get              _fxe_system_time_get
  550. #define fx_partition_create             _fxe_partition_create
  551. #define fx_partition_format             _fxe_partition_format
  552. #define fx_media_open                   _fxe_media_open
  553. #define fx_media_invalidate             _fxe_media_invalidate
  554. #define fx_media_close                  _fxe_media_close
  555. #define fx_media_full_format            _fxe_media_full_format
  556. #define fx_media_quick_format           _fxe_media_quick_format
  557. #define fx_media_flush                  _fxe_media_flush
  558. #define fx_media_space_available        _fxe_media_space_available
  559. #define fx_media_read                   _fxe_media_read
  560. #define fx_media_write                  _fxe_media_write
  561. #define fx_media_erase                  _fxe_media_erase
  562. #define fx_media_abort                  _fxe_media_abort
  563. #define fx_directory_create             _fxe_directory_create
  564. #define fx_directory_delete             _fxe_directory_delete
  565. #define fx_directory_rename             _fxe_directory_rename
  566. #define fx_directory_first_entry_find   _fxe_directory_first_entry_find
  567. #define fx_directory_next_entry_find    _fxe_directory_next_entry_find
  568. #define fx_directory_first_full_entry_find _fxe_directory_first_full_entry_find
  569. #define fx_directory_next_full_entry_find  _fxe_directory_next_full_entry_find
  570. #define fx_directory_name_test          _fxe_directory_name_test
  571. #define fx_directory_information_get    _fxe_directory_information_get
  572. #define fx_directory_default_set        _fxe_directory_default_set
  573. #define fx_directory_default_get        _fxe_directory_default_get
  574. #define fx_directory_local_path_clear   _fxe_directory_local_path_clear
  575. #define fx_directory_local_path_get     _fxe_directory_local_path_get
  576. #define fx_directory_local_path_set     _fxe_directory_local_path_set
  577. #define fx_directory_local_path_restore _fxe_directory_local_path_restore
  578. #define fx_file_create                  _fxe_file_create
  579. #define fx_file_delete                  _fxe_file_delete
  580. #define fx_file_rename                  _fxe_file_rename
  581. #define fx_file_attributes_set          _fxe_file_attributes_set
  582. #define fx_file_attributes_read         _fxe_file_attributes_read
  583. #define fx_file_open                    _fxe_file_open
  584. #define fx_file_close                   _fxe_file_close
  585. #define fx_file_read                    _fxe_file_read
  586. #define fx_file_write                   _fxe_file_write
  587. #define fx_file_allocate                _fxe_file_allocate
  588. #define fx_file_best_effort_allocate    _fxe_file_best_effort_allocate
  589. #define fx_file_seek                    _fxe_file_seek
  590. #define fx_file_relative_seek           _fxe_file_relative_seek
  591. #define fx_file_truncate                _fxe_file_truncate
  592. #endif
  593. /* Define prototype for utility services commonly used by FileX I/O Drivers.  This eliminates the
  594.    need to include internal FileX component files in I/O drivers.  */
  595. UINT        _fx_partition_offset_calculate( VOID  *part_sector,
  596.                                             UINT   partition,
  597.                                             ULONG *partition_start,
  598.                                             ULONG *partition_size );
  599. UINT        _fx_media_open(FX_MEDIA *media_ptr, CHAR *media_name,
  600.                  VOID (*media_driver)(FX_MEDIA *), VOID *driver_info_ptr, 
  601.                  VOID *memory_ptr, ULONG memory_size, UINT partition);
  602. #endif
  603. /* Determine if a C++ compiler is being used.  If so, complete the standard
  604.    C conditional started above.  */
  605. #ifdef   __cplusplus
  606.         }
  607. #endif
  608. #endif