EP1334557A2 - Static information knowledge used with binary compression methods - Google Patents

Static information knowledge used with binary compression methods

Info

Publication number
EP1334557A2
EP1334557A2 EP01983894A EP01983894A EP1334557A2 EP 1334557 A2 EP1334557 A2 EP 1334557A2 EP 01983894 A EP01983894 A EP 01983894A EP 01983894 A EP01983894 A EP 01983894A EP 1334557 A2 EP1334557 A2 EP 1334557A2
Authority
EP
European Patent Office
Prior art keywords
communication
dictionary
symbol string
given
entity
Prior art date
Legal status (The legal status 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 status listed.)
Withdrawn
Application number
EP01983894A
Other languages
German (de)
French (fr)
Inventor
Hans Hannu
Krister Svanbro
Jan Christoffersson
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Telefonaktiebolaget LM Ericsson AB
Original Assignee
Telefonaktiebolaget LM Ericsson AB
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
Priority claimed from US09/814,406 external-priority patent/US6985965B2/en
Application filed by Telefonaktiebolaget LM Ericsson AB filed Critical Telefonaktiebolaget LM Ericsson AB
Publication of EP1334557A2 publication Critical patent/EP1334557A2/en
Withdrawn legal-status Critical Current

Links

Classifications

    • 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
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/04Protocols for data compression, e.g. ROHC
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/18Multiprotocol handlers, e.g. single devices capable of handling multiple protocols

Definitions

  • the present invention relates to the compression of messages in communication using data protocols, e.g. Internet protocols.
  • data protocols e.g. Internet protocols.
  • IPs Internet Protocols
  • SIP Session Initiation Protocol
  • SIP is an application layer protocol for establishing, modifying, and terminating multimedia sessions or calls. These sessions may include Internet multimedia conferences, Internet telephony, and similar applications. As is understood in this art, SIP can be used over either the Transmission Control Protocol (TCP) or the User Datagram Protocol (UDP).
  • TCP Transmission Control Protocol
  • UDP User Datagram Protocol
  • RTSP Real Time Streaming Protocol
  • RTSP may also be used with UDP, TCP, or other protocols as a transport protocol.
  • SDP Session Description Protocol
  • SDP is used to advertise multimedia conferences and communicate conference addresses and conference tool- specific information. SDP is also used for general real-time multimedia session description purposes. SDP is carried in the message body of SIP and RTSP messages. SIP, RTSP, and SDP are all ASCII text based using the ISO 10646 character set in UTF-8 encoding.
  • IP Internet Protocol
  • SIP Session Initiation Protocol
  • SIP, RTSP, and SDP protocols share similar characteristics which have implications in their use with cellular radio access.
  • One of these similarities is the general request and reply nature of the protocols. Typically, when a sender sends a request, the sender stays idle until a response is received.
  • SIP, RTSP, and SDP are all ASCII text based using the ISO 10646 character set with UTF-8 encoding. As a result, information is usually represented using a greater number of bits than would be required in a binary representation of the same information.
  • Still another characteristic that is shared by the protocols is that they are generally large in size in order to provide the necessary information to session participants.
  • IP protocol suite introduces due to large headers and text-based signaling protocols. It is very important in cellular systems to use the scarce radio resources in an efficient manner. In cellular systems it is important to support a sufficient number of users per cell, otherwise implementation and operation costs will be prohibitive. Frequency spectrum, and thus bandwidth, is a costly resource in cellular links and should be used efficiently to maximize system resources.
  • a dictionary compression scheme uses a data structure known as a dictionary to store strings of symbols which are found in the input data. The scheme reads in input data and looks for strings of symbols which match those in the dictionary. If a string match is found, a pointer or index to the location of that string in the dictionary is output and transmitted instead of the string itself. If the index is smaller than the string it replaces, compression will occur.
  • a decompressor contains a representation of the compressor dictionary so that the original string may be reproduced from the received index.
  • An example of a dictionary compression method is the Lempel-Ziv (LZ77) algorithm. This algorithm operates by replacing character strings which have previously occurred in the file by references to the previous occurrence. This method is, of course, particularly successful in files where repeated strings are common.
  • Dictionary compression schemes may be generally categorized as either static or dynamic.
  • a static dictionary is a predefined dictionary, which is constructed before compression occurs, and which does not change during the compression process.
  • Static dictionaries are typically either stored in the compressor and decompressor prior to use, or transmitted and stored in memory prior to the start of compression operations.
  • a dynamic or adaptive dictionary scheme allows the contents of the dictionary to change as compression occurs.
  • a dynamic dictionary scheme starts out with either no dictionary or a default, predefined dictionary and adds new strings to the dictionary during the compression process. If a string of input data is not found in the dictionary, the string is added to the dictionary in a new position and assigned a new index value. The new string is transmitted to the decompressor so that it can be added to the dictionary of the decompressor. The position of the new string does not have to be transmitted, as the decompressor will recognize that a new string has been received, and will add the string to the decompressor dictionary in the same position in which it was added in the compressor dictionary. In this way, a future occurrence of the string in the input data can be compressed using the updated dictionary.
  • the dictionaries at the compressor and decompressor are constructed and updated dynamically as compression occurs.
  • One method of dictionary compression is of the type known as sliding window compression.
  • the compressor moves a fixed-size sliding window from left to right through the file during compression.
  • the compression algorithm searches the file to the left of the window for matches to strings currently in the window. If a match is found the string is replaced by a reference to the location of the match within the file along with a reference to the length of the match.
  • the window may consist of a text window consisting of a large block of recently decoded text and a look- ahead buffer. In this version, the look-ahead buffer is used to search for matches within the text window. If a match is found the string is replaced by a reference to the location of the match within the text window and reference to the length of the match. This information is used by the decompressor which maintains the same dictionary to reproduce the original information.
  • Another method for the compression of data is the use of a binary code tree.
  • symbols or strings which are to be compressed are represented in a tree structure by a variable number of bits such that each symbol is uniquely decodable.
  • symbols with higher probabilities of occurrence in the input data are represented by a shorter number of bits than those which have lower probabilities of occurrence.
  • individual symbols are laid out as a string of leaf nodes connected to a binary tree. Symbols with higher probabilities of occurrence are represented as shorter branches of the tree resulting in a fewer number of bits being required to represent them. Conversely, symbols with lower probabilities of occurrence are represented as longer branches of the tree requiring a greater number of representation bits.
  • binary code trees may be static or dynamic.
  • static binary code tree scheme a predefined binary code tree is constructed prior to compression and does not change during the compression process.
  • static binary code trees may be stored in the compressor and decompressor in advance, or transmitted and stored prior to the start of compression.
  • a dynamic or adaptive binary code tree allows for the addition of new symbols or strings to the code tree during the compression process.
  • Various methods may be used to update the nodes of the tree according to the type of binary code tree compression used to allow for the addition of new symbols and the rearrangement of the code tree.
  • the binary code tree in the decompressor must also be updated according to the same rules as the binary code tree in the compressor.
  • One example of a binary code tree compression scheme is that of a Huffman coding compression scheme.
  • Huffman compression is a general compression method intended primarily for compression of ASCII files. Characters occurring frequently in the files are replaced by shorter codes, i.e. codes with less than the 8 bits used by the ASCII code. Huffman compression can be successful in files where relatively few characters are used.
  • a general criteria for successful compression using the aforementioned binary compression algorithms is that the file to be compressed is reasonably large.
  • the codes for Huffman compression must not be too large compared to the file which is being compressed.
  • the file to be compressed must be large enough to have many repeated strings to achieve efficient compression.
  • the messages produced by the aforementioned protocols are mostly a few hundred bytes and not large enough to allow efficient compression with the aforementioned algorithms on a message by message basis.
  • the present invention is directed to a method, system, and apparatus for increasing the efficiency of the compression of a communication protocol for use over bandwidth limited communication links.
  • One aspect of the present invention uses the knowledge of the structure and content of communication protocols to form a static dictionary or static binary code tree. As a result, the compression efficiency can be greatly increased.
  • Another aspect of the present invention provides a combined static and dynamic dictionary or binary code tree to perform communication protocol compression.
  • the static binary code tree or static dictionary is constructed by studying flows of data protocols in the conditions of their intended usage.
  • FIGURE 1 illustrates an exemplary system for communication in accordance with the present invention
  • FIGURE 2 illustrates an exemplary embodiment in accordance with the present invention
  • FIGURE 3 illustrates an exemplary data packet for compression and decompression in accordance with the present invention
  • FIGURE 4 illustrates another exemplary embodiment in accordance with the present invention.
  • FIGURE 5 illustrates another exemplary embodiment in accordance with the present invention.
  • FIGURE 1 illustrates an exemplary system for communication in accordance with the present invention.
  • a mobile terminal 110 is in communication with a base station 120 using communication protocols over a communication link 115, e.g. a wireless link.
  • the base station 120 is in communication with a fixed network 130,such as a PSTN, via a link 125.
  • Fixed network 130 is in communication with a base station 140 via a link 135.
  • Base station 140 is in communication with a terminal 150, which may be a mobile terminal or a fixed terminal, using communication link 145.
  • the mobile terminal 110 communicates with the base station 120 using compressed data over the communication link 115.
  • base station 140 may communicate with terminal 150 using compressed data.
  • components in the system of FIGURE 1, such as mobile terminal 110 and base station 140 may include a memory 160 and processor 155 used for storing and executing software instructions which implement compression and decompression algorithms.
  • the present invention may be used in other communication systems, such as a cellular network, that use communication protocols over links in which compression is desired.
  • FIGURE 2 illustrates an exemplary embodiment of the present invention.
  • an entity A (210) communicates with an entity B (230) using communication links (250, 255) in which data compression is used.
  • Each entity includes a data compressor (215, 245) and a data decompressor (225, 235).
  • a dictionary compression methodology is used.
  • a static dictionary 220 in each entity is used to compress and decompress data to be communicated over the communication links using a data protocol.
  • the compressor and/or decompressor may be implemented using a processor and associated memory having stored therein instructions for a compression/decompression algorithm(s).
  • the communication entities may comprise a number of communication devices.
  • entity A may comprise mobile terminal 110
  • entity B may comprise base station 140.
  • entity A (210) and entity B (230) use identical static dictionaries 220.
  • the static dictionary 220 may be built from protocol field-names and common symbol strings used by the communication protocol, e.g. , an Internet protocol, which is being used to communicate over the communication links (250, 255).
  • the communication entities may comprise a number of communication devices.
  • entity A may comprise a mobile terminal
  • entity B may comprise a base station.
  • entries that may be used to form the dictionary include media- type information such as audio, video, and image information.
  • Other examples of dictionary entries which may used to form the dictionary include the protocol token JO-
  • FIGURE 3 illustrates an exemplary data packet 310 for compression and decompression in accordance with the present invention.
  • data packet 310 represents information which will be transmitted according to a given data protocol.
  • String A (320) and string C (340) represent portions of the data packet 310 which are not found in the static dictionary.
  • String B (330) and string D (350) represents portions of the data packet 310 which are found in the static dictionary.
  • an index 370 to a location of string B in the static dictionary and an index 380 to a location of string D in the static dictionary need to be transmitted for those portions of the data packet 310.
  • String A (330) and string C (340) may then be added as uncompressed data to index 370 and index 380 to form the compressed data packet 360.
  • strings A (320) and string C (340) may be compressed using any of a number of compression methods known to one skilled in the art.
  • the compressed data packet 360 is then transmitted to a receiving entity.
  • the index 370 and index 380 are matched to the corresponding entries in the identical static dictionary of the receiving entity to form a reconstruction of string B (330') and string D (350').
  • the received string A (320') and string C (340') is combined with the reconstruction of string B (330') and string D (350') to form a reconstruction of the original data packet (310').
  • FIGURE 4 illustrates another exemplary embodiment of the present invention. Since the nature and format of data which is transmitted using bidirectional communication is often different for each direction of communication, a compression scheme which can be tailored individually to each communication direction is beneficial.
  • an entity A (410) includes a data compressor 415 with associated static dictionary A (420), and a data decompressor 425 with associated static dictionary B (430) .
  • An entity B (440) includes a data decompressor 445 with associated static dictionary A (420), and data compressor 455 with associated static dictionary B (430).
  • entity A (410) sends a message or data compressed using data compressor 415 to entity B (440) over communication link 460 to be decompressed with decompressor 445 using static dictionary A (420).
  • compressor 415 of entity A (410) and decompressor 445 of entity B (440) use identical static dictionary A (420) for compression and decompression.
  • entity B (440) sends a message or data compressed using data compressor 455 to entity A (410) over communication link 465 to be decompressed using decompressor 425.
  • decompressor 425 of entity A (410) use identical static dictionary B (430) for compression and decompression.
  • This exemplary embodiment of the present invention allows for the design of static dictionaries which are optimized for each direction of communication.
  • FIGURE 5 illustrates another exemplary embodiment in accordance with the present invention in which a combined static and dynamic dictionary is used.
  • an initial static dictionary is used as a starting dictionary for the compressor and decompressor at each communication entity.
  • the dictionary operates as a dynamic dictionary.
  • an entity A (510) including a compressor 515 with an associated static/dynamic dictionary 520, communicates with an entity B (530), including a decompressor 535 with an associated static/dynamic dictionary 540, using a first communication link 550.
  • a message to be compressed and transmitted to entity B (530) is tested against the dictionary 520. If a portion of the message matches a dictionary entry, that portion is replaced by its corresponding index. The message portion which is not matched to an entry in the dictionary 520, or alternatively selected fields of this message portion, are then added to the dictionary 520 for use in future compression.
  • entity B (530) The index and the uncompressed portion are then transmitted to entity B (530) over the first communication link 550.
  • Entity B (530) then decodes and separates the received message into the index information and the uncompressed portion.
  • the decompressor 535 in entity B (530) reproduces the compressed information by matching the index to an entry in its dictionary 540, which is then added to the uncompressed data to form the original message.
  • the message portion which was added to the dictionary 520 in entity A (510) is then added to the dictionary 540 of entity B (530) so that each entity maintains matching dictionaries.
  • Subsequent messages transmitted from entity A (510) to entity B (530) are compressed by using the updated dictionary 520 and decompressed by entity B (530) using updated dictionary 540.
  • dictionary 520 of entity A (520) and dictionary 540 of entity B are dynamically updated to allow the compression methodology to adapt to the data that is being transmitted, which provides for continual improvement in compression efficiency.
  • entity A (510) may include a decompressor 525 and entity B (530) may include a compressor 545, respectively, thus allowing for entity B (530) to send compressed messages to entity A (510) using a second communication link 555.
  • entity A may include a decompressor 525
  • entity B may include a compressor 545, respectively, thus allowing for entity B (530) to send compressed messages to entity A (510) using a second communication link 555.
  • Decompressor 525 of entity A may use the same static/dynamic dictionary 520 as compressor 515.
  • compressor 545 of entity B may use the same static/dynamic dictionary 540 as decompressor 535.
  • a separate static/dynamic dictionary may be used for each compressor/decompressor pair, allowing for the use of static/dynamic dictionaries which can be optimized for each direction of communication.
  • a sliding window dictionary compression method may be used. As in the previous embodiment, an initial static dictionary is used as a starting dictionary for the compressor and decompressor, which then operates as a dynamic dictionary as soon as communication begins.
  • a message to be compressed is appended to the dictionary in a first entity containing a compressor.
  • the dictionary with the appended message is then processed according to a sliding window compression method, e.g. Lempel-Ziv, to produce the compressed message.
  • the dictionary may also be compressed along with the attached message.
  • the part of the compressed message corresponding to the static/dynamic dictionary is removed and replaced with a reference or an index to a corresponding location in the dictionary.
  • the rest of the compressed message along with the reference information is transmitted to the decompressor in a second entity.
  • the received compressed message is appended to a compressed version of the static/dynamic dictionary in the second entity so that the decompressor has the same dictionary as the compressor.
  • the result is then processed by the corresponding decompression method, e.g. Lempel-Ziv, to produce the original message.
  • the dictionary is not compressed by the compression method.
  • the dictionary may be preloaded into the buffers and search trees used in the implementation of the compression algorithm prior to operation. When a message to be compressed arrives, the actual compression will start at the position in the buffer in which the message has been loaded. Thus the dictionary will not be compressed, only the message itself.
  • the corresponding dictionary of the decompressor will also be in an uncompressed form.
  • An important aspect of the present invention is the construction of the static dictionary.
  • One exemplary methodology of constructing a static dictionary in accordance with the present invention includes studying flows of data packets to collect statistical data for the desired communication protocols over the communication links in which compression is desired. Through the use of this statistical data the static dictionary may be constructed using the most frequently used protocol field names and other common strings of a given communication protocol to provide optimal compression of the data or messages which are to be sent. The static dictionary may then be constructed and stored at both a first communication entity and a second communication entity prior to use. Such storage prior to use would be particularly beneficial for use in short communication sessions so that overhead which may occur at the beginning of a communication session is reduced. Alternately the static dictionary may be sent from the compressor to the decompressor at the beginning of a communication session before compression occurs.
  • a static binary code tree scheme may be used.
  • a static binary code tree may be constructed using statistical methods such as studying flows of packets for the desired data protocol over the communication link. Using this statistical information, the static binary code tree may be constructed such that protocol field names and other common strings of the data protocol which have a higher probability of occurrence are represented with a smaller number of bits than those that have a lower probability of occurrence. As a result, compression efficiency is increased.
  • One such example of a binary code tree compression scheme which may be used in the practice of the present invention is that of a Huffman coding method.
  • a static binary code tree may be used in combination with a static dictionary.
  • a static dictionary is first constructed using a desired methodology such as one of the aforedescribed methodologies in accordance with the present invention.
  • a static binary code tree may then be constructed by studying flows of packets for the desired data protocol with the static dictionary in use and constructing the static binary code tree accordingly.
  • the combined use of static dictionary compression and static binary code tree compression, such as that of Huffman coding, may be used to increase compression efficiency of the transmitted data.

Abstract

A system, method, and apparatus for increasing the efficiency of the compression of a communication protocol for use over bandwidth limited communication links (250, 255, 550). One aspect of the present invention uses the knowledge of the structure and content of communication protocols to form a static dictionary (220, 420, 430) or static binary code tree. As a result, the compression efficiency can be greatly increased. Another aspect of the present invention provides a combined static and dynamic dictionary (520, 540) or binary code tree to perform communication protocol compression. In one aspect of the invention, the static binary code tree or static dictionary (220, 420, 430) is constructed by studying flows of data protocols in the conditions of their intended usage.

Description

STATIC INFORMATION KNOWLEDGE USED WITH BINARY COMPRESSION METHODS
CROSS-REFERENCE TO RELATED APPLICATIONS This patent application is related to and claims priority from U.S. Patent
Application No. 60/249,923, filed November 16, 2000 (Attorney Docket No. 34645- 522USPL); U.S. Patent ApplicationNo.09/814407 filed concurrently herewith, entitled "Communication System and Method Utilizing Request-Reply Communication Patterns for Data Compression" (Attorney Docket No. 34645-523USPT); U.S. Patent Application No.09/814268, filed concurrently herewith, entitled "System and Method For Communicating With Temporary Compression Tables" (Attorney Docket No. 34645-524USPT); and U.S. Patent Application No. 09/0814434, filed concurrently herewith, entitled "Communication System and Method For Shared Context Compression" (Attorney Docket No. 34645-525USPT).
BACKGROUND OF THE INVENTION Technical Field of the Invention
The present invention relates to the compression of messages in communication using data protocols, e.g. Internet protocols. Background and Objects of the Present Invention
Two communication technologies that have become widely used by the general public in recent years are cellular telephony and the Internet. Some of the benefits that have been provided by cellular telephony have been freedom of mobility and accessability with reasonable service quality despite a user's location. Until recently the main service provided by cellular telephony has been speech. In contrast, the Internet, while offering flexibility for different types of usage, has been mainly focused on fixed connections and large terminals. However, the experienced quality of some services, such as Internet telephony, has generally been regarded as quite low. A number of Internet Protocols (IPs) have been developed to provide for communication across the Internet and other networks. An example of such an Internet protocol is the Session Initiation Protocol (SIP). SIP is an application layer protocol for establishing, modifying, and terminating multimedia sessions or calls. These sessions may include Internet multimedia conferences, Internet telephony, and similar applications. As is understood in this art, SIP can be used over either the Transmission Control Protocol (TCP) or the User Datagram Protocol (UDP).
Another example of an Internet Protocol is the Real Time Streaming Protocol (RTSP), which is an application level protocol for control of the delivery of data with real-time properties, such as audio and video data. RTSP may also be used with UDP, TCP, or other protocols as a transport protocol. Still another example of an Internet Protocol is the Session Description Protocol (SDP), which is used to advertise multimedia conferences and communicate conference addresses and conference tool- specific information. SDP is also used for general real-time multimedia session description purposes. SDP is carried in the message body of SIP and RTSP messages. SIP, RTSP, and SDP are all ASCII text based using the ISO 10646 character set in UTF-8 encoding.
Due to new technological developments, Internet and cellular telephony technologies are beginning to merge. Future cellular devices will contain an Internet Protocol (IP) stack and support voice over IP as well as web-browsing, e-mail, and other desirable services. In an "all-IP" or "IP all the way" implementation, Internet Protocols are used end-to-end in the communication system. In a cellular system this may include IP over cellular links and radio hops. Internet Protocols may be used for all types of traffic including user data, such as voice or streaming data, and control data, such as SIP or RTSP data. Such a merging of technologies provides for the flexibility advantages of IP along with the mobility advantages of cellular technology.
As is understood in the art, the SIP, RTSP, and SDP protocols share similar characteristics which have implications in their use with cellular radio access. One of these similarities is the general request and reply nature of the protocols. Typically, when a sender sends a request, the sender stays idle until a response is received. Another similarity, as previously described, is that SIP, RTSP, and SDP are all ASCII text based using the ISO 10646 character set with UTF-8 encoding. As a result, information is usually represented using a greater number of bits than would be required in a binary representation of the same information. Still another characteristic that is shared by the protocols is that they are generally large in size in order to provide the necessary information to session participants.
A disadvantage with IP is the relatively large overhead the IP protocol suite introduces due to large headers and text-based signaling protocols. It is very important in cellular systems to use the scarce radio resources in an efficient manner. In cellular systems it is important to support a sufficient number of users per cell, otherwise implementation and operation costs will be prohibitive. Frequency spectrum, and thus bandwidth, is a costly resource in cellular links and should be used efficiently to maximize system resources.
In the UMTS and EDGE mobile communication systems and in future releases of second generation systems, such as GSM and IS-95, much of the signaling traffic will be performed by using Internet protocols. However as discussed, most of the Internet protocols have been developed for fixed, relatively broadband connections. When access occurs over narrow band cellular links, compression of the protocol messages is needed to meet quality of service requirements, such as set-up time and delay. Typically, compression over the entire communication path is not needed. However, compression of traffic over the radio link, such as from a wireless user terminal to a core network, is greatly desirable. Standard binary compression methods, such as Lempel-Ziv and Huffman coding, are very general in the sense that they do not utilize any explicit knowledge of the structure of the data to be compressed. The use of such methods on Internet data protocols, e.g., SIP and RTSP, present difficulties for the efficient compression of communication messages. Standard binary compression methods available today are typically designed for large data files. As a consequence, use of such methods for the compression of small messages or messages with few repeated strings results in compression performance generally regarded as very poor. In fact, if the message to be compressed is small and/or contains few repeated strings, the use of some standard compression methods may result in a compressed packet which is actually larger than the original uncompressed packet, thereby achieving a counterproductive result.
One method for implementing a binary compression scheme is the use of dictionary based compression techniques. In general, a dictionary compression scheme uses a data structure known as a dictionary to store strings of symbols which are found in the input data. The scheme reads in input data and looks for strings of symbols which match those in the dictionary. If a string match is found, a pointer or index to the location of that string in the dictionary is output and transmitted instead of the string itself. If the index is smaller than the string it replaces, compression will occur. A decompressor contains a representation of the compressor dictionary so that the original string may be reproduced from the received index. An example of a dictionary compression method is the Lempel-Ziv (LZ77) algorithm. This algorithm operates by replacing character strings which have previously occurred in the file by references to the previous occurrence. This method is, of course, particularly successful in files where repeated strings are common.
Dictionary compression schemes may be generally categorized as either static or dynamic. A static dictionary is a predefined dictionary, which is constructed before compression occurs, and which does not change during the compression process. Static dictionaries are typically either stored in the compressor and decompressor prior to use, or transmitted and stored in memory prior to the start of compression operations.
A dynamic or adaptive dictionary scheme, on the other hand, allows the contents of the dictionary to change as compression occurs. In general a dynamic dictionary scheme starts out with either no dictionary or a default, predefined dictionary and adds new strings to the dictionary during the compression process. If a string of input data is not found in the dictionary, the string is added to the dictionary in a new position and assigned a new index value. The new string is transmitted to the decompressor so that it can be added to the dictionary of the decompressor. The position of the new string does not have to be transmitted, as the decompressor will recognize that a new string has been received, and will add the string to the decompressor dictionary in the same position in which it was added in the compressor dictionary. In this way, a future occurrence of the string in the input data can be compressed using the updated dictionary. As a result, the dictionaries at the compressor and decompressor are constructed and updated dynamically as compression occurs.
One method of dictionary compression is of the type known as sliding window compression. In this method the compressor moves a fixed-size sliding window from left to right through the file during compression. The compression algorithm searches the file to the left of the window for matches to strings currently in the window. If a match is found the string is replaced by a reference to the location of the match within the file along with a reference to the length of the match. Alternately, the window may consist of a text window consisting of a large block of recently decoded text and a look- ahead buffer. In this version, the look-ahead buffer is used to search for matches within the text window. If a match is found the string is replaced by a reference to the location of the match within the text window and reference to the length of the match. This information is used by the decompressor which maintains the same dictionary to reproduce the original information.
Another method for the compression of data is the use of a binary code tree. In a binary code tree, symbols or strings which are to be compressed are represented in a tree structure by a variable number of bits such that each symbol is uniquely decodable. Typically, symbols with higher probabilities of occurrence in the input data are represented by a shorter number of bits than those which have lower probabilities of occurrence. In the construction of the binary code tree, individual symbols are laid out as a string of leaf nodes connected to a binary tree. Symbols with higher probabilities of occurrence are represented as shorter branches of the tree resulting in a fewer number of bits being required to represent them. Conversely, symbols with lower probabilities of occurrence are represented as longer branches of the tree requiring a greater number of representation bits. When a string of input data matches a symbol in the binary code tree of the compressor, the code of the symbol is transmitted instead of the symbol itself resulting in data compression. A decompressor receiving the code reconstructs the original symbol or string using an identical binary code tree.
Similarly to dictionary compression, binary code trees may be static or dynamic. In a static binary code tree scheme, a predefined binary code tree is constructed prior to compression and does not change during the compression process. As with static dictionaries, static binary code trees may be stored in the compressor and decompressor in advance, or transmitted and stored prior to the start of compression.
A dynamic or adaptive binary code tree allows for the addition of new symbols or strings to the code tree during the compression process. Various methods may be used to update the nodes of the tree according to the type of binary code tree compression used to allow for the addition of new symbols and the rearrangement of the code tree. The binary code tree in the decompressor must also be updated according to the same rules as the binary code tree in the compressor. One example of a binary code tree compression scheme is that of a Huffman coding compression scheme. Huffman compression is a general compression method intended primarily for compression of ASCII files. Characters occurring frequently in the files are replaced by shorter codes, i.e. codes with less than the 8 bits used by the ASCII code. Huffman compression can be successful in files where relatively few characters are used.
A general criteria for successful compression using the aforementioned binary compression algorithms is that the file to be compressed is reasonably large. The codes for Huffman compression must not be too large compared to the file which is being compressed. For standard Lempel-Ziv compression, the file to be compressed must be large enough to have many repeated strings to achieve efficient compression. The messages produced by the aforementioned protocols are mostly a few hundred bytes and not large enough to allow efficient compression with the aforementioned algorithms on a message by message basis.
Thus a need exists in the art for increasing the efficiency and performance of the compression of messages sent using communication protocols so that they may be used over bandwidth limited communication links and channels.
SUMMARY OF THE INVENTION
The present invention is directed to a method, system, and apparatus for increasing the efficiency of the compression of a communication protocol for use over bandwidth limited communication links. One aspect of the present invention uses the knowledge of the structure and content of communication protocols to form a static dictionary or static binary code tree. As a result, the compression efficiency can be greatly increased. Another aspect of the present invention provides a combined static and dynamic dictionary or binary code tree to perform communication protocol compression. In one aspect of the invention, the static binary code tree or static dictionary is constructed by studying flows of data protocols in the conditions of their intended usage.
BRIEF DESCRIPTION OF THE DRAWINGS
A more complete understanding of the system, method and apparatus of the present invention may be had by reference to the following Detailed Description when taken in conjunction with the accompanying Drawings wherein:
FIGURE 1 illustrates an exemplary system for communication in accordance with the present invention; FIGURE 2 illustrates an exemplary embodiment in accordance with the present invention;
FIGURE 3 illustrates an exemplary data packet for compression and decompression in accordance with the present invention; FIGURE 4 illustrates another exemplary embodiment in accordance with the present invention; and
FIGURE 5 illustrates another exemplary embodiment in accordance with the present invention.
DETAILED DESCRIPTION OF THE PRESENTLY PREFERRED EXEMPLARY EMBODIMENTS
The present invention will now be described more fully hereinafter with reference to the accompanying Drawings, in which preferred embodiments of the invention are shown. This invention may, however, be embodied in many different forms and should not be construed as limited to the embodiments set forth herein; rather, these embodiments are provided so that this disclosure will be thorough and complete, and will fully convey the scope of the invention to those skilled in the art. FIGURE 1 illustrates an exemplary system for communication in accordance with the present invention. A mobile terminal 110 is in communication with a base station 120 using communication protocols over a communication link 115, e.g. a wireless link. The base station 120 is in communication with a fixed network 130,such as a PSTN, via a link 125. Fixed network 130 is in communication with a base station 140 via a link 135. Base station 140 is in communication with a terminal 150, which may be a mobile terminal or a fixed terminal, using communication link 145. According to an embodiment of the present invention, the mobile terminal 110 communicates with the base station 120 using compressed data over the communication link 115. Similarly, base station 140 may communicate with terminal 150 using compressed data. It should be understood that components in the system of FIGURE 1, such as mobile terminal 110 and base station 140, may include a memory 160 and processor 155 used for storing and executing software instructions which implement compression and decompression algorithms. It should also be understood that the present invention may be used in other communication systems, such as a cellular network, that use communication protocols over links in which compression is desired. FIGURE 2 illustrates an exemplary embodiment of the present invention. In this embodiment an entity A (210) communicates with an entity B (230) using communication links (250, 255) in which data compression is used. Each entity includes a data compressor (215, 245) and a data decompressor (225, 235). According to an exemplary embodiment of the present invention, a dictionary compression methodology is used. In this embodiment a static dictionary 220 in each entity is used to compress and decompress data to be communicated over the communication links using a data protocol. It should be understood that the compressor and/or decompressor may be implemented using a processor and associated memory having stored therein instructions for a compression/decompression algorithm(s). It should also be understood that the communication entities may comprise a number of communication devices. For example, entity A may comprise mobile terminal 110, and entity B may comprise base station 140.
According to an embodiment of present invention entity A (210) and entity B (230) use identical static dictionaries 220. The static dictionary 220 may be built from protocol field-names and common symbol strings used by the communication protocol, e.g. , an Internet protocol, which is being used to communicate over the communication links (250, 255). It should be understood that the communication entities may comprise a number of communication devices. For example, entity A may comprise a mobile terminal, and entity B may comprise a base station.
An example of entries that may be used to form the dictionary include media- type information such as audio, video, and image information. Other examples of dictionary entries which may used to form the dictionary include the protocol token JO-
method used, such as GET, HEAD, and POST, or header field names used in a particular protocol, such as Connection, Date, and Accept. In this exemplary embodiment, only the portion of the data packet which may be found in the dictionary is compressed, while the rest of the data packet may be transmitted uncompressed or compressed using an alternate method known to one skilled in the art.
FIGURE 3 illustrates an exemplary data packet 310 for compression and decompression in accordance with the present invention. According to this embodiment, data packet 310 represents information which will be transmitted according to a given data protocol. String A (320) and string C (340) represent portions of the data packet 310 which are not found in the static dictionary. String B (330) and string D (350) represents portions of the data packet 310 which are found in the static dictionary. Instead of sending string B (320) and string D (350), only an index 370 to a location of string B in the static dictionary and an index 380 to a location of string D in the static dictionary need to be transmitted for those portions of the data packet 310. String A (330) and string C (340) may then be added as uncompressed data to index 370 and index 380 to form the compressed data packet 360. Alternately, strings A (320) and string C (340) may be compressed using any of a number of compression methods known to one skilled in the art. The compressed data packet 360 is then transmitted to a receiving entity. After reception of the compressed data packet 360 by the receiving entity, the index 370 and index 380 are matched to the corresponding entries in the identical static dictionary of the receiving entity to form a reconstruction of string B (330') and string D (350'). The received string A (320') and string C (340') is combined with the reconstruction of string B (330') and string D (350') to form a reconstruction of the original data packet (310'). Alternately, if string A (320) and string C (340) were compressed prior to transmission, they are uncompressed before being combined with the reconstruction of string B (330') and string D (350') to form the reconstruction of the original data packet (310'). FIGURE 4 illustrates another exemplary embodiment of the present invention. Since the nature and format of data which is transmitted using bidirectional communication is often different for each direction of communication, a compression scheme which can be tailored individually to each communication direction is beneficial. In this embodiment, an entity A (410) includes a data compressor 415 with associated static dictionary A (420), and a data decompressor 425 with associated static dictionary B (430) . An entity B (440) includes a data decompressor 445 with associated static dictionary A (420), and data compressor 455 with associated static dictionary B (430). During operation, entity A (410) sends a message or data compressed using data compressor 415 to entity B (440) over communication link 460 to be decompressed with decompressor 445 using static dictionary A (420). In this manner, compressor 415 of entity A (410) and decompressor 445 of entity B (440) use identical static dictionary A (420) for compression and decompression. Similarly, entity B (440) sends a message or data compressed using data compressor 455 to entity A (410) over communication link 465 to be decompressed using decompressor 425. Compressor 455 of entity B
(440) and decompressor 425 of entity A (410) use identical static dictionary B (430) for compression and decompression. This exemplary embodiment of the present invention allows for the design of static dictionaries which are optimized for each direction of communication.
FIGURE 5 illustrates another exemplary embodiment in accordance with the present invention in which a combined static and dynamic dictionary is used. In this embodiment, an initial static dictionary is used as a starting dictionary for the compressor and decompressor at each communication entity. As soon as communication begins the dictionary operates as a dynamic dictionary. In this embodiment, an entity A (510), including a compressor 515 with an associated static/dynamic dictionary 520, communicates with an entity B (530), including a decompressor 535 with an associated static/dynamic dictionary 540, using a first communication link 550.
In entity A (510), a message to be compressed and transmitted to entity B (530) is tested against the dictionary 520. If a portion of the message matches a dictionary entry, that portion is replaced by its corresponding index. The message portion which is not matched to an entry in the dictionary 520, or alternatively selected fields of this message portion, are then added to the dictionary 520 for use in future compression.
The index and the uncompressed portion are then transmitted to entity B (530) over the first communication link 550. Entity B (530) then decodes and separates the received message into the index information and the uncompressed portion. The decompressor 535 in entity B (530) reproduces the compressed information by matching the index to an entry in its dictionary 540, which is then added to the uncompressed data to form the original message. The message portion which was added to the dictionary 520 in entity A (510) is then added to the dictionary 540 of entity B (530) so that each entity maintains matching dictionaries.
Subsequent messages transmitted from entity A (510) to entity B (530) are compressed by using the updated dictionary 520 and decompressed by entity B (530) using updated dictionary 540. As a result, dictionary 520 of entity A (520) and dictionary 540 of entity B are dynamically updated to allow the compression methodology to adapt to the data that is being transmitted, which provides for continual improvement in compression efficiency.
In addition, entity A (510) may include a decompressor 525 and entity B (530) may include a compressor 545, respectively, thus allowing for entity B (530) to send compressed messages to entity A (510) using a second communication link 555. Such an arrangement provides for the capability of bidirectional compressed communication.
Decompressor 525 of entity A (510) may use the same static/dynamic dictionary 520 as compressor 515. Similarly, compressor 545 of entity B (530) may use the same static/dynamic dictionary 540 as decompressor 535. Alternately, a separate static/dynamic dictionary may be used for each compressor/decompressor pair, allowing for the use of static/dynamic dictionaries which can be optimized for each direction of communication. In another exemplary embodiment of the present invention with a combined static and dynamic dictionary, a sliding window dictionary compression method may be used. As in the previous embodiment, an initial static dictionary is used as a starting dictionary for the compressor and decompressor, which then operates as a dynamic dictionary as soon as communication begins. In a first step, a message to be compressed is appended to the dictionary in a first entity containing a compressor. In a following step, the dictionary with the appended message is then processed according to a sliding window compression method, e.g. Lempel-Ziv, to produce the compressed message. In this step, the dictionary may also be compressed along with the attached message. In still another step, the part of the compressed message corresponding to the static/dynamic dictionary is removed and replaced with a reference or an index to a corresponding location in the dictionary. In a following step, the rest of the compressed message along with the reference information is transmitted to the decompressor in a second entity. In still another step, the received compressed message is appended to a compressed version of the static/dynamic dictionary in the second entity so that the decompressor has the same dictionary as the compressor. In a following step, the result is then processed by the corresponding decompression method, e.g. Lempel-Ziv, to produce the original message. In an alternate embodiment of the abovedescribed methodology, the dictionary is not compressed by the compression method. In this embodiment, the dictionary may be preloaded into the buffers and search trees used in the implementation of the compression algorithm prior to operation. When a message to be compressed arrives, the actual compression will start at the position in the buffer in which the message has been loaded. Thus the dictionary will not be compressed, only the message itself. According to this embodiment, the corresponding dictionary of the decompressor will also be in an uncompressed form. An important aspect of the present invention is the construction of the static dictionary. One exemplary methodology of constructing a static dictionary in accordance with the present invention includes studying flows of data packets to collect statistical data for the desired communication protocols over the communication links in which compression is desired. Through the use of this statistical data the static dictionary may be constructed using the most frequently used protocol field names and other common strings of a given communication protocol to provide optimal compression of the data or messages which are to be sent. The static dictionary may then be constructed and stored at both a first communication entity and a second communication entity prior to use. Such storage prior to use would be particularly beneficial for use in short communication sessions so that overhead which may occur at the beginning of a communication session is reduced. Alternately the static dictionary may be sent from the compressor to the decompressor at the beginning of a communication session before compression occurs.
As an alternative to dictionary compression schemes, a static binary code tree scheme may be used. A static binary code tree may be constructed using statistical methods such as studying flows of packets for the desired data protocol over the communication link. Using this statistical information, the static binary code tree may be constructed such that protocol field names and other common strings of the data protocol which have a higher probability of occurrence are represented with a smaller number of bits than those that have a lower probability of occurrence. As a result, compression efficiency is increased. One such example of a binary code tree compression scheme which may be used in the practice of the present invention is that of a Huffman coding method. In still another exemplary embodiment of the present invention, a static binary code tree may be used in combination with a static dictionary. In this exemplary embodiment, a static dictionary is first constructed using a desired methodology such as one of the aforedescribed methodologies in accordance with the present invention. A static binary code tree may then be constructed by studying flows of packets for the desired data protocol with the static dictionary in use and constructing the static binary code tree accordingly. The combined use of static dictionary compression and static binary code tree compression, such as that of Huffman coding, may be used to increase compression efficiency of the transmitted data. Although various embodiments of the method, system, and apparatus of the present invention have been illustrated in the accompanying Drawings and described in the foregoing Detailed Description, it will be understood that the invention is not limited to the embodiments disclosed, but is capable of numerous rearrangements, modifications and substitutions without departing from the scope of the invention as set forth and defined by the following claims.

Claims

WHAT IS CLAIMED IS:
1. A communication entity for compressing messages transmitted using a communication protocol, said communication entity comprising: a dictionary containing at least one symbol string therein, said at least one symbol string corresponding to at least one symbol of a given communication protocol; and a compressor in communication with said dictionary, said compressor using said dictionary to compress said at least one symbol string within a first communication message pursuant to said given communication protocol.
2. The communication entity of claim 1 , said communication entity further comprising: a decompressor in communication with said dictionary, said decompressor using said dictionary to decompress at least one symbol string within a second communication message pursuant to said given communication protocol.
3. The communication entity of claim 1 , said communication entity further comprising: a binary code tree in communication with said compressor, said compressor using said binary code tree to compress said at least one symbol string within said first communication message pursuant to said given communication protocol.
4. The communication entity of claim 3, wherein said binary code tree comprises a Huffman binary code tree.
5. The communication entity of claim 3, wherein said binary code tree comprises a static binary code tree.
6. The communication entity of claim 1 , wherein said dictionary comprises a static dictionary.
7. The communication entity of claim 1 , wherein said at least one symbol of said given communication protocol comprises at least one field-name of said given communication protocol.
8. The communication entity of claim 1 , wherein at least one entry within said dictionary is based upon statistical data flows of said given communication protocol.
9. The communication entity of claim 1 , said communication entity further comprising: a dynamic dictionary in communication with said compressor, said dynamic dictionary containing at least one second symbol string therein, said at least one second symbol string corresponding to at least one second symbol of a given communication protocol, said compressor using at least one of said dynamic dictionary and said dictionary to compress at least one symbol string within a subsequent communication message pursuant to said given communication protocol.
10. The communication entity of claim 9, wherein said compressor uses a sliding window dictionary compression method.
11. A communication entity for decompressing messages received using a communication protocol, said communication entity comprising: a dictionary containing at least one symbol string therein, said at least one symbol string corresponding to at least one symbol of a given communication protocol; and a decompressor in communication with said dictionary, said decompressor using said dictionary to decompress said at least one symbol string within a first communication message pursuant to said given communication protocol.
12. The communication entity of claim 11, said communication entity further comprising: a compressor in communication with said dictionary, said compressor using said dictionary to compress at least one symbol string within a second communication message pursuant to said given communication protocol.
13. The communication entity of claim 11, said communication entity further comprising: a binary code tree in communication with said decompressor, said decompressor using said binary code tree to decompress said at least one symbol string within said first communication message pursuant to said given communication protocol.
14. The communication entity of claim 13, wherein said binary code tree comprises a static binary code tree.
15. The communication entity of claim 13, wherein said binary code tree comprises a Huffman binary code tree.
16. The communication entity of claim 11, wherein said dictionary comprises a static dictionary.
17. The communication entity of claim 11 , wherein said at least one symbol of said given communication protocol comprises at least one field-name of said given communication protocol.
18. The communication entity of claim 11 , wherein at least one entry within said dictionary is based upon statistical data flows of said given communication protocol.
19. The communication entity of claim 11, said communication entity further comprising: a dynamic dictionary in communication with said decompressor, said dynamic dictionary containing at least one second symbol string therein, said at least one second symbol string corresponding to at least one second symbol of a given communication protocol, said compressor using at least one of said dynamic dictionary and said dictionary to decompress at least one symbol string within a subsequent communication message pursuant to said given communication protocol.
20. The communication entity of claim 19, wherein said decompressor uses a sliding window dictionary decompression method.
21. A communication system for facilitating compressed message communication, said communication system comprising: a first communication entity for sending a first communication message, said first communication entity comprising: a first dictionary containing at least one symbol string therein, said at least one symbol string corresponding to at least one symbol of a given communication protocol; and a first compressor in communication with said first dictionary, said first compressor using said first dictionary to compress a given symbol string within a first communication message pursuant to said given communication protocol; and a second communication entity, in communication with said first communication entity, for receiving said first communication message, said second communication entity comprising: a second dictionary containing at least one symbol string therein, said at least one symbol string corresponding to said at least one symbol of said given communication protocol; and a first decompressor, in communication with said second dictionary, said first decompressor using said second dictionary to decompress said given symbol string within said first communication message pursuant to said given communication protocol, said first dictionary being substantially equivalent to said second dictionary.
22. The communication system of claim 21, wherein said first communication entity further comprises: a second decompressor in communication with said first dictionary, said second decompressor using said first dictionary to decompress a given symbol string within a second communication message pursuant to said given communication protocol, said second communication message being received from said second communication entity.
23. The communication system of claim 22, wherein said second communication entity further comprises: a second compressor in communication with said second dictionary, said second compressor using said second dictionary to compress a given symbol string within said second communication message pursuant to said given communication protocol.
24. The communication system of claim 21, wherein said first communication entity further comprises: a third dictionary containing at least one symbol string therein, said at least one symbol string corresponding to at least one symbol of a given communication protocol; and a second decompressor in communication with said third dictionary, said second decompressor using said third dictionary to decompress a given symbol string within a second communication message pursuant to said given communication protocol, said second communication message being received from said second communication entity.
25. The communication system of claim 24, wherein said second communication entity further comprises: a fourth dictionary containing at least one symbol string therein, said at least one symbol string corresponding to at least one symbol of a given communication protocol; and a second compressor in communication with said fourth dictionary, said second compressor using said fourth dictionary to compress said given symbol string within said second communication message pursuant to said given communication protocol, said third dictionary being substantially equivalent to said fourth dictionary.
26. The communication system of claim 21, wherein said at least one symbol of said given communication protocol comprises at least one field-name of said given communication protocol.
27. The communication system of claim 21, wherein at least one entry within said first dictionary is based upon statistical data flows of said given communication protocol.
28. The communication system of claim 24, wherein at least one entry within said third dictionary is based upon statistical data flows of said given communication protocol.
29. The communication system of claim 21, wherein said first dictionary comprises a static dictionary.
30. The communication system of claim 21, wherein said second dictionary comprises a static dictionary.
31. The communication system of claim 24, wherein said third dictionary comprises a static dictionary.
32. The communication system of claim 25, wherein said fourth dictionary comprises a static dictionary.
33. A method of facilitating compressed message communication using a communication protocol, said method comprising the steps of: matching at least one symbol string within a first communication message to at least one matched symbol string within a first dictionary; transmitting reference information indicative of a location of said at least one matched symbol string within said first dictionary; receiving said reference information indicative of a location of said at least one matched symbol string within said first dictionary; associating said received reference information to at least one corresponding symbol string within a second dictionary, said at least one corresponding symbol string within said second dictionary substantially equal to said at least one matched symbol string within said first dictionary; and reconstructing said first communication message from said at least one corresponding symbol string within said second dictionary.
34. The method of claim 33, wherein at least one of said first dictionary and said second dictionary comprises a static dictionary.
35. The method of claim 33 , wherein at least one of said first dictionary and said second dictionary comprises a dynamic dictionary.
36. A method of facilitating compressed message communication using a communication protocol, said method comprising the steps of: searching a dictionary for a symbol string corresponding to said communication protocol, said symbol string being contained within a communication message; upon affirmative confirmation that said dictionary contains said symbol string, retrieving from said dictionary a compressed symbol string associated with said symbol string; replacing, in said communication message, said symbol string with said compressed symbol string; and transmitting said communication message using said communication protocol.
37. The method of claim 36, wherein said dictionary comprises a static dictionary.
38. The method of claim 36, wherein said dictionary comprises a dynamic dictionary.
39. A method of facilitating compressed message communication using a communication protocol, said method comprising the steps of: receiving a communication message based upon said communication protocol, said communication message including a compressed symbol string; retrieving from a dictionary, an uncompressed symbol string associated with said compressed symbol string, said uncompressed symbol sfring corresponding to said communication protocol; and replacing, in said communication message, said compressed symbol string with said uncompressed symbol string.
40. The method of claim 39, wherein said dictionary comprises a static dictionary.
41. The method of claim 39, wherein said dictionary comprises a dynamic dictionary.
EP01983894A 2000-11-16 2001-11-15 Static information knowledge used with binary compression methods Withdrawn EP1334557A2 (en)

Applications Claiming Priority (5)

Application Number Priority Date Filing Date Title
US814406 1985-12-30
US24992300P 2000-11-16 2000-11-16
US249923P 2000-11-16
US09/814,406 US6985965B2 (en) 2000-11-16 2001-03-21 Static information knowledge used with binary compression methods
PCT/SE2001/002549 WO2002041497A2 (en) 2000-11-16 2001-11-15 Static information knowledge used with binary compression methods

Publications (1)

Publication Number Publication Date
EP1334557A2 true EP1334557A2 (en) 2003-08-13

Family

ID=26940466

Family Applications (1)

Application Number Title Priority Date Filing Date
EP01983894A Withdrawn EP1334557A2 (en) 2000-11-16 2001-11-15 Static information knowledge used with binary compression methods

Country Status (7)

Country Link
EP (1) EP1334557A2 (en)
JP (1) JP3958211B2 (en)
CN (1) CN1316749C (en)
AU (1) AU2002215287A1 (en)
CA (1) CA2428788C (en)
TW (1) TW543311B (en)
WO (1) WO2002041497A2 (en)

Families Citing this family (17)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8176186B2 (en) 2002-10-30 2012-05-08 Riverbed Technology, Inc. Transaction accelerator for client-server communications systems
US7120666B2 (en) 2002-10-30 2006-10-10 Riverbed Technology, Inc. Transaction accelerator for client-server communication systems
JP3863130B2 (en) * 2003-08-18 2006-12-27 株式会社コナミデジタルエンタテインメント COMMUNICATION SYSTEM, SERVICE METHOD, TERMINAL METHOD, AND PROGRAM
EP2135433B1 (en) 2007-04-13 2012-10-31 GVBB Holdings S.A.R.L Communication protocol, developing and network operating methods therefore
TWI386069B (en) * 2007-08-10 2013-02-11 Univ Nat Cheng Kung System and method for encoding a data set, and program product
JP4930305B2 (en) * 2007-09-20 2012-05-16 日本電気株式会社 Data communication system, terminal, catalog server, data communication method, and communication program
JP2010258787A (en) * 2009-04-24 2010-11-11 Mitsubishi Electric Corp Signaling compression device, signaling elongation device, and signaling compression and elongation device
WO2013079999A1 (en) * 2011-12-02 2013-06-06 Canon Kabushiki Kaisha Methods and devices for encoding and decoding messages
CN102857230B (en) * 2012-09-21 2015-05-20 中国科学院武汉物理与数学研究所 High-speed program controller on basis of lossless compression data transmission technology
US9166620B2 (en) * 2012-09-26 2015-10-20 Qualcomm Incorporated Method and apparatus for a memory based packet compression encoding
CN104283777B (en) * 2013-07-03 2018-08-21 华为技术有限公司 The method and apparatus of message compression
US20150121111A1 (en) * 2013-10-24 2015-04-30 Qualcomm Incorporated System and method for providing multi-user power saving codebook optmization
JP6511836B2 (en) 2015-01-30 2019-05-15 富士通株式会社 Compression program, compression method, compression apparatus and decompression program
JP6742692B2 (en) 2015-01-30 2020-08-19 富士通株式会社 Encoding program and decompression program
JP6641857B2 (en) 2015-10-05 2020-02-05 富士通株式会社 Encoding program, encoding method, encoding device, decoding program, decoding method, and decoding device
DE102016108403A1 (en) * 2016-05-06 2017-11-09 Haroon van Rikxoort Method for data transmission
JP6984321B2 (en) * 2017-10-31 2021-12-17 富士通株式会社 Data generation program, data generation method and information processing equipment

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0788239A2 (en) * 1996-01-31 1997-08-06 Hitachi, Ltd. Method of and apparatus for compressing and decompressing data and data processing apparatus and network system using the same

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5455576A (en) * 1992-12-23 1995-10-03 Hewlett Packard Corporation Apparatus and methods for Lempel Ziv data compression with improved management of multiple dictionaries in content addressable memory
GB9314516D0 (en) * 1993-07-13 1993-08-25 Philips Electronics Uk Ltd Digital communications system and a reiceiving apparatus for use in the system
CA2260289A1 (en) * 1998-01-29 1999-07-29 Steven Michael Bellovin A method of improving data compression over unreliable underlying networks
KR100277061B1 (en) * 1998-11-04 2001-01-15 윤종용 Short message compression device of mobile communication terminal and corresponding short message transmission method

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0788239A2 (en) * 1996-01-31 1997-08-06 Hitachi, Ltd. Method of and apparatus for compressing and decompressing data and data processing apparatus and network system using the same

Non-Patent Citations (4)

* Cited by examiner, † Cited by third party
Title
BELL T ET AL: "LONGEST-MATCH STRING SEARCHING FOR ZIV-LEMPEL COMPRESSION", SOFTWARE PRACTICE & EXPERIENCE, WILEY & SONS, BOGNOR REGIS, GB, vol. 23, no. 7, 1 July 1993 (1993-07-01), pages 757 - 771, XP000655855, ISSN: 0038-0644, DOI: DOI:10.1002/SPE.4380230705 *
HANNU H ET AL: "ROBUST GENERIC MESSAGE SIZE REDUCTION (ROGER)", INTERNET DRAFT, XX, XX, 1 February 2001 (2001-02-01), pages 1 - 23, XP002902393 *
LILJEBERG M ET AL: "Using CORBA to support terminal mobility", GLOBAL CONVERGENCE OF TELECOMMUNICATIONS AND DISTRIBUTED OBJECT COMPUT ING, 1997. PROCEEDINGS., TINA 97 SANTIAGO, CHILE 17-20 NOV. 1997, LOS ALAMITOS, CA, USA,IEEE COMPUT. SOC, US, 17 November 1997 (1997-11-17), pages 59 - 67, XP010805193, ISBN: 978-0-8186-8335-0 *
See also references of WO0241497A3 *

Also Published As

Publication number Publication date
CA2428788C (en) 2010-09-14
AU2002215287A1 (en) 2002-05-27
CA2428788A1 (en) 2002-05-23
CN1316749C (en) 2007-05-16
JP2004514366A (en) 2004-05-13
TW543311B (en) 2003-07-21
WO2002041497A2 (en) 2002-05-23
CN1486536A (en) 2004-03-31
WO2002041497A3 (en) 2002-08-29
JP3958211B2 (en) 2007-08-15

Similar Documents

Publication Publication Date Title
US6985965B2 (en) Static information knowledge used with binary compression methods
US6883035B2 (en) System and method for communicating with temporary compression tables
US6950445B2 (en) Communication system and method for shared context compression
US6963587B2 (en) Communication system and method utilizing request-reply communication patterns for data compression
EP1376878B1 (en) Protocol message compression in a wireless communications system
CA2428788C (en) Static information knowledge used with binary compression methods
US7693492B2 (en) Method and system for providing a context for message compression
JP2004510371A (en) How to handle data packets
JP2004531993A (en) Apparatus and method for performing text-based compression using cache and blanking techniques
US6750791B1 (en) Method and device for text data compression
WO2002041498A2 (en) Communication system and method utilizing request-reply communication patterns for data compression
Fong et al. Multimedia applications of self-synchronizing T-codes
WO2003007572A1 (en) Method for compressing protocols and related system

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

17P Request for examination filed

Effective date: 20030505

AK Designated contracting states

Designated state(s): AT BE CH CY DE DK ES FI FR GB GR IE IT LI LU MC NL PT SE TR

AX Request for extension of the european patent

Extension state: AL LT LV MK RO SI

RIN1 Information on inventor provided before grant (corrected)

Inventor name: CHRISTOFFERSSON, JAN

Inventor name: SVANBRO, KRISTER

Inventor name: HANNU, HANS

RAP1 Party data changed (applicant data changed or rights of an application transferred)

Owner name: TELEFONAKTIEBOLAGET LM ERICSSON (PUBL)

17Q First examination report despatched

Effective date: 20110509

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE APPLICATION IS DEEMED TO BE WITHDRAWN

18D Application deemed to be withdrawn

Effective date: 20110920