mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-28 09:30:41 +00:00
82 lines
2.4 KiB
C
82 lines
2.4 KiB
C
/* For now hard-coded */
|
|
/* Could be made dynamic if we want to be useful */
|
|
/* On dos3.2 disks, or larger filesystems */
|
|
#define TRACKS_PER_DISK 0x23
|
|
#define BLOCKS_PER_TRACK 0x8
|
|
#define PRODOS_BYTES_PER_BLOCK 0x200
|
|
|
|
#define PRODOS_VOLDIR_TRACK 0x0
|
|
#define PRODOS_VOLDIR_BLOCK 2
|
|
|
|
struct voldir_t {
|
|
int fd;
|
|
unsigned char storage_type;
|
|
unsigned char name_length;
|
|
unsigned char version;
|
|
unsigned char min_version;
|
|
unsigned char access;
|
|
unsigned char entry_length;
|
|
unsigned char entries_per_block;
|
|
unsigned short file_count;
|
|
unsigned short bit_map_pointer;
|
|
unsigned short total_blocks;
|
|
unsigned char volume_name[16];
|
|
unsigned int creation_time;
|
|
};
|
|
|
|
/* CATALOG_VALUES */
|
|
#define CATALOG_NEXT_T 0x01
|
|
#define CATALOG_NEXT_S 0x02
|
|
#define CATALOG_FILE_LIST 0x0b
|
|
|
|
#define CATALOG_ENTRY_SIZE 0x23
|
|
|
|
/* CATALOG ENTRY */
|
|
#define FILE_TS_LIST_T 0x0
|
|
#define FILE_TS_LIST_S 0x1
|
|
#define FILE_TYPE 0x2
|
|
#define FILE_NAME 0x3
|
|
#define FILE_SIZE_L 0x21
|
|
#define FILE_SIZE_H 0x22
|
|
|
|
#define FILE_NAME_SIZE 0x1e
|
|
|
|
/* TSL */
|
|
#define TSL_NEXT_TRACK 0x1
|
|
#define TSL_NEXT_SECTOR 0x2
|
|
#define TSL_OFFSET_L 0x5
|
|
#define TSL_OFFSET_H 0x6
|
|
#define TSL_LIST 0xC
|
|
|
|
#define TSL_ENTRY_SIZE 0x2
|
|
#define TSL_MAX_NUMBER 122
|
|
|
|
/* Helper Macros */
|
|
#define TS_TO_INT(__x,__y) ((((int)__x)<<8)+__y)
|
|
#define DISK_OFFSET(__track,__sector) ((((__track)*BLOCKS_PER_TRACK)+(__sector))*PRODOS_BYTES_PER_BLOCK)
|
|
|
|
|
|
#define DOS33_FILE_NORMAL 0
|
|
#define DOS33_FILE_DELETED 1
|
|
|
|
/* prodos_volume_bitmap.c */
|
|
int prodos_voldir_free_space(struct voldir_t *voldir);
|
|
void prodos_voldir_free_sector(struct voldir_t *voldir, int track, int sector);
|
|
void prodos_voldir_reserve_sector(struct voldir_t *voldir, int track, int sector);
|
|
void prodos_voldir_dump_bitmap(struct voldir_t *voldir);
|
|
int prodos_voldir_find_free_sector(struct voldir_t *voldir,
|
|
int *found_track, int *found_sector);
|
|
|
|
/* prodos_catalog.c */
|
|
unsigned char prodos_char_to_type(char type, int lock);
|
|
void prodos_catalog(int dos_fd, struct voldir_t *voldir);
|
|
char *prodos_filename_to_ascii(char *dest,unsigned char *src,int len);
|
|
unsigned char prodos_file_type(int value);
|
|
|
|
/* prodos_dump.c */
|
|
int prodos_dump(struct voldir_t *voldir, int fd);
|
|
int prodos_showfree(struct voldir_t *voldir, int fd);
|
|
|
|
/* prodos_read.c */
|
|
int prodos_read_block(struct voldir_t *voldir,unsigned char *block, int blocknum);
|