WO2005112270A1 - Method and apparatus for structured block-wise compressing and decompressing of xml data - Google Patents

Method and apparatus for structured block-wise compressing and decompressing of xml data Download PDF

Info

Publication number
WO2005112270A1
WO2005112270A1 PCT/IB2005/051088 IB2005051088W WO2005112270A1 WO 2005112270 A1 WO2005112270 A1 WO 2005112270A1 IB 2005051088 W IB2005051088 W IB 2005051088W WO 2005112270 A1 WO2005112270 A1 WO 2005112270A1
Authority
WO
WIPO (PCT)
Prior art keywords
data
compressing
template
decompressing
compressed
Prior art date
Application number
PCT/IB2005/051088
Other languages
English (en)
French (fr)
Inventor
Anthony Morel
Original Assignee
Koninklijke Philips Electronics N.V.
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 Koninklijke Philips Electronics N.V. filed Critical Koninklijke Philips Electronics N.V.
Priority to CNA2005800149354A priority Critical patent/CN1951017A/zh
Priority to JP2007512605A priority patent/JP2007537642A/ja
Priority to EP05718613A priority patent/EP1751873A1/en
Publication of WO2005112270A1 publication Critical patent/WO2005112270A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F17/00Digital computing or data processing equipment or methods, specially adapted for specific functions
    • HELECTRICITY
    • H03ELECTRONIC CIRCUITRY
    • H03MCODING; DECODING; CODE CONVERSION IN GENERAL
    • H03M7/00Conversion of a code where information is represented by a given sequence or number of digits to a code where the same, similar or subset of information is represented by a different sequence or number of digits
    • H03M7/30Compression; Expansion; Suppression of unnecessary data, e.g. redundancy reduction

Definitions

  • the present invention relates to a method and apparatus for compressing/ decompressing data, and more particularly relates to a method and apparatus for sequentially compressing/decompressing data.
  • sequentially compressing/decompressing data is a common method for data compressing/decompressing.
  • the method uses data already processed during the compressing process as references to compress /decompress following data, thus reducing the redundancy.
  • the typical sequentially compressing schemes are LZ77 and Zlib.
  • Zlib is a sequentially compressing scheme based on the Huffman code and LZ77.
  • Figure 1 is a structural schematic block diagram illustrating the apparatus for sequentially compressing/decompressing data in the prior art.
  • the apparatus comprises: sequential encoder 120, used to sequentially encode and compress the input N data segments as a whole; memory 130, used to store the compressed data; sequential decoder 140, used to sequentially decode the compressed data and separate the N data segments from each other using the data nature or an index table.
  • sequential encoder 120 used to sequentially encode and compress the input N data segments as a whole
  • memory 130 used to store the compressed data
  • sequential decoder 140 used to sequentially decode the compressed data and separate the N data segments from each other using the data nature or an index table.
  • Such compressing method can achieve the maximum compressing efficiency, and the redundancy degree between data segments can be stored.
  • the data redundancy after compressing can be greatly reduced especially when the N data segments have the same or similar data structure.
  • Figure 2 is a structural schematic block diagram illustrating another apparatus for sequentially compressing/decompressing data in the prior art. The difference from the above apparatus is that the data segments compressing /decompressing are independent to each other. As shown in
  • the apparatus includes: sequentially encoder 120, used to sequentially compress data segment K independently, this data segment K can be any one in data segments 1-N; memory 130, used to store the compressed data segment K; sequentially decoder 140, used to decompress the compressed data segment K and restore the data segment
  • the N data segments are compressed/decompressed separately and compressing/ decompressing process of each data segment are independent, the sequentially compressing/decompressing of following data segment is not dependent on previously compressed data segments. If the data segment K is obtained by decompressing, it's only need to find the compressed data segment K from the memory 130 directly and do the sequentially decompressing, without need to decompress data segments prior to it.
  • the data segment can be randomly accessed by some approach since this apparatus compresses data segments independently. However, because each data segment is compressed independently, the redundancy between them cannot be used, thus resulting in that the whole data compressing ratio is low.
  • One object of the invention is to solve the drawbacks of current sequentially compressing/decompressing schemes, providing a new method and apparatus for sequentially compressing/decompressing data, and thus is not only able to efficiently sequentially compress data but also able to randomly access data.
  • the present invention provides a method for sequentially compressing a data segment, which segment has a data structure. Firstly, obtain several compressing parameters; secondly, sequentially compress the data segment according to the obtained parameters and get a compressed data segment.
  • the data segment can be obtained by preprocessing of the data.
  • the compressing parameters come from a storage device; certainly, the compressing parameters can also obtained from the compressing of a template with this data structure.
  • the compressing of a template with this data structure can get a compressed template in addition to the said compressing parameters.
  • the compressed template is stored separately from the compressed data segment, or the compressed template is discarded.
  • the present invention also provides a method for sequentially decompressing a compressed data segment, which data segment has a data structure. Firstly, obtain several decompressing parameters; secondly, sequentially decompress the compressed data segment according to the obtained decompressing parameters and get a decompressed data segment.
  • the decompressing parameters come from a storage device; certainly, the decompressing parameters can also obtained from the sequentially decompressing of a compressed template, the template has said data structure.
  • the sequentially decompressing of the compressed template can get a decompressed template in addition to the said decompressing parameters.
  • the decompressed template is discarded.
  • the present invention also provides an apparatus for sequentially compressing a data segment, the apparatus includes an obtaining device and a compressing device, and the data segment has a data structure.
  • the device for sequentially compressing a data segment can optionally include a preprocessing device, a storage device and a discarding device.
  • the obtaining device is used to obtain several compressing parameters; and the compressing device is used to sequentially compress said data segment according to the obtained compressing parameters and thus gets a compressed data segment.
  • the compressing device is also used to sequentially compress a template with the data structure, and consequently gets said compressing parameters and a compressed template; the preprocessing device is used to preprocess data and consequently gets said data segment; the storage device is used to store said compressing parameters; and the discarding device is used to discard said compressed template.
  • the present invention provides an apparatus for sequentially decompressing a compressed data segment
  • the apparatus includes an obtaining device and a decompressing device.
  • the device for sequentially decompressing a compressed data segment can also optionally include a storage device and a discarding device.
  • the obtaining device is used to obtain several decompressing parameters; and the decompressing device is used to sequentially decompress the compressed data segment according to the obtained decompressing parameters and consequently gets a decompressed data segment, and the data segment has a special data structure.
  • the decompressing device is also used to sequentially decompress a compressed template, and consequently gets said decompressing parameters and a decompressed template, and the template has said data structure; the storage device is used to store said decompressing parameters; and the discarding device is used to discard said decompressed template.
  • the above method and apparatus for sequentially compressing/ decompressing data provided by the present invention can improve the data compressing ratio in that the data structure part (template) can be filtered after compressing of a data segment with special data structure; after the separate compressing of several data segments with special data structures, the data structure part of each data segment can be filtered out, but only keep a compressed template or discard all the compressed templates, therefore the data compressing ratio is greatly increased and also the each data segment can be randomly processed.
  • Figure 1 is a structural schematic block diagram illustrating the apparatus for sequentially compressing/decompressing data in the prior art
  • Figure 2 is a structural schematic block diagram illustrating another apparatus for sequentially compressing/decompressing data in the prior art
  • Figure 3 is a structural schematic block diagram illustrating an apparatus for sequentially compressing a data segment according to an embodiment of the present invention
  • Figure 4 is a flow chart of sequentially compressing a data segment according to an embodiment of the present invention.
  • Figure 5 is a structural schematic block diagram illustrating an apparatus for sequentially decompressing a compressed data segment according to an embodiment of the present invention.
  • Figure 6 is a flow chart of sequentially decompressing a compressed data segment according to an embodiment of the present invention.
  • Figure 3 is a structural schematic block diagram illustrating an apparatus for sequentially compressing a data segment according to an embodiment of the present invention, which data segment has a data structure.
  • Apparatus 300 includes obtaining device 310 and compressing device 320.
  • Apparatus 300 can also include preprocessing device 330, storage device 340 and discarding device 350.
  • Obtaining device 310 is used to obtain several compressing parameters, which indicate the encoded compressing information of the template with the data structure, including the information such as the compressing mode, storage position and data structure of the template.
  • the compressing parameters can be obtained from storage device 340.
  • the compressing parameters correspond to the internal state of the compressing device 320 after compressing a template with the data structure.
  • the compressing device 320 is used to sequentially compress the data segments to be compressed according to the obtained compressing parameters, and consequently gets a compressed data segment.
  • the compressing device 320 is also used to sequentially compress a template with the data structure, and thus obtains said compressing parameters.
  • the data to be compressed come from preprocessing device 330, certainly, it can also come from other data sources (not shown in drawings).
  • Preprocessing device 330 is used to preprocess inputted data, and consequently generates a data segment conforming to said data structure.
  • the data segment is dynamic data and varies with the differences of inputted data.
  • one appropriate instance of preprocessing devices is the publishing process unit of the database records in the XML (extensible Markup Language) format. If the inputted data is blank data without any content, the preprocessing device 330 can generate a template with said data structure.
  • the template describes the data structure of the data segment, but it does not include any dynamic content data.
  • the preprocessing device 330 can output all kinds of categories of data segments according to different situations. For example, it can generate different data segment according to different type of data inputted from database.
  • Storage device 340 is used to store compressed data segment and compressing parameters, and also used to store the compressed data structure template.
  • the storage device 340 may be a hard disk, a USB (Universal Serial Bus) disk, or a cache, etc. But it should be noted that the compressed data segment and compressed template should be stored separately, e.g. they can be stored with different file names.
  • the compressed template stored in storage device 340 is for use during the decompressing of the data segment.
  • Discarding device 350 is used to discard the compressed template.
  • the compressed template came from the compressing device 320. To prevent taking up too much space in the storage device, the compressed template can also be discarded.
  • FIG. 4 is a flow chart of sequentially compressing a data segment according to an embodiment of the present invention.
  • the data segment has a data structure.
  • step S410 obtain a template with this data structure.
  • the template can be obtained after preprocessing data without any valid content.
  • a tag can be added to the end of the template, e.g. the file ending tag, the tag is used to indicate the ending position of the template file.
  • step S420 sequentially compress the template.
  • initiate encoding state firstly, and then sequentially compress the template, e.g. using the Zlib sequentially compressing algorithm, thus get a compressed template and several compressing parameters.
  • the compressing parameters indicate the encoded compressing information of the template and its storage position in the compressing device, including the information such as its compressing mode, data structure, Huffman list, etc.
  • the Zlib sequentially compressing algorithm is not the only compressing scheme. Implementers can choose different compressing algorithms according to their needs.
  • the compressed template is discarded (step S430).
  • the compressed template can be discarded by the system for not affecting the whole data compressing ratio and storing the storage space. Since there is a tag in the end of the template, e.g. the file ending tag, the system can discard the compressed template automatically after reading the tag.
  • the compressed template can also be stored in a special place of a local storage device for the decompressing in the future. In particular, when several data segments with this data structure are compressed in order using the method of the present invention, one of the compressed templates can be kept and other compressed templates can be discarded.
  • steps S410-S430 are procedures of sequentially compressing a template with this data structure and then obtaining compressing parameters.
  • the compressing parameters can be stored, e.g. in a local storage device, for the use of compressing another data segment with the same or similar data structure.
  • the above steps S410-S430 can be omitted when compressing another data segment with same data structure, that is, the compressing parameters can be obtained directly from the storage device without compressing a template with this data structure.
  • the encoding state should be initiated first to make sure that the current process is not affected by the , compressing parameters at the end of previous process.
  • This data segment is obtained from the preprocessing of the data, e.g. obtaining a data segment conforming to XML (extensible Markup Language) format from the publishing process unit of the database records in XML format.
  • XML extensible Markup Language
  • the data segment can also come from other data sources.
  • Both of above data segments have the same data structure of above template, and the difference between them is each the data segments includes different valid content, e.g. "new talk show”, a new TV talk show every Friday, etc in the data segment 1 , "News report”, news report every evening, etc in the data segment 2.
  • step S450 sequentially compress data segment according to the obtained compressing parameters.
  • the compressing parameters include the compressing information of the template with the same data structure and the information of the storage address and length, etc.
  • the character of sequentially compressing can automatically search the character strings have shown up when sequentially compressing the data segment according to the compressing parameters and can automatically output the character strings' appearing position and length in template. Therefore, sequentially encoding principle can automatically replace the same part of data segment and compressed template to storage address and length, the storage address points to the compressed template and the size of the data segment after replacing is much less than that of the original data segment. Since data segment is sequentially compressed with the compressing parameters generated during the process of compressing the template and the compressed template may be discarded, the compressing ratio of the data segment can be greatly improved.
  • Last store the compressed data segment (step S460).
  • the storing place of the compressed data segment and the compressed template is different for not affecting the compressing ratio, e.g. storing them with different file names.
  • Above embodiment finishes the compressing for one data segment, in many cases, it is needed to sequentially compress several data segments with the same template. For example, it may compress 20 TV program data (that is, 20 data segments) in turn, and these TV program data have same or similar data structure after preprocessing.
  • the next data segment can be compressed sequentially according to above process.
  • the encoding state should be initiated, e.g. cleaning all the compressing parameters in the compressing device to make sure that the compressing parameters will not affect the next process when the current process end since when current process ends the parameters have already included some compressing parameters corresponding to the valid content in the data segment.
  • Figure 5 is a structure schematic block diagram illustrating an apparatus for sequentially decompressing a compressed data segment according to an embodiment of the present invention.
  • the compressed data segment is obtained from apparatus 300, and the data segment has said data structure.
  • Apparatus 500 includes an obtaining device 510 and a decompressing device 520.
  • Apparatus 500 can also include a storage device 540 and a discarding device 550.
  • the obtaining device 510 is used to obtain several decompressing parameters. These decompressing parameters indicate the decompressing information of the compressed template, including the information such as decompressing style, storage position and data structure, etc of the template. These compressing parameters may come from storage device
  • the decompressed parameters correspond to the internal state of the decompressing device 520 after decompressing the compressed template.
  • the decompressing device 520 is used to sequentially decompress the compressed data segment according to the obtained decompressing parameters and thereby gets a decompressed data segment. If the decompressing parameters cannot be obtained directly from the obtaining device 510, the decompressing device 520 can also used to sequentially decompress a compressed template to get a decompressed template and said decompressing parameters, and the template has the said data structure.
  • Storage device 540 is used to store the decompressed data segments and also to store the said decompressing parameters.
  • Discarding device 550 is used to discard the decompressed template.
  • Figure 6 is a flow chart of sequentially decompressing a compressed data segment according to an embodiment of the present invention.
  • the compressed data segment is generated by the process of Figure 4 and the data segment has said data structure.
  • step S610 obtain a compressed template (step S610), and the template has said data structure.
  • the compressed template is obtained from a storage device and may also transferred from the network or other device.
  • the compressed template can also be obtained by sequentially compressing a template with the said data structure.
  • step S620 sequentially decompress the compressed template. More particularly, after initiating the decoding state, the compressed template is sequentially decompressed and a decompressed template and several decompressing parameters are obtained. These decompressing parameters can be used to decompress the following data segments to be decompressed and include the decompressing information of the compressed template comprising the information such as the decompressing style, address and data structure, etc.
  • the sequentially decompressing can use Zlib sequentially decompressing principle.
  • the decompressed template can be discarded (step S630), and the discarding can be implemented by the file ending tag of the template.
  • steps S610-S630 are procedures of sequentially decompressing the compressed template and thereby obtaining the decompressing parameters.
  • These decompressing parameters can be stored, for example, to a local storage device, and used to sequentially decompress another compressed data segments, which have the same or similar data structure.
  • the above steps S410-S430 can be skipped when decompressing another compressed data segment, that is, the decompressing parameters can be obtained directly from the storage device without decompressing a compressed template. It should be noted that, before directly obtaining the decompressing parameters from the storage device, the encoding state should be initiated firstly to make sure the current process is not affected by the decompressing parameters at the end of the previous process.
  • the compressed data segment can be obtained from a storage device or transferred from network or other devices.
  • sequentially decompress the compressed data segments (step S650), and the sequentially decompressing can use Zlib sequentially decompressing principle. Find the corresponding replacement information according to the obtained decompressing parameters and storage address in the compressed data segment and replace the decompressed data segment with the replacement information, then get a completed decompressed data segment.
  • the decompressed data segment has said data structure and includes the specific valid content.
  • Above decompressing process completes the decompressing of a compressed data segment, and in many cases, it needs to sequentially decompress many compressed data segments in turn, which have same/ similar data structure.
  • the next compressed data segment can be decompressed sequentially using above process. It should be noted that, in the beginning of each process, the encoding state should be initiated; for example, cleaning all the decompressing parameters in the compressing device to make sure next process is not affected by the decompressing parameters at the end of current process since the parameters at the end of current process include some decompressing parameters corresponding to the valid content in the data segment.
  • the method of sequentially compressing/decompressing data in above embodiment mainly transfers the data to data segments with the same data structure by preprocessing and at the same time, gets a template constructing the data segments for compressing/decompressing data.
  • the method obtains the compressing parameters needed for the compressing of data segments with the same data structure by compressing a template with a data structure and sequentially compresses the data segments according the parameters and discards the compressed template, thus gets data segments with high compressing ratio. Meanwhile, because each data segment is separately sequentially compressed, it may randomly access each data segment.
  • the method obtains the compressing parameters needed for the decompressing of compressed data segments by decompressing a compressed template, the data segment has the same data structure with the template, decompresses the compressed data segments according to the parameters and thus gets a decompressed data segment. Meanwhile, since each data segment is separately sequentially compressed, it may decompress each compressed data segment separately.
  • the experiment results below can further show the advantage of the compressing ratio of the present invention comparing to the technologies in the prior art.
  • the experiment is based on the compressing ratio of the data segments using the technology described in Figure 2, and when sequentially compressing the same data segments, the compressing ratio is improved 38.4% using the present invention. All these methods use Zlib as the sequentially compressing/decompressing principle. The two results are described in below table.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • Data Mining & Analysis (AREA)
  • Databases & Information Systems (AREA)
  • Mathematical Physics (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Compression, Expansion, Code Conversion, And Decoders (AREA)
PCT/IB2005/051088 2004-05-13 2005-04-01 Method and apparatus for structured block-wise compressing and decompressing of xml data WO2005112270A1 (en)

Priority Applications (3)

Application Number Priority Date Filing Date Title
CNA2005800149354A CN1951017A (zh) 2004-05-13 2005-04-01 一种顺序压缩/解压缩数据的方法及装置
JP2007512605A JP2007537642A (ja) 2004-05-13 2005-04-01 Xmlデータの構造化されたブロック単位の圧縮及び解凍方法及び装置
EP05718613A EP1751873A1 (en) 2004-05-13 2005-04-01 Method and apparatus for structured block-wise compressing and decompressing of xml data

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN200410043562.0 2004-05-13
CNA2004100435620A CN1697327A (zh) 2004-05-13 2004-05-13 一种顺序压缩/解压缩数据的方法及装置

Publications (1)

Publication Number Publication Date
WO2005112270A1 true WO2005112270A1 (en) 2005-11-24

Family

ID=34962052

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/IB2005/051088 WO2005112270A1 (en) 2004-05-13 2005-04-01 Method and apparatus for structured block-wise compressing and decompressing of xml data

Country Status (5)

Country Link
EP (1) EP1751873A1 (ko)
JP (1) JP2007537642A (ko)
KR (1) KR20070011490A (ko)
CN (2) CN1697327A (ko)
WO (1) WO2005112270A1 (ko)

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7904417B2 (en) 2006-02-27 2011-03-08 Microsoft Corporation Recursive metadata templating
US20110145700A1 (en) * 2009-12-16 2011-06-16 Canon Kabushiki Kaisha Structured document analysis apparatus and structured document analysis method
US20110314070A1 (en) * 2010-06-18 2011-12-22 Microsoft Corporation Optimization of storage and transmission of data
CN101383617B (zh) * 2007-09-07 2012-06-13 三星电子株式会社 数据压缩/解压缩设备和方法
CN101383616B (zh) * 2007-09-07 2013-04-10 三星电子株式会社 数据压缩设备和方法
US8751687B2 (en) 2010-04-30 2014-06-10 Microsoft Corporation Efficient encoding of structured data

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110518917B (zh) * 2019-07-17 2023-01-03 华东计算技术研究所(中国电子科技集团公司第三十二研究所) 基于Huffman编码的LZW数据压缩方法及系统

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020107881A1 (en) * 2001-02-02 2002-08-08 Patel Ketan C. Markup language encapsulation
US20040054692A1 (en) * 2001-02-02 2004-03-18 Claude Seyrat Method for compressing/decompressing a structured document
US20040068696A1 (en) * 2001-02-05 2004-04-08 Claude Seyrat Method and system for compressing structured descriptions of documents

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020107881A1 (en) * 2001-02-02 2002-08-08 Patel Ketan C. Markup language encapsulation
US20040054692A1 (en) * 2001-02-02 2004-03-18 Claude Seyrat Method for compressing/decompressing a structured document
US20040068696A1 (en) * 2001-02-05 2004-04-08 Claude Seyrat Method and system for compressing structured descriptions of documents

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
NEUMULLER M ET AL: "Improving XML processing using adapted data structures", LECTURE NOTES IN COMPUTER SCIENCE, SPRINGER VERLAG, NEW YORK, NY, US, vol. 2593, 7 October 2002 (2002-10-07), pages 206 - 220, XP002320150, ISSN: 0302-9743 *
SUNDARESAN N ET AL: "Algorithms and programming models for efficient representation of XML for Internet applications", COMPUTER NETWORKS, ELSEVIER SCIENCE PUBLISHERS B.V., AMSTERDAM, NL, vol. 39, no. 5, 5 August 2002 (2002-08-05), pages 681 - 697, XP004369439, ISSN: 1389-1286 *
TOLANI P M ET AL INSTITUTE OF ELECTRICAL AND ELECTRONICS ENGINEERS: "XGrind: a query-friendly XML compressor", PROCEEDINGS 18TH. INTERNATIONAL CONFERENCE ON DATA ENGINEERING. (ICDE'2002). SAN JOSE, CA, FEB. 26 - MARCH 1, 2002, INTERNATIONAL CONFERENCE ON DATA ENGINEERING. (ICDE), LOS ALAMITOS, CA : IEEE COMP. SOC, US, vol. CONF. 18, 26 February 2002 (2002-02-26), pages 225 - 234, XP010588214, ISBN: 0-7695-1531-2 *

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7904417B2 (en) 2006-02-27 2011-03-08 Microsoft Corporation Recursive metadata templating
CN101383617B (zh) * 2007-09-07 2012-06-13 三星电子株式会社 数据压缩/解压缩设备和方法
CN101383616B (zh) * 2007-09-07 2013-04-10 三星电子株式会社 数据压缩设备和方法
US20110145700A1 (en) * 2009-12-16 2011-06-16 Canon Kabushiki Kaisha Structured document analysis apparatus and structured document analysis method
US8751687B2 (en) 2010-04-30 2014-06-10 Microsoft Corporation Efficient encoding of structured data
US20110314070A1 (en) * 2010-06-18 2011-12-22 Microsoft Corporation Optimization of storage and transmission of data

Also Published As

Publication number Publication date
CN1697327A (zh) 2005-11-16
JP2007537642A (ja) 2007-12-20
CN1951017A (zh) 2007-04-18
KR20070011490A (ko) 2007-01-24
EP1751873A1 (en) 2007-02-14

Similar Documents

Publication Publication Date Title
US8578058B2 (en) Real-time multi-block lossless recompression
US9680500B2 (en) Staged data compression, including block level long range compression, for data streams in a communications system
US7733247B1 (en) Method and system for efficient data transmission with server side de-duplication
US9390099B1 (en) Method and apparatus for improving a compression ratio of multiple documents by using templates
US5870036A (en) Adaptive multiple dictionary data compression
EP1751873A1 (en) Method and apparatus for structured block-wise compressing and decompressing of xml data
US20140070966A1 (en) Methods and systems for compressing and decompressing data
KR100527891B1 (ko) 허프만 디코딩을 수행하는 방법
US7800519B2 (en) Method and apparatus for compressing and decompressing data
WO2012040391A1 (en) Compressed distributed storage systems and methods for providing same
WO2013079999A1 (en) Methods and devices for encoding and decoding messages
CN114337678A (zh) 数据压缩方法、装置、设备及存储介质
CN114205613A (zh) 互联网音视频数据同步压缩的方法和系统
CN112380196B (zh) 一种用于数据压缩传输的服务器
EP2779467B1 (en) Staged data compression, including block-level long-range compression, for data streams in a communications system
CN113765854B (zh) 一种数据压缩方法及服务器
Rincy et al. Preprocessed text compression method for Malayalam text files
JP2005352561A (ja) データベースサーバ及びデータベースクライアント
Krainyk Combined Run-Length and Huffman Encoding for Image Compression
KR101418540B1 (ko) 압축 해제 방법 및 장치
KR20100030509A (ko) 컨텍스트 기반 적응적 가변길이 코딩의 디코딩 장치 및 디코딩을 위한 테이블 탐색 방법
JPH088754A (ja) データ圧縮伝送方式、並びにそれを用いたデータ伝送装置及び記憶装置
JPH06197226A (ja) 画像データ復元装置
JP2002344326A (ja) 合成インデックスによるデータ圧縮方法及び圧縮データの完全復元方法
JP2013211643A (ja) 圧縮方法、復元方法、情報処理装置及びプログラム

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 BW BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE EG 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 NA NI NO NZ OM PG PH PL PT RO RU SC SD SE SG SK SL SM SY TJ TM TN TR TT TZ UA UG US UZ VC VN YU ZA ZM ZW

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): GM KE LS MW MZ NA 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 IS IT LT LU MC NL PL 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
WWE Wipo information: entry into national phase

Ref document number: 2005718613

Country of ref document: EP

WWE Wipo information: entry into national phase

Ref document number: 200580014935.4

Country of ref document: CN

Ref document number: 2007512605

Country of ref document: JP

WWE Wipo information: entry into national phase

Ref document number: 1020067023759

Country of ref document: KR

Ref document number: 4179/CHENP/2006

Country of ref document: IN

NENP Non-entry into the national phase

Ref country code: DE

WWW Wipo information: withdrawn in national office

Ref document number: DE

WWP Wipo information: published in national office

Ref document number: 1020067023759

Country of ref document: KR

WWP Wipo information: published in national office

Ref document number: 2005718613

Country of ref document: EP

WWW Wipo information: withdrawn in national office

Ref document number: 2005718613

Country of ref document: EP