CN110045962B - Method and device for supporting multi-language script execution - Google Patents

Method and device for supporting multi-language script execution Download PDF

Info

Publication number
CN110045962B
CN110045962B CN201910034541.9A CN201910034541A CN110045962B CN 110045962 B CN110045962 B CN 110045962B CN 201910034541 A CN201910034541 A CN 201910034541A CN 110045962 B CN110045962 B CN 110045962B
Authority
CN
China
Prior art keywords
script
language
context data
variable
execution
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
CN201910034541.9A
Other languages
Chinese (zh)
Other versions
CN110045962A (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.)
Advanced New Technologies Co Ltd
Original Assignee
Advanced New Technologies 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 Advanced New Technologies Co Ltd filed Critical Advanced New Technologies Co Ltd
Priority to CN201910034541.9A priority Critical patent/CN110045962B/en
Publication of CN110045962A publication Critical patent/CN110045962A/en
Application granted granted Critical
Publication of CN110045962B publication Critical patent/CN110045962B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/40Transformation of program code
    • G06F8/41Compilation
    • G06F8/42Syntactic analysis
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/40Transformation of program code
    • G06F8/41Compilation
    • G06F8/44Encoding
    • G06F8/443Optimisation

Landscapes

  • Engineering & Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Devices For Executing Special Programs (AREA)
  • Stored Programmes (AREA)

Abstract

The invention provides a method and a device for supporting multi-language script execution, wherein the method comprises the following steps: generating a copy of the context data prior to executing the script; wherein the script is written in at least two languages, and the context data is shared by at least two scripting language engines; and matching the script language engine corresponding to the language of the script for the script according to the language of the script so as to compile and execute. The method and the device for supporting the execution of the multi-language script can support the integration of multiple languages in a project in a lightweight way, and the languages can be mutually called.

Description

Method and device for supporting multi-language script execution
Technical Field
The invention relates to the technical field of information, in particular to a method and a device for supporting multi-language script execution.
Background
Currently, most software engineering only uses one programming language, and different programming languages have characteristics in different application scenarios. Different programming languages often cannot use functions in the project due to different operating environments, and calling among the programming languages cannot be communicated with each other.
Although some programming languages have their own grammatical sugar that can greatly reduce the amount of code and maintenance work, there is currently no solution that can be lightweight for an engineering to support multiple programming languages.
Disclosure of Invention
The invention provides a method and a device for supporting multi-language script execution, which are used for solving the problem of supporting the script execution containing multiple languages.
The method for supporting the execution of the multi-language script provided by the invention comprises the following steps:
generating a copy of the context data prior to executing the script; wherein the script is written in at least two languages, the context data being shared by at least two scripting language engines;
and matching the script language engine corresponding to the language of the script for the script according to the language of the script so as to compile and execute.
Further, the method of the present invention further comprises:
before executing a script, logically packaging part of the script into a function;
compiling the function to generate a class file when compiling the function;
caching the instance of the class file to the context data.
Further, the method of the present invention further comprises:
running the class file using a class loader; wherein each of the class files corresponds to one of the class loaders.
Further, the method of the present invention, wherein the step of matching the script language engine corresponding to the language of the script for the script according to the language of the script to perform compiling execution further includes:
obtaining a variable from the context data query;
if the variable is not obtained by querying the context data, querying the cached instance of the class file to obtain the variable;
and if the variable is not acquired by querying the cached instance of the class file, the variable is acquired by querying from an open source framework of the project.
Further, the method of the present invention, wherein the step of matching the script language engine corresponding to the language of the script for the script according to the language of the script to perform compiling execution further includes:
and if the variable is not inquired in the open source framework of the project, inquiring the variable through copying the context data.
Further, the method of the present invention further comprises:
stacking the copy of the context data before each execution of the script;
after each execution of the script, popping the copy of the context data.
The device for supporting the multi-language script execution provided by the invention comprises the following components:
a copy module to generate a copy of the context data prior to executing the script; wherein the script is written in at least two languages, and the context data is shared by at least two scripting language engines;
and the compiling and executing module is used for matching the script language engine corresponding to the language of the script for the script according to the language of the script so as to carry out compiling and executing.
Further, the apparatus of the present invention further includes:
a cache module to:
before executing the script, logically packaging part of the script into a function;
compiling the function to generate a class file when compiling the function;
caching an instance of the class file to the context data.
Further, the apparatus of the present invention further includes:
the class loader is used for operating the class file; wherein each of the class files corresponds to one of the class loaders.
Further, in the apparatus of the present invention, the compiling execution module is further configured to:
obtaining a variable from the context data query;
if the variable is not obtained by querying the context data, querying the cached instance of the class file to obtain the variable;
and if the cached instance of the class file is not queried and the variable is obtained, querying and obtaining the variable from an open source framework of the project.
Further, in the apparatus of the present invention, the compiling execution module is further configured to:
and if the variable is not inquired in the open source framework of the project, inquiring the variable through copying the context data.
Further, the apparatus of the present invention further comprises:
a management stack module to:
stacking the copy of the context data before each execution of the script;
popping the copy of the context data off the stack after each execution of the script.
The present invention also provides a storage medium storing computer program instructions for performing a method according to the present invention.
The present invention also provides a computing device comprising: a memory for storing computer program instructions and a processor for executing the computer program instructions, wherein the computer program instructions, when executed by the processor, trigger the computing device to perform the method of the invention.
The method and the device for supporting the execution of the multi-language script can support the integration of multiple languages in a project in a lightweight way, and the languages can be mutually called.
Drawings
Other features, objects and advantages of the invention will become more apparent upon reading of the detailed description of non-limiting embodiments thereof, made with reference to the following drawings:
FIG. 1 is a flowchart illustrating a method for supporting multi-language script execution according to a first embodiment of the present invention;
FIG. 2 is a flowchart illustrating a method for supporting multi-language script execution according to a second embodiment of the present invention;
FIG. 3 is a block diagram of an apparatus for supporting multiple language script execution according to a third embodiment of the present invention;
FIG. 4 is a diagram illustrating a structure of an apparatus for supporting multiple language script execution according to a fourth embodiment of the present invention.
The same or similar reference numbers in the drawings identify the same or similar elements.
Detailed Description
The present invention is described in further detail below with reference to the attached drawing figures.
Fig. 1 is a flowchart illustrating a method for supporting multi-language script execution according to an embodiment of the present invention, and as shown in fig. 1, the method for supporting multi-language script execution according to an embodiment of the present invention includes:
step S101, before executing the script, generating a copy of the context data; wherein the script is written in at least two languages and the context data is shared by at least two scripting language engines.
And step S102, matching the script language engine corresponding to the language of the script for the script according to the language of the script so as to compile and execute.
Among the multiple languages contained in the script, the script may contain a static programming language or a dynamic programming language. I.e., a script, in which a part of the code is implemented by a static programming language and the other part of the code is implemented by a dynamic programming language. Dynamic programming languages are different relative to static programming languages. The dynamic programming language is compiled and executed at runtime. Static programming languages are typed before running, e.g., in the compilation phase. The engineering of the software takes a static language as an engineering framework main body, and the stability of the architecture can be ensured. However, when some business logic scenes with high requirements on flexibility are processed, the static language needs to be modified, tested, compiled and online every time, and the iteration speed is low. Therefore, in the face of a service requirement with a high iteration speed, a dynamic script realized by adopting a dynamic programming language is more adaptive, for example, the dynamic script is more adaptive under a service logic scene which needs to be dynamically judged and adjusted during execution. And dynamic scripts can provide easier grammatical sugars to shorten script content. If the main body of the project is supported by a static language in one project and changeable business logic is executed by a dynamic script, the iteration speed can be greatly increased on the premise of ensuring the stability of the architecture.
The context data can be shared by at least two scripting language engines, so that the situation that developers need to manually intervene in the introduction and embedding points of scripts is avoided, calling among the scripts can be realized without embedding hooks in codes of the scripts in advance, and the method is also suitable for scenes with concurrency or affairs.
In addition, the different script language engines share one context data, and a copy of the context data is generated each time the script is executed, so that the data can be ensured not to be polluted. Even if the execution of the script is wrong, the variable of the context data is wrong, the data can be automatically recovered from the copy of the context data in the execution process to be continuously executed, and the fault tolerance rate in the execution of the multi-language script is improved.
The scripting language engine may include a dynamic scripting engine and a static scripting engine, and compiles and executes codes implemented by a dynamic programming language and codes implemented by a static programming language in the script, respectively. During script execution, when the code part realized by the static programming language is executed, the static script engine is called to compile and execute the code part. When the code part realized by the dynamic programming language is executed in sequence in the execution process, the dynamic script engine is switched to compile and execute the code part.
The method for supporting the execution of the multi-language script can simultaneously support a static language and a dynamic language, greatly improve the iteration speed on the premise of ensuring the stability of the architecture and ensure that data cannot be polluted in the script execution process.
Fig. 2 is a flowchart illustrating a method for supporting multi-language script execution according to a second embodiment of the present invention, as shown in fig. 2, the method for supporting multi-language script execution according to the second embodiment of the present invention includes:
step S201, packaging part of the logic of the script into a function.
Each script can package a segment of independent logic contained in the script into a function, and the segment of independent logic can be written in one language. Each script may include several independent logics, and each logic is a part of the script. The logics can be written in different languages respectively, namely, the script is formed by independent logics of all parts into a whole, and the languages of all logics are different. The packed function can be compiled into a class file (class file) through step S205 at the time of compiling, and an instance of the class file is generated and cached in the context data for use when the script is executed.
Wherein the script is written in at least two languages. The script may be dynamically compiled at run-time into a class file (class file). The script may include a static programming language or a dynamic programming language among a plurality of languages. I.e., a script, in which a part of the code is implemented by a static programming language and the other part of the code is implemented by a dynamic programming language. Dynamic programming languages are different relative to static programming languages. The dynamic programming language is compiled and executed at runtime. Static programming languages are typed before running, e.g., in the compilation phase. The engineering of the software takes a static language as an engineering framework main body, and the stability of the architecture can be ensured. However, when some business logic scenarios with high requirements on flexibility are processed, the static language needs to be modified, tested, compiled and online every time, and the iteration speed is low. Therefore, in the face of a service requirement with high iteration speed, the dynamic script realized by adopting the dynamic programming language is more adaptive, for example, the dynamic script is more adaptive under a service logic scene which needs to be dynamically judged and adjusted during execution. And dynamic scripts can provide easier grammatical sugars to shorten script content. If the main body of the project is supported by a static language in one project and changeable business logic is executed by a dynamic script, the iteration speed can be greatly increased on the premise of ensuring the stability of the architecture.
In step S202, a copy of the context data is generated.
Wherein the context data is shared by at least two scripting language engines. Context data can be shared by at least two scripting language engines, so that the situation that developers need to manually intervene in the introduction and embedding points of scripts is avoided, calling among the scripts can be realized without embedding hooks in codes of the scripts in advance, and the method is also suitable for scenes with concurrency or affairs. By sharing context data by different scripting language engines and generating a copy of the context data each time a script is executed, it is ensured that the data is not contaminated.
Step S203, before the script is executed each time, the copy of the context data is stacked.
Each time the script is executed, a copy of the context data is generated and put on the stack, and after the script is executed, the copy of the context data is put off the stack through the step S206, so that the self-tuning of the script can be supported, and the independence of the context data can be ensured. Even if the execution of the script is wrong, the variable of the context data is wrong, the data can be automatically recovered from the copy of the context data in the execution process to be continuously executed, and the fault tolerance rate in the execution of the multi-language script is improved.
And step S204, matching the script language engine corresponding to the language of the script for the script according to the language of the script.
The scripting language engine may include a dynamic scripting engine and a static scripting engine, and compiles and executes codes realized by a dynamic programming language and codes realized by a static programming language in the script respectively. During script execution, when a code part realized by a static programming language is executed, a static script engine is called to compile and execute the code part. When the code part realized by the dynamic programming language is executed in sequence in the execution process, the dynamic script engine is switched to compile and execute the code part.
And step S205, compiling and executing the script by using the script language engine obtained by matching.
In step S205, when compiling the script, the steps a1 to a2 are performed as follows:
a1. compiling the function to generate a class file when the function is compiled;
a2. caching the instance of the class file to the context data.
When the generated instance of the class file is cached in the context data, variables necessary for execution can be conveniently inquired and obtained from the cached instance in the context data during script execution. If the execution has no problem, the instance is not required to be saved, and the instance is required to be deleted after the execution is finished every time for the execution efficiency, so the instance is only cached in the context data.
In step S205, when the variable needs to be acquired during the execution process, the following steps b1 to b4 are performed:
b1. obtaining a variable from the context data query;
b2. if the variable is not obtained by querying the context data, querying the cached instance of the class file to obtain the variable;
b3. if the variable is not obtained by querying the cached instance of the class file, querying the open source framework of the project to obtain the variable;
b4. and if the variable is not inquired in an open source framework (Spring) of the project, inquiring the variable through the copy of the context data.
Wherein, step b4 is an optional step, when no variable is queried in the open source framework of the project, the execution of the script can be ended and an error can be reported. However, considering that the copy of the context data independently stores the data during the script execution, if no variable is queried in the open source framework, the query can be continued through the copy of the context data. By rewriting the logic of the query variables in the script language engines to conform to the query sequence from b1 to b3 and clarifying the variable acquisition rules, the sharing of the same context data among different script language engines can be realized.
Step S206, after each script execution, popping the copy of the context data.
After the script is executed, the context data is copied out of the stack, so that self-tuning of the script can be supported, and independence of the context data is guaranteed.
Step S207, the class loader is used for running the class files.
Wherein each of the class files corresponds to one of the class loaders. Because the script content can be changed and replaced at any time, each compiled class file (class file) is independently operated in a class loader (class loader), so that mutual interference caused by execution of various logics can be avoided.
The method for supporting the execution of the multi-language script in the second embodiment of the invention can simultaneously support the static language and the dynamic language, greatly improve the iteration speed on the premise of ensuring the stability of the architecture and ensure that data cannot be polluted in the script execution process.
Fig. 3 is a schematic structural diagram of a device for supporting multi-language script execution according to a third embodiment of the present invention, and as shown in fig. 3, the device for supporting multi-language script execution according to the third embodiment of the present invention includes: a copy module 31 and a compile execution module 32.
A copy module 31 for generating a copy of the context data before executing the script; wherein the script is written in at least two languages, and the context data is shared by at least two scripting language engines;
and the compiling and executing module 32 is used for matching the script language engine corresponding to the language of the script for the script according to the language of the script so as to carry out compiling and executing.
The apparatus according to the third embodiment of the present invention is an implementation apparatus of the method according to the first embodiment of the present invention, and the specific principle thereof is the same as that of the method according to the first embodiment of the present invention, and is not described herein again.
Fig. 4 is a schematic structural diagram of a device for supporting multiple language script execution according to a fourth embodiment of the present invention, as shown in fig. 4, the device for supporting multiple language script execution according to the fourth embodiment of the present invention includes: a copy module 31, a compilation execution module 32, a cache module 41, a class loader 42, and a management stack module 43.
Wherein, the copying module 31 is configured to generate a copy of the context data before executing the script; wherein the script is written in at least two languages and the context data is shared by at least two scripting language engines.
The compiling and executing module 32 is configured to match the script with the script language engine corresponding to the language of the script according to the language of the script to perform compiling and executing.
Wherein the compiling execution module 32 is further configured to:
obtaining a variable from the context data query;
if the variable is not obtained by querying the context data, querying the cached instance of the class file to obtain the variable;
and if the cached instance of the class file is not queried and the variable is obtained, querying and obtaining the variable from an open source framework of the project.
Wherein the compiling execution module 32 is further configured to:
and if the variable is not inquired in the open source framework of the project, inquiring the variable through copying the context data.
Wherein, the cache module 41 is configured to:
before executing the script, logically packaging part of the script into a function;
compiling the function to generate a class file when the function is compiled;
caching an instance of the class file to the context data.
Wherein, the class loader 42 is used for running the class file. Wherein each of the class files corresponds to one of the class loaders.
Wherein, the management stack module 43 is configured to:
stacking the copy of the context data before each execution of the script;
popping the copy of the context data off the stack after each execution of the script.
The apparatus described in the fourth embodiment of the present invention is an apparatus for implementing the method described in the second embodiment of the present invention, and the specific principle is the same as that of the method described in the second embodiment of the present invention, which is not described herein again.
In one embodiment of the present invention, there is also provided a computing device comprising: a memory for storing computer program instructions and a processor for executing the computer program instructions, wherein the computer program instructions, when executed by the processor, trigger the computing device to perform the method of embodiments one and two of the present invention.
In one exemplary configuration of the invention, the computing devices each include 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). Memory is an example of a computer-readable medium.
In an embodiment of the present invention, a storage medium is further provided, where the storage medium stores computer program instructions, and the computer program instructions are executed according to the methods described in the first embodiment and the second embodiment of the present invention.
Computer-readable storage media include permanent and non-permanent, removable and non-removable media and may implement information storage by any method or technology. The information may be computer readable instructions, data structures, programmed devices, 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 Disks (DVD) or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other non-transmission medium, which can be used to store information and which can be accessed by a computing device.
It should be noted that the present invention may be implemented in software and/or in a combination of software and hardware, for example, as an Application Specific Integrated Circuit (ASIC), a general purpose computer or any other similar hardware device. In some embodiments, the software program of the present invention may be executed by a processor to implement the above steps or functions. Also, the software programs (including associated data structures) of the present invention can be stored in a computer readable recording medium, such as RAM memory, magnetic or optical drive or diskette and the like. Further, some of the steps or functions of the present invention may be implemented in hardware, for example, as circuitry that cooperates with the processor to perform various steps or functions.
It will be evident to those skilled in the art that the invention is not limited to the details of the foregoing illustrative embodiments, and that the present invention may be embodied in other specific forms without departing from the spirit or essential attributes thereof. The present embodiments are therefore to be considered in all respects as illustrative and not restrictive, the scope of the invention being indicated by the appended claims rather than by the foregoing description, and all changes which come within the meaning and range of equivalency of the claims are therefore intended to be embraced therein. Any reference sign in a claim should not be construed as limiting the claim concerned. Furthermore, it is obvious that the word "comprising" does not exclude other elements or steps, and the singular does not exclude the plural. A plurality of units or means recited in the apparatus claims may also be implemented by one unit or means in software or hardware. The terms first, second, etc. are used to denote names, but not any particular order.

Claims (14)

1. A method for supporting multi-language script execution is applied to software engineering and is characterized by comprising the following steps:
generating a copy of the context data prior to executing the script; wherein the script is written in at least two languages, and the context data is shared by at least two scripting language engines; the script language comprises a static programming language and a dynamic programming language;
matching the script language engine corresponding to the language of the script for the script according to the language of the script so as to compile and execute; the scripting language engine includes a dynamic scripting engine and a static scripting engine.
2. The method of claim 1, further comprising:
before executing the script, logically packaging part of the script into a function;
compiling the function to generate a class file when the function is compiled;
caching an instance of the class file to the context data.
3. The method of claim 2, further comprising:
running the class file using a class loader; wherein each of the class files corresponds to one of the class loaders.
4. The method of claim 2, wherein the step of matching the script language engine corresponding to the language of the script for compilation execution according to the language of the script further comprises:
obtaining a variable from the context data query;
if the variable is not obtained by querying the context data, the variable is obtained by querying the cached instance of the class file;
and if the cached instance of the class file is not queried and the variable is obtained, querying and obtaining the variable from an open source framework of the project.
5. The method according to claim 4, wherein the step of matching the script language engine corresponding to the language of the script for the script to perform compiling execution according to the language of the script further comprises:
and if the variable is not inquired in the open source framework of the project, inquiring the variable through copying the context data.
6. The method of any of claims 1 to 4, further comprising:
stacking the copy of the context data before each execution of the script;
popping the copy of the context data off the stack after each execution of the script.
7. An apparatus for supporting multi-language script execution, applied to software engineering, comprising:
a copy module to generate a copy of the context data prior to executing the script; wherein the script is written in at least two languages, the context data being shared by at least two scripting language engines; the script language comprises a static programming language and a dynamic programming language;
the compiling and executing module is used for matching the script language engine corresponding to the language of the script for the script according to the language of the script so as to carry out compiling and executing; the scripting language engine includes a dynamic scripting engine and a static scripting engine.
8. The apparatus of claim 7, further comprising:
a cache module to:
before executing the script, logically packaging part of the script into a function;
compiling the function to generate a class file when compiling the function;
caching an instance of the class file to the context data.
9. The apparatus of claim 8, further comprising:
the class loader is used for operating the class file; wherein each of the class files corresponds to one of the class loaders.
10. The apparatus of claim 8, wherein the compilation execution module is further configured to:
obtaining a variable from the context data query;
if the variable is not obtained by querying the context data, querying the cached instance of the class file to obtain the variable;
and if the cached instance of the class file is not queried and the variable is obtained, querying and obtaining the variable from an open source framework of the project.
11. The apparatus of claim 10, wherein the compilation execution module is further configured to:
and if the variable is not inquired in the open source framework of the project, inquiring the variable through copying the context data.
12. The apparatus of any one of claims 7 to 11, further comprising:
a management stack module to:
before each script execution, pushing a copy of the context data;
after each execution of the script, popping the copy of the context data.
13. A storage medium, characterized in that it stores computer program instructions for performing the method according to any one of claims 1 to 6.
14. A computing device, comprising: a memory for storing computer program instructions and a processor for executing the computer program instructions, wherein the computer program instructions, when executed by the processor, trigger the computing device to perform the method of any of claims 1 to 6.
CN201910034541.9A 2019-01-15 2019-01-15 Method and device for supporting multi-language script execution Active CN110045962B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910034541.9A CN110045962B (en) 2019-01-15 2019-01-15 Method and device for supporting multi-language script execution

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910034541.9A CN110045962B (en) 2019-01-15 2019-01-15 Method and device for supporting multi-language script execution

Publications (2)

Publication Number Publication Date
CN110045962A CN110045962A (en) 2019-07-23
CN110045962B true CN110045962B (en) 2022-08-30

Family

ID=67274100

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910034541.9A Active CN110045962B (en) 2019-01-15 2019-01-15 Method and device for supporting multi-language script execution

Country Status (1)

Country Link
CN (1) CN110045962B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111258588B (en) * 2020-02-26 2023-03-17 杭州优稳自动化系统有限公司 Script execution speed increasing method and device for controlling engineering software

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8533666B2 (en) * 2008-10-17 2013-09-10 Microsoft Corporation Interactive design environments to visually model, debug and execute resource oriented programs
CN102023856A (en) * 2010-10-21 2011-04-20 杭州万格网络科技有限公司 Method for outputting and operating data at server in formatting way according to demands of user
CN104636147B (en) * 2015-03-09 2016-05-25 北京恒华伟业科技股份有限公司 A kind of implementation method and system of cross-platform mobile application
CN106293863B (en) * 2016-07-26 2019-10-25 北京北森云计算股份有限公司 The method and system of system function dynamic expansion replacement are realized in multilingual cloud compiling
CN106156353B (en) * 2016-07-26 2019-08-09 北京北森云计算股份有限公司 A kind of method and system increasing multilingual on-the-flier compiler enforcement engine for database

Also Published As

Publication number Publication date
CN110045962A (en) 2019-07-23

Similar Documents

Publication Publication Date Title
JP5897816B2 (en) Dependency graph parameter scoping
CN110955431B (en) Processing method and device of compiling environment
US8458681B1 (en) Method and system for optimizing the object code of a program
US8341614B2 (en) Memory management for closures
US20090133008A1 (en) Unwind information for optimized programs
US20120185822A1 (en) Web browsing apparatus and method through storing and optimizing javascript® code
US10289395B2 (en) Performing a compiler optimization pass as a transaction
US20040210883A1 (en) Method and apparatus for building executable computer programs using compiled program libraries
US20020174418A1 (en) Constant return optimization transforming indirect calls to data fetches
CN114860654A (en) Method and system for dynamically changing Iceberg table Schema based on Flink data stream
CN115756451A (en) Method, device, equipment and storage medium for reusing multi-project code file
US9207956B2 (en) Class loading device for a java runtime environment, cluster system and method of executing a function
CN116049207A (en) Application SQL script processing method and device, processor and electronic equipment
US10747514B2 (en) Reduced save and restore instructions for call-clobbered registers
CN110045962B (en) Method and device for supporting multi-language script execution
US10459702B2 (en) Flow control for language-embedded programming in general purpose computing on graphics processing units
CN113220326B (en) Intelligent contract upgrading method and block chain system
CA2245133A1 (en) Language manager interface
CN115576560A (en) Hot reloading method, device, equipment and medium for dynamic loader
CN113220327A (en) Intelligent contract upgrading method and block chain system
US20180196676A1 (en) Reduced save and restore instructions for call-clobbered registers
US10055207B2 (en) Persistent variables in programming languages
CN114371852B (en) Compiling method and device
CN117251234B (en) Function calling method and device based on patches
CN113326042B (en) Method, device, storage medium and processor for visual configuration salary

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
TA01 Transfer of patent application right
TA01 Transfer of patent application right

Effective date of registration: 20201014

Address after: Cayman Enterprise Centre, 27 Hospital Road, George Town, Grand Cayman Islands

Applicant after: Advanced innovation technology Co.,Ltd.

Address before: A four-storey 847 mailbox in Grand Cayman Capital Building, British Cayman Islands

Applicant before: Alibaba Group Holding Ltd.

Effective date of registration: 20201014

Address after: Cayman Enterprise Centre, 27 Hospital Road, George Town, Grand Cayman Islands

Applicant after: Innovative advanced technology Co.,Ltd.

Address before: Cayman Enterprise Centre, 27 Hospital Road, George Town, Grand Cayman Islands

Applicant before: Advanced innovation technology Co.,Ltd.

GR01 Patent grant
GR01 Patent grant