mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:13:05 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
234
sdk/tools/fatten/fatfs/diskio.c
Normal file
234
sdk/tools/fatten/fatfs/diskio.c
Normal file
|
@ -0,0 +1,234 @@
|
|||
/*-----------------------------------------------------------------------*/
|
||||
/* Low level disk I/O module skeleton for FatFs (C)ChaN, 2014 */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
/* If a working storage control module is available, it should be */
|
||||
/* attached to the FatFs via a glue function rather than modifying it. */
|
||||
/* This is an example of glue functions to attach various exsisting */
|
||||
/* storage control modules to the FatFs module with a defined API. */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
#include "diskio.h" /* FatFs lower layer API */
|
||||
#include <stdio.h>
|
||||
|
||||
/*-----------------------------------------------------------------------*/
|
||||
/* Correspondence between physical drive number and image file handles. */
|
||||
|
||||
UINT sectorCount[1] = { 0 };
|
||||
FILE* driveHandle[1] = { NULL };
|
||||
const int driveHandleCount = sizeof(driveHandle) / sizeof(FILE*);
|
||||
|
||||
/*-----------------------------------------------------------------------*/
|
||||
/* Open an image file a Drive */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
DSTATUS disk_openimage(BYTE pdrv, const char* imageFileName)
|
||||
{
|
||||
if (pdrv < driveHandleCount)
|
||||
{
|
||||
if (driveHandle[0] != NULL)
|
||||
return 0;
|
||||
|
||||
driveHandle[0] = fopen(imageFileName, "r+b");
|
||||
if (!driveHandle[0])
|
||||
{
|
||||
driveHandle[0] = fopen(imageFileName, "w+b");
|
||||
}
|
||||
|
||||
if (driveHandle[0] != NULL)
|
||||
return 0;
|
||||
}
|
||||
return STA_NOINIT;
|
||||
}
|
||||
|
||||
|
||||
/*-----------------------------------------------------------------------*/
|
||||
/* Cleanup a Drive */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
VOID disk_cleanup(
|
||||
BYTE pdrv /* Physical drive nmuber (0..) */
|
||||
)
|
||||
{
|
||||
if (pdrv < driveHandleCount)
|
||||
{
|
||||
if (driveHandle[pdrv] != NULL)
|
||||
{
|
||||
fclose(driveHandle[pdrv]);
|
||||
driveHandle[pdrv] = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*-----------------------------------------------------------------------*/
|
||||
/* Inidialize a Drive */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
DSTATUS disk_initialize(
|
||||
BYTE pdrv /* Physical drive nmuber (0..) */
|
||||
)
|
||||
{
|
||||
if (pdrv == 0) /* only one drive (image file) supported atm. */
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
return STA_NOINIT;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*-----------------------------------------------------------------------*/
|
||||
/* Get Disk Status */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
DSTATUS disk_status(
|
||||
BYTE pdrv /* Physical drive nmuber (0..) */
|
||||
)
|
||||
{
|
||||
if (pdrv < driveHandleCount)
|
||||
{
|
||||
if (driveHandle[pdrv] != NULL)
|
||||
return 0;
|
||||
}
|
||||
return STA_NOINIT;
|
||||
}
|
||||
|
||||
/*-----------------------------------------------------------------------*/
|
||||
/* Read Sector(s) */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
DRESULT disk_read(
|
||||
BYTE pdrv, /* Physical drive nmuber (0..) */
|
||||
BYTE *buff, /* Data buffer to store read data */
|
||||
DWORD sector, /* Sector address (LBA) */
|
||||
UINT count /* Number of sectors to read (1..128) */
|
||||
)
|
||||
{
|
||||
DWORD result;
|
||||
|
||||
if (pdrv < driveHandleCount)
|
||||
{
|
||||
if (driveHandle[pdrv] != NULL)
|
||||
{
|
||||
if (fseek(driveHandle[pdrv], sector * 512, SEEK_SET))
|
||||
return RES_ERROR;
|
||||
|
||||
result = fread(buff, 512, count, driveHandle[pdrv]);
|
||||
|
||||
if (result != count)
|
||||
return RES_ERROR;
|
||||
|
||||
return RES_OK;
|
||||
}
|
||||
}
|
||||
|
||||
return RES_PARERR;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*-----------------------------------------------------------------------*/
|
||||
/* Write Sector(s) */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
#if _USE_WRITE
|
||||
DRESULT disk_write(
|
||||
BYTE pdrv, /* Physical drive nmuber (0..) */
|
||||
const BYTE *buff, /* Data to be written */
|
||||
DWORD sector, /* Sector address (LBA) */
|
||||
UINT count /* Number of sectors to write (1..128) */
|
||||
)
|
||||
{
|
||||
DWORD result;
|
||||
|
||||
if (pdrv < driveHandleCount)
|
||||
{
|
||||
if (driveHandle[pdrv] != NULL)
|
||||
{
|
||||
if (fseek(driveHandle[pdrv], sector * 512, SEEK_SET))
|
||||
return RES_ERROR;
|
||||
|
||||
result = fwrite(buff, 512, count, driveHandle[pdrv]);
|
||||
|
||||
if (result != count)
|
||||
return RES_ERROR;
|
||||
|
||||
return RES_OK;
|
||||
}
|
||||
}
|
||||
|
||||
return RES_PARERR;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
/*-----------------------------------------------------------------------*/
|
||||
/* Miscellaneous Functions */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
#if _USE_IOCTL
|
||||
DRESULT disk_ioctl(
|
||||
BYTE pdrv, /* Physical drive nmuber (0..) */
|
||||
BYTE cmd, /* Control code */
|
||||
void *buff /* Buffer to send/receive control data */
|
||||
)
|
||||
{
|
||||
if (pdrv < driveHandleCount)
|
||||
{
|
||||
if (driveHandle[pdrv] != NULL)
|
||||
{
|
||||
switch (cmd)
|
||||
{
|
||||
case CTRL_SYNC:
|
||||
fflush(driveHandle[pdrv]);
|
||||
return RES_OK;
|
||||
case GET_SECTOR_SIZE:
|
||||
*(DWORD*)buff = 512;
|
||||
return RES_OK;
|
||||
case GET_BLOCK_SIZE:
|
||||
*(DWORD*)buff = 512;
|
||||
return RES_OK;
|
||||
case GET_SECTOR_COUNT:
|
||||
{
|
||||
if (sectorCount[pdrv] <= 0)
|
||||
{
|
||||
if (fseek(driveHandle[pdrv], 0, SEEK_END))
|
||||
printf("fseek failed!\n");
|
||||
else
|
||||
sectorCount[pdrv] = ftell(driveHandle[pdrv]) / 512;
|
||||
}
|
||||
|
||||
*(DWORD*)buff = sectorCount[pdrv];
|
||||
return RES_OK;
|
||||
}
|
||||
case SET_SECTOR_COUNT:
|
||||
{
|
||||
int count = *(DWORD*)buff;
|
||||
long size;
|
||||
|
||||
sectorCount[pdrv] = count;
|
||||
|
||||
fseek(driveHandle[pdrv], 0, SEEK_END);
|
||||
size = ftell(driveHandle[pdrv]) / 512;
|
||||
|
||||
if (size < count)
|
||||
{
|
||||
if (fseek(driveHandle[pdrv], count * 512 - 1, SEEK_SET))
|
||||
return RES_ERROR;
|
||||
|
||||
fwrite(buff, 1, 1, driveHandle[pdrv]);
|
||||
|
||||
return RES_OK;
|
||||
}
|
||||
else
|
||||
{
|
||||
// SHRINKING NOT IMPLEMENTED
|
||||
return RES_OK;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return RES_PARERR;
|
||||
}
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue