Method and program for file information write processing
The file information write processing method according to the present invention is a file information write processing method wherein a computer executes a process for outputting instruction corresponding to a file information write instruction from an application to a device driver, wherein: searching clusters which are empty areas within an actual data area of a memory unit of the computer, and obtaining the search result; if clusters which are empty areas exist, writing information to overwrite to one or more clusters within the actual data area of the memory unit which is a target of the write instruction from the application, to the clusters which are empty areas; and freeing clusters which were to be overwritten by the information written to the empty area clusters.
Latest FUJITSU LIMITED Patents:
- Terminal device and transmission power control method
- Signal reception apparatus and method and communications system
- RAMAN OPTICAL AMPLIFIER, OPTICAL TRANSMISSION SYSTEM, AND METHOD FOR ADJUSTING RAMAN OPTICAL AMPLIFIER
- ERROR CORRECTION DEVICE AND ERROR CORRECTION METHOD
- RAMAN AMPLIFICATION DEVICE AND RAMAN AMPLIFICATION METHOD
This application is based upon and claims the benefit of priority from the prior Japanese Patent Application No. 2004-375074, filed in Dec. 12, 2004, the entire contents of which are incorporated herein by reference.
FIELD OF THE INVENTIONThe present invention relates to a processing method for writing file information and program thereof.
BACKGROUND OF THE INVENTIONFile access within a computer system is realized through a combination of three programs: application; file system (middleware); and device driver. Here, application refers to various application programs such as word processors and CAD software. Device driver refers to a control program which performs read/write on each area within a (nonvolatile) secondary memory, such as magnetic disks and flash memory, wherein stored contents are retained even when power is tuned off. File system (middleware), which is provided between application and device driver, performs a process for outputting instructions corresponding to the write instructions from the application to the device driver.
With a file system such as this, when power supplies were unexpectedly cut off during writing data and a write failure occurs, problems frequently lie in how the information in the file relevant to the write is restored. From this relation, methods addressing write failures such as this are disclosed in many references such as Patent Reference 1.
[Patent Reference 1]
Japanese Patent Laid-Open Publication No. 2003-169293 “Data recorder/player, means for recording and playing data, and digital camera”
DESCRIPTION OF THE RELATED ARTThe following are explanations of an instance where a write instruction sent from the application to the file system is a file overwrite instruction and an instance where the write instruction is a file move instruction, during file access by a computer.
First, the process performed by the middleware corresponding to an overwrite instruction when the overwrite instruction is given to the middleware from the application is explained.
As shown in
Here, information regarding the entire file system, such as the file system capacity, the size of the cluster which is the processing unit of the actual data area, and the position of the root directory within the actual data area, are described in the boot sector. In addition, pointer information which indicates which cluster a cluster is connected to is stored in each entry of the FAT corresponding to individual clusters within the actual data area. If the cluster has no connection destination, “End” is set in this pointer information. If the cluster is freed, “NULL” is set in this pointer information (shown as blank in the diagram). In other words, data retained within the clusters corresponding to entries within FAT wherein a pointer value other than “NULL” is set is data which has meaning.
Furthermore, the actual data area that is used is separated into (processing) units called clusters, and actual information regarding files and directories are stored therein. In
For example, in
Since information regarding the interconnection of clusters within the actual data area is stored in the FAT, in
Overwrite instruction is given in regards to File1, such as this, from the application which output this File 1.
File system (middleware) specifies the (one or plural) cluster(s) within the secondary memory (actual data area) which is the target of write, implementing information regarding the starting location and the length of the overwrite comprised in the file overwrite instruction from the application. Here, clusters corresponding to Data 2, Data 3, and Data 4 are considered clusters which have been specified as such.
In other words, first, the content of the cluster corresponding to Data 2 is overwritten as shown in
In
However, if file overwrite is performed by a procedure such as this, when, for example, a write failure such as power supply interruption occurs during the first, second, and third write, such as that shown in
The process performed by the middleware regarding a file move instruction when the file move instruction is given to the middleware from the application is explained next.
In
It can be understood, by referencing the “0x3” cluster, that directory dir1 holds file file1, its data length=3, and the head data of this file1 is stored in the “0x1” cluster. In addition, it can be understood, by referencing the “0x4” cluster, that directory dir2 holds file file2, its data length=3, and the head data of this file2 is stored in the “0x8” cluster. Furthermore, as stated earlier, by referencing the FAT, it can be understood that file file1 has a configuration wherein the clusters of Data1, Data2, and Data3 are connected in the sequential order of Data1, Data2, and Data3. Also, file file2 has a configuration wherein the clusters of Data4, Data5, and Data6 are connected in the sequential order of Data4, Data5, and Data6.
In other words, it can be understood that the actual data area and the FAT shown in the lower half of
Explained below is an instance wherein ¥dir¥dir1¥file1 is moved to ¥dir¥dir2¥file2, in reference to
Subsequently, as shown in
Then, as shown in
In
In step S204, file information of the destination of the movement is written to the directory entry in the directory of the destination of the movement so as to point the head actual data of the file of the source of the movement. Although the file is the target to be moved in each of the steps explained above, directories can also be the targets of the movement. To enable the procedure to accommodate both files and directories, add step S205 which determines whether or not the target to be moved is a directory, and, when the target to be moved is a directory, step S206 which changes (updates) information regarding parent directory “ . . ” of the directory to be moved.
If file move is performed by procedures such as that explained above, the period from after the file file1 information of the source of the movement is deleted from the directory entry of file file1 of this source of the movement of the actual data area within the secondary memory in
The objective of the present invention is to provide a write processing method and program which enables shortening of the period wherein there is risk of data damage when power supply interruption and the like occur.
The file information write processing method of the first aspect of the present invention is a file information write processing method wherein a computer executes a process for outputting instruction corresponding to a file information write instruction from an application to a device driver, wherein: searching clusters which are empty areas within an actual data area of a memory unit of the computer, and obtaining the search result; if clusters which are empty areas exist, writing information to be overwritten to one or more clusters within the actual data area of the memory unit which is a target of the write instruction from the application, to the clusters which are empty areas; and freeing clusters which were to be overwritten by the information written to the empty area clusters.
Here, since data which should be overwritten to the cluster specified as the write target is written to the cluster of the empty area within the actual data area which has been searched and obtained, if as many of these clusters which are empty areas as there are clusters which are write targets are secured, the data to be overwritten can be written to this empty area cluster all at once. In this case, by comparing this to the conventional example wherein data is directly overwritten to this write target cluster, it is possible to eliminate the risk of storing incomplete data within the actual data area due to the power supply interruption during the data overwrite, so when a power supply interruption and the like occur, the period wherein there is risk of data damage is shortened. Data to be overwritten refers to update information, or in other words, “Data New”(shown in FIGS. 15 to 18 as Data2 New, Data3 New, and Data4 New).
The file information write processing method of a second aspect of the present invention is a file information write processing method wherein a computer executes a process for outputting instruction corresponding to a file information write instruction from an application to a device driver, wherein: searching entries of the directory in a destination of a movement to determine whether or not the write instruction is a file move which is accompanied by overwrite, changing or generating a directory entry of a file in the destination of the movement so as to link to actual data of a file in the source of the movement in a state wherein the link between the directory entry of a file in the source of the movement and actual data of the file in the source of the movement is kept, according to whether or not said write instruction is a file move which is accompanied by overwrite; deleting the directory entry of the file in the source of the movement.
Here, the change or the generation of the directory entry of the file of the destination of the movement is made so as to link to the actual data in the file of the source of the movement in a state wherein the link between the directory entry of the file of the source of the movement and the actual data of the file of the source of the movement is kept, the period wherein the information of the file of the source of the movement only exists in the primary memory, as in the conventional example, is eliminated, and the period wherein risk of data damage exists, when power supply interruption and the like occurs, can be shortened.
According to the present invention, because data which should be overwritten to the cluster specified as write target is written to the cluster of the empty area within the actual data area which has been searched and obtained, data which should be overwritten can be written to the empty area cluster all at once, when as many of these clusters which are empty areas as there are clusters which correspond to the data comprised in the write instruction from the application are secured. In this case, by comparing this to the conventional example wherein data is directly overwritten to this write target cluster, it is possible to eliminate the risk of storing incomplete data within the actual data area due to the power supply interruption during data overwrite, so when a power supply interruption and the like occur, the period wherein there is risk of data damage is shortened.
In addition, according to the present invention, the change or the generation of the directory entry of the file of the destination of the movement is made so as to link to the actual data in the file of the source of the movement in a state wherein the link between the directory entry of the file of the source of the movement and the actual data of the file of the source of the movement is kept, the period wherein the information of the file of the source of the movement only exists in the primary memory, as in the conventional example, is eliminated, and the period wherein risk of data damage exists, when power supply interruption and the like occurs, can be shortened.
BRIEF DESCRIPTION OF THE DRAWINGS
The embodiments of the present invention are explained in detail below in reference to diagrams.
From this “file overwrite” process, each of the following processes are called: a “empty area search” process which is performed by reading the FAT; and various processes for updating data in FAT and the actual data area, or in other words, “FAT read” and “actual data read” processes which read these FAT and actual data areas from a media (secondary memory) to a primary memory, and “FAT write” and “actual data write” processes which write data of the FAT and actual data area updated in the primary memory to a media (secondary memory).
In
In
The operations of the write processing unit in this embodiment are explained below.
First, when write process execution unit 13 receives a file overwrite instruction from the application, write target specification unit 11 and empty area search part 12 are booted with the reception of this overwrite instruction acting as the trigger.
In write target specification unit 11, the (one or plural) cluster(s) within the secondary memory (actual data area) which is to be the target of the write instruction is specified using information of the starting position and length of the overwrite within the information to be overwritten which is included in this write instruction from the application. In addition, empty area search part 12 reads (references) the FAT, and searches the empty area clusters (clusters which are not in use) within the actual data area and obtains the search result.
Write process execution unit 13 which received the search result information from empty area search unit 12, for example, information indicating the location of the empty area cluster, determines whether or not the empty area cluster exists in the actual data area from this search result information. If the cluster exists, information which should be overwritten to the (one or plural) cluster(s) within the actual data area which is the specified target of the write instruction is written to the empty area cluster within the search results by write process execution unit 13. Although there are cases wherein data sections which are not changed are comprised in the head cluster and tail cluster of the actual data area, in these cases, the unchanged data section and the data section to be newly overwritten are merged by the merge part (not illustrated), and data which should be written to these clusters is created.
After this write process, corresponding clusters, within the clusters which are targets for the write instruction, of which the information written to the empty area cluster was to be overwritten are freed. Then, whether or not there are sections, out of the data included in the write instruction, which are not written to the empty area cluster is determined by the determination unit 14.
If such sections exist in the data included in the write instruction, the empty area search unit 12 is again activated by the write process execution unit 13, and the search for clusters which are empty areas is executed. In this search, because empty areas greater than or equal the number of clusters freed by freeing unit 15 are obtained, write process execution unit 13 performs a write process on these empty areas greater than or equal the number of freed clusters. Then, in this same way, the freeing process of the clusters which the information written to the empty area cluster was to be overwritten is performed by freeing unit 15.
The process of the write processing unit for processing a file overwrite instruction from the application is explained below, in reference to
In other words, as is in the case of the prior art, in
In this present embodiment, as described above, FAT is read by the empty area search unit 12, and clusters which correspond to entries of this FAT, having the NULL pointer (shown as blank within the diagram) are determined to be empty area clusters. In this case, new data (Data1 New, Data2 New, and Data3 New) corresponding to Data2, Data3, and Data 4 are written to clusters within the actual data area by the write process execution unit 13 in the sequential order, for example, from the empty area cluster having the smallest address.
In the subsequent
In addition, in the subsequent
Furthermore, in the subsequent
In
Write process execution unit 13 determines whether or not empty areas exist, in step S302, from the received search results. If no empty area clusters exist, the chain of processing is terminated as (empty area) error. On the other hand, if (one or more) empty area cluster(s) exists, the process advances to step S303, and in this step S303, data which should be overwritten to the cluster specified as overwrite target is written to the empty area clusters in the search results. Then, in the subsequent step S304, the pointer information of the FAT corresponding to the empty area clusters to which write was performed in step S303 is changed. In step S305, the pointer of the FAT which corresponds to the cluster immediately before the cluster specified as the overwrite target, out of the clusters storing the actual data of the file which is the overwrite target, is changed to point the head cluster of the clusters to which write was performed in step S303.
In the subsequent step S306, file information, for example, the last update time is changed (updated). Then in step S307, by setting the pointer of the FAT entry corresponding to the clusters which were to be overwritten by the information written to the empty area clusters to NULL, these clusters which were to be overwritten are freed (becomes empty areas).
In the subsequent step S308, whether or not all data write has been completed, or in other words, whether or not there are any sections wherein information within the data included in the write instruction (information to be overwritten) is not written to the empty area clusters is determined. If all data write is not completed, or in other words, if there are less empty area clusters found and obtained through step S301 than the number of clusters specified as overwrite targets, the process returns to step S301 and searched again for empty areas. On the other hand, if all data write has been completed, this chain of processing is completed.
In this way, in the first embodiment, because the data which should be overwritten to the clusters specified as the write target is written to the empty area clusters within the actual data area which has been searched and obtained, if the these empty area clusters can secure the number of clusters corresponding to the data included in the write instruction from the application, the data which should be overwritten can be written to the empty area clusters all at once. In this case, by comparing this to the conventional example wherein data is directly overwritten to this write target cluster, it is possible to eliminate the risk of storing incomplete data within the actual data area due to the power supply interruption during data overwrite, so when a power supply interruption and the like occur, the period wherein there is risk of data damage is shortened.
A second embodiment is explained next. Although the file overwrite processing was addressed in the first embodiment, file move processing is addressed in the second embodiment.
From this “file move” process, “directory read” and “directory write” processes are called as processes for changing the directory entries. From the “directory read” process, “FAT read” and “actual data read” processes, for reading FAT and actual data area from the media (secondary memory) to the primary memory, are called, and from the “directory write” process, “FAT write” process and “actual data write” processes, for writing data updated in the FAT and actual data area within the primary memory to the media (secondary memory), are called.
In
In
The operations of the write processing unit in the present embodiment are explained below.
First, after the write process execution unit 21 receives the file move instruction from the application, search unit 23 is booted with the reception of this move instruction acting as the trigger. This search unit 23 comprises entry search unit 24 and entry empty area search unit 25. First, whether or not there is a file name within the directory entry of the directory of the destination of the movement which matches the file name of the destination of the movement designated by the move instruction is searched by the entry search unit 24. If there is no match, the move instruction is determined not to be accompanied by an overwrite, and subsequently, whether or not empty area for writing the entry information to be added to the directory of the destination of the movement exists in the clusters which store the directory entry of this directory of the destination of the movement is searched. If there is empty area within this directory entry, the entry information of the file to be added is written to this empty area within the directory entry so as to be linked to the actual data of the file of the source of the movement.
On the other hand, if it is determined that there is a file name within the directory entries of the directory of the destination of the movement which matches the file name of the destination of the movement designated by the move instruction, changes are made so that the entry information of this matching file is linked to the actual data of the file of the source of the movement. Regardless of the search results of entry search unit 24, the directory entry of the file of the source of the movement is deleted by the entry delete unit 22.
Write process execution unit 21 determines whether or not the write instruction is a file move which is accompanied by overwrite based on the search result of the search unit 23. If it is determined to be a movement accompanied by an overwrite, freeing unit 26 is booted and corresponding entries within the FAT are cleared to free the actual data to which the file of the destination of the movement had been pointing before the move instruction.
The process of the write process unit for processing a file move instruction from the application in the present embodiment is explained below, in reference to
Write process execution unit 21 changes the directory entry of file file2 in the destination of the movement to point the head actual data Data1 of file file1 in the source of the movement, based on this search result information. In other words, the directory entry of file file2 in the actual data area of the destination of the movement is changed.
In the prior art, first, the files (file1 and file2) which points at the actual data area cluster corresponding to Data1 within the directory entry in the source and the destination of the movement was not deemed to exist as in
This is due to the fact that, being conventionally held to the common rule that “file delete function is implemented as a part of the process for file move”, the state such as that shown in
In this embodiment, the drawback above can be prevented by deleting information regarding the file in the source of the movement from the directory entry of the file in the source of the movement, using the entry delete function which is a part of the file delete function as is shown in
In addition, the procedure for movement in this embodiment also has an effect in that the period wherein write failures occur due to accidental power supply interruptions is shortened. In other words, because the file information in the destination of the movement is changed to point head actual data Data1 of the file in the source of the movement in the directory entry in the destination of the movement while the file information of the source of the movement exists in the directory entry of the file in the source of the movement within the secondary memory, the period wherein the file information of the source of the movement only exists in the primary memory is eliminated, and the period wherein write failure occurs due to accidental power supply interruption is shortened.
Next, in
Although a case wherein a file with the same name as the file name (file2) designated by the move instruction exists in the directory (dir2) of the destination of the movement was explained above, the same can be considered for the process in cases when the file with the same name does not exist in the directory of the destination of the movement. In this case, write process execution unit 21 creates the information in file file2 of the destination of the movement to point the head actual data Data1 of the file file2 in the source of the movement, based on the search result information.
Although the procedures in
In the subsequent step S403, the directory of the destination of the movement is searched, and based on whether or not the file designated as the destination of the movement already exists within this directory, file information of the directory entry of the directory of the destination of the movement is changed or generated to point the head actual data of the file in the source of the movement by write process execution unit 21.
Then in step S404, file information of the source of the movement is deleted from the directory entry of the directory in the source of the movement by entry delete unit 22.
In the subsequent step S405, whether or not the file information has been overwritten in the destination of the movement is determined. If it is determined that it has not been overwritten, the chain of processing is terminated immediately, and if it is determined to have been overwritten, the actual data to which the file in the destination of the movement has been pointing to before the move instruction is freed in step S406.
The write processing unit in each embodiment of the present invention can be configured as software.
In
In
The user can give various instructions such as file overwrite and file move to the application via the input/output device 56. In addition, information on the results processed by the write processing unit in the embodiment is presented to the user via the application.
Other than program and data stored in the memory device 55, program and data of a portable memory media 59 which has been read by the reader 58 and program and data of the information provider 61 which has been read via network 62 and communication interface 54 can be used within the computer.
File write processing such as file overwrite and move processing of the present invention can obviously be actualized by a common computer 74. In this case, it is possible to load a program for the process in this present invention and the like from the memory device 72 of the computer 74 to the memory in computer 74 and execute, or to load a program for process in this present invention and the like from the portable memory media 73 to the memory in computer 74 and execute, or to load a program for process in this present invention and the like from the memory device 71 of the program provider 70 to the memory in computer 74 via network and execute.
Claims
1. A file information write processing method wherein a computer executes a process for outputting instruction corresponding to a file information write instruction from an application to a device driver, wherein:
- searching clusters which are empty areas within an actual data area of a memory unit of the computer, and obtaining the search result;
- if clusters which are empty areas exist, writing information to overwrite one or more clusters within the actual data area of the memory unit which is a target of the write instruction from the application, to the clusters which are empty areas; and
- freeing clusters which were to be overwritten by the information written to the empty clusters.
2. A file information write processing method according to claim 1 wherein:
- determining whether or not there are sections, in the information to write, that is not written in the empty clusters; and
- if there are sections which have not been written to, re-executing said search, write, and free process.
3. A file information write processing method according to claim 1 wherein, subsequent to said write to the empty areas:
- setting pointer information corresponding to the empty cluster to which write was performed; and
- changing pointer information corresponding to the cluster immediately before the clusters to which the write was performed to point the head cluster of the clusters to which the write was performed.
4. A file information write processing method wherein a computer executes a process for outputting instruction corresponding to a file information write instruction from an application to a device driver, wherein:
- searching entries of the directory in a destination of a movement to determine whether or not the write instruction is a file move instruction that overwrite other file,
- changing or generating a directory entry of a file in the destination of the movement so as to link to actual data of a file in the source of the movement with the link between the directory entry of a file in the source of the movement and actual data of the file in the source of the movement being kept, according to whether or not said write instruction is a file move that overwrite other file;
- deleting the directory entry of the file in the source of the movement.
5. A file information write processing method according to claim 4 wherein actual data to which a file in the destination of the movement had been pointing prior to the move instruction is freed if it is determined that said write instruction is a file move that overwrote a file existed in said determination.
6. A memory media to which a file information write processing program which enables a computer to execute a process for outputting instruction corresponding to a file information write instruction from an application to a device driver is stored, wherein the program enables the computer to execute:
- a step for searching clusters which are empty areas within an actual data area of a memory unit of the computer and obtaining the search result;
- a step for writing information to write to one or more clusters within said actual data area of a memory unit which is a target of a write instruction from said application to clusters which are empty areas, if clusters which are empty areas exist; and
- a step for freeing clusters which were to be overwritten by the information written in the empty clusters.
7. A memory media which stores a file information write processing program according to claim 6 wherein the write processing program enables said computer to further execute:
- a step for determining whether or not there are sections in the information to be overwritten that is not written in the empty area clusters; and
- re-executing said search step, write step, and free step if there are sections which have not been written to.
8. A memory media which stores a file information write processing program according to claim 6 wherein the write processing program enables said computer to execute, subsequent to said write step:
- a step for setting pointer information which corresponds to the empty clusters to which write has been performed; and
- a step for changing pointer information corresponding to the cluster immediately before the clusters to which the write was performed to point the head cluster of the clusters to which the write was performed.
9. A memory media to which a file information write processing program which enables a computer to execute a process for outputting instruction corresponding to a file information write instruction from an application to a device driver is stored, wherein the program enables the computer to execute:
- a step for searching entries of a directory in a destination of a movement to determine whether or not the write information is a file move instruction that overwrite other file;
- a step for changing or generating a directory entry of a file in the destination of the movement so as to link to actual data of a file in the source of the movement with the link between the directory entry of a file in the source of the movement and actual data of the file in the source of the movement being kept, according to whether or not said write instruction is a file move instruction that overwrite other file;
- a step for deleting the directory entry of the file in the source of the movement.
10. A memory media which stores a file information processing program according to claim 9 wherein the write processing program enables said computer to further execute a step for freeing actual data to which a file in the destination of the movement had been pointing prior to the move instruction, if it is determined that said write instruction is a file move that overwrite a file existed in said determination step.
Type: Application
Filed: Sep 27, 2005
Publication Date: Aug 3, 2006
Applicant: FUJITSU LIMITED (Kawasaki)
Inventor: Naoki Abe (Kawasaki)
Application Number: 11/235,336
International Classification: G06F 17/30 (20060101);