Method for implementing encoding/decoding of WiMAX system information

A coding, decoding and message technology, applied in transmission systems, radio transmission systems, electrical components, etc., can solve problems such as failure to achieve general purposes, and achieve the effect of easy expansion, easy implementation, and clear and simple thinking

Active Publication Date: 2008-05-14
武汉烽合智达信息技术有限责任公司
0 Cites 8 Cited by

AI-Extracted Technical Summary

Problems solved by technology

This is achievable in the ASN.1 codec with a fixed encoding type, but it cannot achieve it...
View more

Abstract

The invention relates to a method for realizing WiMAX system message encoding and decoding, comprising the following steps: defining a TLV mapping table for traversing different data structures; constructing an original data structure according to a protocol; automatically converting and generating the above original data structure The data structure in the form of TLV mapping table, the definition of corresponding static variables, and the assignment mapping relationship between the TLV mapping table and the original data structure in each codec function; by traversing the TLV mapping table, the type and length elements are judged and processed After completing the encoding and decoding of the whole message, the method of the present invention can realize a TLV encoding and decoding code module that is simple, efficient, easy to implement, and easy to expand.

Application Domain

Radio transmission

Technology Topic

System informationWiMAX +6

Image

  • Method for implementing encoding/decoding of WiMAX system information
  • Method for implementing encoding/decoding of WiMAX system information

Examples

  • Experimental program(1)

Example Embodiment

[0027] The purpose of the method of the present invention is to provide a method for implementing TLV encoding and decoding in a WiMAX system (base station, terminal), which is used to construct a simple, efficient, easy-to-implement, and easy-to-expandable module, so as to meet the requirements of development based on 802.16e Its follow-up agreement software requirements.
[0028] The basic principle of the method of the present invention is as follows:
[0029] For a message that requires TLV encoding, since it is described by C language, and the encoding and decoding rules are not limited to any programming language (that is, the encoding and decoding rules only conform to the TLV specification), so before encoding, the encoding program must first try The data structure described by the C language is transformed into a data structure that conforms to the TLV syntax (mainly to determine the one-to-one correspondence between the data types in the two environments), and then use specific coding rules to start coding. On the contrary, for the decoding process, the decoding program first obtains a data structure described by TLV syntax through analysis, and then the program assigns values ​​to the data structure in the application program by comparing the message data structure in a specific programming language to complete the decoding process.
[0030] The method of the present invention will be described in detail below with reference to the drawings. As shown in Figure 1, the functional modules for implementing the method of the present invention are as follows:
[0031] The data structure conversion module realizes the automatic conversion from the original data structure to the data structure described by the TLV mapping table, and constructs a static TLV mapping table library conforming to the WiMAX protocol.
[0032] The interface module is used to establish the function mapping table of all WiMAX messages to be coded and decoded, and in each function, establish the assignment mapping relationship between the data structure described by the TLV mapping table and the original data structure.
[0033] The encoding module completes the specific encoding process, traverses the data structure described by the TLV mapping table of the encoded message, and completes the conversion from each TLV mapping table to the code stream. Using the interface module, it also completes the original data structure to the code stream. Conversion between.
[0034] The decoding module completes the specific decoding process, searches for the data structure described by the TLV mapping table of the decoded message, and completes the conversion from the code stream to the TLV mapping table. The interface module is used to complete the code stream to the original data structure. Conversion.
[0035] The core content of the method of the present invention is to use a specific data structure (we call it TLV mapping table) to describe the various factors required for encoding and decoding (including the TYPE/LENGTH/VALUE specified by the protocol and the name of the encoding and decoding field) , TLV encoding and decoding attributes, user intervention interface, etc.), the data structure abstracted by the user according to the protocol (we call it the original data structure) is re-described with the TLV mapping table to form a generalized table, and the original The correspondence between the data structures can then be used to indirectly complete the operations on each member variable in the original data structure through operations such as indexing, querying, and traversing the generalized table. In addition, in the TLV mapping table, user intervention callback functions can be set for each member variable in the original data structure, and user-specified processing procedures can be inserted to complete specific functions during the encoding and decoding process.
[0036] As shown in Figures 2, 3, and 4, a method for TLV encoding and decoding in a WiMAX system (base station, terminal) according to the present invention includes the steps:
[0037] Step 1: Define the TLV mapping table, that is, define a generalized table, which contains various information fields required for TLV encoding and decoding, such as necessary fields such as type, length, value, and other auxiliary fields. Through this table, we can traverse various data structures of different forms and lengths to achieve the purpose of generalization of the TLV coding and decoding process;
[0038] Step 2: Construct the original data structure according to the protocol specification, and construct the content of each message that needs to be coded and decoded in the WiMAX protocol into the original data structure used by the upper-layer application according to a certain writing specification;
[0039]Step 3: Automatically convert the above-mentioned original data structure to generate the data structure described by the TLV mapping table, define the corresponding static variables, generate the codec function corresponding to each management message in the WiMAX system, and the TLV mapping table and original data structure within these functions Assignment mapping relationship between;
[0040] Step 4: Set up a user intervention callback interface where the user needs to intervene in the codec, to insert the codec process to do some special processing required by the user;
[0041] Step 5. For the encoding process, first calculate the total length of the encoded message and apply for storage space. For the decoding process, it is necessary to decode the LENGTH field first and determine the total length of the message to be decoded;
[0042] Step six, implement TLV encoding and decoding by calling the encoding and decoding module. The codec completes the coding and decoding of the entire message by traversing the TLV mapping table, and judging the type, length and other elements therein.
[0043] According to the above method of the present invention, in step one, BITMASK is set for each field in the original data structure in the TLV mapping table to mark whether the field exists and whether it should be coded or decoded.
[0044] According to the above method of the present invention, the definition of the original data structure in step 2 can be freely processed by the user. There is no order requirement for the fields specified in the agreement. The user can freely change the combination of fields and the nested data structure according to the needs of their own design. Form (except for the COMPOUND TLV combination specified in the agreement).
[0045] According to the above method of the present invention, for the TLV decoding situation, in step 5, the received TLV code stream can be decoded in any order, and can be accurately queried and assigned to the corresponding field in the user-defined original data structure. The BITMASK corresponding to the field is set.
[0046] According to the above method of the present invention, in the case of TLV encoding, space can be requested for the entire encoded message in step 5, and the upper layer is responsible for deleting the space after the call processing is completed.
[0047] According to the above method of the present invention, in the case of TLV decoding, the upper layer call in step 6 is responsible for allocating space for the decoded message, and the decoding module automatically assigns the decoded message to the above space according to the original data structure.
[0048] According to the above method of the present invention, the encoding and decoding module in step 6 encodes and decodes the entire upper-layer application message, and the encoding and decoding module will automatically identify the non-encoding field (including the type field, reserved field, transaction ID field, etc.) at the beginning of the message. Copy these fields as they are.
[0049] It should be noted that any improved method that does not depart from the idea of ​​the present invention belongs to the protection scope of the present invention, and the specific protection scope of the present invention is defined by the claims.

PUM

no PUM

Description & Claims & Application Information

We can also present the details of the Description, Claims and Application information to help users get a comprehensive understanding of the technical details of the patent, such as background art, summary of invention, brief description of drawings, description of embodiments, and other original content. On the other hand, users can also determine the specific scope of protection of the technology through the list of claims; as well as understand the changes in the life cycle of the technology with the presentation of the patent timeline. Login to view more.

Similar technology patents

System and method for accurate measuring transmission effect of P2P stream media netwrok for video / audio programs

InactiveCN101094107ATo achieve a wide range of applicationseasy to implement
Owner:WANGSHITIANYUAN IT TECH

Classification and recommendation of technical efficacy words

Who we serve
  • R&D Engineer
  • R&D Manager
  • IP Professional
Why Eureka
  • Industry Leading Data Capabilities
  • Powerful AI technology
  • Patent DNA Extraction
Social media
Try Eureka
PatSnap group products