[go: up one dir, main page]

CN116506527B - A message encoding method and decoding method - Google Patents

A message encoding method and decoding method

Info

Publication number
CN116506527B
CN116506527B CN202310306688.5A CN202310306688A CN116506527B CN 116506527 B CN116506527 B CN 116506527B CN 202310306688 A CN202310306688 A CN 202310306688A CN 116506527 B CN116506527 B CN 116506527B
Authority
CN
China
Prior art keywords
message
decoding
class
encoding
field
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.)
Active
Application number
CN202310306688.5A
Other languages
Chinese (zh)
Other versions
CN116506527A (en
Inventor
肖志勇
李华
王玉龙
王少参
刘朝霞
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.)
713rd Research Institute Of China Shipbuilding Corp ltd
Original Assignee
713rd Research Institute Of China Shipbuilding Corp ltd
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 713rd Research Institute Of China Shipbuilding Corp ltd filed Critical 713rd Research Institute Of China Shipbuilding Corp ltd
Priority to CN202310306688.5A priority Critical patent/CN116506527B/en
Publication of CN116506527A publication Critical patent/CN116506527A/en
Application granted granted Critical
Publication of CN116506527B publication Critical patent/CN116506527B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • 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/22Parsing or analysis of headers

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Compression, Expansion, Code Conversion, And Decoders (AREA)
  • Devices For Executing Special Programs (AREA)

Abstract

本发明涉及一种报文的编码方法及解码方法,属于软件编码解码技术领域。本发明通过将报文映射成类,报文中的字段映射成类成员变量,根据报文中的字段的编码解码需求定义相应编码解码函数,通过自定义属性参数记录报文内各类成员变量的所在位置和对应的编码、解码函数,当进行编码或解码操作时,依据编码或解码需求,调用各报文字段对应的编码和解码函数,对各字段进行相应编码或解码工作,根据自定义属性参数获取报文中各字段的位置和名称,自动对各字段的编码和解码结果进行拼接或赋值,最终完成整个报文的编码和解码工作。解决了不同报文或同一报文不同字段之间编/解码时,报文内容发生变化导致编码和解码过程中代码大幅度调整的问题。

The present invention relates to a message encoding method and decoding method, and belongs to the technical field of software encoding and decoding. The present invention maps messages into classes, maps fields in the messages into class member variables, defines corresponding encoding and decoding functions according to the encoding and decoding requirements of the fields in the messages, records the locations of various member variables in the messages and the corresponding encoding and decoding functions through custom attribute parameters, and when performing encoding or decoding operations, calls the encoding and decoding functions corresponding to each message field according to the encoding or decoding requirements, performs corresponding encoding or decoding work on each field, obtains the position and name of each field in the message according to the custom attribute parameters, automatically splices or assigns values to the encoding and decoding results of each field, and finally completes the encoding and decoding work of the entire message. The present invention solves the problem that when encoding/decoding between different messages or different fields of the same message, the message content changes, resulting in a large-scale adjustment of the code during the encoding and decoding process.

Description

Message encoding method and decoding method
Technical Field
The invention relates to a message coding method and a message decoding method, and belongs to the technical field of software coding and decoding.
Background
The software needs to adopt the high-level language of the computer to carry out the coding and decoding operation of the data message when receiving and transmitting the network message, the coding process of the network message is that the corresponding field defined by the message is read according to the network message protocol sequence, the data is converted according to the data type defined by the field to generate the binary byte stream corresponding to the field, the binary byte stream is spliced according to the sequence to generate the binary byte stream of the whole message, the decoding process of the network message is that the binary byte stream of the specific position is read according to the position of the field defined by the network message protocol in the message, the data is converted according to the data definition of the specific field to generate the required value, and finally the related value is mapped to the corresponding protocol definition field.
However, the operations of the encoding/decoding codes between different messages or various fields of the same message are similar but different, when the network message changes, the encoding/decoding codes can cause great adjustment of the pre-code asset, and finally the generated encoding/decoding codes have higher maintenance cost and higher quality assurance difficulty.
Disclosure of Invention
The invention aims to provide a message encoding method and a message decoding method, which are used for solving the problem that codes are greatly adjusted due to the fact that message contents are changed when different messages or different fields of the same message are encoded/decoded.
In order to achieve the above object, the present invention provides a method comprising:
the invention relates to a message coding method, which comprises the following steps:
a) Mapping the message into a class, mapping the field in the message into class member variables, defining corresponding coding functions according to the coding requirements of the class member variables, and recording the positions of the member variables in the message through custom attribute parameters;
b) Reading a message model instance to be coded;
c) The method comprises the steps of obtaining the position of a class member in message text throttling by reading user-defined attribute parameters of the position of the message model class definition member in a message;
d) Calling a corresponding coding function according to the variable names of the class members in the message model, generating byte streams corresponding to the class members, and assembling the byte streams corresponding to the fields according to the positions of the class members in the message throttling, which are obtained in the step c), so as to finish the coding of the message model.
The message coding method has the beneficial effects that firstly, a message is required to be mapped into class definition, fields in the message are mapped into class member variables, the positions of various member variables in the message are recorded through custom attribute parameters, coding functions are determined by the coding requirements of the message member variables, when coding is required, a message model class example to be coded is read, custom attribute parameters of a message model are read, the positions of the fields in the message are obtained, the corresponding coding functions are called according to the names of the fields, byte streams corresponding to the members are generated, and the byte streams are spliced according to the obtained positions of the fields to complete the coding process of the message. When the message content is changed, the method can be completed by modifying the custom attribute parameters of the message model, adjusting the message member variables and the definition of the coding function corresponding to the corresponding message segment, thereby reducing the coding threshold, facilitating the maintenance of codes and ensuring the coding quality of the message. Meanwhile, the early code assets can be effectively inherited through object-oriented design technologies such as inheritance and aggregation of classes.
Further, a reflection mechanism is adopted in the encoding process to trigger an encoding function, and the value of a corresponding message field to be read by the encoding function is obtained from a corresponding class member variable in a reflection mode.
Further, the position of the member variable in the custom attribute parameter record message includes the starting position of the message member and the length of the message member.
The method has the advantages that the positions of the class member variables are recorded according to the custom attribute parameters, wherein the positions comprise the starting positions of the class members and the lengths of the class members, the positions of the fields can be recorded regularly, and the errors of field position definition are avoided, so that the message coding errors are caused.
Further, when the message variable length part only has a part and exists in the last part of the message, the message variable length part content is processed by a cyclic nesting method, and the message variable length part is encoded by a predefined encoding function.
The method has the beneficial effects that when the message has a variable length part and exists in the last part of the message, the variable length part content of the message can be processed by a cyclic nesting method, the limitation that only fixed-length messages can be processed is eliminated, the message with variable length can be processed, and the application range of the method is improved.
The invention discloses a message decoding method, which comprises the following steps:
A) Mapping the message into class, mapping the fields in the message into class member variables, defining corresponding decoding functions according to the decoding requirements of the class member variables, and recording the positions of the various member variables in the message through custom attribute parameters;
B) Reading a message model to be decoded;
C) Acquiring the position of each member variable in the message in message throttling according to the user-defined attribute parameters of the member positions in the read message model;
d) Dividing the byte stream to be decoded according to the position of each member variable in the byte stream in the acquired message model, and classifying according to the field;
E) And D) calling a decoding function by taking the byte stream segmented in the step D) as input according to the names of class members in the message model, generating a corresponding decoding result, and giving the result to the class member variables in the corresponding message model to finish the decoding process.
The method has the beneficial effects that firstly, the message is required to be mapped into class definition, the fields in the message are mapped into class member variables, the positions of various member variables in the message are recorded through the custom attribute parameters, the decoding function is determined by the decoding requirements of the message members, when the message to be decoded is required to be decoded, the message to be decoded and the custom attribute parameters in the message are read, the positions of the fields in the message in byte streams are obtained, the byte streams in the message are segmented and classified, the corresponding decoding function is determined according to the names of the fields, and the segmented byte streams are decoded through the corresponding decoding function to generate numerical values to be assigned to the corresponding message fields, so that the decoding process is completed. The method can automatically decode each field of the message and complete assignment work of each field by self-defining attribute parameters of the message model during decoding, reduces the decoding threshold, has convenient code maintenance and ensures the decoding quality of the message. Meanwhile, the early code assets can be effectively inherited through object-oriented design technologies such as inheritance and aggregation of classes.
Further, the position of the class member variable in the custom attribute parameter record message comprises the starting position and the length of the class member variable in the message throttling.
The method has the beneficial effects that the position of the message member variable is recorded according to the self-defined attribute parameters, wherein the position comprises the message member starting position and the message member length, and the message member starting position and the message member length are recorded, so that the message member variable has stronger regularity, the code walking position definition is convenient, and the error placement of the field position is avoided, thereby leading to the failure of decoding the message.
Further, the starting position and length of the message member are provided by the custom attribute parameter or configuration file.
Further, the operations of the decoding function and the decoding process and giving the decoding result to the class member variable corresponding to the message field are triggered by adopting a reflection mechanism.
The method has the advantages that the reflection mechanism is adopted to trigger the decoding function in the decoding process, the decoding function required by decoding is dynamically obtained through the reflection mechanism, and the decoding result is dynamically assigned, so that the code compiling scale is reduced.
Drawings
FIG. 1 is a schematic diagram of mapping between a message class model and a message definition through custom attribute parameters in an embodiment of the present invention;
FIG. 2 is a schematic diagram of mapping between a message model and a message codec definition through custom attribute parameters in an embodiment of the present invention;
FIG. 3 is a schematic diagram of a message structure according to an embodiment of the present invention;
FIG. 4 is a diagram illustrating a dynamic structure of a message according to an embodiment of the present invention;
FIG. 5 is a diagram of a partial message encoding and decoding definition in accordance with an embodiment of the present invention;
FIG. 6 is a diagram illustrating a definition of encoding and decoding of a message according to an embodiment of the present invention;
FIG. 7 is a schematic diagram of a message decoding algorithm according to an embodiment of the present invention;
FIG. 8 is a schematic diagram of a message encoding algorithm in an embodiment of the present invention;
FIG. 9 is a diagram illustrating a partial message unit test example in accordance with an embodiment of the present invention.
Detailed Description
The invention is described in further detail below with reference to the accompanying drawings.
The embodiment of the method for encoding the message comprises the following steps:
A message coding method as shown in figure 8 includes mapping message to class definition, mapping field in message to class member variable, recording position of each class member variable in message by custom attribute parameter, determining coding function by coding requirement of message member variable, reading message model class instance to be coded when coding is needed, reading custom attribute parameter of message model to obtain position of each field in message, determining required coding function, calling corresponding coding function according to name of each field to generate byte stream corresponding to class member, assembling byte stream according to field position to finish coding process of message. The specific implementation steps are as follows:
a) Mapping the message into class, mapping the field in the message into class member variables, determining corresponding coding functions according to the names of the class member variables, and recording the positions of the various member variables in the message through custom attribute parameters.
As shown in fig. 1, a message is mapped into a class definition, fields in the message are mapped into class member variables, the positions of the fields are modified and defined by user-defined attribute parameters corresponding to class members, corresponding coding functions are obtained according to corresponding field names, as shown in fig. 2, the coding functions of the coding functions corresponding to the fields are triggered by calling a unified coding function interface, and the coding functions of the whole message are automatically completed.
B) And reading the message model class instance needing to be encoded.
C) And acquiring the positions (including the starting positions and the field lengths) of the byte streams of the member variables in the message according to the user-defined attribute parameters of the read message model class members.
D) Calling a corresponding coding function according to the variable names of the class members in the message, generating byte streams corresponding to the class members, and assembling the byte streams corresponding to the fields according to the positions of the class members in the message throttling acquired in the step c) to finish the coding of the message model.
The coding process mainly obtains the value of the corresponding field by calling InvokeMember methods in the Type in the NET reflection mechanism. Then, by using the Invoke method of MethodInfo, the field value is used as an input to trigger a coding function, coding operation is performed to generate a coding result (binary byte stream) of the field, then the position of the field in the message is obtained by reading the value of the custom attribute of SEGMENT in MemberInfo, then the byte streams of each field are spliced according to the indicated position, and finally the coding of the message is completed. As shown in fig. 5 and 6, when the encoding function is processed, the attribute modification is customized through "SegmentParseMethod", and the attribute indicates an information field served by the currently modified function (the field information is explicitly obtained by mapping the names of the message class member variables shown in fig. 3 and 4), and indicates the function of encoding the function, that is, indicates by an enumeration variable "netmethod property.
If the message variable length part is only one part and exists in the last part of the message. In the actual operation process, the variable length part content can be processed by a cyclic nesting method, so that the encoding and decoding processes of a plurality of variable length parts in one message are realized. Secondly, through the multi-state characteristic of the function realized by the inheritance mode and the function reload, other messages can be rapidly expanded on the basis of the existing messages, and the early-stage code asset is effectively inherited.
The embodiment of the method for decoding the message comprises the following steps:
in the decoding process shown in fig. 7, firstly, a message is required to be mapped into a definition of a class, fields in the message are mapped into member variables of the class, positions of various member variables in the message are recorded through custom attribute parameters, a decoding function is determined by the coding requirements of the member variables of the message, when decoding is required, the message to be decoded and the custom attribute parameters in the message are read, the positions of the fields in the message in byte streams are obtained, the byte streams in the message are segmented and classified, the required decoding function is determined, the corresponding coding function is called according to the name type of each field, and the segmented byte streams are decoded to generate numerical values and assigned to the corresponding message fields, so that the decoding process is completed. The specific implementation steps are as follows:
A) Mapping the message into class, mapping the field in the message into class member variables, determining corresponding decoding functions according to the class member variables, and recording the positions of the member variables in the message through custom attribute parameters.
As shown in fig. 1, a message is mapped into a class definition, fields in the message are mapped into class member variables, the positions of the fields are defined by the variables in the custom attributes of the corresponding class members, and corresponding decoding functions are obtained according to the corresponding field names defined by the custom attribute parameters, as shown in fig. 2, only by calling a unified decoding function interface, the decoding functions of the decoding functions corresponding to the fields can be triggered, so that the decoding functions of the whole message can be automatically completed.
B) And reading the message model to be decoded.
C) And acquiring the positions of various member variables in the message model in message throttling according to the custom attribute parameters of the class member positions in the read message model.
D) And dividing the byte stream to be decoded according to the positions of various member variables in the byte stream in the acquired message model, and classifying according to the field.
E) And D) calling a decoding function by taking the byte stream cut in the step D) as input according to the names of class members in the message model, generating a corresponding decoding result, and giving the result to a corresponding field to finish the decoding process.
Before decoding, the program reads the message and the self-defined attribute parameters in decoding through the reflecting mechanism of NET, and sorts the message structure and the corresponding decoding function through the self-defined attribute member variable value and the modified variable and function for use in the decoding process. The Invoke method MethodInfod in the NET reflection mechanism triggers the decoding function to execute decoding operation, and the return value of the decoding function is assigned to the corresponding field by utilizing the InvokeMember method in the Type. As shown in fig. 5 and 6, when the decoding function is processed, the attribute modification is customized through "SegmentParseMethod", and the attribute indicates an information field served by the currently modified function (the field information is explicitly obtained by mapping the names of the message class member variables shown in fig. 3 and 4), and indicates the function of decoding the function, namely, indicates by enumerating the variable "netmethod property.
Wherein fig. 6 is a definition of a method of encoding and decoding internal elements of a variable length portion of a message, and the encoding and decoding of each element in a variable length container is completed by triggering a "t.importmessage (buf)" statement in a predefined encoding function 'get_dynamic_segment_item_container' and a "o.exportmessage ()" statement in a predefined decoding function 'set_dynamic_segment_item_container' shown in fig. 5 for a variable length member variable List < DYNAMICSEGMENTITEM >.
In the embodiment of the method for encoding the message and the embodiment of the method for decoding the message, the message is exemplified by the table 1, the initial position of the message starts from 0, and no idle bytes exist between the fields.
TABLE 1
The class definition by the messages of table 1 is described as follows (in c# language):
public class name, codec interface base class definition
The field position to be encoded can be obtained through a field position attribute (including a starting position and a field length), and each field data type in the message is mapped into a data type of a programming language, wherein the programming language comprises C++, JAVA, python and the like, and the embodiment of the invention mainly adopts the programming language of C#. According to the information fields shown in table 1, the class member variables with one-to-one correspondence are obtained by using custom attribute modification, as shown in fig. 3, where fig. 4 is a definition of a corresponding element in the variable length set in the message defined in fig. 3. The class member variables in the message structures of fig. 3 and fig. 4 are modified by using a "SEGMENT" custom attribute, so that the position of the class member in the attribute in the whole message is defined (described by the starting position and the length). As shown in fig. 3 and 4, a override function "InitializeMethodClassInstance" is provided, and by assigning a value to the override function, the encoding process and decoding process corresponding to each field are defined.
And carrying out corresponding definition of message coding and message decoding according to class definition, wherein the definition codes of the message coding or decoding class are as follows:
public class name data codec base class definition
The initial position is a number, the length of the word segment is a number, the data type comprises short/ushort, int/uint, byte/float, string, unt/int 64, dateTime and class definition, the code form of the class definition is class < character string >, the function name and the field mark are character strings, the character strings comprise characters (A, B, C. Y, Z, a, b, C.y, z), the numbers (0-9) and the character strings, the coding and decoding mark is an enumeration variable, and the function is determined to be a coding function or a decoding function.
As shown in fig. 3 and 4, "AbstraceNETMessage" is the interface definition of the message codec function, and in this class, the basic interface form of the message code and interface are defined in a virtual function manner as shown in table 2.
TABLE 2
Bool ImportMessage (byte [ ] Message) is a decoding function of a Message model class, the function inputs a currently received byte stream, then decodes the byte stream, outputs a boolean type result, outputs TRUE if the decoding is successful, outputs FALSE if the decoding is failed, the function is a virtual function, and the virtual function can be reloaded and specified according to actual conditions. byte ExportMessage () is an encoding function of a message model class, and generates a byte stream according to the current given instance of the message class, where the function is a virtual function, and the virtual function can be reloaded and specified according to the actual situation.
The encoding and decoding functions of the generated message can be directly initialized and then tested by the encoding and decoding units, the testing steps are shown in fig. 9, and the fig. is also an actual use example of the encoding and decoding of the message. Firstly, a measured message instance is generated, then, coding operation is carried out to generate a binary byte stream, finally, the binary byte stream is input into a new measured message instance, whether the value of a field after coding is consistent with the value initialized in the earlier stage is confirmed, and the code quality can be effectively improved.

Claims (8)

1. A method for encoding a message, comprising the steps of:
a) Mapping the message into a class, mapping the field in the message into class member variables, defining corresponding coding functions according to the coding requirements of the class member variables, and recording the positions of the member variables in the message through custom attribute parameters;
b) Reading a message model instance to be coded;
c) The method comprises the steps of obtaining the position of a class member in message text throttling by reading user-defined attribute parameters of the position of the message model class definition member in a message;
d) Calling a corresponding coding function according to the variable names of the class members in the message model, namely, taking the field names as the basis to determine the coding functions corresponding to the fields, further taking the field values as the input to trigger the coding functions to execute coding operation to generate byte streams corresponding to the class members, assembling the byte streams corresponding to the fields according to the positions of the class members in the message stream obtained in the step c) to finish the coding of the message model, and modifying the custom attribute of the coding functions to include the field names which are information fields served by the currently modified coding functions.
2. The method for encoding a message according to claim 1, wherein a reflection mechanism is used to trigger the encoding function in the encoding process, and the value of the corresponding message field to be read by the encoding function is obtained from the corresponding class member variable in a reflection manner.
3. The method of claim 1, wherein the custom attribute parameter records the position of the member variable in the message including the start position of the message member and the length of the message member.
4. A method of coding a message according to claim 3, wherein when the message variable length part is only a part and is present in the last part of the message, the message variable length part content is processed by a loop nesting method, and the message variable length part is coded by a predefined coding function.
5. A method for decoding a message, comprising the steps of:
A) Mapping the message into class, mapping the fields in the message into class member variables, defining corresponding decoding functions according to the decoding requirements of the class member variables, and recording the positions of the various member variables in the message through custom attribute parameters;
B) Reading a message model to be decoded;
C) Acquiring the position of each member variable in the message in message throttling according to the user-defined attribute parameters of the member positions in the read message model;
d) Dividing the byte stream to be decoded according to the position of each member variable in the byte stream in the acquired message model, and classifying according to the field;
E) And D) calling a decoding function by taking the byte stream cut in the step D) as input according to the names of class members in the message model, generating a corresponding decoding result, and giving the result to the class member variables in the corresponding message model to finish the decoding process, wherein the custom attribute of the modified decoding function comprises the field name which is the information field served by the current modified decoding function.
6. The method of claim 5, wherein the custom attribute parameter records the position of the class member variable in the message including the start position and length of the class member variable in the message stream.
7. The method of claim 6, wherein the starting position and length of the message member are provided by custom attribute parameters or configuration files.
8. The method according to claim 5, wherein the operations of the decoding function and the decoding process and assigning the decoding result to the message segment corresponding class member variable are triggered by a reflection mechanism.
CN202310306688.5A 2023-03-27 2023-03-27 A message encoding method and decoding method Active CN116506527B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202310306688.5A CN116506527B (en) 2023-03-27 2023-03-27 A message encoding method and decoding method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202310306688.5A CN116506527B (en) 2023-03-27 2023-03-27 A message encoding method and decoding method

Publications (2)

Publication Number Publication Date
CN116506527A CN116506527A (en) 2023-07-28
CN116506527B true CN116506527B (en) 2025-10-14

Family

ID=87320895

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202310306688.5A Active CN116506527B (en) 2023-03-27 2023-03-27 A message encoding method and decoding method

Country Status (1)

Country Link
CN (1) CN116506527B (en)

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103095726A (en) * 2013-02-07 2013-05-08 航天科工深圳(集团)有限公司 Processing method and device of protocol interpreter

Family Cites Families (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109981599B (en) * 2019-03-06 2022-01-18 南京理工大学 General data analysis platform and method for communication data stream
CN110601794B (en) * 2019-08-20 2022-05-24 浙江合众新能源汽车有限公司 ASN.1 coding and decoding module and message data coding and decoding method
CN112346722B (en) * 2020-11-11 2022-04-19 苏州大学 Method for realizing compiling embedded Python
CN114727340A (en) * 2021-01-06 2022-07-08 华为技术有限公司 Method and device for transmitting message
CN115190183B (en) * 2022-05-30 2024-08-13 深圳市科陆电子科技股份有限公司 Method for constructing, encoding and decoding data structure of ASN.1 message
US11521138B1 (en) * 2022-06-27 2022-12-06 Freeport Minerals Corporation System and method for adjusting leaching operations based on leach analytic data

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103095726A (en) * 2013-02-07 2013-05-08 航天科工深圳(集团)有限公司 Processing method and device of protocol interpreter

Also Published As

Publication number Publication date
CN116506527A (en) 2023-07-28

Similar Documents

Publication Publication Date Title
CN100468356C (en) Test instance inheritance controlled by attributes
EP4145761B1 (en) A system and a method for automatic generation of smart contracts across blockchain platforms
CN111249736B (en) Code processing method and device
JPH1040087A (en) Method for handling data model to be used for software engineering
US8464231B2 (en) Method and apparatus for accessing a production forming a set of rules for constructing hierarchical data of a structured document
JP2711220B2 (en) Fixed object storage system
CN1359065A (en) Method and system for converting abstract syntax notation 1 data model to object model
CN116702160A (en) A Source Code Vulnerability Detection Method Based on Data Dependency Enhanced Program Slicing
US6219802B1 (en) System for generating test data
CN113704706A (en) Code reinforcing method and device
CN116258122A (en) Intelligent encoding method, device, storage medium and electronic equipment for master data
CN116506527B (en) A message encoding method and decoding method
MXPA03004411A (en) System and method for defining and using subclasses declaratively within markup.
CN113760360A (en) A file generation method, device, device and storage medium
CN119449900B (en) Communication method and device based on graphic modeling
CN110659022A (en) Method for automatically calling Python script based on Java
CN114970474A (en) A method and system for importing and exporting excel based on data monitoring
CN116755671A (en) Parameter verification method and device
CN101202736A (en) Method for realizing encoding-decoding in communication network
CN118093946A (en) Method and device for storing and reading graph data
CN117270844A (en) Code segment function description method based on tree-like neural network machine learning
US7243341B2 (en) Scripting language for processing typed structured data
CN117632266A (en) Hardware driver method and device for embedded real-time operating system
CN116069937A (en) Intelligent contract classification method and device based on neural network and computer equipment
CN120909602B (en) Data analysis method and device based on grammar analysis generator

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant