WO2003096211A1 - Byte-level file differencing and updating algorithms - Google Patents

Byte-level file differencing and updating algorithms Download PDF

Info

Publication number
WO2003096211A1
WO2003096211A1 PCT/US2003/014903 US0314903W WO03096211A1 WO 2003096211 A1 WO2003096211 A1 WO 2003096211A1 US 0314903 W US0314903 W US 0314903W WO 03096211 A1 WO03096211 A1 WO 03096211A1
Authority
WO
WIPO (PCT)
Prior art keywords
byte
file
ofthe
streams
sub
Prior art date
Application number
PCT/US2003/014903
Other languages
French (fr)
Inventor
Jinsheng Gu
Luosheng Peng
Original Assignee
Innopath Software, Inc.
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Innopath Software, Inc. filed Critical Innopath Software, Inc.
Priority to AU2003241421A priority Critical patent/AU2003241421A1/en
Priority to JP2004504132A priority patent/JP4364790B2/en
Priority to EP03731156A priority patent/EP1550047A4/en
Publication of WO2003096211A1 publication Critical patent/WO2003096211A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/10File systems; File servers
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99931Database or file accessing
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99941Database schema or data structure
    • Y10S707/99942Manipulating data structure, e.g. compression, compaction, compilation
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99951File or database maintenance
    • Y10S707/99952Coherency, e.g. same view to multiple users
    • Y10S707/99953Recoverability

Definitions

  • the disclosed embodiments relate to file updating such as software management using difference files.
  • Software includes one or more files in the form of human-readable American Standard Code for Information Interchange (ASCII) plain text files or binary code.
  • Software files can be divided into smaller units that are often referred to as modules or components.
  • a UNIX platform or personal computer (PC) includes multiple software components, and each ofthe software components is managed and updated independently through a file system supported by a corresponding operating system (OS).
  • OS operating system
  • Information used to update software files or software components hosted on UNIX platforms or PCs can be transferred through the Internet or loaded from a secondary storage medium such as a floppy disk, a compact disk read-only memory (CD-ROM), or a compact flash card.
  • RTOS real-time operating system
  • all software components are linked as a single large file.
  • no file system support is typically provided in these mobile wireless devices.
  • the single large file needs to be preloaded, or embedded, into the device using a slow communication link like a radio, infrared, or serial link.
  • Obstacles to updating the large files of mobile wireless devices via slow communication links include the time, bandwidth, and cost associated with delivering the updated file to the device. Distribution of such large files can take an undesirably long time from the point of view ofthe customer and can consume a large amount of server resources from the point of view ofthe file provider. Delivering a large file over an unreliable communication link such as a radio link may also increase the rate of communication failure and require a large working memory within the device, for example random access memory (RAM).
  • RAM random access memory
  • One existing solution to the problem of delivering large files to mobile devices includes the use of compression.
  • a number of existing compression algorithms are commonly used. These algorithms typically support compression of a file down to approximately 40% of its original size; often, however, even the compressed file is too large for download to a device via a slow, costly, narrowband communication link.
  • Another typical solution for updating files uses difference programs to generate a description of how a revised file differs from an original file.
  • difference programs running on UNIX or PC platforms that produce such difference data.
  • the size ofthe difference data file corresponding to a large binary file can be as small as 10% to 20% ofthe revised or original file size.
  • the difference file produced using these difference programs is often too large for transfer via the associated communication protocols.
  • the difference programs known in the art are not efficient in that they require long computation times for generating the difference file and a large amount of working memory in the mobile communication device to effect the update ofthe original file.
  • Figure 1 is a block diagram showing file differencing and updating provided by byte-level file differencing and updating (FDU) algorithms, under an embodiment.
  • FDU file differencing and updating
  • Figure 2 is a flow diagram for generating a delta file, under the embodiment of Figure 1.
  • Figure 3 is a flow diagram of a method of pre-processing files prior to performing a comparison between files, under an embodiment ofthe FDU algorithm.
  • Figure 4 shows identified insertion data of a new file suffix, under an embodiment.
  • Figure 5 shows identified insertion data of a new file prefix, under an embodiment.
  • Figure 6 shows identified deletion data of an original file suffix, under an embodiment.
  • Figure 7 shows identified deletion data of an original file prefix, under an embodiment.
  • Figure 8 shows identified insertion data of a new file, under an embodiment.
  • Figure 9 shows identified deletion data of an original file, under an embodiment.
  • Figure 10 is a flow diagram of a byte-level file differencing algorithm, under the embodiment of Figure 1.
  • FIG 11 shows an identified longest common sub-string (LCS) and the associated prefixes and suffixes, under the embodiment of Figure 10.
  • LCS longest common sub-string
  • Figure 12 is a block diagram of a delta file including a concatenation of a series of records, under an embodiment.
  • Figure 13 is a block diagram of a delta file record, under the embodiment of Figure 12.
  • Figure 14 is a table including operation descriptions, under the embodiment of Figure 13.
  • Figures 15A, 15B, 15C and 15D show a summary table of operation codes along with associated fields, introduced under an embodiment.
  • Figure 16 is a flow diagram of a byte-level file updating algorithm, under an embodiment.
  • FIG. 1 is a block diagram showing file differencing and updating provided by the FDU algorithm of an embodiment.
  • the FDU algorithm includes a differencing component and an updating component.
  • the differencing component referred to herein as the file differencing algorithm, generates a difference file in a first computer system from an original version and a new version of an electronic file.
  • the updating component referred to herein as the file updating algorithm, generates a copy ofthe new file on a second computer system using the difference file and the hosted copy ofthe original file.
  • a first computer system 102 and a second computer system 104 communicate via a communication path 106.
  • These computer systems 102 and 104 include any collection of computing devices operating together, as is known in the art.
  • the computer systems 102 and 104 also include components within a larger computer system.
  • the communication path 106 includes any medium by which files are communicated or transferred between the computer systems 102 and 104. Therefore, this path 106 includes wireless connections, wired connections, and hybrid wireless/wired connections.
  • the communication path 106 also includes couplings or connections to networks including local area networks (LANs), metropolitan area networks (MANs), wide area networks (WANs), proprietary networks, interoffice or backend networks, and the Internet.
  • LANs local area networks
  • MANs metropolitan area networks
  • WANs wide area networks
  • proprietary networks interoffice or backend networks
  • the Internet and the Internet.
  • the communication path 106 includes removable fixed mediums like floppy disks, hard disk drives, and CD-ROM disks, as well as telephone lines, buses, and electronic mail messages.
  • the first communication system 102 receives an original, or old, version 110 and a new version 112 of an electronic file.
  • the new file 112 is generally an updated or revised version ofthe original file 110, but is not so limited.
  • the electronic files 110 and 112 include software files including dynamic link library files, shared object files, embedded software components (EBSCs), firmware files, executable files, data files including hex data files, system configuration files, and files including personal use data, but are not so limited. Since any type of file can be regarded as a byte stream, hereafter a file can be described as a byte stream, depending the context.
  • the file differencing algorithm 114 receives the new file 112, compares it to the original file 110, and calculates the byte-level differences between the compared files, as described below.
  • the file differencing algorithm 114 may also pre-process the original 110 and the new 112 files to reduce the sizes ofthe files prior to the calculation ofthe file differences.
  • the file differencing algorithm 114 generates a difference file 116, referred to herein as a delta file, during the comparison.
  • Contents ofthe delta file 116 provide an efficient representation ofthe byte-level differences between the new and the original files.
  • the delta file 116 includes meta-data along with actual data of replacement and/or insertion operations that represents the differences between the new or current version ofthe associated file and previous versions ofthe file, as described below.
  • the file differencing algorithm 114 provides any differences between the original 110 and the new 112 files in the delta file 116 using a minimum number of bytes and a pre-defined format or protocol described below, thereby providing a delta file optimized in space.
  • the delta file 116 is transferred or transmitted to another computer system via the communication path 106. Prior to transfer, the delta file 116 may be compressed using compression techniques known in the art, but is not so limited.
  • the file updating algorithm 118 hosted on the receiving computer system uses the delta file 116 along with the hosted original file 110 to generate or create a copy ofthe new file 112. This copy of the new file 112 is then used to update the original file 110 hosted on the client device that is targeted for revision or updating. Upon completion of this update process, the new file now stored on the second computer system is identical to the new file received in the first computer system.
  • the differences between an original file and a new file are typically smaller than the new file itself, leading to significant storage and transmission savings if the differences are transmitted and stored instead ofthe entire new byte stream. This is particularly important for mobile electronic devices hosting programs that are updated via connections that typically can be slow and expensive, for example wireless or cellular connections.
  • the delta file described herein provides the differences between the new and the original files in a format that is up to 99% smaller than the new file, and this reduced file size provides numerous improvements over typical differencing techniques.
  • One improvement is a reduction in bandwidth required for transmission ofthe delta file to the client device; the smaller file means less bandwidth is required for the transfer.
  • smaller files require less time for transmission and, therefore, decrease the probability that the file transfer will be interrupted and simultaneously reduce transmission errors in the received file.
  • transfer ofthe delta file instead ofthe entire new file eliminates piracy ofthe new file. All of these improvements increase customer satisfaction.
  • Figure 2 is a flow diagram for generation of a delta file, under an embodiment. Operation begins when a new file and an original file are received in a first processing system 202. Pre-processing operations are performed between the new file and the original file in order to identify common segments and simple patterns among contents of the two files 204. The pre-processing algorithm uses identified common segments and patterns to reduce the sizes ofthe new and original files. Thus, this pre-processing eliminates the need to perform difference calculations on common segments ofthe files, thereby increasing the efficiency ofthe difference calculation.
  • the byte-level differences are calculated between the new file and the original file 206.
  • the calculated differences are coded using an operation array 208.
  • Merging operations are applied to the operation array in order to reduce the overhead in delta file creation 210.
  • the delta file is generated by writing the operation array into a file using a variable length integer format that minimizes the number of bytes required to define the differences between the files 212. This variable length integer format is described further below.
  • the delta file is then optimized to further reduce the file size, when possible 214.
  • the optimization includes compression and adding checksum bits or bytes so that errors can be detected following transmission ofthe delta file to the client device.
  • the optimized delta file is then provided as an output 216.
  • the delta file of an embodiment is stored for future transfer or transmission to other computer systems hosting copies ofthe original file.
  • pre-processing operations are performed between the contents ofthe new file and the original file in order to identify common segments and simple patterns among contents ofthe two files.
  • the knowledge of common segments and simple patterns is used to reduce the number of bytes on which the comparison is run, thereby resulting in an overall performance gain.
  • the new file is only slightly different from the original file like, for example, when the new file is used to fix a software bug, add a new feature, or enhance an existing feature. Therefore, an overall performance gain is realized because the cumulative time .required to perform less complex pre-processing operations along with differencing operations on a subset ofthe files is much less than the time required to perform differencing operations on the entire contents ofthe new and original files. This is especially true in cases involving only a single insertion or deletion. Therefore, pre-processing reduces the overall difference calculation time resulting in a performance gain.
  • Each ofthe processes of delta file generation is detailed below.
  • Figure 3 is a flow diagram of a method of pre-processing files prior to performing a comparison between files, under an embodiment.
  • the pre-processing includes operations to determine insertion content, determine deletion content, determine concatenations or special cases of insertion and deletion content, and write information to a file regarding these determinations.
  • the pre-processing algorithm of an embodiment identifies the longest common prefix and the longest common suffix ofthe original byte stream and the new byte stream 304. With reference to Figure 4, a comparison is next performed to determine if the original byte stream 402 is the prefix 406 ofthe new byte stream 404; if so then the difference is one insertion 408. The insertion meta-data and insertion content or data are written to the delta file.
  • a comparison is also performed to determine if the original byte stream 502 is the suffix 506 ofthe new byte stream 504; if so then the difference is one insertion 508, and the insertion meta-data and content are written to the data file.
  • operation again begins by identifying the longest common prefix and the longest common suffix ofthe original and new byte streams.
  • a comparison is next performed to determine if the new byte stream 604 is the prefix 606 ofthe original byte stream 602; if so then the difference is one deletion 608, and the deletion meta-data is written to a file.
  • a comparison is performed to determine if the new byte stream 704 is the suffix 706 ofthe original byte stream 702; if so then the difference is one deletion 708, and the deletion meta-data is written to a file.
  • the preprocessing algorithm of an embodiment begins by using the identified longest common prefix and suffix ofthe original and new byte streams.
  • the original byte stream 802 is the concatenation ofthe longest common prefix 806 and the longest common suffix 808, then there is an insertion 810 in the new byte stream 804 between the prefix 806 and suffix 808.
  • the meta-data and content of this identified insertion are both written to a file.
  • the new byte stream 904 is the concatenation ofthe longest common prefix 906 and the longest common suffix 908, then there is only a deletion 910 in the original byte stream 902 between the prefix 906 and suffix 908, and the deletion meta-data is written to a data file.
  • the pre-processing algorithm returns additional information regarding the differences 310.
  • This information includes, but is not limited to, information as to where the differences start in the two byte streams, and the sizes of the two sub-streams ofthe original byte streams without the longest common prefix and the longest common suffix.
  • the file differencing algorithm calculates edit distances between the compared byte streams.
  • the edit distance between two byte streams as described by D. Gusfield in "Algorithms on Strings, Trees, and Sequences: Computer Science and Computational Biology," (“the Gusfield reference") Cambridge (1997), is the minimum number of edit operations needed to transform the original byte stream into the new byte stream.
  • the edit operations of an embodiment include insertions, deletions and substitutions or replacements.
  • the edit operations used to transform the original byte stream into the new byte stream are expressed with an operation array including the symbols "I” (one byte insertion), "D” (one byte deletion), “R” (one byte replacement), and "M” (one byte match).
  • the original byte stream is "vintner”
  • the new byte stream is "writers”
  • the associated operation array generated during edit distance calculations is 'RIMDMDMMI.” This operation is depicted as
  • Applying the operation array to the original byte stream to generate the new byte stream begins with a replacement (R) ofthe first byte "v” ofthe original byte stream with a new byte "w” in the new byte stream.
  • the second operation performed on the original byte stream is an insertion (I) of a new byte "r”.
  • the third element ofthe operation array indicates a match (M), so the original byte "i” is copied in the new byte stream.
  • the fourth operation is a deletion (D), resulting in the deletion of byte "n” in the new byte stream.
  • the fifth operation indicates another match (M), so the original byte "t” is copied in the new byte stream.
  • the sixth operation is another deletion (D), resulting in the deletion of byte "n” in the new byte stream.
  • the seventh operation is another match (M), so the original byte “e” is copied into the new byte stream.
  • the eighth operation is yet another match (M), so the original byte "r” is copied into the new byte stream.
  • the ninth operation performed on the original byte stream is an insertion (I) of a new byte "s” into the new byte stream.
  • the file differencing algorithm that generates the operation array under an embodiment is based on two algorithms known in the art.
  • One of these algorithms is Hirschberg's linear-space optimal alignment algorithm, as described by D.S. Hirschberg in "A linear space algorithm for computing maximal common subsequences," Comm. ACM 18,6 (1975) 341-343.
  • the other algorithm is Ukkonen's linear-time suffix tree algorithm, as described by E. Ukkonen in "On-line construction of suffix trees," (“the Ukkonen reference”) Algorithmica 14(3), 249-260(1995).
  • the traditional dynamic programming strategy requires O(nm) time and O(nm) space, where n and m are the lengths ofthe original and new byte streams, respectively. Therefore, if the lengths are approximately 32K bytes, O(lG) bytes of memory are required to build the dynamic programming table in memory. But it is quite common that the limiting resources in byte stream difference calculation problems include both time and space. Daniel Hirschberg developed a practical space reduction method that works for many dynamic programming problems. The Hirschberg algorithm reduces the required space from O(nm) to O(min(n, m)) while only doubling the worst case time bound.
  • a suffix tree, or position tree is a data structure that exposes the internal structures of a string by explicitly enumerating all its possible suffixes, as described in the Gusfield reference.
  • the most important structure of interest in the context ofthe file differencing algorithm of an embodiment is the longest repeated sub-string in a stream. More specifically, it is the longest common sub-string (LCS) between two given byte streams. For example, “abc” is the LCS between "axababcdij" and "abiabc”.
  • LCS longest common sub-string
  • a linear- time algorithm is described in the Ukkonen reference for constructing a suffix tree for any given string. Implementing the Ukkonen algorithm, however, involves several considerations.
  • the first consideration involves the fact that the byte stream is usually a binary file so, in most cases, all characters from 0 to 255 occur in the byte stream. This requires special attention be paid to the special marker used in the algorithm.
  • the special marker is defined to be a character that does not occur in the byte stream. One method deals with this by using the location where this special marker is supposed to occur to modify the algorithm.
  • the purpose of using the Ukkonen algorithm is to find the LCS between two given byte streams. Therefore, a generalized suffix tree must be constructed by building a suffix tree for the concatenation ofthe two given byte streams with the addition ofthe special markers to terminate them.
  • the levels ofthe suffix tree depend on the size and structure ofthe given byte stream. Recursively traversing the suffix tree to build the tree, to collect key information, or to free the tree, can result in running out ofthe process stack, even if a large stack size (e.g., 64MB) is reserved. Therefore, the recursive tree traversing functions are decoded using a "while loop" instead of recursion.
  • a fourth consideration involves the edge-label compression scheme described in the Gusfield reference. This compression scheme is recommended for use in achieving linear space complexity; otherwise, processing of larger byte streams might exhaust the available system memory.
  • the Hirschberg algorithm can be used to compute the optimal edit distance between the original byte stream and the new byte stream in linear space and quadratic time. If the stream size is small, usually less than several kilobytes, the optimal edit distance can generally be calculated in a reasonable amount of time. However, if the stream size is not less than thousands of bytes, the time required for the Hirschberg algorithm to compute the optimal edit distance is so long (hours, days, and sometime months) as to make it impractical. Because the new byte stream is typically the modification ofthe original byte stream, the two byte streams will have many portions in common. Quick identification ofthe common portions ofthe byte streams allows the algorithms described herein to operate efficiently and quickly by focusing the difference calculations on smaller byte streams.
  • Figure 10 is a flow diagram 1000 of a file differencing algorithm, under an embodiment.
  • the file differencing algorithm computes the edit distance between two input byte streams, and generates and saves the result in an operation array.
  • the file differencing algorithm of an embodiment identifies the LCS between the original and the new byte streams since the LCS is the largest unmodified part in the original byte stream. This can be done in linear-time and linear-space using the Ukkonen algorithm. A divide- and-conquer strategy is then applied. Once the LCS is found, the old and new byte streams are divided into four smaller byte streams.
  • the symbology of Figure 10 includes reference character "L” to represent the maximum number of bytes of a byte stream for which the Hirschberg algorithm can be invoked, e.g. 4096.
  • Reference character "M” represents the maximum number of bytes in an input byte stream for which the difference calculation can be finished in a tolerable time, or something less than approximately two hours. The tolerable time is pre- specified.
  • oi and o 2h represent the first and second half of the original byte stream, or byte stream o, respectively, while n and n 2h represent the first and second half of the new byte stream, or byte stream n, respectively.
  • length(o) represents the length ofthe byte stream o.
  • length(o) If length(o) is zero, write I's into op_array length(n) times, return; If length(n) is zero, write D's into op_array length(o) times, return; If length(o) ⁇ L and length(n) ⁇ L, call Algorithm Hirschberg, return; If length(o) > M and length(n) > M, cut o into the first half om and the second half o 2 ; cut n into the first half nm and the second half n 2 ;
  • 'R' is length(n), the number of 'D' length(o)-length(n), return; GETDIFF(o p , n p , op_array); Write M's into op_array length(LCS) times; GETDIFF(o s ,n subscribe op array); End
  • operation begins with receipt ofthe original and new byte streams by the file differencing algorithm, at block 1002.
  • the file differencing algorithm determines, at block 1004, if the length of both input byte streams is equal to zero; if the lengths equal zero, then the procedure returns.
  • the file differencing algorithm evaluates the length ofthe byte streams separately, evaluating the length ofthe original byte stream at block 1006, and evaluating the length ofthe new byte stream at block 1008. When the length ofthe original byte stream equals zero it indicates that the new byte stream contains all new information. Therefore, the file differencing algorithm writes insertion operations ("I") into the operation array lengthen) times, at block 1106. The procedure then returns.
  • Operation at block 1008, evaluates the scenario where the old byte stream is not empty while new byte stream is empty. When the length ofthe new byte stream equals zero it indicates that all data ofthe original byte stream is to be deleted. Therefore, the file differencing algorithm writes deletion operations ("D") into the operation array length(o) times, at block 1108. The procedure then returns.
  • D deletion operations
  • Operation continues at block 1010 when both input byte streams have a length greater than zero, where the file differencing algorithm evaluates the length of both byte streams. If the length of each input byte stream is less than L, the maximum number of bytes of a byte stream for which the Hirschberg algorithm can be invoked, then the Hirschberg algorithm is called to calculate the edit distance between the two byte streams, at block 1110. The procedure then returns.
  • the file differencing algorithm determines if the length of each input byte stream is greater than M, the maximum number of bytes in an input byte stream for which the difference calculation can be finished in a pre-specified or tolerable time. If each input byte stream exceeds M in length, then each byte stream is divided into two halves of approximately equal size, at block 1112. Operation continues by inputting each set of byte stream segments on/n ⁇ and o 2h / n 2h into the file differencing algorithm as input byte streams at blocks 1113 and 1114, respectively.
  • the file differencing algorithm calls a linear-time routine to identify the LCS between the byte streams, at block 1014.
  • the linear-time routine of an embodiment is the Ukkonen algorithm, but the embodiment is not so limited.
  • two byte sub-streams are identified for further evaluation, at block 1018.
  • One sub-stream (o p ) includes prefix bytes to the LCS ofthe original byte stream 1102, while the other sub-stream (n p ) includes prefix bytes to the LCS ofthe new byte stream 1104. Operation returns to block 1002, where these two sub-streams (o p and n p ) are provided as inputs to the file differencing algorithm for evaluation.
  • match (“M”) operations are written to the operation array length(LCS) times.
  • two additional byte sub-streams are identified for further evaluation, at block 1022.
  • One sub-stream (o s ) includes suffix bytes to the LCS ofthe original byte stream 1102 while the other sub-stream (n s ) includes suffix bytes to the LCS ofthe new byte stream 1104.
  • Operation returns to block 1002, where these two additional sub-streams (o s and n s ) are provided as inputs to the file differencing algorithm for evaluation.
  • a space, time, and recursive level analysis ofthe file differencing algorithm of an embodiment is described here.
  • space analysis it is noted that both the Hirschberg and Ukkonen algorithms use linear space. Because the file differencing algorithm of an embodiment calls the Hirschberg and Ukkonen algorithms recursively, the total space complexity is linear with respect to the size ofthe input byte stream.
  • the file differencing algorithm calls the Hirschberg algorithm O(n/L) times and the Ukkonen algorithm O(log 2 n) times. Therefore, the total time for performance of routines ofthe file differencing algorithm is no more than
  • the tree traversing functions ofthe file differencing algorithm should be implemented using a "while loop".
  • the recursive levels ofthe file differencing algorithm are approximately 20. If L is the maximum size ofthe byte streams for which the Hirschberg algorithm can be invoked, the recursive level ofthe Hirschberg algorithm is log 2 L. If L is less than 1M, the total recursive levels will be approximately 40. Therefore, the default stack size of O(lM), used on most UNIX and Windows platforms, is more than enough to support running ofthe file differencing algorithm.
  • the above analysis shows that the file differencing algorithm computes the edit distance in linear space using a default stack size.
  • the size ofthe delta file should be as small as possible, as described below.
  • the delta file of an embodiment comprises a series of records, and each record includes meta-data along with content data where necessary. Consequently, the metadata is overhead of sorts, and this overhead should be reduced as much as possible to improve the efficiency ofthe difference process.
  • M&I merging and indexing
  • a first M&I technique scans the operation array in search of match operations. When single match operations are located they are replaced by substitution operations, because the match operations are special cases of substitution operations. This substitution is also performed on groups of match operations containing no more than three match operations in sequence. A sequence length of three operations is used because the minimum length of a meta-data sequence is three bytes. In this manner, a set of meta-data is enough to record the changes in this part instead of several operations.
  • the operation array prior to application ofthe first M&I technique is 111 MMMDDMMMMMMRMMD.
  • This array includes two sequences of match operations having a sequence length of three operations or less; a first sequence at positions 4-6 ofthe array, and a second sequence at positions 16 and 17 ofthe array. Following application ofthe first technique these sequences are replaced by sequences of replacement operations, and the operation array becomes
  • a second M&I technique searches the operation array for sequences ofthe same operation. This search looks for all operations except match ("M") operations. When these sequences are located they are merged into a single large operation that specifies the operation to be performed along with a length to indicate the number of bytes on which this operation is to be performed. For example, the operation array prior to application of this technique is
  • This array contains a sequence of twelve deletion operations between two different sequences of match operations. This technique replaces the sequence of twelve deletion operations with the operation deletion_with_length. Thus, following application of this technique the operation array becomes
  • the third M&I technique merges a sequence of insertion (“I”) operations, deletion (“D”) operations, and substitution (“R”) operations to form one operation, when there is no match (“M”) operation in the sequence.
  • This technique includes two variations. A first variation is used when the number of insertion operations equals the number of deletion operations, in which the merged operation is a fixed length replacement operation having a specified length. Otherwise, the second variation is applied, a variable length replacement having two specified lengths, where the operation is specified as variable_length_replace.
  • the first specified length provides the length ofthe sequence that is replacing the identified sequence (replacing length), while the second specified length provides the length ofthe sequence to be replaced (replaced length). For example, the operation array prior to application of this technique is
  • This array contains the sequence "RIDDDDDDDDDD.” This sequence meets the criteria for application ofthe third M&I technique because it is a sequence of substitution, insertion, and deletion operations.
  • the second variation is applied here because the number of insertion operations (one) is not equal to the number of deletion operations (twelve). Following application ofthe second variation the operation array becomes
  • MMMMvariable_length_replaceMMMMM where the replacing length is two (the total number of one-byte replacement operations and one-byte insertion operations) and the replaced length is thirteen (the total number of one-byte replacement operations and one-byte deletion operations).
  • a fourth M&I technique is provided to take advantage of patterns in which fixed length sequences of replacement operations occur in more than one fixed length sequence of operations, for example match operations.
  • the name ofthe new operation itself tells the length of replacement, associated with two parameters to tell the interval length and repeat times. This technique is most appropriate when the fixed length replacement in an interval is no more than 30 bytes.
  • the operation array, for example, prior to application of this technique is
  • MMMMMRRMMMMRRMMMMRE-MMMMMII This array is seen to include a sequence
  • R-RMMMMRRMMMMRRMMMM and the "length” is specified as six (total length of each replace/match sequence), while the "repeat” is three (each replace/match sequence is repeated three times).
  • This array includes the sequence
  • the interval "length” in this example equals six (the length ofthe sequence "RRMMMM”), while the interval “repeat” is specified as four (the sequence "RR" repeats four times).
  • a sixth M&I technique includes putting all handled operations into a data structure, for example a hash table.
  • a new operation is introduced that operates to insert the previously encountered operation at the new location.
  • the new operation is exact_copy_index_to, along with an offset parameter that indicates the location ofthe copy.
  • one instruction insertion or deletion causes the addresses ofthe subsequent instructions to shift a constant value.
  • a seventh M&I technique introduces a new operation that takes advantage of this pattern.
  • the new operation is address_repeat_shift, and the repeat times and interval length of this operation are associated with the operation as meta-data, while the constant value remains as real data.
  • the file differencing algorithm of an embodiment minimizes the size ofthe delta file by reducing the redundant information of the operation array during the writing ofthe operation array to the delta file. This reduction in redundant information is performed using a variable length integer format to write the operation array to the delta file, but the embodiment is not so limited.
  • variable length integer format to write the operation array to the delta file, but the embodiment is not so limited.
  • relative start addresses are used in the operation array to indicate where modifications to byte streams occur instead of absolute start addresses.
  • a description ofthe variable length integer format of an embodiment begins with a description of how integer values are stored in a delta file.
  • the length ofthe byte stream representing an unsigned integer depends on the integer value.
  • An integer with a value between 0 and 127 can be represented using one byte. If the integer value is between 128 and 16,383, the integer can be represented with two bytes.
  • An integer value between 16,384 and 2,097,151 is represented with three bytes.
  • An integer having a value greater than 2,097, 151 requires four or more bytes.
  • an integer value of an embodiment is converted into a character string ofthe form
  • the first bit of a byte (the "C" bit) is referred to as a continuous bit.
  • the continuous bit indicates whether more bytes follow the associated byte to be read as part ofthe current integer. Therefore, if C is a "1” then the following byte should be read as part ofthe current integer. If C is a "0" the integer ends with the current byte.
  • this string format representing an unsigned integer is called a variable length integer format.
  • the size of files transmitted among devices should be as small as possible.
  • the delta file there are 1000 integers, whose values are between 0 and 127, to be stored in the delta file. If four bytes are consumed for each integer, 4000 bytes are needed.
  • the integers used by the algorithms provided herein describe offsets, pattern repeat times, operating lengths, and other characteristics of byte stream differences. Therefore, the values of these integers are typically less than 16,383.
  • approximately 1000 bytes are enough to store the typical integers used by the file differencing algorithm if the variable length integer format provided herein is used.
  • Figure 12 is a block diagram of a delta file 1200, under an embodiment.
  • the delta file format generally includes a concatenation of a series of records 1202-1208.
  • Figure 13 is a block diagram of a delta file record 1300, under the embodiment of Figure 12.
  • Figure 14 is a table including operation descriptions, under the embodiment of Figure 13. With reference to Figures 13 and 14, in this example, the format of each record is opcode + relative_start_addr + [other_meta_data] + [real_data]. The "+” symbol represents concatenation ofthe listed fields.
  • the "opcode” record 1302 is one byte that provides the operation code.
  • the "relative_start_addr” record 1304 provides the relative start address where the current modification occurs. If this record 1304 is the first record then the "relative_start_addr” record 1304 represents the offset relative to the beginning ofthe new byte stream, otherwise it represents the difference between the current absolute start address and the absolute start address in the last record. With this scheme, it is easy to compute the absolute start address for the current modification. The advantage is that smaller integers are stored in the delta file instead of larger integers. Use ofthe variable length integer format, therefore, saves thousands of bytes when the delta file includes thousands of records.
  • the "other__meta_data” record 1306 represents any ofthe following fields, depending on the operation code, but is not so limited: operatingjbn 1306a, operated_len 1306b, repeat_times 1306c, interval_length 1306d, and delta_offset 1306e.
  • the "real_data” record 1308 is the shift value for the opcode "address_repeat_shift,” or the actual replacement or insertion data.
  • the brackets "[ ]" indicate the included field is optional, depending on the operation code.
  • Figures 15A, 15B, 15C and 15D show a summary table of operation codes along with associated fields, introduced under an embodiment.
  • INSERTION opcode this is an insertion operation.
  • the record format is: opcode + relative_start_addr + operating_len + real_data.
  • the opcode is INSERTION while the "operating_len” and “real_data” fields provide the length ofthe insertion and the insertion data.
  • the "operating_len” field is in the variable length integer format described above. If operating_len is no more than 10, the following opcodes are introduced to save 1 byte for each record.
  • the record format is: opcode + relative_start_addr + real_data.
  • the insertion length is implied by the opcode.
  • DELETION opcode this is a deletion operation.
  • the record format is: opcode + relative_start_addr + operated_len.
  • the opcode is DELETION while the "operated_len” field, in variable length integer format, indicates the length ofthe deletion. If operating_len is no more than 10, the following opcodes are introduced to save 1 byte for each record.
  • TEN BYTE DELETION These are small-scale deletion operations (no more than 10 bytes).
  • the record format is: opcode + relative_start_addr.
  • the deletion length is implied by the opcode.
  • REPLACEMENT opcode this is a same length replacement operation.
  • the record format is: opcode + relative_start_addr + operating_len + real_data.
  • the opcode is REPLACEMENT while the "operating en” and “real_data” fields indicate the length ofthe replacement and the replacement data.
  • the "operating_len” field is in variable length integer format. If operating_len is no more than 20, the following opcodes are introduced to save 1 byte for each record.
  • the record format is: opcode + relative_start_addr + real_data.
  • the replacement length is implied by the opcode.
  • VARIABLE LEN REPLACEMENT opcode this is a variable length replacement operation.
  • the record format is: opcode + relative_start_addr + operating_len + operatedjbn + real_data.
  • the opcode is VARIABLE_LEN_REPLACEMENT while the "operating en,” “operatedjbn” and “real_data” fields provide the replacing length, the replaced length, and the actual replacing data, respectively.
  • the "operatingjen” and “operated_len” fields are in variable length integer format.
  • EXACT COPY INDEX TO opcode this indicates that the current operation occurs somewhere previously in the byte stream.
  • the record format is: opcode + relative_start_addr + delta_offset.
  • the opcode is EXACT_COPY_INDEX_TO while the "delta_offset" field, invariable length integer format, is the offset in the delta file where the record ofthe copied operation is found.
  • WHOLE REPLACEMENT opcode this is a whole replacement operation.
  • the record format is: opcode + real_data.
  • the opcode is WHOLE_REPLACEMENT.
  • the "relative 3tart_addr” field does not appear here since it defaults to a value of "0".
  • the "real_data” field is all the bytes in the new byte stream.
  • ADDRESS REPEAT SHIFT opcode this is a multi-one-byte address shift operation.
  • the record format is: opcode + relative_start_addr + repeat_times + interval_len + real_data.
  • the opcode is ADDRESS JREPEAT 3HIFT while the "repeat imes" and “intervaljen” fields provide the repeat times and the interval length.
  • the real_data includes the actual address shift, a one-byte character signaling the shift value.
  • the "repeatjimes" and “intervaljen” fields are in variable length integer format.
  • SAME ADDRESS REPEAT SHIFT opcode this is a multi-one-byte address shift operation, but the shift value is implied by previous ADDRESS_REPEAT _SHIFT record. Therefore one byte is saved comparing to previous record.
  • the record format is: opcode + relative_start_addr + repeatjimes + intervaljen.
  • the opcode is SAME__ADDRESS_REPEAT_SHIFT while the "repeatjimes" and "intervaljen” fields provide the repeat times and the interval length.
  • the "repeatjimes" and "intervaljen” fields are in variable length integer format.
  • the other opcodes take advantage of patterns of operations found in operation arrays, for example short length operation sequences occurring repeatedly in fixed length intervals.
  • One example of such sequences includes
  • TWO_BYTE_FIX_LEN_REPEAT_REPLACE indicating a two-byte fixed length repeating sequence of replacement operations ("RR"). Another, example is the sequence
  • TWO_BYTE_FIX_LEN_REPEAT_REPLACE_END_NO_M indicating a two byte fixed length repeating sequence of replacement operations ("RR"), where the sequence does not end with a match operation.
  • RR replacement length
  • the record format is opcode + relative_start_addr + repeatjimes + intervaljen + real_data.
  • the "repeatjimes” and “intervaljen” fields provide the repeat times and the interval length.
  • the "real_data” field is the concatenation ofthe replacement data in each interval.
  • the "repeatjimes” and “intervaljen” fields are in the variable length integer format described above.
  • the two input byte streams include an old byte stream and a new byte stream.
  • the old byte stream is
  • the old and new byte streams are pre-processed, as described above, producing an old byte stream input to the file differencing algorithm that is
  • the resulting delta file includes four records.
  • the first delta file record is opcode NIN_BYTE_INSERTION relative_start_addr 5 real_data insertion. This first record includes eleven bytes.
  • the second delta file record is opcode FFvJBYTE JDELETION relative_start_addr 6, and includes two bytes.
  • the third delta file record is opcode VARIABLE JLENJREPLACEMENT relative_start_addr 6 operatingjen 9 operatedjen 8 real data REPLACING. This third record includes thirteen bytes.
  • the fourth delta file record is opcode T13_BYTE_REPLACEMENT relative_start_addr 23 real_data FFXLENREPLACE. This fourth delta file record includes fifteen bytes. Therefore, the total size of this delta file before compression is the sum total of each ofthe four delta file records, or forty-one bytes.
  • additional operations may be performed in an embodiment to further increase the efficiency of delta file transfer to another system.
  • compression may be used to further reduce the size ofthe delta file for transmission.
  • the compression algorithm used should be one that provides a file capable of being decompressed using an algorithm that executes as fast as possible on pre-allocated memory. That is, the decompression algorithm should not allocate memory dynamically. While compression does not always result in a further reduction in delta file size, the delta file uses specified bytes to indicate when the file is compressed.
  • the file differencing algorithm of an embodiment uses some mechanism such as checksum error correction coding to detect any corruption of a transmitted delta file, but is not so limited.
  • checksum error correction coding uses some mechanism such as checksum error correction coding to detect any corruption of a transmitted delta file, but is not so limited.
  • One simple checksum scheme is as follows. The length ofthe checksum is one byte, and the checksum is placed at the end ofthe delta file. The checksum is the two's complement ofthe byte that represents the sum of all the bytes in the delta file except the last one. In this way, summing all the bytes in an error-free delta file provides a result equal to zero.
  • delta files of an embodiment are stored for future downloading to other computer systems for use in updating copies of original files hosted on the other computer systems.
  • the file updating algorithm 118 is called.
  • Figure 16 is a flow diagram for generating a new file using the corresponding original file and the delta file, under an embodiment.
  • the file updating algorithm Upon receiving the original file and the delta file, at block 1602, the file updating algorithm checks the delta file for corruption or errors using basic techniques such as checksum, at block 1604. If the delta file is corrupt, an output error message is generated, at block 1614, and operation returns.
  • the file updating algorithm determines whether the delta file is compressed, at block 1606. This determination is made using a designated byte or designated bytes ofthe delta file. If the delta file is compressed and the compression method is known, then the file updating algorithm decompresses the delta file. Following decompression the file updating algorithm determines whether the decompression was successful, at block 1616. If the decompression is not successfully completed, an output error message is generated, at block 1614, and operation returns. If the decompression is successfully completed, reading ofthe delta file begins, at block 1608.
  • the file updating algorithm uses the pre-defined delta file format as protocol to parse and understand the differences implied in the delta file and creates the new version of file with 100% accuracy.
  • the file updating algorithm determines whether additional records are available for reading from the delta file, at block 1610. If additional records are available and read, the file updating algorithm checks the validity ofthe opcode and the associated fields ofthe record, at block 1618. When the opcode or any ofthe additional fields are deemed to be invalid, or if any errors are encountered in the updating process such as an unknown opcode, an output error message is generated to signal an update failure, at block 1614, and operation returns.
  • the file updating algorithm When the opcodes and associated fields are valid, the file updating algorithm generates the corresponding portion ofthe new file, at block 1620; remaining records of the delta file are then read, at block 1610. When no additional records remain to be read from the delta file the new file is provided, at block 1612, and operation returns.
  • ojptr represents the pointer pointing to the location where the old version of a file is residing, while the ⁇ _ptr represents the pointer pointing to the storage location where the new version of a file is going to be saved.
  • Deltajile represents the delta file received through some transmission media.
  • Deltajile Jength represents the length ofthe delta file if it is not compressed, or the uncompressed length of a compressed delta file.
  • the file updating algorithm of an embodiment works on pre-allocating memory. Further, the file updating algorithm functions very fast on any resource-limited computing device.
  • the computing devices receiving and using the delta file may be client devices that host corresponding software applications in need of updating, for example cellular telephones, mobile electronic devices, mobile communication devices, personal digital assistants, and other processor-based devices.
  • client devices that host corresponding software applications in need of updating
  • This support is provided for all mobile device software ranging from firmware to embedded applications by enabling carriers and device manufacturers to efficiently distribute electronic file content and applications via their wireless infrastructure.
  • One example of systems that benefit from use ofthe FDU algorithms includes systems using wired serial connections to transfer the delta file from a device hosting the file differencing algorithm to a device hosting the file updating algorithm. These systems typically have slow transfer rates (currently about 192 kbits/second). Because the transfer rates are slow, a reduction in the size ofthe delta file is a way to realize faster transfer times. Thus, use ofthe FDU algorithms in these serial transfer systems increases user satisfaction.
  • Another example of systems that benefit from use ofthe FDU algorithms includes wireless systems using radio communications to transfer the delta file from a device hosting the file differencing algorithm to a device hosting the file updating algorithm. While suffering from low reliability associated with the wireless connections, these systems also have slow transfer rates (currently about 9.6 to 64 kbits/second).
  • the use of a smaller delta file in these systems provides several advantages. For example, the smaller file size results in a faster delta file transfer time. The faster transfer time, while saving time for the device user, reduces the opportunity for the introduction of errors into the delta file, thereby increasing system reliability. Also, with cellular communications, the reduced transfer time results in a cost savings for the consumer who is typically charged by the minute for service.
  • the smaller delta file reduces the bandwidth required to transfer the delta files to client devices.
  • the reduced bandwidth allows for the support of more client devices via the allocated channels. As with the reduced transfer time, this too results in a reduction in operating costs for the wireless service provider.
  • the algorithms described above are for use with systems for updating electronic files, wherein the system for updating electronic files comprises byte-level file differencing and updating (FDU) algorithms.
  • the file differencing algorithm ofthe FDU algorithms is hosted on a first device, and the file differencing algorithm: receives two byte streams including byte streams corresponding to an original file and a new file, wherein the new file includes updated and revised versions ofthe original file; determines a longest common sub-string (LCS) between the two byte streams and divides each ofthe two byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determines an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size and determines a byte-level difference between each ofthe corresponding sub-streams; defines a protocol for structuring a delta file by using a set of operation codes and a variable length integer format
  • the file updating algorithm ofthe FDU algorithms is hosted on a second device ofthe system, and the file updating algorithm: receives the delta file from the first device via the at least one coupling; generates a copy ofthe new file using the delta file and a hosted original file; and updates the original file in the second device using the copy.
  • the first device of an embodiment is a processor-based device accessible by at least one provider of software running on the second device.
  • the second device of an embodiment is at least one processor-based device selected from among personal computers, portable computing devices, cellular telephones, portable communication devices, and personal digital assistants.
  • the coupling among devices ofthe system of an embodiment is selected from among wireless connections, wired connections, hybrid wireless/wired connections, and couplings to networks including local area networks (LANs), metropolitan area networks (MANs), wide area networks (WANs), proprietary networks, backend networks, the Internet, and removable fixed mediums including floppy disks, hard disk drives, and CD- ROM disks, as well as telephone lines, buses, and electronic mail messages.
  • networks including local area networks (LANs), metropolitan area networks (MANs), wide area networks (WANs), proprietary networks, backend networks, the Internet, and removable fixed mediums including floppy disks, hard disk drives, and CD- ROM disks, as well as telephone lines, buses, and electronic mail messages.
  • LANs local area networks
  • MANs metropolitan area networks
  • WANs wide area networks
  • proprietary networks backend networks
  • backend networks the Internet
  • removable fixed mediums including floppy disks, hard disk drives, and CD- ROM disks
  • the original and new files comprise software files including dynamic link library files, shared object files, embedded software components (EBSCs), firmware files, executable files, data files including hex data files, system configuration files, and files including personal use data.
  • software files including dynamic link library files, shared object files, embedded software components (EBSCs), firmware files, executable files, data files including hex data files, system configuration files, and files including personal use data.
  • EBSCs embedded software components
  • the system of an embodiment further comprises at least one server of a communication service provider coupled among the first and second devices, wherein the at least one server: receives the delta file from the first device; generates a message to the second device in response to receipt ofthe delta file, wherein the message informs a user ofthe second device ofthe availability of an update to at least one electronic file hosted on the second device; receives a request for the update from the user; and provides the delta file to the second device in response to request.
  • the file differencing and updating algorithms described above are for use with an apparatus for updating electronic files.
  • the apparatus includes at least one processing device configured to perform byte-level file differencing and updating.
  • the apparatus comprises, but is not limited to: means for receiving two byte streams including a byte stream corresponding to an original file and a byte stream corresponding to a new file; means for determining a longest common sub-string (LCS) between the two received byte streams; means for dividing each ofthe two received byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; means for recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size; means for determining a byte-level difference between each ofthe sub-streams, wherein byte-level differences are determined between the original file and the new file; means for generating an operation array that codes the determined byte-level differences; means for optimizing the operation array by merging operations to reduce file meta-data; and means for generating a delta file by writing the optimized operation array using a variable length integer format.
  • LCS
  • the file differencing and updating algorithms described above are for use with an apparatus for updating electronic files.
  • the apparatus includes at least one processing device configured to perform byte-level file differencing and updating.
  • the apparatus comprises, but is not limited to: means for receiving a delta file, means for generating a copy ofthe new file using the delta file; and means for updating the original file in a second device using the copy.
  • Generation ofthe delta file comprises, but is not limited to: determining a longest common sub-string (LCS) between two byte streams including a byte stream corresponding to an original file and a byte stream corresponding to a new version ofthe original file; dividing each ofthe two byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size; determining a byte-level difference between each ofthe corresponding sub-streams; and generating the delta file by coding the byte- level differences in an operation array, merging at least one operation ofthe operation array to reduce an amount of meta-data, and writing the operation array using a variable length integer format.
  • LCS longest common sub-string
  • the file differencing and updating algorithms described above comprise methods for performing byte-level file differencing.
  • the methods of an embodiment comprise, but are not limited to: identifying a longest common sub-string (LCS) between two received byte streams, wherein the byte streams include a byte stream corresponding to an original file and a byte stream corresponding to a new file version ofthe original file; dividing each ofthe two received byte streams into sub-streams, wherein a first sub- stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size or an LCS is absent; determining a byte-level difference between each ofthe corresponding sub-streams; generating an operation array that codes the determined byte-level differences, wherein generating includes merging operations ofthe operation array to reduce an amount of meta-data; and writing the operation array to a delta file, wherein
  • Writing the operation array of an embodiment further comprises using relative start addresses to identify locations of byte stream modifications.
  • variable length integer format of an embodiment uses one bit of a byte to indicate whether a following byte is read as part of an integer.
  • the delta file format of an embodiment comprises a concatenation of a series of records selected from among an operation code, a relative start address ofthe new file at which the operation code is to be applied, and data of an insertion or replacement to the original file where necessary.
  • the file differencing and updating algorithms described above comprise a method for performing byte-level file differencing that further comprises compressing the delta file and applying error correction coding to the delta file.
  • the file differencing and updating algorithms described above comprise a method for performing byte-level file differencing that further comprises halving each ofthe two byte streams upon receiving the byte streams and determining that the byte streams are longer than a maximum specified size.
  • the file differencing and updating algorithms described above comprise a method for performing byte-level file differencing that further comprises, in the absence of an LCS between two byte streams or between two sub-streams, writing replacement operations and deletion operations into appropriate locations ofthe operation array when a length ofthe byte stream corresponding to the new file is less than a length ofthe byte stream corresponding to the original file.
  • the file differencing and updating algorithms described above comprise a method for performing byte-level file differencing that further comprises, in the absence of an LCS between two byte streams or between two sub-streams, writing replacement operations and insertion operations into appropriate locations ofthe operation array when a length ofthe byte stream corresponding to the new file is greater than a length ofthe byte stream corresponding to the original file.
  • the file differencing and updating algorithms described above comprise a method for performing byte-level file differencing wherein merging further comprises: locating short sequences of match operations in the operation array, wherein the short sequences include three or less sequential match operations; and replacing the match operations of the short sequence with substitution operations.
  • the file differencing and updating algorithms described above comprise a method for performing byte-level file differencing wherein merging further comprises: locating sequences of operations other than match operations in the operation array; and replacing the located sequences with a single operation specifying a type ofthe operation and a length ofthe sequence.
  • the file differencing and updating algorithms described above comprise a method for performing byte-level file differencing wherein merging further comprises: locating sequences including at least one combination of insertion, deletion, and substitution operations; and replacing the sequences with a single variable length replacement operation.
  • the file differencing and updating algorithms described above comprise methods for performing byte-level file differencing wherein merging further comprises: locating sequences including an equal number of insertion and deletion operations; and replacing the sequences with a single fixed length replacement operation.
  • the file differencing and updating algorithms described above comprise methods for performing byte-level file differencing wherein merging further comprises: locating a unit of operations that repeats in a pattern, wherein the unit includes a fixed-length sequence of replacement operations and a fixed-length sequence of another type of operation; and replacing the repeating unit with a single operation specifying a length of the sequence of replacement operations, a length ofthe unit, and a number of times the unit repeats in the pattern.
  • the file differencing and updating algorithms described above comprise methods for performing byte-level file differencing wherein merging further comprises: placing operations appropriate to the operation array into a hash table; and using a single copy operation including an offset parameter, wherein the copy operation inserts operations at the appropriate locations in the operation array using information ofthe hash table.
  • the file differencing and updating algorithms described above comprise methods for performing byte-level file differencing, wherein the pre-specified size is approximately 4096 bytes, but the embodiment is not so limited.
  • the file differencing and updating algorithms described above comprise methods for generating a difference file between electronic files.
  • the methods for generating difference files of an embodiment comprise, but are not limited to: receiving byte streams including an original byte stream and a new byte stream; determining a size of each ofthe byte streams; computing a longest common sub-string (LCS) between the byte streams using a linear-time analysis when each ofthe byte streams is of a first size; generating at least one prefix byte stream set from each ofthe byte streams, wherein each prefix byte stream set includes bytes preceding the LCS; generating at least one suffix byte stream set from each ofthe byte streams, wherein each suffix byte stream set includes bytes following the LCS; recursively determining a size, computing the LCS, and generating at least one prefix and at least one suffix byte stream set for each ofthe generated prefix and suffix byte stream sets until the size ofthe generated prefix and suffix byte stream sets is less than a second size
  • the method for generating difference files of an embodiment further comprises reducing a size ofthe delta file by: applying at least one merging and indexing operation to the operation array to reduce an amount of meta-data; and writing the operation array using a variable length integer format, wherein redundant information ofthe operation array is reduced.
  • the file differencing and updating algorithms described above comprise methods for performing byte-level file differencing and updating.
  • the methods of an embodiment comprise, but are not limited to: receiving two byte streams in a first system, wherein the two byte streams include byte streams corresponding to both an original file and a new file; determining a longest common sub-string (LCS) between the two byte streams and dividing each ofthe two byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre- specified size and determining a byte-level difference between each ofthe corresponding sub-streams; generating a delta file including an operation array that codes the determined byte-level differences, wherein generating comprises merging at least one operation ofthe operation array to reduce an amount of meta-data and writing the operation array using a variable length integer format;
  • the file differencing and updating described above includes computer readable medium including executable instructions which, when executed in a processing system, performs byte-level file differencing and updating by: determining a longest common sub-string (LCS) between two received byte streams, wherein the byte streams include a byte stream corresponding to an original file and a byte stream corresponding to a new file version ofthe original file; dividing each ofthe two received byte streams into sub- streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size; determining a byte-level difference between each ofthe corresponding sub-streams; generating an operation array that codes the determined byte-level differences, wherein generating includes merging at least one operation ofthe operation array to reduce an amount of meta-data; and writing the operation array to a delta file using a

Abstract

A method for performing differencing and updating between electronic files is provided. A byte-level file differencing algorithm (114) receives two byte streams corresponding to an original file (110) and a new file (112). The new file includes updated and revised versions of the original file. The file differencing algorithm determines a longest common sub-string (LCS) between the two byte streams and divides each of the two byte streams into sub-streams. The sub-streams include the LCS along with prefix and suffix sub-streams to the LCS. The file differencing algorithm (114) then recursively determines an LCS and divides each sub-stream until a size of the sub-streams is less than a pre-specified size. Byte-level differences are then identified between each of the corresponding sub-streams. Further, the file differencing algorithm defines a protocol for structuring a delta file (116) by using a set of operation codes and a variable length integer format to eliminate redundant information in the delta file. Using this protocol, the file differencing algorithm generates the delta file including an operation array that codes the identified byte-level differences.

Description

BYTE-LEVEL FILE DIFFERENCING AND UPDATING ALGORITHMS
Inventors:
Jinsheng Gu
Luosheng Peng
TECHNICAL FIELD
The disclosed embodiments relate to file updating such as software management using difference files.
BACKGROUND
Software running on a processor or central processing unit (CPU) to provide certain functionality often changes over time. The changes may result from the need to correct bugs, or errors, in the software files, adapt to evolving technologies, or add new features. In particular, embedded software components hosted on mobile wireless devices often include numerous software bugs that require correction.
Software includes one or more files in the form of human-readable American Standard Code for Information Interchange (ASCII) plain text files or binary code. Software files can be divided into smaller units that are often referred to as modules or components. A UNIX platform or personal computer (PC) includes multiple software components, and each ofthe software components is managed and updated independently through a file system supported by a corresponding operating system (OS). Information used to update software files or software components hosted on UNIX platforms or PCs can be transferred through the Internet or loaded from a secondary storage medium such as a floppy disk, a compact disk read-only memory (CD-ROM), or a compact flash card.
In contrast, in mobile wireless devices, a real-time operating system (RTOS) is typically used in which all software components are linked as a single large file. Further, no file system support is typically provided in these mobile wireless devices. In addition, the single large file needs to be preloaded, or embedded, into the device using a slow communication link like a radio, infrared, or serial link.
Obstacles to updating the large files of mobile wireless devices via slow communication links include the time, bandwidth, and cost associated with delivering the updated file to the device. Distribution of such large files can take an undesirably long time from the point of view ofthe customer and can consume a large amount of server resources from the point of view ofthe file provider. Delivering a large file over an unreliable communication link such as a radio link may also increase the rate of communication failure and require a large working memory within the device, for example random access memory (RAM).
One existing solution to the problem of delivering large files to mobile devices includes the use of compression. A number of existing compression algorithms are commonly used. These algorithms typically support compression of a file down to approximately 40% of its original size; often, however, even the compressed file is too large for download to a device via a slow, costly, narrowband communication link.
Another typical solution for updating files uses difference programs to generate a description of how a revised file differs from an original file. There are commonly available difference programs running on UNIX or PC platforms that produce such difference data. The size ofthe difference data file corresponding to a large binary file can be as small as 10% to 20% ofthe revised or original file size. However, as with compression, the difference file produced using these difference programs is often too large for transfer via the associated communication protocols. In addition, the difference programs known in the art are not efficient in that they require long computation times for generating the difference file and a large amount of working memory in the mobile communication device to effect the update ofthe original file. BRIEF DESCRIPTION OF THE FIGURES
Figure 1 is a block diagram showing file differencing and updating provided by byte-level file differencing and updating (FDU) algorithms, under an embodiment.
Figure 2 is a flow diagram for generating a delta file, under the embodiment of Figure 1.
Figure 3 is a flow diagram of a method of pre-processing files prior to performing a comparison between files, under an embodiment ofthe FDU algorithm.
Figure 4 shows identified insertion data of a new file suffix, under an embodiment.
Figure 5 shows identified insertion data of a new file prefix, under an embodiment.
Figure 6 shows identified deletion data of an original file suffix, under an embodiment.
Figure 7 shows identified deletion data of an original file prefix, under an embodiment.
Figure 8 shows identified insertion data of a new file, under an embodiment.
Figure 9 shows identified deletion data of an original file, under an embodiment.
Figure 10 is a flow diagram of a byte-level file differencing algorithm, under the embodiment of Figure 1.
Figure 11 shows an identified longest common sub-string (LCS) and the associated prefixes and suffixes, under the embodiment of Figure 10.
Figure 12 is a block diagram of a delta file including a concatenation of a series of records, under an embodiment.
Figure 13 is a block diagram of a delta file record, under the embodiment of Figure 12.
Figure 14 is a table including operation descriptions, under the embodiment of Figure 13.
Figures 15A, 15B, 15C and 15D show a summary table of operation codes along with associated fields, introduced under an embodiment. Figure 16 is a flow diagram of a byte-level file updating algorithm, under an embodiment.
In the drawings, the same reference numbers identify identical or substantially similar elements or acts. To easily identify the discussion of any particular element or act, the most significant digit or digits in a reference number refer to the Figure number in which that element is first introduced (e.g., element 106 is first introduced and discussed with respect to Figure 1).
Unless described otherwise below, the construction and operation ofthe various blocks and structures shown in the Figures are of conventional design. As a result, such blocks need not be described in further detail herein, because they will be understood by those skilled in the relevant art. Such further detail is omitted for brevity and so as not to obscure the detailed description ofthe invention. Any modifications necessary to the Figures can be readily made by one skilled in the relevant art based on the detailed description provided herein.
DETAILED DESCRIPTION
A byte-level file differencing and updating (FDU) algorithm, herein referred to as the FDU algorithm, is described in detail herein. Figure 1 is a block diagram showing file differencing and updating provided by the FDU algorithm of an embodiment. The FDU algorithm includes a differencing component and an updating component. The differencing component, referred to herein as the file differencing algorithm, generates a difference file in a first computer system from an original version and a new version of an electronic file. The updating component, referred to herein as the file updating algorithm, generates a copy ofthe new file on a second computer system using the difference file and the hosted copy ofthe original file. In the following description, numerous specific details are introduced to provide a thorough understanding of, and enabling description for, embodiments ofthe invention. One skilled in the relevant art, however, will recognize that the invention can be practiced without one or more ofthe specific details, or with other components, systems, etc. In other instances, well-known structures or operations are not shown, or are not described in detail, to avoid obscuring aspects ofthe invention. With reference to Figure 1, a first computer system 102 and a second computer system 104 communicate via a communication path 106. These computer systems 102 and 104 include any collection of computing devices operating together, as is known in the art. The computer systems 102 and 104 also include components within a larger computer system. The communication path 106 includes any medium by which files are communicated or transferred between the computer systems 102 and 104. Therefore, this path 106 includes wireless connections, wired connections, and hybrid wireless/wired connections. The communication path 106 also includes couplings or connections to networks including local area networks (LANs), metropolitan area networks (MANs), wide area networks (WANs), proprietary networks, interoffice or backend networks, and the Internet. Furthermore, the communication path 106 includes removable fixed mediums like floppy disks, hard disk drives, and CD-ROM disks, as well as telephone lines, buses, and electronic mail messages.
The first communication system 102 receives an original, or old, version 110 and a new version 112 of an electronic file. The new file 112 is generally an updated or revised version ofthe original file 110, but is not so limited. The electronic files 110 and 112 include software files including dynamic link library files, shared object files, embedded software components (EBSCs), firmware files, executable files, data files including hex data files, system configuration files, and files including personal use data, but are not so limited. Since any type of file can be regarded as a byte stream, hereafter a file can be described as a byte stream, depending the context.
The file differencing algorithm 114 receives the new file 112, compares it to the original file 110, and calculates the byte-level differences between the compared files, as described below. The file differencing algorithm 114 may also pre-process the original 110 and the new 112 files to reduce the sizes ofthe files prior to the calculation ofthe file differences. The file differencing algorithm 114 generates a difference file 116, referred to herein as a delta file, during the comparison.
Contents ofthe delta file 116 provide an efficient representation ofthe byte-level differences between the new and the original files. The delta file 116 includes meta-data along with actual data of replacement and/or insertion operations that represents the differences between the new or current version ofthe associated file and previous versions ofthe file, as described below. The file differencing algorithm 114 provides any differences between the original 110 and the new 112 files in the delta file 116 using a minimum number of bytes and a pre-defined format or protocol described below, thereby providing a delta file optimized in space.
The delta file 116 is transferred or transmitted to another computer system via the communication path 106. Prior to transfer, the delta file 116 may be compressed using compression techniques known in the art, but is not so limited. The file updating algorithm 118 hosted on the receiving computer system uses the delta file 116 along with the hosted original file 110 to generate or create a copy ofthe new file 112. This copy of the new file 112 is then used to update the original file 110 hosted on the client device that is targeted for revision or updating. Upon completion of this update process, the new file now stored on the second computer system is identical to the new file received in the first computer system.
The differences between an original file and a new file are typically smaller than the new file itself, leading to significant storage and transmission savings if the differences are transmitted and stored instead ofthe entire new byte stream. This is particularly important for mobile electronic devices hosting programs that are updated via connections that typically can be slow and expensive, for example wireless or cellular connections. The delta file described herein provides the differences between the new and the original files in a format that is up to 99% smaller than the new file, and this reduced file size provides numerous improvements over typical differencing techniques. One improvement is a reduction in bandwidth required for transmission ofthe delta file to the client device; the smaller file means less bandwidth is required for the transfer. Also, smaller files require less time for transmission and, therefore, decrease the probability that the file transfer will be interrupted and simultaneously reduce transmission errors in the received file. As for file security, transfer ofthe delta file instead ofthe entire new file eliminates piracy ofthe new file. All of these improvements increase customer satisfaction.
Figure 2 is a flow diagram for generation of a delta file, under an embodiment. Operation begins when a new file and an original file are received in a first processing system 202. Pre-processing operations are performed between the new file and the original file in order to identify common segments and simple patterns among contents of the two files 204. The pre-processing algorithm uses identified common segments and patterns to reduce the sizes ofthe new and original files. Thus, this pre-processing eliminates the need to perform difference calculations on common segments ofthe files, thereby increasing the efficiency ofthe difference calculation.
Following pre-processing, the byte-level differences are calculated between the new file and the original file 206. The calculated differences are coded using an operation array 208. Merging operations are applied to the operation array in order to reduce the overhead in delta file creation 210. The delta file is generated by writing the operation array into a file using a variable length integer format that minimizes the number of bytes required to define the differences between the files 212. This variable length integer format is described further below.
The delta file is then optimized to further reduce the file size, when possible 214. The optimization includes compression and adding checksum bits or bytes so that errors can be detected following transmission ofthe delta file to the client device. The optimized delta file is then provided as an output 216. The delta file of an embodiment is stored for future transfer or transmission to other computer systems hosting copies ofthe original file.
As described above, pre-processing operations are performed between the contents ofthe new file and the original file in order to identify common segments and simple patterns among contents ofthe two files. The knowledge of common segments and simple patterns is used to reduce the number of bytes on which the comparison is run, thereby resulting in an overall performance gain. Often, the new file is only slightly different from the original file like, for example, when the new file is used to fix a software bug, add a new feature, or enhance an existing feature. Therefore, an overall performance gain is realized because the cumulative time .required to perform less complex pre-processing operations along with differencing operations on a subset ofthe files is much less than the time required to perform differencing operations on the entire contents ofthe new and original files. This is especially true in cases involving only a single insertion or deletion. Therefore, pre-processing reduces the overall difference calculation time resulting in a performance gain. Each ofthe processes of delta file generation is detailed below.
Figure 3 is a flow diagram of a method of pre-processing files prior to performing a comparison between files, under an embodiment. The pre-processing includes operations to determine insertion content, determine deletion content, determine concatenations or special cases of insertion and deletion content, and write information to a file regarding these determinations.
With regard to determining insertion content 306, and following receipt ofthe new and original byte streams 302, the pre-processing algorithm of an embodiment identifies the longest common prefix and the longest common suffix ofthe original byte stream and the new byte stream 304. With reference to Figure 4, a comparison is next performed to determine if the original byte stream 402 is the prefix 406 ofthe new byte stream 404; if so then the difference is one insertion 408. The insertion meta-data and insertion content or data are written to the delta file. With reference to Figure 5, a comparison is also performed to determine if the original byte stream 502 is the suffix 506 ofthe new byte stream 504; if so then the difference is one insertion 508, and the insertion meta-data and content are written to the data file.
In determining deletion content 308, operation again begins by identifying the longest common prefix and the longest common suffix ofthe original and new byte streams. With reference to Figure 6, a comparison is next performed to determine if the new byte stream 604 is the prefix 606 ofthe original byte stream 602; if so then the difference is one deletion 608, and the deletion meta-data is written to a file. Further, with reference to Figure 7, a comparison is performed to determine if the new byte stream 704 is the suffix 706 ofthe original byte stream 702; if so then the difference is one deletion 708, and the deletion meta-data is written to a file.
As for concatenations, the special cases of insertion and deletion, the preprocessing algorithm of an embodiment begins by using the identified longest common prefix and suffix ofthe original and new byte streams. With reference to Figure 8, if the original byte stream 802 is the concatenation ofthe longest common prefix 806 and the longest common suffix 808, then there is an insertion 810 in the new byte stream 804 between the prefix 806 and suffix 808. The meta-data and content of this identified insertion are both written to a file. With reference to Figure 9, if the new byte stream 904 is the concatenation ofthe longest common prefix 906 and the longest common suffix 908, then there is only a deletion 910 in the original byte stream 902 between the prefix 906 and suffix 908, and the deletion meta-data is written to a data file.
In response to the operations above on the original and new byte streams to determine insertion and deletion content, the pre-processing algorithm returns additional information regarding the differences 310. This information includes, but is not limited to, information as to where the differences start in the two byte streams, and the sizes of the two sub-streams ofthe original byte streams without the longest common prefix and the longest common suffix.
As one example ofthe pre-processing of an embodiment, consider the original byte stream abcatsrst and the new byte stream abdailyrst. By eliminating the longest common prefix "ab" and the longest common suffix "rst," the two sub-streams remaining for processing by the file differencing algorithm are reduced to "cats" and "daily" respectively.
Following pre-processing operations, the file differencing algorithm calculates edit distances between the compared byte streams. The edit distance between two byte streams, as described by D. Gusfield in "Algorithms on Strings, Trees, and Sequences: Computer Science and Computational Biology," ("the Gusfield reference") Cambridge (1997), is the minimum number of edit operations needed to transform the original byte stream into the new byte stream. The edit operations of an embodiment include insertions, deletions and substitutions or replacements. The edit operations used to transform the original byte stream into the new byte stream are expressed with an operation array including the symbols "I" (one byte insertion), "D" (one byte deletion), "R" (one byte replacement), and "M" (one byte match). An example is now described.
For this example, the original byte stream is "vintner," the new byte stream is "writers," and the associated operation array generated during edit distance calculations is 'RIMDMDMMI." This operation is depicted as
I M D M D M M i n t n e r r i t e r
Applying the operation array to the original byte stream to generate the new byte stream begins with a replacement (R) ofthe first byte "v" ofthe original byte stream with a new byte "w" in the new byte stream. The second operation performed on the original byte stream is an insertion (I) of a new byte "r". The third element ofthe operation array indicates a match (M), so the original byte "i" is copied in the new byte stream. The fourth operation is a deletion (D), resulting in the deletion of byte "n" in the new byte stream. The fifth operation indicates another match (M), so the original byte "t" is copied in the new byte stream. The sixth operation is another deletion (D), resulting in the deletion of byte "n" in the new byte stream. The seventh operation is another match (M), so the original byte "e" is copied into the new byte stream. The eighth operation is yet another match (M), so the original byte "r" is copied into the new byte stream. The ninth operation performed on the original byte stream is an insertion (I) of a new byte "s" into the new byte stream.
The file differencing algorithm that generates the operation array under an embodiment is based on two algorithms known in the art. One of these algorithms is Hirschberg's linear-space optimal alignment algorithm, as described by D.S. Hirschberg in "A linear space algorithm for computing maximal common subsequences," Comm. ACM 18,6 (1975) 341-343. The other algorithm is Ukkonen's linear-time suffix tree algorithm, as described by E. Ukkonen in "On-line construction of suffix trees," ("the Ukkonen reference") Algorithmica 14(3), 249-260(1995).
The traditional dynamic programming strategy requires O(nm) time and O(nm) space, where n and m are the lengths ofthe original and new byte streams, respectively. Therefore, if the lengths are approximately 32K bytes, O(lG) bytes of memory are required to build the dynamic programming table in memory. But it is quite common that the limiting resources in byte stream difference calculation problems include both time and space. Daniel Hirschberg developed a practical space reduction method that works for many dynamic programming problems. The Hirschberg algorithm reduces the required space from O(nm) to O(min(n, m)) while only doubling the worst case time bound. If the size ofthe byte streams are approximately 1M bytes, only O(lM) bytes of working space is needed in memory and the recursive level of this divide-and-conquer scheme is approximately log2(lM) = 20, as described by T. Cormen, C. Leiserson, and R. Rivest in "Introduction to Algorithms," The MIT Press (1990). This is reasonable for current computing environments where available memory is up to 0(1 G) and default stack size is O(lM).
A suffix tree, or position tree, is a data structure that exposes the internal structures of a string by explicitly enumerating all its possible suffixes, as described in the Gusfield reference. The most important structure of interest in the context ofthe file differencing algorithm of an embodiment is the longest repeated sub-string in a stream. More specifically, it is the longest common sub-string (LCS) between two given byte streams. For example, "abc" is the LCS between "axababcdij" and "abiabc". A linear- time algorithm is described in the Ukkonen reference for constructing a suffix tree for any given string. Implementing the Ukkonen algorithm, however, involves several considerations.
The first consideration involves the fact that the byte stream is usually a binary file so, in most cases, all characters from 0 to 255 occur in the byte stream. This requires special attention be paid to the special marker used in the algorithm. The special marker is defined to be a character that does not occur in the byte stream. One method deals with this by using the location where this special marker is supposed to occur to modify the algorithm.
As for the second consideration, the purpose of using the Ukkonen algorithm is to find the LCS between two given byte streams. Therefore, a generalized suffix tree must be constructed by building a suffix tree for the concatenation ofthe two given byte streams with the addition ofthe special markers to terminate them.
In addressing the third consideration involved with use ofthe Ukkonen algorithm, the levels ofthe suffix tree depend on the size and structure ofthe given byte stream. Recursively traversing the suffix tree to build the tree, to collect key information, or to free the tree, can result in running out ofthe process stack, even if a large stack size (e.g., 64MB) is reserved. Therefore, the recursive tree traversing functions are decoded using a "while loop" instead of recursion.
A fourth consideration involves the edge-label compression scheme described in the Gusfield reference. This compression scheme is recommended for use in achieving linear space complexity; otherwise, processing of larger byte streams might exhaust the available system memory.
As described above, the Hirschberg algorithm can be used to compute the optimal edit distance between the original byte stream and the new byte stream in linear space and quadratic time. If the stream size is small, usually less than several kilobytes, the optimal edit distance can generally be calculated in a reasonable amount of time. However, if the stream size is not less than thousands of bytes, the time required for the Hirschberg algorithm to compute the optimal edit distance is so long (hours, days, and sometime months) as to make it impractical. Because the new byte stream is typically the modification ofthe original byte stream, the two byte streams will have many portions in common. Quick identification ofthe common portions ofthe byte streams allows the algorithms described herein to operate efficiently and quickly by focusing the difference calculations on smaller byte streams.
Figure 10 is a flow diagram 1000 of a file differencing algorithm, under an embodiment. The file differencing algorithm computes the edit distance between two input byte streams, and generates and saves the result in an operation array. The file differencing algorithm of an embodiment identifies the LCS between the original and the new byte streams since the LCS is the largest unmodified part in the original byte stream. This can be done in linear-time and linear-space using the Ukkonen algorithm. A divide- and-conquer strategy is then applied. Once the LCS is found, the old and new byte streams are divided into four smaller byte streams. This scheme is applied recursively until the sizes ofthe old and new byte streams are less than the size for which the Hirschberg algorithm can be invoked, at which point the Hirschberg algorithm is invoked to compute the edit distance between the byte streams. The results are recorded in a global operation array. The symbology of Figure 10 includes reference character "L" to represent the maximum number of bytes of a byte stream for which the Hirschberg algorithm can be invoked, e.g. 4096. Reference character "M" represents the maximum number of bytes in an input byte stream for which the difference calculation can be finished in a tolerable time, or something less than approximately two hours. The tolerable time is pre- specified. When an input byte stream exceeds M bytes, the file differencing algorithm will break it into portions, and the portions are halves under one embodiment, but are not so limited. The size M may be dozens of megabytes.
Continuing with a description of symbology, oi and o2h represent the first and second half of the original byte stream, or byte stream o, respectively, while n and n2h represent the first and second half of the new byte stream, or byte stream n, respectively. As such, these representations satisfy Oih+ 2h = o, and ni +n2h = n. The characters op and os represent the prefix and suffix of byte stream o, respectively, and satisfy op + LCS + os= o. The characters np and ns represent the prefix and suffix of byte stream n, respectively, and satisfy np + LCS + ns= o. In addition, "length(o)" represents the length ofthe byte stream o.
The following pseudo-code is provided as the high-level description of one example of that used by the file differencing algorithm. In this example, "o" represents the original byte stream, "n" represents the new byte stream, and "op_array" represents the operation array.
Procedure GETDIFF(o, n, op_array) Begin
If length(o) and lengthen) are zero, return;
If length(o) is zero, write I's into op_array length(n) times, return; If length(n) is zero, write D's into op_array length(o) times, return; If length(o) < L and length(n) < L, call Algorithm Hirschberg, return; If length(o) > M and length(n) > M, cut o into the first half om and the second half o2 ; cut n into the first half nm and the second half n2 ;
GETDIFF(oιh>h, op_array);
GETDIFF(θ2h,n2h, op_array); return; Call Algorithm Ukkonen to get the LCS; If no LCS exists and length(o) < length(n), write R's and Fs into op_array, where the number of
'R' is length(o), the number of T length(n)-length(o), return; else if no LCS exists and length(o) >= length(n), write R's and D's into op_array, where the number of
'R' is length(n), the number of 'D' length(o)-length(n), return; GETDIFF(op, np, op_array); Write M's into op_array length(LCS) times; GETDIFF(os,n„ op array); End
With reference to Figure 10, operation begins with receipt ofthe original and new byte streams by the file differencing algorithm, at block 1002. The file differencing algorithm determines, at block 1004, if the length of both input byte streams is equal to zero; if the lengths equal zero, then the procedure returns.
If at least one of both input byte streams is not empty, the file differencing algorithm evaluates the length ofthe byte streams separately, evaluating the length ofthe original byte stream at block 1006, and evaluating the length ofthe new byte stream at block 1008. When the length ofthe original byte stream equals zero it indicates that the new byte stream contains all new information. Therefore, the file differencing algorithm writes insertion operations ("I") into the operation array lengthen) times, at block 1106. The procedure then returns.
Operation, at block 1008, evaluates the scenario where the old byte stream is not empty while new byte stream is empty. When the length ofthe new byte stream equals zero it indicates that all data ofthe original byte stream is to be deleted. Therefore, the file differencing algorithm writes deletion operations ("D") into the operation array length(o) times, at block 1108. The procedure then returns.
Operation continues at block 1010 when both input byte streams have a length greater than zero, where the file differencing algorithm evaluates the length of both byte streams. If the length of each input byte stream is less than L, the maximum number of bytes of a byte stream for which the Hirschberg algorithm can be invoked, then the Hirschberg algorithm is called to calculate the edit distance between the two byte streams, at block 1110. The procedure then returns.
If at least the length of one ofthe input byte streams is greater than L then operation continues at block 1012. Here, the file differencing algorithm determines if the length of each input byte stream is greater than M, the maximum number of bytes in an input byte stream for which the difference calculation can be finished in a pre-specified or tolerable time. If each input byte stream exceeds M in length, then each byte stream is divided into two halves of approximately equal size, at block 1112. Operation continues by inputting each set of byte stream segments on/n^ and o2h/ n2h into the file differencing algorithm as input byte streams at blocks 1113 and 1114, respectively.
When the length ofthe input byte streams is greater than the maximum length for which the Hirschberg algorithm can be invoked and less than the maximum length for which the difference calculation can be finished in a tolerable time, the file differencing algorithm calls a linear-time routine to identify the LCS between the byte streams, at block 1014. The linear-time routine of an embodiment is the Ukkonen algorithm, but the embodiment is not so limited.
If no LCS exists between the two byte streams, at block 1016, then the lengths of the two byte streams are compared, at block 1116. When the length ofthe new byte stream exceeds that ofthe original byte stream, then replacement ("R") "and insertion ("I") operations are written into the operation array as appropriate, at block 1118, and the procedure returns. When the length ofthe original byte stream exceeds that ofthe new byte stream, then replacement ("R") and deletion ("D") operations are written into the operation array as appropriate, at block 1120, and the procedure returns.
When an LCS is identified between the two byte streams, at block 1016, and with reference to Figure 11, two byte sub-streams are identified for further evaluation, at block 1018. One sub-stream (op) includes prefix bytes to the LCS ofthe original byte stream 1102, while the other sub-stream (np) includes prefix bytes to the LCS ofthe new byte stream 1104. Operation returns to block 1002, where these two sub-streams (op and np) are provided as inputs to the file differencing algorithm for evaluation.
At block 1020, match ("M") operations are written to the operation array length(LCS) times. Furthermore, two additional byte sub-streams are identified for further evaluation, at block 1022. One sub-stream (os) includes suffix bytes to the LCS ofthe original byte stream 1102 while the other sub-stream (ns) includes suffix bytes to the LCS ofthe new byte stream 1104. Operation returns to block 1002, where these two additional sub-streams (os and ns) are provided as inputs to the file differencing algorithm for evaluation.
The flow diagram 1000 ofthe file differencing algorithm shows the algorithm to work recursively. If the byte streams are of an approximate size O(lM), the recursive levels are log2(lM) = 20. Therefore, it is safe to write recursively without running out of the process stack.
A space, time, and recursive level analysis ofthe file differencing algorithm of an embodiment is described here. For the space analysis, it is noted that both the Hirschberg and Ukkonen algorithms use linear space. Because the file differencing algorithm of an embodiment calls the Hirschberg and Ukkonen algorithms recursively, the total space complexity is linear with respect to the size ofthe input byte stream.
With regard to the time analysis, suppose L is the maximum size of byte streams under which the Hirschberg algorithm can be invoked and n is the size ofthe original input byte streams. In one worst case scenario, the file differencing algorithm calls the Hirschberg algorithm O(n/L) times and the Ukkonen algorithm O(log2n) times. Therefore, the total time for performance of routines ofthe file differencing algorithm is no more than
O(n / L) * O(L*L) + O(log2n) * O(n) = O(n*L).
As for the recursive analysis, the tree traversing functions ofthe file differencing algorithm should be implemented using a "while loop". For byte streams containing approximately 1M bytes, the recursive levels ofthe file differencing algorithm are approximately 20. If L is the maximum size ofthe byte streams for which the Hirschberg algorithm can be invoked, the recursive level ofthe Hirschberg algorithm is log2L. If L is less than 1M, the total recursive levels will be approximately 40. Therefore, the default stack size of O(lM), used on most UNIX and Windows platforms, is more than enough to support running ofthe file differencing algorithm.
The above analysis shows that the file differencing algorithm computes the edit distance in linear space using a default stack size. The computation time is O(n*L). If L=n, the file differencing algorithm degenerates to the Hirschberg algorithm and the optimal edit distance is computed. If L is very small (e.g., 1024) the file differencing algorithm runs in linear time and a quasi-optimal edit distance is computed. Thus, the file differencing algorithm is better in practice than those difference techniques previously known in the art.
After generating the operation array by which the original byte stream is transformed into the new byte stream, a process begins that generates a delta file from the operation array. The size ofthe delta file should be as small as possible, as described below. The delta file of an embodiment comprises a series of records, and each record includes meta-data along with content data where necessary. Consequently, the metadata is overhead of sorts, and this overhead should be reduced as much as possible to improve the efficiency ofthe difference process. To achieve this reduction, the following seven merging and indexing (M&I) techniques are applied in an embodiment to shrink the total meta-data size since the operation array only specifies byte level operations.
A first M&I technique scans the operation array in search of match operations. When single match operations are located they are replaced by substitution operations, because the match operations are special cases of substitution operations. This substitution is also performed on groups of match operations containing no more than three match operations in sequence. A sequence length of three operations is used because the minimum length of a meta-data sequence is three bytes. In this manner, a set of meta-data is enough to record the changes in this part instead of several operations. As an example, the operation array prior to application ofthe first M&I technique is 111 MMMDDMMMMMMRMMD.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 This array includes two sequences of match operations having a sequence length of three operations or less; a first sequence at positions 4-6 ofthe array, and a second sequence at positions 16 and 17 ofthe array. Following application ofthe first technique these sequences are replaced by sequences of replacement operations, and the operation array becomes
1 11 RRRDDMMMMMMRRRD.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
A second M&I technique searches the operation array for sequences ofthe same operation. This search looks for all operations except match ("M") operations. When these sequences are located they are merged into a single large operation that specifies the operation to be performed along with a length to indicate the number of bytes on which this operation is to be performed. For example, the operation array prior to application of this technique is
MMMMDDDDDDDDDDDDMMMM.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1920
This array contains a sequence of twelve deletion operations between two different sequences of match operations. This technique replaces the sequence of twelve deletion operations with the operation deletion_with_length. Thus, following application of this technique the operation array becomes
MMMMdeletion_with_length-MMMM,
1 2 3 4 17 18 19 20
where the "length" is specified as being equal to twelve (12).
The third M&I technique merges a sequence of insertion ("I") operations, deletion ("D") operations, and substitution ("R") operations to form one operation, when there is no match ("M") operation in the sequence. This technique includes two variations. A first variation is used when the number of insertion operations equals the number of deletion operations, in which the merged operation is a fixed length replacement operation having a specified length. Otherwise, the second variation is applied, a variable length replacement having two specified lengths, where the operation is specified as variable_length_replace. The first specified length provides the length ofthe sequence that is replacing the identified sequence (replacing length), while the second specified length provides the length ofthe sequence to be replaced (replaced length). For example, the operation array prior to application of this technique is
MMMMRI DDDDDDDDDDDDMMMMM. This array contains the sequence "RIDDDDDDDDDDDD." This sequence meets the criteria for application ofthe third M&I technique because it is a sequence of substitution, insertion, and deletion operations. The second variation is applied here because the number of insertion operations (one) is not equal to the number of deletion operations (twelve). Following application ofthe second variation the operation array becomes
MMMMvariable_length_replaceMMMMM, where the replacing length is two (the total number of one-byte replacement operations and one-byte insertion operations) and the replaced length is thirteen (the total number of one-byte replacement operations and one-byte deletion operations).
A fourth M&I technique is provided to take advantage of patterns in which fixed length sequences of replacement operations occur in more than one fixed length sequence of operations, for example match operations. The name ofthe new operation itself tells the length of replacement, associated with two parameters to tell the interval length and repeat times. This technique is most appropriate when the fixed length replacement in an interval is no more than 30 bytes. The operation array, for example, prior to application of this technique is
MMMMMRRMMMMRRMMMMRE-MMMMMII. This array is seen to include a sequence
RRMMMM that repeats three times. This sequence includes a two-byte sequence of replace operations along with the match operations. Thus, following application of this technique, the operation array becomes
MMMMM2_byte_fixed_length_repeat_replaceMII, where
2_byte_fixed_length_repeat_replace replaces
R-RMMMMRRMMMMRRMMMM, and the "length" is specified as six (total length of each replace/match sequence), while the "repeat" is three (each replace/match sequence is repeated three times).
Often, a fixed length sequence of replacement operations occurs among fixed length sequences of match operations. A fifth technique introduces a new operation to take advantage of this pattern. The name ofthe new operation provides the replacement length along with two parameters that specify the interval length and repeat times. An example is described now, where the operation array is
MMMMRRMMMMRR-MMMMRR-MMMMRRII. This array includes the sequence
RR repeated four times among fixed length sequences of match operations. Application of this technique produces the operation array
MMMM2_byte_fixed_length_int_repeat_replaceII, where the new operation
2_byte_fixed_length_int_repeat_replace replaces the sequence
RR-MMMMRRMMMMRRMMMMRR. The interval "length" in this example equals six (the length ofthe sequence "RRMMMM"), while the interval "repeat" is specified as four (the sequence "RR" repeats four times).
A sixth M&I technique includes putting all handled operations into a data structure, for example a hash table. When an operation is encountered in the operation array that previously occurred in the operation array, a new operation is introduced that operates to insert the previously encountered operation at the new location. The new operation is exact_copy_index_to, along with an offset parameter that indicates the location ofthe copy.
When the byte streams are executables, one instruction insertion or deletion causes the addresses ofthe subsequent instructions to shift a constant value. A seventh M&I technique introduces a new operation that takes advantage of this pattern. The new operation is address_repeat_shift, and the repeat times and interval length of this operation are associated with the operation as meta-data, while the constant value remains as real data.
In the communication environment, the size of data files transmitted to devices should be as small as possible in order to maximum efficiency in the transfer process and minimize errors associated with file transfer or transmission. Thus, following the merging and indexing ofthe operation array, the file differencing algorithm of an embodiment minimizes the size ofthe delta file by reducing the redundant information of the operation array during the writing ofthe operation array to the delta file. This reduction in redundant information is performed using a variable length integer format to write the operation array to the delta file, but the embodiment is not so limited. In addition to the variable length integer format, relative start addresses are used in the operation array to indicate where modifications to byte streams occur instead of absolute start addresses.
A description ofthe variable length integer format of an embodiment begins with a description of how integer values are stored in a delta file. The length ofthe byte stream representing an unsigned integer depends on the integer value. An integer with a value between 0 and 127 can be represented using one byte. If the integer value is between 128 and 16,383, the integer can be represented with two bytes. An integer value between 16,384 and 2,097,151 is represented with three bytes. An integer having a value greater than 2,097, 151 requires four or more bytes. For storage purposes, an integer value of an embodiment is converted into a character string ofthe form
CI I I I I I I CI I I I I I I ... CI I I I I I I,
1 2 3 4 5 6 7 8 1 2 3 4 5 6 7 8 1 2 3 4 5 6 7 8 where represents 8 bits of one byte. The first bit of a byte (the "C" bit) is referred to as a continuous bit. The continuous bit indicates whether more bytes follow the associated byte to be read as part ofthe current integer. Therefore, if C is a "1" then the following byte should be read as part ofthe current integer. If C is a "0" the integer ends with the current byte. Thus, this string format representing an unsigned integer is called a variable length integer format.
As described above with reference to communications systems, the size of files transmitted among devices, for example the delta file, should be as small as possible. Suppose there are 1000 integers, whose values are between 0 and 127, to be stored in the delta file. If four bytes are consumed for each integer, 4000 bytes are needed. In most cases, the integers used by the algorithms provided herein describe offsets, pattern repeat times, operating lengths, and other characteristics of byte stream differences. Therefore, the values of these integers are typically less than 16,383. Thus, on average approximately 1000 bytes are enough to store the typical integers used by the file differencing algorithm if the variable length integer format provided herein is used. The resulting savings of approximately 3000 bytes means that reservation of four bytes to represent each unsigned integer, regardless of integer value, is a waste. Use ofthe variable length integer format provided herein, thus, reduces the size ofthe space needed for integer storage in the delta file by 50% to 75%.
Figure 12 is a block diagram of a delta file 1200, under an embodiment. The delta file format generally includes a concatenation of a series of records 1202-1208.
Figure 13 is a block diagram of a delta file record 1300, under the embodiment of Figure 12. Figure 14 is a table including operation descriptions, under the embodiment of Figure 13. With reference to Figures 13 and 14, in this example, the format of each record is opcode + relative_start_addr + [other_meta_data] + [real_data]. The "+" symbol represents concatenation ofthe listed fields. The "opcode" record 1302 is one byte that provides the operation code.
The "relative_start_addr" record 1304 provides the relative start address where the current modification occurs. If this record 1304 is the first record then the "relative_start_addr" record 1304 represents the offset relative to the beginning ofthe new byte stream, otherwise it represents the difference between the current absolute start address and the absolute start address in the last record. With this scheme, it is easy to compute the absolute start address for the current modification. The advantage is that smaller integers are stored in the delta file instead of larger integers. Use ofthe variable length integer format, therefore, saves thousands of bytes when the delta file includes thousands of records.
The "other__meta_data" record 1306 represents any ofthe following fields, depending on the operation code, but is not so limited: operatingjbn 1306a, operated_len 1306b, repeat_times 1306c, interval_length 1306d, and delta_offset 1306e. The "real_data" record 1308 is the shift value for the opcode "address_repeat_shift," or the actual replacement or insertion data. The brackets "[ ]" indicate the included field is optional, depending on the operation code.
While up to 256 operation codes can be defined, a study ofthe patterns ofthe differences encountered among byte streams leads to introduction ofthe following operation codes in an embodiment. Figures 15A, 15B, 15C and 15D show a summary table of operation codes along with associated fields, introduced under an embodiment.
A record format with a brief description follows for each ofthe operation codes. INSERTION opcode: this is an insertion operation. The record format is: opcode + relative_start_addr + operating_len + real_data. The opcode is INSERTION while the "operating_len" and "real_data" fields provide the length ofthe insertion and the insertion data. The "operating_len" field is in the variable length integer format described above. If operating_len is no more than 10, the following opcodes are introduced to save 1 byte for each record.
ONE_BYTE_INSERTION,
TWO_BYTE_INSERTION,
THR_BYTE_INSERTION,
FOU_BYTE_INSERTION,
F-tV_BYTE_INSERTION,
SIX_BYTE_INSERTION,
SEV_BYTE_ΓNSERTION,
EIG_BYTE_INSERTION,
NIN_BYTE_INSERTION,
TENJBYTE NSERTION.
These are small-scale insertion operations (no more than 10 bytes). The record format is: opcode + relative_start_addr + real_data. The insertion length is implied by the opcode.
DELETION opcode: this is a deletion operation. The record format is: opcode + relative_start_addr + operated_len.
The opcode is DELETION while the "operated_len" field, in variable length integer format, indicates the length ofthe deletion. If operating_len is no more than 10, the following opcodes are introduced to save 1 byte for each record.
ONE_BYTE_DELETION,
TWO_BYTE_DELETION,
THR_BYTE_DELETION,
FOU_BYTE_DELETION,
FD JBYTEJDELETION,
SDCJBYTE_DELETION,
SEV_BYTE_DELETION,
EIG_BYTE_DELETION,
NIN_BYTE_DELETION,
TEN BYTE DELETION. These are small-scale deletion operations (no more than 10 bytes). The record format is: opcode + relative_start_addr. The deletion length is implied by the opcode.
REPLACEMENT opcode: this is a same length replacement operation. The record format is: opcode + relative_start_addr + operating_len + real_data.
The opcode is REPLACEMENT while the "operating en" and "real_data" fields indicate the length ofthe replacement and the replacement data. The "operating_len" field is in variable length integer format. If operating_len is no more than 20, the following opcodes are introduced to save 1 byte for each record.
ONE_BYTE_REPLACEMENT, TWO_BYTE_REPLACEMENT, THR_BYTE_REPLACEMENT, FOU_BYTE_REPLACEMENT, FIV_BYTE_REPLACEMENT, SIX_BYTE_REPLACEMENT, SEVJBYTE_REPLACEMENT, EIG_BYTE_REPLACEMENT, NIN_BYTE_REPLACEMENT, TEN_BYTE_REPLACEMENT; TI 1_BYTE REPLACEMENT; T12_BYTE REPLACEMENT; T13_BYTE REPLACEMENT; T14_BYTE REPLACEMENT; T15_BYTE REPLACEMENT; T16_BYTE REPLACEMENT; T17_BYTE REPLACEMENT; T18_BYTE REPLACEMENT; T19_BYTE REPLACEMENT; T20 BYTE REPLACEMENT.
These are small-scale replacement operations (no more than 20 bytes). The record format is: opcode + relative_start_addr + real_data. The replacement length is implied by the opcode.
VARIABLE LEN REPLACEMENT opcode: this is a variable length replacement operation. The record format is: opcode + relative_start_addr + operating_len + operatedjbn + real_data. The opcode is VARIABLE_LEN_REPLACEMENT while the "operating en," "operatedjbn" and "real_data" fields provide the replacing length, the replaced length, and the actual replacing data, respectively. The "operatingjen" and "operated_len" fields are in variable length integer format.
EXACT COPY INDEX TO opcode: this indicates that the current operation occurs somewhere previously in the byte stream. The record format is: opcode + relative_start_addr + delta_offset. The opcode is EXACT_COPY_INDEX_TO while the "delta_offset" field, invariable length integer format, is the offset in the delta file where the record ofthe copied operation is found.
WHOLE REPLACEMENT opcode: this is a whole replacement operation. The record format is: opcode + real_data. The opcode is WHOLE_REPLACEMENT. The "relative 3tart_addr" field does not appear here since it defaults to a value of "0". The "real_data" field is all the bytes in the new byte stream.
ADDRESS REPEAT SHIFT opcode: this is a multi-one-byte address shift operation. The record format is: opcode + relative_start_addr + repeat_times + interval_len + real_data. The opcode is ADDRESS JREPEAT 3HIFT while the "repeat imes" and "intervaljen" fields provide the repeat times and the interval length. The real_data includes the actual address shift, a one-byte character signaling the shift value. The "repeatjimes" and "intervaljen" fields are in variable length integer format.
SAME ADDRESS REPEAT SHIFT opcode: this is a multi-one-byte address shift operation, but the shift value is implied by previous ADDRESS_REPEAT _SHIFT record. Therefore one byte is saved comparing to previous record. The record format is: opcode + relative_start_addr + repeatjimes + intervaljen. The opcode is SAME__ADDRESS_REPEAT_SHIFT while the "repeatjimes" and "intervaljen" fields provide the repeat times and the interval length. The "repeatjimes" and "intervaljen" fields are in variable length integer format.
All other opcodes: the other opcodes take advantage of patterns of operations found in operation arrays, for example short length operation sequences occurring repeatedly in fixed length intervals. One example of such sequences includes
RRMMMMRRMMMMRRMMMM. The opcode used for this pattern is
TWO_BYTE_FIX_LEN_REPEAT_REPLACE, indicating a two-byte fixed length repeating sequence of replacement operations ("RR"). Another, example is the sequence
RRM-MMMRR-V1-MMMRRI. The opcode used for this pattern is
TWO_BYTE_FIX_LEN_REPEAT_REPLACE_END_NO_M, indicating a two byte fixed length repeating sequence of replacement operations ("RR"), where the sequence does not end with a match operation. With reference to these other operation codes and these examples, in each interval, the replacement length is no more than thirty bytes. The record format is opcode + relative_start_addr + repeatjimes + intervaljen + real_data. The "repeatjimes" and "intervaljen" fields provide the repeat times and the interval length. The "real_data" field is the concatenation ofthe replacement data in each interval. The "repeatjimes" and "intervaljen" fields are in the variable length integer format described above.
An example is presented below to illustrate delta file generation from two input byte streams, as described in detail above. In this example, the two input byte streams include an old byte stream and a new byte stream. The old byte stream is
55555121212deletl21212replacedl4141414141414fixlenreplace999999999, and the new byte stream is
55555insertionl21212121212REPLACING14141414141414FrXLENREPLACE
999999999.
The old and new byte streams are pre-processed, as described above, producing an old byte stream input to the file differencing algorithm that is
121212deletl21212replacedl4141414141414fixlenreplace, and a new byte stream input to the file differencing algorithm that is insertionl21212121212REPLACING14141414141414FrXLENREPLACE. The operation array corresponding to these two byte streams is
MMMRRJ RRRRRRRRRR.
Generation ofthe delta file proceeds, as described in detail above, and the resulting delta file includes four records. The first delta file record is opcode NIN_BYTE_INSERTION relative_start_addr 5 real_data insertion. This first record includes eleven bytes. The second delta file record is opcode FFvJBYTE JDELETION relative_start_addr 6, and includes two bytes. The third delta file record is opcode VARIABLE JLENJREPLACEMENT relative_start_addr 6 operatingjen 9 operatedjen 8 real data REPLACING. This third record includes thirteen bytes. The fourth delta file record is opcode T13_BYTE_REPLACEMENT relative_start_addr 23 real_data FFXLENREPLACE. This fourth delta file record includes fifteen bytes. Therefore, the total size of this delta file before compression is the sum total of each ofthe four delta file records, or forty-one bytes.
Following generation ofthe delta file, additional operations may be performed in an embodiment to further increase the efficiency of delta file transfer to another system. For example, compression may be used to further reduce the size ofthe delta file for transmission. Because the associated decompression module may be hosted on a processor-based device having limited resources, the compression algorithm used should be one that provides a file capable of being decompressed using an algorithm that executes as fast as possible on pre-allocated memory. That is, the decompression algorithm should not allocate memory dynamically. While compression does not always result in a further reduction in delta file size, the delta file uses specified bytes to indicate when the file is compressed.
The file differencing algorithm of an embodiment uses some mechanism such as checksum error correction coding to detect any corruption of a transmitted delta file, but is not so limited. One simple checksum scheme is as follows. The length ofthe checksum is one byte, and the checksum is placed at the end ofthe delta file. The checksum is the two's complement ofthe byte that represents the sum of all the bytes in the delta file except the last one. In this way, summing all the bytes in an error-free delta file provides a result equal to zero.
Following generation, delta files of an embodiment are stored for future downloading to other computer systems for use in updating copies of original files hosted on the other computer systems. Referring to Figure 1, once the delta file 116 is received via some transmission media 106 at the receiving computer system 104, the file updating algorithm 118 is called.
Figure 16 is a flow diagram for generating a new file using the corresponding original file and the delta file, under an embodiment. Upon receiving the original file and the delta file, at block 1602, the file updating algorithm checks the delta file for corruption or errors using basic techniques such as checksum, at block 1604. If the delta file is corrupt, an output error message is generated, at block 1614, and operation returns.
If the delta file is free of errors, the file updating algorithm determines whether the delta file is compressed, at block 1606. This determination is made using a designated byte or designated bytes ofthe delta file. If the delta file is compressed and the compression method is known, then the file updating algorithm decompresses the delta file. Following decompression the file updating algorithm determines whether the decompression was successful, at block 1616. If the decompression is not successfully completed, an output error message is generated, at block 1614, and operation returns. If the decompression is successfully completed, reading ofthe delta file begins, at block 1608.
As reading commences from the delta file, at block 1608, the file updating algorithm uses the pre-defined delta file format as protocol to parse and understand the differences implied in the delta file and creates the new version of file with 100% accuracy. As each record ofthe delta file is read, the file updating algorithm determines whether additional records are available for reading from the delta file, at block 1610. If additional records are available and read, the file updating algorithm checks the validity ofthe opcode and the associated fields ofthe record, at block 1618. When the opcode or any ofthe additional fields are deemed to be invalid, or if any errors are encountered in the updating process such as an unknown opcode, an output error message is generated to signal an update failure, at block 1614, and operation returns.
When the opcodes and associated fields are valid, the file updating algorithm generates the corresponding portion ofthe new file, at block 1620; remaining records of the delta file are then read, at block 1610. When no additional records remain to be read from the delta file the new file is provided, at block 1612, and operation returns.
As an example, a description ofthe file updating algorithm is as follows:
Procedure GETUPDATE(ojptr, njptr, deltajile) Begin
If delta Jile is corrupted, return the error; If delta ile is compressed, do de-compressing; Set delta_offset = 0;
While (delta offset < delta_file Jength) { Get opcode; Based on the opcode, do the corresponding operation including adjusting delta_offset, ojptr, n_ptr; If any error encounters, return the error;
}
Output new version file; End
In this example ofthe file updating algorithm, ojptr represents the pointer pointing to the location where the old version of a file is residing, while the η_ptr represents the pointer pointing to the storage location where the new version of a file is going to be saved. Deltajile represents the delta file received through some transmission media. Deltajile Jength represents the length ofthe delta file if it is not compressed, or the uncompressed length of a compressed delta file.
The file updating algorithm of an embodiment works on pre-allocating memory. Further, the file updating algorithm functions very fast on any resource-limited computing device.
As an example, the computing devices receiving and using the delta file may be client devices that host corresponding software applications in need of updating, for example cellular telephones, mobile electronic devices, mobile communication devices, personal digital assistants, and other processor-based devices. This support is provided for all mobile device software ranging from firmware to embedded applications by enabling carriers and device manufacturers to efficiently distribute electronic file content and applications via their wireless infrastructure.
One example of systems that benefit from use ofthe FDU algorithms includes systems using wired serial connections to transfer the delta file from a device hosting the file differencing algorithm to a device hosting the file updating algorithm. These systems typically have slow transfer rates (currently about 192 kbits/second). Because the transfer rates are slow, a reduction in the size ofthe delta file is a way to realize faster transfer times. Thus, use ofthe FDU algorithms in these serial transfer systems increases user satisfaction.
Another example of systems that benefit from use ofthe FDU algorithms includes wireless systems using radio communications to transfer the delta file from a device hosting the file differencing algorithm to a device hosting the file updating algorithm. While suffering from low reliability associated with the wireless connections, these systems also have slow transfer rates (currently about 9.6 to 64 kbits/second). The use of a smaller delta file in these systems provides several advantages. For example, the smaller file size results in a faster delta file transfer time. The faster transfer time, while saving time for the device user, reduces the opportunity for the introduction of errors into the delta file, thereby increasing system reliability. Also, with cellular communications, the reduced transfer time results in a cost savings for the consumer who is typically charged by the minute for service.
As another advantage, the smaller delta file reduces the bandwidth required to transfer the delta files to client devices. The reduced bandwidth allows for the support of more client devices via the allocated channels. As with the reduced transfer time, this too results in a reduction in operating costs for the wireless service provider.
The algorithms described above are for use with systems for updating electronic files, wherein the system for updating electronic files comprises byte-level file differencing and updating (FDU) algorithms. The file differencing algorithm ofthe FDU algorithms is hosted on a first device, and the file differencing algorithm: receives two byte streams including byte streams corresponding to an original file and a new file, wherein the new file includes updated and revised versions ofthe original file; determines a longest common sub-string (LCS) between the two byte streams and divides each ofthe two byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determines an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size and determines a byte-level difference between each ofthe corresponding sub-streams; defines a protocol for structuring a delta file by using a set of operation codes and a variable length integer format to eliminate redundant information in the delta file; generates the delta file including an operation array that codes the determined byte-level differences, wherein generating comprises merging operations ofthe operation array to reduce an amount of meta-data; and transfers the delta file to a second device via at least one coupling.
The file updating algorithm ofthe FDU algorithms is hosted on a second device ofthe system, and the file updating algorithm: receives the delta file from the first device via the at least one coupling; generates a copy ofthe new file using the delta file and a hosted original file; and updates the original file in the second device using the copy.
The first device of an embodiment is a processor-based device accessible by at least one provider of software running on the second device.
The second device of an embodiment is at least one processor-based device selected from among personal computers, portable computing devices, cellular telephones, portable communication devices, and personal digital assistants.
The coupling among devices ofthe system of an embodiment is selected from among wireless connections, wired connections, hybrid wireless/wired connections, and couplings to networks including local area networks (LANs), metropolitan area networks (MANs), wide area networks (WANs), proprietary networks, backend networks, the Internet, and removable fixed mediums including floppy disks, hard disk drives, and CD- ROM disks, as well as telephone lines, buses, and electronic mail messages.
The original and new files comprise software files including dynamic link library files, shared object files, embedded software components (EBSCs), firmware files, executable files, data files including hex data files, system configuration files, and files including personal use data.
The system of an embodiment further comprises at least one server of a communication service provider coupled among the first and second devices, wherein the at least one server: receives the delta file from the first device; generates a message to the second device in response to receipt ofthe delta file, wherein the message informs a user ofthe second device ofthe availability of an update to at least one electronic file hosted on the second device; receives a request for the update from the user; and provides the delta file to the second device in response to request. The file differencing and updating algorithms described above are for use with an apparatus for updating electronic files. The apparatus includes at least one processing device configured to perform byte-level file differencing and updating. The apparatus comprises, but is not limited to: means for receiving two byte streams including a byte stream corresponding to an original file and a byte stream corresponding to a new file; means for determining a longest common sub-string (LCS) between the two received byte streams; means for dividing each ofthe two received byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; means for recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size; means for determining a byte-level difference between each ofthe sub-streams, wherein byte-level differences are determined between the original file and the new file; means for generating an operation array that codes the determined byte-level differences; means for optimizing the operation array by merging operations to reduce file meta-data; and means for generating a delta file by writing the optimized operation array using a variable length integer format.
The file differencing and updating algorithms described above are for use with an apparatus for updating electronic files. The apparatus includes at least one processing device configured to perform byte-level file differencing and updating. The apparatus comprises, but is not limited to: means for receiving a delta file, means for generating a copy ofthe new file using the delta file; and means for updating the original file in a second device using the copy. Generation ofthe delta file comprises, but is not limited to: determining a longest common sub-string (LCS) between two byte streams including a byte stream corresponding to an original file and a byte stream corresponding to a new version ofthe original file; dividing each ofthe two byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size; determining a byte-level difference between each ofthe corresponding sub-streams; and generating the delta file by coding the byte- level differences in an operation array, merging at least one operation ofthe operation array to reduce an amount of meta-data, and writing the operation array using a variable length integer format.
The file differencing and updating algorithms described above comprise methods for performing byte-level file differencing. The methods of an embodiment comprise, but are not limited to: identifying a longest common sub-string (LCS) between two received byte streams, wherein the byte streams include a byte stream corresponding to an original file and a byte stream corresponding to a new file version ofthe original file; dividing each ofthe two received byte streams into sub-streams, wherein a first sub- stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size or an LCS is absent; determining a byte-level difference between each ofthe corresponding sub-streams; generating an operation array that codes the determined byte-level differences, wherein generating includes merging operations ofthe operation array to reduce an amount of meta-data; and writing the operation array to a delta file, wherein writing comprises merging operations ofthe operation array to reduce an amount of meta-data and using a protocol for structuring the delta file by using a set of operation codes and a variable length integer format to eliminate redundant information in the delta file.
Writing the operation array of an embodiment further comprises using relative start addresses to identify locations of byte stream modifications.
The variable length integer format of an embodiment uses one bit of a byte to indicate whether a following byte is read as part of an integer.
The delta file format of an embodiment comprises a concatenation of a series of records selected from among an operation code, a relative start address ofthe new file at which the operation code is to be applied, and data of an insertion or replacement to the original file where necessary.
The file differencing and updating algorithms described above comprise a method for performing byte-level file differencing that further comprises compressing the delta file and applying error correction coding to the delta file.
The file differencing and updating algorithms described above comprise a method for performing byte-level file differencing that further comprises halving each ofthe two byte streams upon receiving the byte streams and determining that the byte streams are longer than a maximum specified size.
The file differencing and updating algorithms described above comprise a method for performing byte-level file differencing that further comprises, in the absence of an LCS between two byte streams or between two sub-streams, writing replacement operations and deletion operations into appropriate locations ofthe operation array when a length ofthe byte stream corresponding to the new file is less than a length ofthe byte stream corresponding to the original file.
The file differencing and updating algorithms described above comprise a method for performing byte-level file differencing that further comprises, in the absence of an LCS between two byte streams or between two sub-streams, writing replacement operations and insertion operations into appropriate locations ofthe operation array when a length ofthe byte stream corresponding to the new file is greater than a length ofthe byte stream corresponding to the original file.
The file differencing and updating algorithms described above comprise a method for performing byte-level file differencing wherein merging further comprises: locating short sequences of match operations in the operation array, wherein the short sequences include three or less sequential match operations; and replacing the match operations of the short sequence with substitution operations.
The file differencing and updating algorithms described above comprise a method for performing byte-level file differencing wherein merging further comprises: locating sequences of operations other than match operations in the operation array; and replacing the located sequences with a single operation specifying a type ofthe operation and a length ofthe sequence.
The file differencing and updating algorithms described above comprise a method for performing byte-level file differencing wherein merging further comprises: locating sequences including at least one combination of insertion, deletion, and substitution operations; and replacing the sequences with a single variable length replacement operation.
The file differencing and updating algorithms described above comprise methods for performing byte-level file differencing wherein merging further comprises: locating sequences including an equal number of insertion and deletion operations; and replacing the sequences with a single fixed length replacement operation.
The file differencing and updating algorithms described above comprise methods for performing byte-level file differencing wherein merging further comprises: locating a unit of operations that repeats in a pattern, wherein the unit includes a fixed-length sequence of replacement operations and a fixed-length sequence of another type of operation; and replacing the repeating unit with a single operation specifying a length of the sequence of replacement operations, a length ofthe unit, and a number of times the unit repeats in the pattern.
The file differencing and updating algorithms described above comprise methods for performing byte-level file differencing wherein merging further comprises: placing operations appropriate to the operation array into a hash table; and using a single copy operation including an offset parameter, wherein the copy operation inserts operations at the appropriate locations in the operation array using information ofthe hash table.
The file differencing and updating algorithms described above comprise methods for performing byte-level file differencing, wherein the pre-specified size is approximately 4096 bytes, but the embodiment is not so limited.
The file differencing and updating algorithms described above comprise methods for generating a difference file between electronic files. The methods for generating difference files of an embodiment comprise, but are not limited to: receiving byte streams including an original byte stream and a new byte stream; determining a size of each ofthe byte streams; computing a longest common sub-string (LCS) between the byte streams using a linear-time analysis when each ofthe byte streams is of a first size; generating at least one prefix byte stream set from each ofthe byte streams, wherein each prefix byte stream set includes bytes preceding the LCS; generating at least one suffix byte stream set from each ofthe byte streams, wherein each suffix byte stream set includes bytes following the LCS; recursively determining a size, computing the LCS, and generating at least one prefix and at least one suffix byte stream set for each ofthe generated prefix and suffix byte stream sets until the size ofthe generated prefix and suffix byte stream sets is less than a second size; determining an edit distance between bytes of each ofthe generated prefix byte stream sets and between bytes of each ofthe generated suffix byte stream sets, wherein the edit distance is a minimum number of edit operations to transform the original byte stream into the new byte stream; and generating a delta file comprising an operation array that includes information ofthe edit distance between the byte streams.
The method for generating difference files of an embodiment further comprises reducing a size ofthe delta file by: applying at least one merging and indexing operation to the operation array to reduce an amount of meta-data; and writing the operation array using a variable length integer format, wherein redundant information ofthe operation array is reduced.
The file differencing and updating algorithms described above comprise methods for performing byte-level file differencing and updating. The methods of an embodiment comprise, but are not limited to: receiving two byte streams in a first system, wherein the two byte streams include byte streams corresponding to both an original file and a new file; determining a longest common sub-string (LCS) between the two byte streams and dividing each ofthe two byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre- specified size and determining a byte-level difference between each ofthe corresponding sub-streams; generating a delta file including an operation array that codes the determined byte-level differences, wherein generating comprises merging at least one operation ofthe operation array to reduce an amount of meta-data and writing the operation array using a variable length integer format; transferring the delta file to a second system; generating a copy ofthe new file in the second system using the delta file; and updating the original file in the second system using the copy ofthe new file.
The file differencing and updating described above includes computer readable medium including executable instructions which, when executed in a processing system, performs byte-level file differencing and updating by: determining a longest common sub-string (LCS) between two received byte streams, wherein the byte streams include a byte stream corresponding to an original file and a byte stream corresponding to a new file version ofthe original file; dividing each ofthe two received byte streams into sub- streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size; determining a byte-level difference between each ofthe corresponding sub-streams; generating an operation array that codes the determined byte-level differences, wherein generating includes merging at least one operation ofthe operation array to reduce an amount of meta-data; and writing the operation array to a delta file using a variable length integer format.
Unless the context clearly requires otherwise, throughout the description and the claims, the words "comprise," "comprising," and the like are to be construed in an inclusive sense as opposed to an exclusive or exhaustive sense; that is to say, in a sense of "including, but not limited to." Words using the singular or plural number also include the plural or singular number respectively. Additionally, the words "herein," "hereunder," and words of similar import, when used in this application, shall refer to this application as a whole and not to any particular portions of this application.
The above description of illustrated embodiments ofthe invention is not intended to be exhaustive or to limit the invention to the precise form disclosed. While specific embodiments of, and examples for, the invention are described herein for illustrative purposes, various equivalent modifications are possible within the scope ofthe invention, as those skilled in the relevant art will recognize. The teachings ofthe invention provided herein can be applied to other processing systems and communication systems, not only for the FDU algorithms described above.
The elements and acts ofthe various embodiments described above can be combined to provide further embodiments. These and other changes can be made to the invention in light ofthe above detailed description.
All ofthe above references are incorporated herein by reference. Aspects ofthe invention can be modified, if necessary, to employ the systems, functions and concepts of the various patents and applications described above to provide yet further embodiments ofthe invention.
In general, in the following claims, the terms used should not be construed to limit the invention to the specific embodiments disclosed in the specification and the claims, but should be construed to include all processing systems that operate under the claims to provide a method for file differencing. Accordingly, the invention is not limited by the disclosure, but instead the scope ofthe invention is to be determined entirely by the claims.
While certain aspects ofthe invention are presented below in certain claim forms, the inventors contemplate the various aspects ofthe invention in any number of claim forms. For example, while only one aspect ofthe invention is recited as embodied in computer-readable medium, other aspects may likewise be embodied in computer- readable medium. Accordingly, the inventors reserve the right to add additional claims after filing the application to pursue such additional claim forms for other aspects ofthe invention.

Claims

CLAIMSWhat we claim is:
1. A system for updating electronic files comprising byte-level file differencing and updating (FDU) algorithms, wherein the file differencing algorithm ofthe FDU algorithms is hosted on a first device, the file differencing algorithm: receiving two byte streams including byte streams corresponding to an original file and a new file, wherein the new file includes updated and revised versions ofthe original file; determining a longest common sub-string (LCS) between the two byte streams and divides each ofthe two byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size and determines a byte-level difference between each ofthe corresponding sub-streams; defining a protocol for structuring a delta file by using a set of operation codes and a variable length integer format to eliminate redundant information in the delta file; generating the delta file including an operation array that codes the determined byte-level differences, wherein generating comprises merging operations ofthe operation array to reduce an amount of meta-data; transferring the delta file to a second device via at least one coupling.
2. The system of claim 1, wherein the file updating algorithm ofthe FDU algorithms is hosted on a second device, the file updating algorithm: receiving the delta file from the first device via the at least one coupling; generating a copy ofthe new file using the delta file and a hosted original file; updating the original file in the second device using the copy.
3. The system of claim 1, wherein the first device is a processor-based device accessible by at least one provider of software running on the second device.
4. The system of claim 1, wherein the second device is at least one processor-based device selected from among personal computers, portable computing devices, cellular telephones, portable communication devices, and personal digital assistants.
5. The system of claim 1, wherein the at least one coupling is selected from among wireless connections, wired connections, hybrid wireless/wired connections, and couplings to networks including local area networks (LANs), metropolitan area networks (MANs), wide area networks (WANs), proprietary networks, backend networks, the Internet, and removable fixed mediums including floppy disks, hard disk drives, and CD- ROM disks, as well as telephone lines, buses, and electronic mail messages.
6. The system of claim 1, wherein the original and new files comprise software files including dynamic link library files, shared object files, embedded software components (EBSCs), firmware files, executable files, data files including hex data files, system configuration files, and files including personal use data.
7. The system of claim 1, further comprising at least one server of a communication service provider coupled among the first and second devices, wherein the at least one server: receives the delta file from the first device; generates a message to the second device in response to receipt ofthe delta file, wherein the message informs a user ofthe second device ofthe availability of an update to at least one electronic file hosted on the second device; receives a request for the update from the user; and provides the delta file to the second device in response to request.
8. A method for performing byte-level file differencing, comprising: identifying a longest common sub-string (LCS) between two received byte streams, wherein the byte streams include a byte stream corresponding to an original file and a byte stream corresponding to a new file version ofthe original file; dividing each ofthe two received byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size or an LCS is absent; determining a byte-level difference between each ofthe corresponding sub- streams; generating an operation array that codes the determined byte-level differences, wherein generating includes merging operations ofthe operation array to reduce an amount of meta-data; and writing the operation array to a delta file, wherein writing comprises merging operations ofthe operation array to reduce an amount of meta-data and using a protocol for structuring the delta file by using a set of operation codes and a variable length integer format to eliminate redundant information in the delta file.
9. The method of claim 8, wherein writing the operation array further comprises using relative start addresses to identify locations of byte stream modifications.
10. The method of claim 8, wherein the variable length integer format uses one bit of a byte to indicate whether a following byte is read as part of an integer.
11. The method of claim 8, wherein the delta file format comprises a concatenation of a series of records selected from among an operation code, a relative start address ofthe new file at which the operation code is to be applied, and data of an insertion or replacement to the original file where necessary.
12. The method of claim 8, further comprising: compressing the delta file; and applying error correction coding to the delta file.
13. The method of claim 8, further comprising halving each ofthe two byte streams upon receiving the byte streams and determining that the byte streams are longer than a maximum specified size.
14. The method of claim 8, further comprising, in the absence of an LCS between two byte streams or between two sub-streams, writing replacement operations and deletion operations into appropriate locations ofthe operation array when a length ofthe byte stream corresponding to the new file is less than a length ofthe byte stream corresponding to the original file.
15. The method of claim 8, further comprising, in the absence of an LCS between two byte streams or between two sub-streams, writing replacement operations and insertion operations into appropriate locations ofthe operation array when a length ofthe byte stream corresponding to the new file is greater than a length ofthe byte stream corresponding to the original file.
16. The method of claim 8, wherein merging further comprises: locating short sequences of match operations in the operation array, wherein the short sequences include three or less sequential match operations; and replacing the match operations ofthe short sequence with substitution operations.
17. The method of claim 8, wherein merging further comprises: locating sequences of operations other than match operations in the operation array; and replacing the located sequences with a single operation specifying a type ofthe operation and a length ofthe sequence.
18. The method of claim 8, wherein merging further comprises: locating sequences including at least one combination of insertion, deletion, and substitution operations; and replacing the sequences with a single variable length replacement operation.
19. The method of claim 8, wherein merging further comprises: locating sequences including an equal number of insertion and deletion operations; and replacing the sequences with a single fixed length replacement operation.
20. The method of claim 8, wherein merging further comprises: locating a unit of operations that repeats in a pattern, wherein the unit includes a fixed-length sequence of replacement operations and a fixed-length sequence of another type of operation; and replacing the repeating unit with a single operation specifying a length ofthe sequence of replacement operations, a length ofthe unit, and a number of times the unit repeats in the pattern.
21. The method of claim 8, wherein merging further comprises: placing operations appropriate to the operation array into a hash table; and using a single copy operation including an offset parameter, wherein the copy operation inserts operations at the appropriate locations in the operation array using information ofthe hash table.
22. The method of claim 8, wherein the pre-specified size is approximately 4096 bytes.
23. A method for generating a difference file between electronic files, comprising: receiving byte streams including an original byte stream and a new byte stream; determining a size of each ofthe byte streams; computing a longest common sub-string (LCS) between the byte sfreams using a linear-time analysis when each ofthe byte streams is of a first size; generating at least one prefix byte sfream set from each ofthe byte streams, wherein each prefix byte sfream set includes bytes preceding the LCS; generating at least one suffix byte stream set from each ofthe byte streams, wherein each suffix byte stream set includes bytes following the LCS; recursively determining a size, computing the LCS, and generating at least one prefix and at least one suffix byte stream set for each ofthe generated prefix and suffix byte stream sets until the size ofthe generated prefix and suffix byte stream sets is less than a second size; determining an edit distance between bytes of each ofthe generated prefix byte stream sets and between bytes of each ofthe generated suffix byte stream sets, wherein the edit distance is a minimum number of edit operations to transform the original byte stream into the new byte stream; and generating a delta file comprising an operation array that includes information of the edit distance between the byte streams.
24. The method of claim 23, further comprising reducing a size ofthe delta file, comprising: applying at least one merging and indexing operation to the operation array to reduce an amount of meta-data; and writing the operation array using a variable length integer format, wherein redundant information ofthe operation array is reduced.
25. A method for performing byte-level file differencing and updating, comprising: receiving two byte streams in a first system, wherein the two byte streams include byte streams corresponding to both an original file and a new file; determining a longest common sub-string (LCS) between the two byte streams and dividing each ofthe two byte sfreams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size and determining a byte-level difference between each ofthe corresponding sub-streams; generating a delta file including an operation array that codes the determined byte-level differences, wherein generating comprises merging at least one operation of the operation array to reduce an amount of meta-data and writing the operation array using a variable length integer format; transferring the delta file to a second system; generating a copy ofthe new file in the second system using the delta file; updating the original file in the second system using the copy ofthe new file.
26. An apparatus including at least one processing device configured to perform byte- level file differencing and updating, comprising: means for receiving two byte streams including a byte stream corresponding to an original file and a byte stream corresponding to a new file; means for determining a longest common sub-string (LCS) between the two received byte streams; means for dividing each ofthe two received byte sfreams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS; means for recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size; means for determining a byte-level difference between each ofthe sub-streams, wherein byte-level differences are determined between the original file and the new file; means for generating an operation array that codes the determined byte-level differences; means for optimizing the operation array by merging operations to reduce file meta-data; and means for generating a delta file by writing the optimized operation array using a variable length integer format.
27. An apparatus including at least one processing device configured to perform byte- level file differencing and updating, comprising: means for receiving a delta file, wherein generation ofthe delta file comprises, determining a longest common sub-string (LCS) between two byte sfreams including a byte stream corresponding to an original file and a byte sfream corresponding to a new version ofthe original file, dividing each ofthe two byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-stream is a suffix to the respective LCS, recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size, determining a byte-level difference between each ofthe corresponding sub-streams, generating the delta file by coding the byte-level differences in an operation array, merging at least one operation ofthe operation array to reduce an amount of meta-data, and writing the operation array using a variable length integer format; means for generating a copy ofthe new file using the delta file; and means for updating the original file in a second device using the copy.
28. A computer readable medium including executable instructions which, when executed in a processing system, performs byte-level file differencing and updating by: determining a longest common sub-string (LCS) between two received byte streams, wherein the byte streams include a byte stream corresponding to an original file and a byte stream corresponding to a new file version ofthe original file; dividing each ofthe two received byte streams into sub-streams, wherein a first sub-stream is a prefix and a second sub-sfream is a suffix to the respective LCS; recursively determining an LCS and dividing each sub-stream until a size ofthe sub-streams is less than a pre-specified size; determining a byte-level difference between each ofthe corresponding sub- streams; generating an operation array that codes the determined byte-level differences, wherein generating includes merging at least one operation ofthe operation array to reduce an amount of meta-data; and writing the operation array to a delta file using a variable length integer format.
PCT/US2003/014903 2002-05-13 2003-05-12 Byte-level file differencing and updating algorithms WO2003096211A1 (en)

Priority Applications (3)

Application Number Priority Date Filing Date Title
AU2003241421A AU2003241421A1 (en) 2002-05-13 2003-05-12 Byte-level file differencing and updating algorithms
JP2004504132A JP4364790B2 (en) 2002-05-13 2003-05-12 Byte-level file difference detection and update algorithm
EP03731156A EP1550047A4 (en) 2002-05-13 2003-05-12 Byte-level file differencing and updating algorithms

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US10/146,545 2002-05-13
US10/146,545 US6925467B2 (en) 2002-05-13 2002-05-13 Byte-level file differencing and updating algorithms

Publications (1)

Publication Number Publication Date
WO2003096211A1 true WO2003096211A1 (en) 2003-11-20

Family

ID=29400475

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2003/014903 WO2003096211A1 (en) 2002-05-13 2003-05-12 Byte-level file differencing and updating algorithms

Country Status (5)

Country Link
US (2) US6925467B2 (en)
EP (1) EP1550047A4 (en)
JP (1) JP4364790B2 (en)
AU (1) AU2003241421A1 (en)
WO (1) WO2003096211A1 (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1754322A1 (en) * 2004-06-10 2007-02-21 Samsung Electronics Co., Ltd. Apparatus and method for efficient generation of delta files for over-the-air upgrades in a wireless network
US9043275B2 (en) 2011-08-30 2015-05-26 International Business Machines Corporation Data synchronization using string matching
CN105589838A (en) * 2015-12-24 2016-05-18 中国电子科技集团公司第三十三研究所 Electronic official document trace reserving method based on file comparison

Families Citing this family (148)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20030182414A1 (en) 2003-05-13 2003-09-25 O'neill Patrick J. System and method for updating and distributing information
US7409685B2 (en) 2002-04-12 2008-08-05 Hewlett-Packard Development Company, L.P. Initialization and update of software and/or firmware in electronic devices
US8479189B2 (en) * 2000-11-17 2013-07-02 Hewlett-Packard Development Company, L.P. Pattern detection preprocessor in an electronic device update generation system
US6925467B2 (en) * 2002-05-13 2005-08-02 Innopath Software, Inc. Byte-level file differencing and updating algorithms
US7367027B1 (en) * 2002-08-22 2008-04-29 Hewlett-Packard Development Company, L.P. System for generating efficient and compact update packages
US6836657B2 (en) * 2002-11-12 2004-12-28 Innopath Software, Inc. Upgrading of electronic files including automatic recovery from failures and errors occurring during the upgrade
AU2003279086A1 (en) * 2002-09-30 2004-04-23 Insignia Solutions Plc Efficient system and method for updating a memory device
US7096311B2 (en) 2002-09-30 2006-08-22 Innopath Software, Inc. Updating electronic files using byte-level file differencing and updating algorithms
US7194728B1 (en) * 2002-11-18 2007-03-20 Bmc Software, Inc. System and method for packaging updates
US7984435B2 (en) * 2002-11-13 2011-07-19 Hewlett-Packard Development Company, L.P. Update system employing reference software to reduce number of update packages
US7320010B2 (en) * 2002-11-18 2008-01-15 Innopath Software, Inc. Controlling updates of electronic files
US7844734B2 (en) * 2002-11-18 2010-11-30 Innopath Software, Inc. Dynamic addressing (DA) using a centralized DA manager
US20040098421A1 (en) * 2002-11-18 2004-05-20 Luosheng Peng Scheduling updates of electronic files
US7003534B2 (en) * 2002-11-18 2006-02-21 Innopath Software, Inc. Generating difference files using module information of embedded software components
US20040098361A1 (en) * 2002-11-18 2004-05-20 Luosheng Peng Managing electronic file updates on client devices
US7007049B2 (en) * 2002-11-18 2006-02-28 Innopath Software, Inc. Device memory management during electronic file updating
US7099884B2 (en) * 2002-12-06 2006-08-29 Innopath Software System and method for data compression and decompression
US8356019B1 (en) * 2002-12-11 2013-01-15 Altera Corporation Method and apparatus for utilizing patterns in data to reduce file size
US7904432B2 (en) * 2003-01-24 2011-03-08 Hewlett-Packard Development Company, L.P. Compressed data structure for extracted changes to a database and method of generating the data structure
JP4153324B2 (en) * 2003-01-31 2008-09-24 松下電器産業株式会社 DIFFERENTIAL DATA GENERATION DEVICE AND METHOD, UPDATED DATA RESTORE DEVICE AND METHOD, AND PROGRAM
US7689981B1 (en) * 2003-02-28 2010-03-30 Hewlett-Packard Development Company, L.P. Mobile handset with efficient interruption point detection during a multiple-pass update process
US20040230965A1 (en) * 2003-02-28 2004-11-18 Harri Okkonen Mobile handset network that facilitates interaction between a generic intelligent responsive agent and a service broker server
US7320009B1 (en) * 2003-03-28 2008-01-15 Novell, Inc. Methods and systems for file replication utilizing differences between versions of files
US7975147B1 (en) 2003-03-31 2011-07-05 Hewlett-Packard Development Company, L.P. Electronic device network supporting enciphering and deciphering and update generation in electronic devices
US7290251B2 (en) * 2003-05-16 2007-10-30 Microsoft Corporation Method and system for providing a representation of merge conflicts in a three-way merge operation
US7747994B1 (en) * 2003-06-04 2010-06-29 Hewlett-Packard Development Company, L.P. Generator based on multiple instruction streams and minimum size instruction set for generating updates to mobile handset
US7890464B2 (en) * 2003-06-20 2011-02-15 Innopath Software, Inc. Processing software images and generating difference files
US7089270B2 (en) * 2003-06-20 2006-08-08 Innopath Software Processing software images for use in generating difference files
US7860834B2 (en) * 2003-06-23 2010-12-28 Evyatar Meller Method and system for updating versions of content stored in a storage device
EP1652069B1 (en) * 2003-07-07 2010-08-25 Red Bend Ltd. Method and system for updating versions of content stored in a storage device
US7343443B1 (en) 2003-07-08 2008-03-11 Hewlett-Packard Development Company, L.P. Updated package generation based on analysis of bank dependency
US20050010576A1 (en) * 2003-07-09 2005-01-13 Liwei Ren File differencing and updating engines
US20050010870A1 (en) * 2003-07-09 2005-01-13 Jinsheng Gu Post-processing algorithm for byte-level file differencing
US7031972B2 (en) * 2003-07-21 2006-04-18 Innopath Software, Inc. Algorithms for block-level code alignment of software binary files
US20050020308A1 (en) * 2003-07-23 2005-01-27 David Lai Dynamically binding Subscriber Identity Modules (SIMs)/User Identity Modules (UIMs) with portable communication devices
US7886093B1 (en) 2003-07-31 2011-02-08 Hewlett-Packard Development Company, L.P. Electronic device network supporting compression and decompression in electronic devices
US8555273B1 (en) 2003-09-17 2013-10-08 Palm. Inc. Network for updating electronic devices
WO2005039161A1 (en) * 2003-10-14 2005-04-28 Innopath Sofware, Inc. Upgrading electronic files of a mobile device upgrade client
WO2005040988A2 (en) * 2003-10-23 2005-05-06 Innopath Software, Inc. Dynamic addressing (da) using a centralized da manager
US8135683B2 (en) * 2003-12-16 2012-03-13 International Business Machines Corporation Method and apparatus for data redundancy elimination at the block level
US7469262B2 (en) * 2003-12-29 2008-12-23 Oracle International Corporation Customizable metadata merging framework
KR100584448B1 (en) * 2004-01-19 2006-05-26 삼성전자주식회사 Remote download method and system of embedded software using the position of binary image
US7694291B2 (en) * 2004-04-06 2010-04-06 Hewlett-Packard Development Company, L.P. Build optimizer tool for efficient management of software builds for mobile devices
US7739679B2 (en) * 2004-04-06 2010-06-15 Hewlett-Packard Development Company, L.P. Object ordering tool for facilitating generation of firmware update friendly binary image
US7904895B1 (en) 2004-04-21 2011-03-08 Hewlett-Packard Develpment Company, L.P. Firmware update in electronic devices employing update agent in a flash memory card
US7730167B2 (en) * 2004-04-30 2010-06-01 Microsoft Corporation Methods and systems for halting synchronization loops in a distributed system
US7543118B1 (en) 2004-05-07 2009-06-02 Hewlett-Packard Development Company, L.P. Multiple variance platform for the management of mobile devices
KR100849301B1 (en) * 2004-06-10 2008-07-29 삼성전자주식회사 Apparatus and method for efficient generation of delta files for over-the-air upgrades in a wireless network
US7673300B2 (en) * 2004-06-10 2010-03-02 Samsung Electronics Co., Ltd. Segmented linker using spatial locality of reference for over-the-air software updates
US7529779B2 (en) * 2004-06-10 2009-05-05 Samsung Electronics Co., Ltd. Apparatus and method for efficient generation of delta files for over-the-air upgrades in a wireless network
US7484051B2 (en) * 2004-06-14 2009-01-27 International Business Machines Corporation Apparatus, system and method for reliably updating a data group in a read-before-write data replication environment using a comparison file
US7580959B2 (en) * 2004-06-14 2009-08-25 International Business Machines Corporation Apparatus, system, and method for providing efficient disaster recovery storage of data using differencing
US7492953B2 (en) * 2004-06-17 2009-02-17 Smith Micro Software, Inc. Efficient method and system for reducing update requirements for a compressed binary image
US8526940B1 (en) 2004-08-17 2013-09-03 Palm, Inc. Centralized rules repository for smart phone customer care
US7516451B2 (en) * 2004-08-31 2009-04-07 Innopath Software, Inc. Maintaining mobile device electronic files including using difference files when upgrading
KR100917064B1 (en) 2004-11-08 2009-09-15 이노패스 소프트웨어, 아이엔시. Static file system differencing and updating
US7487169B2 (en) * 2004-11-24 2009-02-03 International Business Machines Corporation Method for finding the longest common subsequences between files with applications to differential compression
US20060117075A1 (en) * 2004-12-01 2006-06-01 International Business Machines Corporation Prerequisite, dependent and atomic deltas
US9621666B2 (en) 2005-05-26 2017-04-11 Citrix Systems, Inc. Systems and methods for enhanced delta compression
US9692725B2 (en) 2005-05-26 2017-06-27 Citrix Systems, Inc. Systems and methods for using an HTTP-aware client agent
US7756826B2 (en) * 2006-06-30 2010-07-13 Citrix Systems, Inc. Method and systems for efficient delivery of previously stored content
US9407608B2 (en) 2005-05-26 2016-08-02 Citrix Systems, Inc. Systems and methods for enhanced client side policy
US8943304B2 (en) 2006-08-03 2015-01-27 Citrix Systems, Inc. Systems and methods for using an HTTP-aware client agent
CA2928051C (en) * 2005-07-15 2018-07-24 Indxit Systems, Inc. Systems and methods for data indexing and processing
US7783781B1 (en) 2005-08-05 2010-08-24 F5 Networks, Inc. Adaptive compression
CN1913441A (en) * 2005-08-09 2007-02-14 张永敏 Continuous changed data set transmission and updating method
ATE413644T1 (en) * 2005-08-18 2008-11-15 Ericsson Telefon Ab L M FEEDBACK LINKER FOR INCREASED DELTA PERFORMANCE
EP1934727B1 (en) * 2005-08-23 2019-01-16 Red Bend Ltd. Method and system for in-place updating content stored in a storage device
DE602005024399D1 (en) * 2005-08-30 2010-12-09 Sony Ericsson Mobile Comm Ab Method and software for optimizing the positioning of software functions in a memory
US20070130232A1 (en) * 2005-11-22 2007-06-07 Therrien David G Method and apparatus for efficiently storing and managing historical versions and replicas of computer data files
US8275909B1 (en) * 2005-12-07 2012-09-25 F5 Networks, Inc. Adaptive compression
KR100717064B1 (en) 2006-03-03 2007-05-10 삼성전자주식회사 Method and apparatus for performing software update
US20070276912A1 (en) * 2006-05-05 2007-11-29 Mike Rybak Apparatus and method for forming and communicating a responsive data message
US8055096B2 (en) * 2006-05-10 2011-11-08 Research In Motion Limited Method and system for incremental patching of binary files
EP2025095A2 (en) 2006-06-08 2009-02-18 Hewlett-Packard Development Company, L.P. Device management in a network
US7783686B2 (en) * 2006-06-16 2010-08-24 Microsoft Corporation Application program interface to manage media files
US7603387B2 (en) * 2006-06-16 2009-10-13 Microsoft Corporation Techniques to manage media files
US7555480B2 (en) * 2006-07-11 2009-06-30 Microsoft Corporation Comparatively crawling web page data records relative to a template
US8296268B2 (en) * 2006-07-21 2012-10-23 Samsung Electronics Co., Ltd. System and method for change logging in a firmware over the air development environment
WO2008014454A2 (en) 2006-07-27 2008-01-31 Hewlett-Packard Development Company, L.P. User experience and dependency management in a mobile device
EP1903437A3 (en) * 2006-07-31 2008-10-22 Seiko Epson Corporation Update data transmission method, firmware writing system, and update data transmission program
KR20080025957A (en) * 2006-09-19 2008-03-24 삼성전자주식회사 Apparatus and method for upgrading of software in portable terminal
US7769731B2 (en) * 2006-10-04 2010-08-03 International Business Machines Corporation Using file backup software to generate an alert when a file modification policy is violated
US8117609B2 (en) * 2006-12-20 2012-02-14 Omx Technology Ab System and method for optimizing changes of data sets
EP1962182A1 (en) * 2007-02-23 2008-08-27 Ingenico Computer-implemented method and executable program for updating reference data
US8166466B2 (en) * 2007-06-22 2012-04-24 Microsoft Corporation Function matching in binaries
US8630981B1 (en) * 2007-12-21 2014-01-14 Symantec Corporation Techniques for differencing binary installation packages
JP5111129B2 (en) * 2008-01-22 2012-12-26 キヤノン株式会社 Information processing apparatus, information processing system, information processing method, and program
US8219595B2 (en) * 2008-02-14 2012-07-10 Hewlett-Packard Development Company, L.P. System and method for efficient remote data access for server management
US8078957B2 (en) * 2008-05-02 2011-12-13 Microsoft Corporation Document synchronization over stateless protocols
US20090287986A1 (en) * 2008-05-14 2009-11-19 Ab Initio Software Corporation Managing storage of individually accessible data units
US8832034B1 (en) 2008-07-03 2014-09-09 Riverbed Technology, Inc. Space-efficient, revision-tolerant data de-duplication
US8370309B1 (en) 2008-07-03 2013-02-05 Infineta Systems, Inc. Revision-tolerant data de-duplication
US8015220B1 (en) 2008-08-05 2011-09-06 Smith Micro Software, Inc. Block-based differencing algorithm
US8756664B2 (en) * 2008-08-08 2014-06-17 International Business Machines Corporation Management of user authentication
US8346967B2 (en) * 2008-08-08 2013-01-01 International Business Machines Corporation Management of redirection
US8352442B2 (en) * 2008-08-08 2013-01-08 International Business Machines Corporation Determination of an updated data source from disparate data sources
US8078593B1 (en) 2008-08-28 2011-12-13 Infineta Systems, Inc. Dictionary architecture and methodology for revision-tolerant data de-duplication
US8468516B1 (en) * 2008-12-19 2013-06-18 Juniper Networks, Inc. Creating hot patches for embedded systems
US9104521B2 (en) * 2009-03-16 2015-08-11 Tyco Electronics Subsea Communications Llc System and method for remote device application upgrades
US8219526B2 (en) * 2009-06-05 2012-07-10 Microsoft Corporation Synchronizing file partitions utilizing a server storage model
CN101930387A (en) * 2009-06-19 2010-12-29 上海惠普有限公司 Improved fault tolerance method and device used for updating compressed read-only file system
JP2013517565A (en) * 2010-01-12 2013-05-16 グーグル インコーポレイテッド Operating system automatic update procedure
US9292266B2 (en) * 2010-04-30 2016-03-22 Qualcomm Incorporate Preprocessor for file updating
US9652440B2 (en) 2010-05-27 2017-05-16 Microsoft Technology Licensing, Llc Concurrent utilization of a document by multiple threads
US8555161B2 (en) * 2010-05-27 2013-10-08 Microsoft Corporation Concurrent editing of a document by multiple clients
US8228216B2 (en) * 2010-09-08 2012-07-24 Hewlett-Packard Development Company, L.P. Systems and methods for data compression
WO2012033498A1 (en) * 2010-09-10 2012-03-15 Hewlett-Packard Development Company, L.P. Systems and methods for data compression
US8316034B2 (en) 2010-10-20 2012-11-20 International Business Machines Corporaion Analyzing binary data streams to identify embedded record structures
US20120131432A1 (en) * 2010-11-24 2012-05-24 Edward Wayne Goddard Systems and methods for delta encoding, transmission and decoding of html forms
US8666997B2 (en) 2010-12-08 2014-03-04 Microsoft Corporation Placeholders returned for data representation items
US8983907B2 (en) * 2010-12-08 2015-03-17 Microsoft Technology Licensing, Llc Change notifications from an updated data representation
US9069829B2 (en) 2011-01-21 2015-06-30 Microsoft Technology Licensing, Llc Data items manager
US8838533B2 (en) 2011-05-20 2014-09-16 Microsoft Corporation Optimistic application of data edits
US8589363B2 (en) * 2011-07-19 2013-11-19 Exagrid Systems, Inc. Systems and methods for managing delta version chains
WO2012119407A1 (en) * 2011-08-23 2012-09-13 华为技术有限公司 Method and device for document updating
JP5696018B2 (en) * 2011-09-28 2015-04-08 クラリオン株式会社 Target data placement method, target data placement system, and server device, client device, and program thereof
US10191925B1 (en) * 2011-10-27 2019-01-29 Valve Corporation Delivery of digital information to a remote device
US9075693B2 (en) * 2012-06-27 2015-07-07 Google Inc. Methods for updating applications
US9275368B1 (en) * 2012-09-25 2016-03-01 Amazon Technologies, Inc. Annotation mapping
CN103051723B (en) * 2012-12-27 2016-08-31 广州市动景计算机科技有限公司 A kind of method for updating increment and server, terminal
US20140208306A1 (en) * 2013-01-23 2014-07-24 Caterpillar Inc. Control system having automatic component software management
US9239874B1 (en) * 2013-03-15 2016-01-19 Emc Corporation Integrated search for shared storage using index throttling to maintain quality of service
US9256416B1 (en) * 2013-03-28 2016-02-09 Juniper Networks, Inc. Methods and apparatus for automatic session validation for distributed access points
TWI581629B (en) * 2014-08-07 2017-05-01 A Method and System for Message Transmission without Marked Identification
US9785429B2 (en) 2015-02-27 2017-10-10 Lenovo (Singapore) Pte. Ltd. Efficient deployment of thin client applications to end user
US10860310B2 (en) 2015-09-30 2020-12-08 Apple Inc. Software updating
US9430363B1 (en) * 2015-12-28 2016-08-30 International Business Machines Corporation Creating expected test results using previous test results
JP2018018240A (en) * 2016-07-27 2018-02-01 富士ゼロックス株式会社 Data processing device and program
US10474446B2 (en) * 2016-09-16 2019-11-12 Bank Of America Corporation Installation tool for adhering to enterprise requirements
US20190163461A1 (en) * 2017-11-29 2019-05-30 Nutanix, Inc. Upgrade managers for differential upgrade of distributed computing systems
US10585664B2 (en) * 2017-12-21 2020-03-10 International Business Machines Corporation Span limited lexical analysis
CN110244973B (en) * 2018-03-09 2022-09-16 阿里巴巴(中国)有限公司 Data updating packet generation method and device and data updating method and device
CN108536657B (en) * 2018-04-10 2021-09-21 百融云创科技股份有限公司 Method and system for processing similarity of artificially filled address texts
US11556326B2 (en) * 2018-09-06 2023-01-17 Arm Limited Methods for performing a rollback-capable software update at a device
US10454497B1 (en) 2018-10-22 2019-10-22 Dell Products L. P. Reducing a size of multiple data sets
CN109542495A (en) * 2018-11-12 2019-03-29 青岛海信电器股份有限公司 A kind of method for upgrading software and device
CN109684610B (en) * 2018-11-30 2023-06-16 东软集团股份有限公司 Text blocking method and device, storage medium and electronic equipment
KR20200089490A (en) 2019-01-17 2020-07-27 삼성전자주식회사 Method of firmware update and operating device thereof
US11070618B2 (en) 2019-01-30 2021-07-20 Valve Corporation Techniques for updating files
US11886391B2 (en) 2020-05-14 2024-01-30 Valve Corporation Efficient file-delivery techniques
CN111600610B (en) * 2020-05-26 2023-04-28 北京思特奇信息技术股份有限公司 Universal coding method, system and electronic equipment for variable-length integers
CN113805927A (en) * 2020-06-11 2021-12-17 中移(苏州)软件技术有限公司 Code updating method and device, electronic equipment and computer storage medium
CN111782591B (en) * 2020-06-22 2023-05-16 北京计算机技术及应用研究所 Method for calculating file similarity hash
US11327456B2 (en) * 2020-06-29 2022-05-10 Aurora Labs Ltd. Efficient controller data generation and extraction
US11789708B2 (en) * 2021-04-22 2023-10-17 Silicon Laboratories Inc. Compression of firmware updates
US11494422B1 (en) * 2022-06-28 2022-11-08 Intuit Inc. Field pre-fill systems and methods
CN115291949B (en) * 2022-09-26 2022-12-20 中国人民解放军国防科技大学 Accelerated computing device and accelerated computing method for computational fluid dynamics

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6372671B1 (en) * 1999-09-01 2002-04-16 Zarlink Semiconductor Inc. Surface stabilization of silicon rich silica glass using increased post deposition delay
US6374250B2 (en) * 1997-02-03 2002-04-16 International Business Machines Corporation System and method for differential compression of data from a plurality of binary sources
US20020099726A1 (en) * 2001-01-23 2002-07-25 International Business Machines Corporation Method and system for distribution of file updates

Family Cites Families (86)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4875159A (en) 1987-12-22 1989-10-17 Amdahl Corporation Version management system using plural control fields for synchronizing two versions of files in a multiprocessor system
US5479654A (en) 1990-04-26 1995-12-26 Squibb Data Systems, Inc. Apparatus and method for reconstructing a file from a difference signature and an original file
US5444764A (en) 1993-07-01 1995-08-22 Motorola, Inc. Method of providing a subscription lock to a radiotelephone system
US5806078A (en) 1994-06-09 1998-09-08 Softool Corporation Version management system
US5742905A (en) 1994-09-19 1998-04-21 Bell Communications Research, Inc. Personal communications internetworking
US5574906A (en) 1994-10-24 1996-11-12 International Business Machines Corporation System and method for reducing storage requirement in backup subsystems utilizing segmented compression and differencing
US5634052A (en) 1994-10-24 1997-05-27 International Business Machines Corporation System for reducing storage requirements and transmission loads in a backup subsystem in client-server environment by transmitting only delta files from client to server
US5485575A (en) * 1994-11-21 1996-01-16 International Business Machines Corporation Automatic analysis of a computer virus structure and means of attachment to its hosts
US5729735A (en) 1995-02-08 1998-03-17 Meyering; Samuel C. Remote database file synchronizer
US5729743A (en) 1995-11-17 1998-03-17 Deltatech Research, Inc. Computer apparatus and method for merging system deltas
US5864757A (en) 1995-12-12 1999-01-26 Bellsouth Corporation Methods and apparatus for locking communications devices
US5758062A (en) 1996-04-30 1998-05-26 Oracle Corporation Method and apparatus for regression testing of application logic
US5832520A (en) 1996-07-03 1998-11-03 Miller, Call, Plauck And Miller Automatic file differencing and updating system
US6308061B1 (en) 1996-08-07 2001-10-23 Telxon Corporation Wireless software upgrades with version control
US5850565A (en) 1996-08-26 1998-12-15 Novell, Inc. Data compression method and apparatus
US5859565A (en) * 1997-03-10 1999-01-12 Reiffin; Martin Cathode-follower high-fidelity power amplifier
US5977889A (en) * 1997-06-05 1999-11-02 International Business Machines Corporation Optimization of data representations for transmission of storage using differences from reference data
CA2295479C (en) * 1997-07-15 2003-12-30 Pocket Soft, Inc. System for finding differences between two computer files and updating the computer files
DE69802294T2 (en) 1997-08-29 2002-05-16 Hewlett Packard Co SYSTEMS FOR DATA BACKUP AND RECOVERY
US6157924A (en) 1997-11-07 2000-12-05 Bell & Howell Mail Processing Systems Company Systems, methods, and computer program products for delivering information in a preferred medium
US6041333A (en) 1997-11-14 2000-03-21 Microsoft Corporation Method and apparatus for automatically updating a data file from a network
US6018747A (en) 1997-11-26 2000-01-25 International Business Machines Corporation Method for generating and reconstructing in-place delta files
US6076148A (en) 1997-12-26 2000-06-13 Emc Corporation Mass storage subsystem and backup arrangement for digital data processing system which permits information to be backed up while host computer(s) continue(s) operating in connection with information stored on mass storage subsystem
US6035423A (en) * 1997-12-31 2000-03-07 Network Associates, Inc. Method and system for providing automated updating and upgrading of antivirus applications using a computer network
KR100269322B1 (en) * 1998-01-16 2000-10-16 윤종용 Integrated curcuit having function of testing memory using stress voltage and memory test method tereof
US6078967A (en) 1998-02-25 2000-06-20 Hewlett-Packard Company System for upgrading functionality of a peripheral device utilizing a removable ROM having relocatable object code
US6052531A (en) * 1998-03-25 2000-04-18 Symantec Corporation Multi-tiered incremental software updating
US20010049263A1 (en) 1998-03-26 2001-12-06 Xiang Zhang Automatic station/system configuration monitoring and error tracking system and software upgrade tool kit
US6088694A (en) 1998-03-31 2000-07-11 International Business Machines Corporation Continuous availability and efficient backup for externally referenced objects
US6216175B1 (en) 1998-06-08 2001-04-10 Microsoft Corporation Method for upgrading copies of an original file with same update data after normalizing differences between copies created during respective original installations
US6233589B1 (en) * 1998-07-31 2001-05-15 Novell, Inc. Method and system for reflecting differences between two files
EP0981099A3 (en) 1998-08-17 2004-04-21 Connected Place Limited A method of and an apparatus for merging a sequence of delta files
US6167258A (en) 1998-10-09 2000-12-26 Cleveland Medical Devices Inc. Programmable wireless data acquisition system
US6145012A (en) 1998-10-14 2000-11-07 Veritas Software Corporation Apparatus and method for efficiently updating files in computer networks
US6226784B1 (en) 1998-10-14 2001-05-01 Mci Communications Corporation Reliable and repeatable process for specifying developing distributing and monitoring a software system in a dynamic environment
US6163811A (en) 1998-10-21 2000-12-19 Wildseed, Limited Token based source file compression/decompression and its application
US6457175B1 (en) 1998-11-09 2002-09-24 Tut Systems, Inc. Method and apparatus for installing a software upgrade within a memory resource associated with a computer system
US6327671B1 (en) 1998-11-18 2001-12-04 International Business Machines Corporation Delta compressed asynchronous remote copy
US6349311B1 (en) * 1999-02-01 2002-02-19 Symantec Corporation Storage of reverse delta updates
US6594822B1 (en) 1999-02-19 2003-07-15 Nortel Networks Limited Method and apparatus for creating a software patch by comparing object files
US6401239B1 (en) 1999-03-22 2002-06-04 B.I.S. Advanced Software Systems Ltd. System and method for quick downloading of electronic files
US6425125B1 (en) * 1999-03-30 2002-07-23 Microsoft Corporation System and method for upgrading client software
US6466999B1 (en) 1999-03-31 2002-10-15 Microsoft Corporation Preprocessing a reference data stream for patch generation and compression
US6574657B1 (en) 1999-05-03 2003-06-03 Symantec Corporation Methods and apparatuses for file synchronization and updating using a signature list
IL129947A (en) 1999-05-13 2003-06-24 Tadiran Telecom Business Syste Method and apparatus for downloading software into an embedded system
US6370197B1 (en) * 1999-07-23 2002-04-09 Memorylink Corporation Video compression scheme using wavelets
CN1411580A (en) 2000-01-10 2003-04-16 连接公司 Administration of differential backup system in client-server environment
US6671757B1 (en) 2000-01-26 2003-12-30 Fusionone, Inc. Data transfer and synchronization system
US6694336B1 (en) 2000-01-25 2004-02-17 Fusionone, Inc. Data transfer and synchronization system
WO2001065371A2 (en) 2000-03-01 2001-09-07 Computer Associates Think, Inc. Method and system for updating an archive of a computer file
US6651190B1 (en) 2000-03-14 2003-11-18 A. Worley Independent remote computer maintenance device
US6662163B1 (en) 2000-03-30 2003-12-09 Voxware, Inc. System and method for programming portable devices from a remote computer system
US6898564B1 (en) 2000-05-23 2005-05-24 Microsoft Corporation Load simulation tool for server resource capacity planning
US6535894B1 (en) * 2000-06-01 2003-03-18 Sun Microsystems, Inc. Apparatus and method for incremental updating of archive files
US6671703B2 (en) 2000-06-22 2003-12-30 Synchrologic, Inc. System and method for file transmission using file differentiation
US6669564B1 (en) 2000-06-27 2003-12-30 Electronic Arts Inc. Episodic delivery of content
GB2369213B (en) 2000-07-04 2005-02-23 Honda Motor Co Ltd Electronic file management system
US6470329B1 (en) * 2000-07-11 2002-10-22 Sun Microsystems, Inc. One-way hash functions for distributed data synchronization
US20020120697A1 (en) 2000-08-14 2002-08-29 Curtis Generous Multi-channel messaging system and method
DE10196513T1 (en) 2000-08-15 2003-11-13 Seagate Technology Llc Dual mode data compression for an operational code
US6754816B1 (en) 2000-10-26 2004-06-22 Dell Products L.P. Scalable environmental data calculation method customized by system configuration
US7058941B1 (en) 2000-11-14 2006-06-06 Microsoft Corporation Minimum delta generator for program binaries
KR100520058B1 (en) 2000-12-13 2005-10-11 삼성전자주식회사 System for upgrading device driver and method for upgrading the same
US6954765B2 (en) 2000-12-30 2005-10-11 Intel Corporation Updating a file in a fragmented file system
US20020089436A1 (en) * 2001-01-11 2002-07-11 Shalom Yariv Delta data compression and transport
US20020129107A1 (en) 2001-03-12 2002-09-12 Loughran Stephen A. Method and apparatus for automatic content handling
US6442660B1 (en) 2001-03-21 2002-08-27 Sharp Laboratories Of America, Inc. Dynamic system relocation based on availability of system memory
US6912591B2 (en) 2001-05-02 2005-06-28 Science Application International Corporation System and method for patch enabled data transmissions
KR20050035140A (en) 2001-10-12 2005-04-15 마쯔시다덴기산교 가부시키가이샤 Content processing apparatus and content protection program
US7483970B2 (en) 2001-12-12 2009-01-27 Symantec Corporation Method and apparatus for managing components in an IT system
US7600021B2 (en) 2002-04-03 2009-10-06 Microsoft Corporation Delta replication of source files and packages across networked resources
US6904430B1 (en) * 2002-04-26 2005-06-07 Microsoft Corporation Method and system for efficiently identifying differences between large files
US6925467B2 (en) 2002-05-13 2005-08-02 Innopath Software, Inc. Byte-level file differencing and updating algorithms
US20040031027A1 (en) 2002-08-08 2004-02-12 Hiltgen Daniel K. System for updating diverse file versions
US7096311B2 (en) 2002-09-30 2006-08-22 Innopath Software, Inc. Updating electronic files using byte-level file differencing and updating algorithms
US6836657B2 (en) 2002-11-12 2004-12-28 Innopath Software, Inc. Upgrading of electronic files including automatic recovery from failures and errors occurring during the upgrade
US7320010B2 (en) 2002-11-18 2008-01-15 Innopath Software, Inc. Controlling updates of electronic files
US7003534B2 (en) 2002-11-18 2006-02-21 Innopath Software, Inc. Generating difference files using module information of embedded software components
US7007049B2 (en) 2002-11-18 2006-02-28 Innopath Software, Inc. Device memory management during electronic file updating
US20040098421A1 (en) 2002-11-18 2004-05-20 Luosheng Peng Scheduling updates of electronic files
US20040098361A1 (en) 2002-11-18 2004-05-20 Luosheng Peng Managing electronic file updates on client devices
US7099884B2 (en) 2002-12-06 2006-08-29 Innopath Software System and method for data compression and decompression
US20040193643A1 (en) 2003-03-27 2004-09-30 O'brien John C. Method and system for tracking contracts
US20050010870A1 (en) 2003-07-09 2005-01-13 Jinsheng Gu Post-processing algorithm for byte-level file differencing
US20050010576A1 (en) 2003-07-09 2005-01-13 Liwei Ren File differencing and updating engines
US7379884B2 (en) 2003-09-11 2008-05-27 International Business Machines Corporation Power on demand tiered response time pricing

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6374250B2 (en) * 1997-02-03 2002-04-16 International Business Machines Corporation System and method for differential compression of data from a plurality of binary sources
US6372671B1 (en) * 1999-09-01 2002-04-16 Zarlink Semiconductor Inc. Surface stabilization of silicon rich silica glass using increased post deposition delay
US20020099726A1 (en) * 2001-01-23 2002-07-25 International Business Machines Corporation Method and system for distribution of file updates

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
BERGROTH L ET AL.: "A survery of longest common subsequence algorithms", STRING PROCESSING AND INFORMATION RETRIEVAL, 2000. SPIRE 2000. PROCEEDINGS. SEVENTH INTERNATIONAL SYMPOSIUM, 27 September 2000 (2000-09-27), pages 39 - 48
See also references of EP1550047A4

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1754322A1 (en) * 2004-06-10 2007-02-21 Samsung Electronics Co., Ltd. Apparatus and method for efficient generation of delta files for over-the-air upgrades in a wireless network
EP1754322A4 (en) * 2004-06-10 2012-03-07 Samsung Electronics Co Ltd Apparatus and method for efficient generation of delta files for over-the-air upgrades in a wireless network
US9043275B2 (en) 2011-08-30 2015-05-26 International Business Machines Corporation Data synchronization using string matching
CN105589838A (en) * 2015-12-24 2016-05-18 中国电子科技集团公司第三十三研究所 Electronic official document trace reserving method based on file comparison

Also Published As

Publication number Publication date
EP1550047A4 (en) 2009-07-15
JP2005525641A (en) 2005-08-25
JP4364790B2 (en) 2009-11-18
US8156071B2 (en) 2012-04-10
US20050234997A1 (en) 2005-10-20
US20030212712A1 (en) 2003-11-13
US6925467B2 (en) 2005-08-02
AU2003241421A1 (en) 2003-11-11
EP1550047A1 (en) 2005-07-06

Similar Documents

Publication Publication Date Title
US6925467B2 (en) Byte-level file differencing and updating algorithms
US7392260B2 (en) Code alignment of binary files
US7539685B2 (en) Index key normalization
US8120516B2 (en) Data compression using a stream selector with edit-in-place capability for compressed data
JP5261433B2 (en) System for updating electronic files and method for reducing the size of electronic file difference files
US6542906B2 (en) Method of and an apparatus for merging a sequence of delta files
US7890464B2 (en) Processing software images and generating difference files
US20050010870A1 (en) Post-processing algorithm for byte-level file differencing
US6374250B2 (en) System and method for differential compression of data from a plurality of binary sources
WO2001050612A1 (en) Systems and methods for multiple-file data compression
US7379940B1 (en) Focal point compression method and apparatus
US11789708B2 (en) Compression of firmware updates
Shapira et al. In place differential file compression
US8244677B2 (en) Focal point compression method and apparatus
CN114218441B (en) Method for calling and displaying UOF document
CN117170726A (en) Differential upgrading method of low resources and embedded equipment
FI115937B (en) Lossless data compression and decompression
Shapira et al. In-place differential file compression of nonaligned files with applications to file distribution, backups, and string similarity
CN116700739A (en) Differential upgrading method and device, electronic equipment and readable storage medium
CN117112004A (en) Differential data determining method, differential restoring device, differential data determining equipment, differential data restoring equipment and differential data medium
CN117608616A (en) Upgrading method, device, equipment and storage medium of battery equipment

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX MZ NO NZ OM PH PL PT RO RU SD SE SG SK SL TJ TM TN TR TT TZ UA UG UZ VN YU ZA ZM ZW

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): GH GM KE LS MW MZ SD SL SZ TZ UG ZM ZW AM AZ BY KG KZ MD RU TJ TM AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HU IE IT LU MC NL PT RO SE SI SK TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG

121 Ep: the epo has been informed by wipo that ep was designated in this application
DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
WWE Wipo information: entry into national phase

Ref document number: 2004504132

Country of ref document: JP

WWE Wipo information: entry into national phase

Ref document number: 2003731156

Country of ref document: EP

WWP Wipo information: published in national office

Ref document number: 2003731156

Country of ref document: EP