CN111381935A - DSL configuration expression-based function implementation method and system - Google Patents

DSL configuration expression-based function implementation method and system Download PDF

Info

Publication number
CN111381935A
CN111381935A CN202010187281.1A CN202010187281A CN111381935A CN 111381935 A CN111381935 A CN 111381935A CN 202010187281 A CN202010187281 A CN 202010187281A CN 111381935 A CN111381935 A CN 111381935A
Authority
CN
China
Prior art keywords
expression
dsl
result
configuration
configuration server
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.)
Pending
Application number
CN202010187281.1A
Other languages
Chinese (zh)
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.)
Beijing Jiuzhou Yundong Technology Co Ltd
Original Assignee
Beijing Jiuzhou Yundong Technology Co 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 Beijing Jiuzhou Yundong Technology Co Ltd filed Critical Beijing Jiuzhou Yundong Technology Co Ltd
Priority to CN202010187281.1A priority Critical patent/CN111381935A/en
Publication of CN111381935A publication Critical patent/CN111381935A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45504Abstract machines for programme code execution, e.g. Java virtual machine [JVM], interpreters, emulators
    • G06F9/45508Runtime interpretation or emulation, e g. emulator loops, bytecode interpretation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45504Abstract machines for programme code execution, e.g. Java virtual machine [JVM], interpreters, emulators
    • G06F9/45529Embedded in an application, e.g. JavaScript in a Web browser
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/547Remote procedure calls [RPC]; Web services

Abstract

The embodiment of the invention provides a function realization method and a system based on a DSL configuration expression, wherein the method comprises the following steps: acquiring a corresponding DSL expression from a DSL configuration server at a preset position of an application system; analyzing the DSL expression by using a DSL expression analysis engine to obtain parameters of the DSL expression; collecting parameter data values corresponding to parameters of the DSL expression; and determining an expression result of the DSL expression according to the DSL expression and a corresponding parameter data value so as to execute the expression result and realize functions, and can realize an online function without changing codes, and can realize logic adjustment even if the technology is not understood, so that the DSL expression is easier to maintain, has strong expansibility, reduces development cost and accelerates a product iteration cycle.

Description

DSL configuration expression-based function implementation method and system
Technical Field
The embodiment of the invention relates to the technical field of computers, in particular to a DSL configuration expression-based function implementation method and system.
Background
In the existing software system, when software needs to be added with new functions, the whole software system needs to be updated, which will increase a large amount of maintenance cost and development cost and reduce the product iteration period.
Therefore, it is a technical problem to be urgently needed by those skilled in the art how to provide a function implementation scheme of a software system, which can implement an online function without changing a code, can implement a logic adjustment even if the technology is not understood, is easier to maintain, has strong expansibility, and reduces a development cost, thereby accelerating a product iteration cycle.
Disclosure of Invention
Therefore, embodiments of the present invention provide a method and a system for implementing a function based on a DSL configuration expression, which can perform an online function without changing a code, perform logic adjustment even without understanding the technology, are easier to maintain, have strong extensibility, and reduce development cost, thereby accelerating a product iteration cycle.
In order to achieve the above object, the embodiments of the present invention provide the following technical solutions:
in a first aspect, an embodiment of the present invention provides a method for implementing a function based on a DSL configuration expression, including:
acquiring a corresponding DSL expression from a DSL configuration server at a preset position of an application system;
analyzing the DSL expression by using a DSL expression analysis engine to obtain parameters of the DSL expression;
collecting parameter data values corresponding to parameters of the DSL expression;
and determining an expression result of the DSL expression according to the DSL expression and the corresponding parameter data value so as to execute the expression result and realize functions.
Preferably, the obtaining, at the preset location of the application system, the corresponding DSL expression from the DSL configuration server includes:
sending a DSL expression request to a DSL configuration server, the DSL expression request comprising: presetting a position code;
after receiving the DSL expression request, the DSL configuration server sends a corresponding DSL expression according to the preset position code;
and the application system receives the DSL expression sent by the DSL configuration server.
Preferably, the analyzing the DSL expression by using a DSL expression analysis engine to obtain the parameter of the DSL expression includes:
generating a grammar tree according to a preset DSL grammar rule;
and analyzing the DSL expression by using a grammar tree to obtain the parameter of the DSL expression.
Preferably, the determining an expression result of the DSL expression according to the DSL expression and the corresponding parameter data value includes:
substituting the parameter data value into the DSL expression to obtain a data expression;
and carrying out logic operation on the data expression to obtain an expression result.
In a second aspect, an embodiment of the present invention provides a DSL configuration expression-based function implementation system, including:
the DSL configuration module is used for configuring a DSL configuration server with a corresponding DSL expression;
the expression analysis module is used for analyzing the DSL expression by utilizing a DSL expression analysis engine to obtain the parameter of the DSL expression;
a parameter collection module, configured to collect parameter data values corresponding to parameters of the DSL expression;
and the result determining module is used for determining the expression result of the DSL expression according to the DSL expression and the corresponding parameter data value so as to execute the expression result and realize the function.
Preferably, the expression obtaining module includes:
a request sending unit, configured to send a DSL expression request to a DSL configuration server, where the DSL expression request includes: presetting a position code;
the DSL configuration server is used for receiving a DSL expression request and transmitting a corresponding DSL expression according to the preset position code;
and the expression receiving unit is used for receiving the DSL expression sent by the DSL configuration server by the application system.
Preferably, the expression parsing module includes:
the text tree generating unit is used for generating a text tree according to a preset DSL grammar rule;
and the grammar tree analysis unit analyzes the DSL expression by using the grammar tree in terms of language to obtain the parameters of the DSL expression.
Preferably, the result determination module comprises:
the data substituting unit is used for substituting the parameter data value into the DSL expression to obtain a data expression;
and the data operation unit is used for carrying out logic operation on the data expression to obtain an expression result.
In a third aspect, an embodiment of the present invention provides a function implementation device based on a DSL configuration expression, including:
a memory for storing a computer program;
a processor configured to implement the steps of the DSL configuration expression based functionality implementation method according to any of the first aspects above when the computer program is executed.
In a fourth aspect, an embodiment of the present invention provides a computer-readable storage medium, where a computer program is stored on the computer-readable storage medium, and when executed by a processor, the computer program implements the steps of the DSL configuration expression-based function implementation method according to any one of the first aspects.
The embodiment of the invention provides a function implementation method based on a DSL configuration expression, which comprises the following steps: acquiring a corresponding DSL expression from a DSL configuration server at a preset position of an application system; analyzing the DSL expression by using a DSL expression analysis engine to obtain parameters of the DSL expression; collecting parameter data values corresponding to parameters of the DSL expression; and determining an expression result of the DSL expression according to the DSL expression and a corresponding parameter data value so as to execute the expression result and realize functions, and can realize an online function without changing codes, and can realize logic adjustment even if the technology is not understood, so that the DSL expression is easier to maintain, has strong expansibility, reduces development cost and accelerates a product iteration cycle.
The method and the system for implementing functions based on the DSL configuration expression provided in the embodiments of the present invention have the same beneficial effects, and are not described in detail herein.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below. It should be apparent that the drawings in the following description are merely exemplary, and that other embodiments can be derived from the drawings provided by those of ordinary skill in the art without inventive effort.
The structures, ratios, sizes, and the like shown in the present specification are only used for matching with the contents disclosed in the specification, so as to be understood and read by those skilled in the art, and are not used to limit the conditions that the present invention can be implemented, so that the present invention has no technical significance, and any structural modifications, changes in the ratio relationship, or adjustments of the sizes, without affecting the effects and the achievable by the present invention, should still fall within the range that the technical contents disclosed in the present invention can cover.
Fig. 1 is a flowchart of a DSL configuration expression-based function implementation method according to an embodiment of the present invention;
fig. 2 is a flowchart of obtaining an expression of a DSL configuration expression-based function implementation method according to an embodiment of the present invention;
fig. 3 is a flowchart of an expression parsing method for implementing a function based on a DSL configuration expression according to an embodiment of the present invention;
fig. 4 is a flowchart illustrating a result operation of a DSL configuration expression-based function implementation method according to an embodiment of the present invention;
fig. 5 is a schematic diagram illustrating a DSL configuration expression-based function implementation system according to an embodiment of the present invention;
fig. 6 is a schematic diagram illustrating an expression obtaining module of a DSL configuration expression-based function implementation system according to an embodiment of the present invention;
fig. 7 is a schematic diagram illustrating an expression parsing module of a DSL configuration expression-based function implementation system according to an embodiment of the present invention;
fig. 8 is a schematic diagram illustrating a result determination module of a DSL configuration expression-based function implementation system according to an embodiment of the present invention;
fig. 9 is a schematic structural diagram of a function implementation device based on a DSL configuration expression according to an embodiment of the present invention.
Detailed Description
The present invention is described in terms of particular embodiments, other advantages and features of the invention will become apparent to those skilled in the art from the following disclosure, and it is to be understood that the described embodiments are merely exemplary of the invention and that it is not intended to limit the invention to the particular embodiments disclosed. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
Referring to fig. 1, fig. 2, fig. 3, and fig. 4, fig. 1 is a flowchart of a DSL configuration expression-based function implementation method according to an embodiment of the present invention; fig. 2 is a flowchart of obtaining an expression of a DSL configuration expression-based function implementation method according to an embodiment of the present invention; fig. 3 is a flowchart of an expression parsing method for implementing a function based on a DSL configuration expression according to an embodiment of the present invention; fig. 4 is a flowchart of a result operation of a DSL configuration expression-based function implementation method according to an embodiment of the present invention.
In a specific implementation manner of the present invention, an embodiment of the present invention provides a method for implementing a function based on a DSL configuration expression, including:
step S11: acquiring a corresponding DSL expression from a DSL configuration server at a preset position of an application system;
first, in the embodiment of the present invention, a site may be embedded in an application system where future expansion is needed, and a DSL configuration expression may be obtained from a remote end when the site is executed. For example, if 10 functions are expected to be on-line in the future but are not ready, the site can be built in the preset location of the framed application system framework, i.e. leaving the interface to bring in functions. In order to obtain the corresponding DSL expression from the DSL configuration server at the preset location of the application system, specifically, the following steps may be performed:
step S21: sending a DSL expression request to a DSL configuration server, the DSL expression request comprising: presetting a position code;
step S22: after receiving the DSL expression request, the DSL configuration server sends a corresponding DSL expression according to the preset position code;
step S23: and the application system receives the DSL expression sent by the DSL configuration server.
That is to say, in the application system, a DSL expression request is performed at a preset local site, and the DSL configuration server returns a corresponding DSL expression according to the request information of the expression, thereby enabling external introduction.
Step S12: analyzing the DSL expression by using a DSL expression analysis engine to obtain parameters of the DSL expression;
after obtaining the DSL expression, it is necessary to analyze the DSL expression to form a form that can be understood by an application, and in order to analyze the DSL expression by using a DSL expression analysis engine to obtain parameters of the DSL expression, the following steps may be specifically used:
step S31: generating a grammar tree according to a preset DSL grammar rule;
step S32: and analyzing the DSL expression by using a grammar tree to obtain the parameter of the DSL expression.
That is, DSL is a language that describes domain-specific objects, rules, and modes of operation in an extremely efficient manner. A specific interpreter needs to be fitted to it. The efficient and simple domain language can greatly degrade the understanding and using difficulty compared with a general language, and simultaneously greatly improve the development efficiency. Languages that can describe domain-specific world views and methodologies. The syntax rule of the DSL may be used to generate a grammar tree, so that the grammar tree is subsequently used to parse the DSL expression to obtain the parameter of the DSL expression.
Step S13: collecting parameter data values corresponding to parameters of the DSL expression;
after the DSL expression is analyzed, parameters can be collected in the application system according to the analysis result, and data is pulled. For example, the values of the parameters may be obtained by searching in a database according to the definitions of the parameters.
Step S14: and determining an expression result of the DSL expression according to the DSL expression and the corresponding parameter data value so as to execute the expression result and realize functions.
In order to determine an expression result of the DSL expression from the DSL expression and the corresponding parameter data value, the following steps may be performed:
step S41: substituting the parameter data value into the DSL expression to obtain a data expression;
step S42: and carrying out logic operation on the data expression to obtain an expression result.
That is, after the system acquires these data, the DSL expression is combined with the acquired data to perform an operation, and finally the value of the entire DSL expression is obtained. By the method, the judged logic can be switched to the DSL, so that the realization of new functions can be realized by configuring DSL expressions
The embodiment of the invention provides a function implementation method based on a DSL configuration expression, and specifically, a) a point is buried in a system, the identification of the point and the DSL configuration of a far end have relevance, and the DSL configuration can be acquired from the far end during execution. b) The system is internally provided with a DSL resolver and collects data required by the expression, and the data required to be collected is completed by preprocessing the DSL expression. c) And (4) executing the DSL expression in a depth-first mode, wherein the final result of the expression is used as a judgment basis for the execution of a subsequent program. By the method, the judged logic can be switched to the DSL, so that the realization of new functions can be realized by configuring a DSL expression. The method has the advantages that the frequently changed logic codes are completed by using the configuration, the online function can be realized without changing the codes, the logic adjustment can be realized even if the technology is not understood, the maintenance is easier, the expansibility is strong, and the development cost is reduced, so that the iteration period of the product is accelerated.
Referring to fig. 5, fig. 6, fig. 7, and fig. 8, fig. 5 is a schematic diagram illustrating a DSL configuration expression-based function implementation system according to an embodiment of the present invention; fig. 6 is a schematic diagram illustrating an expression obtaining module of a DSL configuration expression-based function implementation system according to an embodiment of the present invention; fig. 7 is a schematic diagram illustrating an expression parsing module of a DSL configuration expression-based function implementation system according to an embodiment of the present invention; fig. 8 is a schematic diagram illustrating a structure of a result determination module of a DSL configuration expression-based function implementation system according to an embodiment of the present invention.
In another embodiment of the present invention, an embodiment of the present invention provides a DSL configuration expression-based function implementation system 500, including:
an expression obtaining module 510, configured to obtain a corresponding DSL expression from a DSL configuration server at a preset location of an application system;
an expression parsing module 520, configured to parse the DSL expression by using a DSL expression parsing engine to obtain a parameter of the DSL expression;
a parameter collecting module 530, configured to collect parameter data values corresponding to parameters of the DSL expression;
a result determining module 540, configured to determine an expression result of the DSL expression according to the DSL expression and the corresponding parameter data value, so as to execute the expression result and implement a function.
Preferably, the expression obtaining module 510 includes:
a request sending unit 511, configured to send a DSL expression request to a DSL configuration server, where the DSL expression request includes: presetting a position code;
an expression sending unit 512, configured to send, by the DSL configuration server, a corresponding DSL expression according to the default location code after receiving the DSL expression request;
an expression receiving unit 513, configured to receive, by the application system, the DSL expression sent by the DSL configuration server.
Preferably, the expression parsing module 520 includes:
a text tree generating unit 521, configured to generate a text tree according to a preset DSL syntax rule;
the syntax tree parsing unit 522 parses the DSL expression by using the syntax tree in language to obtain parameters of the DSL expression.
Preferably, the result determining module 540 includes:
a data substituting unit 541, configured to substitute the parameter data value into the DSL expression to obtain a data expression;
and the data operation unit 542 is configured to perform a logic operation on the data expression to obtain an expression result.
Referring to fig. 9, fig. 9 is a schematic structural diagram of a function implementation device based on DSL configuration expression according to an embodiment of the present invention.
An embodiment of the present invention provides a function implementation device 900 based on a DSL configuration expression, including:
a memory 910 for storing a computer program;
a processor 920, configured to implement the steps of the DSL configuration expression-based function implementation method according to any of the embodiments described above when the computer program is executed.
An embodiment of the present invention provides a computer-readable storage medium, where a computer program is stored on the computer-readable storage medium, and when being executed by a processor, the computer program implements the steps of the DSL configuration expression-based function implementation method according to any of the above embodiments.
As will be appreciated by one skilled in the art, embodiments of the present application may be provided as a method, system, or computer program product. Accordingly, the present application may take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment combining software and hardware aspects. Furthermore, the present application may take the form of a computer program product embodied on one or more computer-usable storage media (including, but not limited to, disk storage, CD-ROM, optical storage, and the like) having computer-usable program code embodied therein.
The present application is described with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems), and computer program products according to embodiments of the application. It will be understood that each flow and/or block of the flow diagrams and/or block diagrams, and combinations of flows and/or blocks in the flow diagrams and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, embedded processor, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be stored in a computer-readable memory that can direct a computer or other programmable data processing apparatus to function in a particular manner, such that the instructions stored in the computer-readable memory produce an article of manufacture including instruction means which implement the function specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be loaded onto a computer or other programmable data processing apparatus to cause a series of operational steps to be performed on the computer or other programmable apparatus to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide steps for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
In a typical configuration, a computing device includes one or more processors (CPUs), input/output interfaces, network interfaces, and memory. The memory may include forms of volatile memory in a computer readable medium, Random Access Memory (RAM) and/or non-volatile memory, such as Read Only Memory (ROM) or flash memory (flash RAM). The memory is an example of a computer-readable medium.
Computer-readable media, including both non-transitory and non-transitory, removable and non-removable media, may implement information storage by any method or technology. The information may be computer readable instructions, data structures, modules of a program, or other data. Examples of computer storage media include, but are not limited to, phase change memory (PRAM), Static Random Access Memory (SRAM), Dynamic Random Access Memory (DRAM), other types of Random Access Memory (RAM), Read Only Memory (ROM), Electrically Erasable Programmable Read Only Memory (EEPROM), flash memory or other memory technology, compact disc read only memory (CD-ROM), Digital Versatile Discs (DVD) or other optical storage, magnetic cassettes, magnetic tape magnetic disk storage or other magnetic storage devices, or any other non-transmission medium that can be used to store information that can be accessed by a computing device. As defined herein, a computer readable medium does not include a transitory computer readable medium such as a modulated data signal and a carrier wave.
It should also be noted that the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising an … …" does not exclude the presence of other identical elements in the process, method, article, or apparatus that comprises the element.
Although the invention has been described in detail above with reference to a general description and specific examples, it will be apparent to one skilled in the art that modifications or improvements may be made thereto based on the invention. Accordingly, such modifications and improvements are intended to be within the scope of the invention as claimed.

Claims (10)

1. A method for implementing DSL configuration expression-based functionality, comprising:
acquiring a corresponding DSL expression from a DSL configuration server at a preset position of an application system;
analyzing the DSL expression by using a DSL expression analysis engine to obtain parameters of the DSL expression;
collecting parameter data values corresponding to parameters of the DSL expression;
and determining an expression result of the DSL expression according to the DSL expression and the corresponding parameter data value so as to execute the expression result and realize functions.
2. The method of claim 1,
the obtaining, at a preset location of the application system, a corresponding DSL expression from the DSL configuration server includes:
sending a DSL expression request to a DSL configuration server, the DSL expression request comprising: presetting a position code;
after receiving the DSL expression request, the DSL configuration server sends a corresponding DSL expression according to the preset position code;
and the application system receives the DSL expression sent by the DSL configuration server.
3. The method of claim 1,
the analyzing the DSL expression by using a DSL expression analysis engine to obtain the parameter of the DSL expression includes:
generating a grammar tree according to a preset DSL grammar rule;
and analyzing the DSL expression by using a grammar tree to obtain the parameter of the DSL expression.
4. The function realization method according to any one of claims 1 to 3,
determining an expression result of the DSL expression according to the DSL expression and the corresponding parameter data value, including:
substituting the parameter data value into the DSL expression to obtain a data expression;
and carrying out logic operation on the data expression to obtain an expression result.
5. A DSL deployment expression based functionality implementation system, comprising:
the DSL configuration module is used for configuring a DSL configuration server with a corresponding DSL expression;
the expression analysis module is used for analyzing the DSL expression by utilizing a DSL expression analysis engine to obtain the parameter of the DSL expression;
a parameter collection module, configured to collect parameter data values corresponding to parameters of the DSL expression;
and the result determining module is used for determining the expression result of the DSL expression according to the DSL expression and the corresponding parameter data value so as to execute the expression result and realize the function.
6. The function implementation system of claim 5,
the expression obtaining module includes:
a request sending unit, configured to send a DSL expression request to a DSL configuration server, where the DSL expression request includes: presetting a position code;
the DSL configuration server is used for receiving a DSL expression request and transmitting a corresponding DSL expression according to the preset position code;
and the expression receiving unit is used for receiving the DSL expression sent by the DSL configuration server by the application system.
7. The function implementation system of claim 5,
the expression parsing module includes:
the text tree generating unit is used for generating a text tree according to a preset DSL grammar rule;
and the grammar tree analysis unit analyzes the DSL expression by using the grammar tree in terms of language to obtain the parameters of the DSL expression.
8. The function realization system according to any one of claims 5 to 7,
the result determination module includes:
the data substituting unit is used for substituting the parameter data value into the DSL expression to obtain a data expression;
and the data operation unit is used for carrying out logic operation on the data expression to obtain an expression result.
9. A DSL configuration expression based function implementation apparatus, comprising:
a memory for storing a computer program;
a processor for implementing the steps of the DSL configuration expression based functionality implementation method of any of claims 1 to 4 when executing the computer program.
10. A computer-readable storage medium, having stored thereon a computer program which, when being executed by a processor, carries out the steps of the DSL configuration expression based functionality implementation method of any of claims 1 to 4.
CN202010187281.1A 2020-03-17 2020-03-17 DSL configuration expression-based function implementation method and system Pending CN111381935A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010187281.1A CN111381935A (en) 2020-03-17 2020-03-17 DSL configuration expression-based function implementation method and system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010187281.1A CN111381935A (en) 2020-03-17 2020-03-17 DSL configuration expression-based function implementation method and system

Publications (1)

Publication Number Publication Date
CN111381935A true CN111381935A (en) 2020-07-07

Family

ID=71221560

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010187281.1A Pending CN111381935A (en) 2020-03-17 2020-03-17 DSL configuration expression-based function implementation method and system

Country Status (1)

Country Link
CN (1) CN111381935A (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114610751A (en) * 2022-05-09 2022-06-10 清华大学 Structured parameter analysis method, device, equipment and medium for geographic computing language
US11775270B1 (en) 2023-04-19 2023-10-03 Tsinghua University Method and apparatus for parsing structured parameters of geocomputation language, device and medium

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP2112593A1 (en) * 2008-04-25 2009-10-28 Facton GmbH Domain model concept for developing computer applications
US20110246972A1 (en) * 2010-03-30 2011-10-06 International Business Machines Corporation Method of selecting an expression evaluation technique for domain-specific language compilation
US20140123116A1 (en) * 2012-10-30 2014-05-01 Oracle International Corporation System and metod for debugging domain specific languages
US20140189548A1 (en) * 2013-01-03 2014-07-03 Ca, Inc. Domain specific language user interface
US20170249130A1 (en) * 2016-02-26 2017-08-31 Oracle International Corporation Method for static security enforcement of a dsl
CN107196788A (en) * 2017-05-02 2017-09-22 阿里巴巴集团控股有限公司 A kind of processing method for burying point data, device, server and client

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP2112593A1 (en) * 2008-04-25 2009-10-28 Facton GmbH Domain model concept for developing computer applications
US20110246972A1 (en) * 2010-03-30 2011-10-06 International Business Machines Corporation Method of selecting an expression evaluation technique for domain-specific language compilation
US20140123116A1 (en) * 2012-10-30 2014-05-01 Oracle International Corporation System and metod for debugging domain specific languages
US20140189548A1 (en) * 2013-01-03 2014-07-03 Ca, Inc. Domain specific language user interface
US20170249130A1 (en) * 2016-02-26 2017-08-31 Oracle International Corporation Method for static security enforcement of a dsl
CN107196788A (en) * 2017-05-02 2017-09-22 阿里巴巴集团控股有限公司 A kind of processing method for burying point data, device, server and client

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114610751A (en) * 2022-05-09 2022-06-10 清华大学 Structured parameter analysis method, device, equipment and medium for geographic computing language
CN114610751B (en) * 2022-05-09 2023-02-03 清华大学 Structured parameter analysis method, device, equipment and medium for geographic computing language
US11775270B1 (en) 2023-04-19 2023-10-03 Tsinghua University Method and apparatus for parsing structured parameters of geocomputation language, device and medium

Similar Documents

Publication Publication Date Title
CN107590123B (en) Vehicular middle-location context reference resolution method and device
CN110399169B (en) BIOS option modification method, device, equipment and readable storage medium
CN109918296B (en) Software automation test method and device
CN111381935A (en) DSL configuration expression-based function implementation method and system
CN111367803A (en) Method and system for improving testing efficiency of client software
CN109062906B (en) Translation method and device for program language resources
CN109284115A (en) A kind of method and device generating tracker script
US10678514B2 (en) Method and device for generating code assistance information
CN109325217B (en) File conversion method, system, device and computer readable storage medium
CN114398315A (en) Data storage method, system, storage medium and electronic equipment
CN106681781A (en) Implementation method and system for real-time computing service
CN115576603B (en) Method and device for acquiring variable values in code segment
CN116560631A (en) Method and device for generating machine learning model code
CN109284088B (en) Signaling big data processing method and electronic equipment
CN111258905A (en) Defect positioning method and device, electronic equipment and computer readable storage medium
CN112541001A (en) Data query method, device, storage medium and equipment
CN114490679A (en) Data management method, device, equipment and medium based on identification analysis
CN113553047A (en) Method and device for converting DSL into visual page
CN111079392B (en) Automatic filling method and device for web form, storage medium and electronic equipment
CN113448982A (en) DDL statement analysis method and device, computer equipment and storage medium
CN106951427B (en) Data extraction method and device for business object
CN110554867A (en) Application processing method and device
CN111177633B (en) Automatic filling method and device for web form, storage medium and electronic equipment
CN112527953B (en) Rule matching method and device
CN108052654A (en) Data extraction method, device, equipment and storage medium

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