X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/70702af1370e44e32fb2c3c507e4759a187b4fe5:/fatfs/doc/en/lseek.html..289f6a146c0b2087607d8d8659531ea90142779a:/fatfs/documents/doc/lseek.html diff --git a/fatfs/doc/en/lseek.html b/fatfs/documents/doc/lseek.html similarity index 51% rename from fatfs/doc/en/lseek.html rename to fatfs/documents/doc/lseek.html index cf4f47e..7173b0e 100644 --- a/fatfs/doc/en/lseek.html +++ b/fatfs/documents/doc/lseek.html @@ -1,7 +1,7 @@ - + @@ -29,7 +29,7 @@ FRESULT f_lseek (
fp
Pointer to the open file object.
ofs
-
Byte offset from top of the file. The data type FSIZE_t is an alias of either DWORD(32-bit) or QWORD(64-bit) depends on the configuration option _FS_EXFAT.
+
Byte offset from top of the file to set read/write pointer. The data type FSIZE_t is an alias of either DWORD(32-bit) or QWORD(64-bit) depends on the configuration option FF_FS_EXFAT.
@@ -48,19 +48,20 @@ FRESULT f_lseek (

Description

-

The f_lseek function moves the file read/write pointer of an open file. The offset can be specified in only origin from top of the file. When an offset beyond the file size is specified at write mode, the file size is expanded to the specified offset. The file data in the expanded area is undefined because no data is written to the file in this process. This is suitable to pre-allocate a cluster chain quickly, for fast write operation. When a contiguous data area needs to be allocated to the file, use f_expand function instead. After the f_lseek function succeeded, the current read/write pointer should be checked in order to make sure the read/write pointer has been moved correctry. In case of the read/write pointer is not the expected value, either of followings has been occured.

+

File read/write ponter in the open file object points the data byte to be read/written at next read/write operation. It advances as the number of bytes read/written. The f_lseek function moves the file read/write pointer without any read/write operation to the file.

+

When an offset beyond the file size is specified at write mode, the file size is expanded to the specified offset. The file data in the expanded area is undefined because no data is written to the file in this process. This is suitable to pre-allocate a data area to the file quickly for fast write operation. When a contiguous data area needs to be allocated to the file, use f_expand function instead. After the f_lseek function succeeded, the current read/write pointer should be checked in order to make sure the read/write pointer has been moved correctry. In case of the read/write pointer is not the expected value, either of followings has been occured.

-

The fast seek function enables fast backward/long seek operations without FAT access by using an on-memory CLMT (cluster link map table). It is applied to f_read and f_write function as well, however, the file size cannot be expanded by f_write, f_lseek function while the file is in fast seek mode.

-

The fast seek function is enabled when the member cltbl in the file object is not NULL. The CLMT must be created into the DWORD array prior to use the fast seek function. To create the CLMT, set address of the DWORD array to the member cltbl in the open file object, set the size of array in unit of items to the first item and call the f_lseek function with ofs = CREATE_LINKMAP. After the function succeeded and CLMT is created, no FAT access is occured in subsequent f_read, f_write, f_lseek function to the file. The number of items used or required is returned into the first item of the array. The number of items to be used is (number of the file fragments + 1) * 2. For example, when the file is fragmented in 5, 12 items in the array will be used. If the function failed with FR_NOT_ENOUGH_CORE, the given array size is insufficient for the file.

+

The fast seek function enables fast backward/long seek operations without FAT access by using an on-memory CLMT (cluster link map table). It is applied to f_read and f_write function as well, however, the file size cannot be expanded by f_write, f_lseek function while the file is at fast seek mode.

+

The fast seek mode is enabled when the member cltbl in the file object is not NULL. The CLMT must be created into the DWORD array prior to use the fast seek function. To create the CLMT, set address of the DWORD array to the member cltbl in the open file object, set the size of array in unit of items to the first item and call the f_lseek function with ofs = CREATE_LINKMAP. After the function succeeded and CLMT is created, no FAT access is occured in subsequent f_read, f_write, f_lseek function to the file. The number of items used or required is returned into the first item of the array. The number of items to be used is (number of the file fragments + 1) * 2. For example, when the file is fragmented in 5, 12 items in the array will be used. If the function failed with FR_NOT_ENOUGH_CORE, the given array size is insufficient for the file.

QuickInfo

-

Available when _FS_MINIMIZE <= 2. To use fast seek function, _USE_FASTSEEK needs to be set 1.

+

Available when FF_FS_MINIMIZE <= 2. To use fast seek function, FF_USE_FASTSEEK needs to be set 1 to enable this feature.

@@ -73,30 +74,30 @@ FRESULT f_lseek ( if (res) ... /* Move to offset of 5000 from top of the file */ - res = f_lseek(fp, 5000); + res = f_lseek(fp, 5000); /* Move to end of the file to append data */ - res = f_lseek(fp, f_size(fp)); + res = f_lseek(fp, f_size(fp)); /* Forward 3000 bytes */ - res = f_lseek(fp, f_tell(fp) + 3000); + res = f_lseek(fp, f_tell(fp) + 3000); /* Rewind 2000 bytes (take care on wraparound) */ - res = f_lseek(fp, f_tell(fp) - 2000); + res = f_lseek(fp, f_tell(fp) - 2000);
 /* Cluster pre-allocation (to prevent buffer overrun on streaming write) */
 
     res = f_open(fp, recfile, FA_CREATE_NEW | FA_WRITE);   /* Create a file */
 
-    res = f_lseek(fp, PRE_SIZE);             /* Expand file size (cluster pre-allocation) */
-    if (res || f_tell(fp) != PRE_SIZE) ...   /* Check if the file has been expanded */
+    res = f_lseek(fp, PRE_SIZE);             /* Expand file size (cluster pre-allocation) */
+    if (res || f_tell(fp) != PRE_SIZE) ...   /* Check if the file has been expanded successfly */
 
-    res = f_lseek(fp, DATA_START);           /* Record data stream WITHOUT cluster allocation delay */
+    res = f_lseek(fp, DATA_START);           /* Record data stream WITHOUT cluster allocation delay */
     ...                                      /* Write operation should be aligned to sector boundary to optimize the write throughput */
 
     res = f_truncate(fp);                    /* Truncate unused area */
-    res = f_lseek(fp, 0);                    /* Put file header */
+    res = f_lseek(fp, 0);                    /* Set file header */
     ...
 
     res = f_close(fp);
@@ -108,14 +109,14 @@ FRESULT f_lseek (
 
     res = f_open(fp, fname, FA_READ | FA_WRITE);   /* Open a file */
 
-    res = f_lseek(fp, ofs1);               /* This is normal seek (cltbl is nulled on file open) */
+    res = f_lseek(fp, ofs1);               /* This is normal seek (cltbl is nulled on file open) */
 
     fp->cltbl = clmt;                      /* Enable fast seek function (cltbl != NULL) */
     clmt[0] = SZ_TBL;                      /* Set table size */
-    res = f_lseek(fp, CREATE_LINKMAP);     /* Create CLMT */
+    res = f_lseek(fp, CREATE_LINKMAP);     /* Create CLMT */
     ...
 
-    res = f_lseek(fp, ofs2);               /* This is fast seek */
+    res = f_lseek(fp, ofs2);               /* This is fast seek */