CN102999370A - Method and system for executing script - Google Patents

Method and system for executing script Download PDF

Info

Publication number
CN102999370A
CN102999370A CN2011102762881A CN201110276288A CN102999370A CN 102999370 A CN102999370 A CN 102999370A CN 2011102762881 A CN2011102762881 A CN 2011102762881A CN 201110276288 A CN201110276288 A CN 201110276288A CN 102999370 A CN102999370 A CN 102999370A
Authority
CN
China
Prior art keywords
script
higher level
source code
level lanquage
corresponding relation
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
CN2011102762881A
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.)
Tencent Technology Shenzhen Co Ltd
Original Assignee
Tencent Technology Shenzhen 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 Tencent Technology Shenzhen Co Ltd filed Critical Tencent Technology Shenzhen Co Ltd
Priority to CN2011102762881A priority Critical patent/CN102999370A/en
Publication of CN102999370A publication Critical patent/CN102999370A/en
Pending legal-status Critical Current

Links

Images

Abstract

The invention relates to a method and a system for executing a script. The method comprises the following steps of pre-storing a grammar corresponding relation between a scripting language and a high-level language; reading script source codes; converting the read script source codes into corresponding high-level language source codes according to the grammar corresponding relation between the scripting language and the high-level language; compiling the high-level language source codes into executable codes; and executing the executable codes. According to the method and the system for executing the script, disclosed by the invention, the script source codes are converted into certain high-level language source codes, the high-level language source codes are compiled into the executable codes for executing, the script source codes are not needed to be explained as the compiled executable codes are executed at last, and the script executing efficiency can be increased.

Description

The manner of execution of script and system
[technical field]
The present invention relates to the software process field, particularly the manner of execution of script and system.
[background technology]
Script, such as Python (object-oriented, literal translation formula programming language), TCL (Tool Command Language, script) etc. claim again dynamic language, it is a kind of indicative language, does not need compiling, can directly move.Script is explained execution by interpreter, easily grasps, and possesses good fast Development efficient, is widely used in the automatic test field.
Script is compiled script, and when script was performed, traditional method was to use script engine to explain to carry out script, yet adopts this method, and it is low that script is carried out efficient.Wherein, script engine is the interpreter of computer programming language.
[summary of the invention]
Based on this, be necessary to provide a kind of and can improve the manner of execution that script is carried out efficient script.
A kind of manner of execution of script may further comprise the steps:
Grammer corresponding relation between pre-stored script and the higher level lanquage;
Read the script source code;
According to the grammer corresponding relation between described script and the higher level lanquage the described script source code that reads is converted into corresponding higher level lanquage source code;
Be executable code with described higher level lanquage compilation of source code;
Carry out described executable code.
Preferably, also comprise step: described script is stored in the corresponding table of grammer with grammer corresponding relation between the higher level lanquage.
Preferably, after the described step that reads the script source code, also comprise: resolve described script source code, obtain the key word in the described script source code;
According to the grammer corresponding relation between described script and the higher level lanquage with the step that the described script source code that reads is converted into corresponding higher level lanquage source code be: according to the grammer corresponding relation between described script and the higher level lanquage key word in the script source code is converted into corresponding higher level lanquage source code.
Preferably, described higher level lanquage is C/C++ language or Java language.
Preferably, when higher level lanquage was the C/C++ language, the step that is executable code with described higher level lanquage compilation of source code was specially: call compilation tool GCC/G++ the C/C++ language is compiled as executable code;
When higher level lanquage was Java language, the step that is executable code with described higher level lanquage compilation of source code was specially: call compilation tool Javac Java language is compiled as executable code.
In addition, also be necessary to provide a kind of and can improve the executive system that script is carried out the script of efficient.
A kind of executive system of script comprises:
Memory module is used for the grammer corresponding relation between pre-stored script and the higher level lanquage;
Parsing module is used for reading the script source code;
Modular converter is used for according to the grammer corresponding relation between described script and the higher level lanquage the described script source code that reads being converted into corresponding higher level lanquage source code;
Collector is executable code with described higher level lanquage compilation of source code;
Execution module is used for carrying out described executable code.
Preferably, described memory module also is used for described script is stored in the corresponding table of grammer with grammer corresponding relation between the higher level lanquage.
Preferably, described parsing module also is used for resolving described script source code, obtains the key word in the described script source code; Described modular converter also is used for according to the grammer corresponding relation between described script and the higher level lanquage key word of script source code being converted into corresponding higher level lanquage source code.
Preferably, described higher level lanquage is C/C++ language or Java language.
Preferably, when higher level lanquage was the C/C++ language, described collector also was used for calling compilation tool GCC/G++ the C/C++ language is compiled as executable code;
When higher level lanquage was Java language, described collector also was used for calling compilation tool Javac Java language is compiled as executable code.
The manner of execution of above-mentioned script and system, the script source code is converted to certain higher level lanquage source code, is that executable code is carried out with the higher level lanquage compilation of source code, because of the last executable code of carrying out after compiling again, the script source code need be do not explained, therefore the efficient that script is carried out can be improved.
[description of drawings]
Fig. 1 is the process flow diagram of the manner of execution of script among the embodiment;
Fig. 2 is the structural representation of the executive system of script among the embodiment.
[embodiment]
Below in conjunction with specific embodiment and accompanying drawing the manner of execution of script and the technical scheme of system are described in detail.
As shown in Figure 1, in one embodiment, a kind of manner of execution of script may further comprise the steps:
Step S110, the grammer corresponding relation between pre-stored script and the higher level lanquage.
For script is converted to higher level lanquage, need to set up in advance grammer corresponding relation between the two, as set up the corresponding relation between the key word, the corresponding relation between the conditional statement, the corresponding relation between the logical statement etc., with the grammer corresponding relation storage of setting up, conveniently call.Wherein, higher level lanquage can be C/C++ language or Java language.Script can be supported the various logic statement, such as if, else, for, while etc.
Take higher level lanquage as the example explanation as C Plus Plus, the corresponding relation between the key word is described such as script and to be adopted " var a=3 ", and C Plus Plus is described as " Object a=3 "; Corresponding relation between the conditional statement, be described as " if (a=1 or b=2) " such as script, C Plus Plus is described as " if (a.equals (1) || b.equals (2)) ", corresponding relation between the logical statement, such as script " or ", C Plus Plus is described as " || ".
In one embodiment, script is stored in the corresponding table of grammer with grammer corresponding relation between the higher level lanquage.Adopt the corresponding table storage of grammer grammer corresponding relation between the two, easy-to-look-up, call.The form storage of employing table only is an implementation, but is not limited to this kind mode.
Step S120 reads the script source code.
When carrying out script, at first read the script source code.
In one embodiment, after the step S120, also comprise step: resolve this script source code, obtain the key word in this script source code.As read script source code var a=3, and var b=4, if (a=1 or b=2) resolves and draws key word var, or.
Step S130 is converted into corresponding higher level lanquage source code according to the grammer corresponding relation between this script and the higher level lanquage with this script source code that reads.
After reading the script source code, according to pre-stored script and the grammer corresponding relation between the higher level lanquage, the script source code according to this grammer corresponding relation, is converted to corresponding higher level lanquage source code.Such as the script source code be:
var?a=3;
var?b=4;
var?oTest=new?Test();
oTest.getField().setValue(‘67’);
if(a==1?or?b==2):
oTest.getField2().setValue(‘89’);
Converting above-mentioned script source code to the c++ source code is:
Object?a=3;
Object?b=4;
Test*oTest=new?Test();
oTest->getField()->setValue(‘67’);
if(a.equals(1)||b.equals(2)){
oTest->getField2()->setValue(‘89’);
}
In one embodiment, draw key word in the script source code in parsing, step S130 is: according to the grammer corresponding relation between this script and the higher level lanquage key word in the script source code is converted into corresponding higher level lanquage source code.Draw key word in the script source code in parsing, as " var, new, or ,==: ", " Object, new, ||, equals, { } " among the corresponding C++ etc.Simultaneously, resolve the logical statement and the object use-pattern that draw in the script source code, also comprise the logical statement in the script source code and object use-pattern are converted to corresponding higher level lanquage source code.As with the logical statement in the script source code " or ", be converted to " || " in the C Plus Plus as the object use-pattern in the script being converted to the pointer use-pattern in the C Plus Plus.Such as " the var oTest=new Test () " in the script source code, be converted to C Plus Plus " Test*oTest=new Test () ".Wherein, some logical statement may be key word.
Step S140 is executable code with the higher level lanquage compilation of source code.
Calling compilation tool is executable code with the higher level lanquage compilation of source code.
When higher level lanquage is the C/C++ language, be that the step of executable code is specially with the higher level lanquage compilation of source code: call compilation tool GCC/G++ the C/C++ language is compiled as executable code.
When higher level lanquage is Java language, be that the step of executable code is specially with the higher level lanquage compilation of source code: call compilation tool Javac Java language is compiled as executable code.
Step S150 carries out this executable code.
Executable code after the compiling is called, finish the execution function.
As shown in Figure 2, in one embodiment, a kind of executive system of script comprises memory module 210, parsing module 220, modular converter 230, collector 240 and execution module 250.Wherein,
The grammer corresponding relation that memory module 210 is used between pre-stored script and the higher level lanquage.
Set up the corresponding relation between the key word, such as the corresponding relation between the conditional statement, the corresponding relation between the logical statement etc., the grammer corresponding relation that memory module 210 storages are set up conveniently calls.Wherein, higher level lanquage can be C/C++ language or Java language.Take higher level lanquage as the example explanation as C Plus Plus, the corresponding relation between the key word is described such as script and to be adopted " var a=3 ", and C Plus Plus is described as " Object a=3 "; Corresponding relation between the conditional statement, be described as " if (a=1 or b=2) " such as script, C Plus Plus is described as " if (a.equals (1) || b.equals (2)) ", corresponding relation between the logical statement, such as script " or ", C Plus Plus is described as " || ".
In one embodiment, memory module 210 also is used for script is stored in the corresponding table of grammer with grammer corresponding relation between the higher level lanquage.Adopt both grammer corresponding relations of the corresponding table storage of grammer, easy-to-look-up, call.The form storage of employing table only is an implementation, but is not limited to this kind mode.
Parsing module 220 is used for reading the script source code.When carrying out script, at first read the script source code by parsing module 220.In addition, parsing module 220 also is used for resolving this script source code, obtains the key word in this script source code.As read script source code var a=3, and var b=4, if (a=1 or b=2) resolves and draws key word var, or.
Modular converter 230 is used for according to script and the grammer corresponding relation between the higher level lanquage of storage the script source code that reads being converted into corresponding higher level lanquage source code.After reading the script source code, according to pre-stored script and the grammer corresponding relation between the higher level lanquage, the script source code according to this grammer corresponding relation, is converted to corresponding higher level lanquage source code.The script source code and be converted to the example of C++ source code such as above-mentioned method in describe, do not repeat them here.
Modular converter 230 also is used for according to the script of storage and the grammer corresponding relation between the higher level lanquage key word of script source code being converted into corresponding higher level lanquage source code.Draw key word in the script source code in parsing, as " var, new, or ,==: ", " Object, new, ||, equals, { } " among the corresponding C++ etc.Simultaneously, resolve the logical statement and the object use-pattern that draw in the script source code, also comprise the logical statement in the script source code and object use-pattern are converted to corresponding higher level lanquage source code.As with the logical statement in the script source code " or ", be converted to " || " in the C Plus Plus as the object use-pattern in the script being converted to the pointer use-pattern in the C Plus Plus.Such as " the var oTest=new Test () " in the script source code, be converted to C Plus Plus " Test*oTest=new Test () ".
It is executable code that collector 240 is used for the higher level lanquage compilation of source code.It is executable code with the higher level lanquage compilation of source code that collector 240 is called compilation tool.
When higher level lanquage was the C/C++ language, collector 240 was called compilation tool GCC/G++ the C/C++ language is compiled as executable code.
When higher level lanquage was language Java, collector 240 was called compilation tool Javac Java language is compiled as executable code.
Execution module 250 is used for carrying out the executable code after compiling.Executable code after execution module 250 will compile calls, and finishes the execution function.
The manner of execution of above-mentioned script and system, the script source code is converted to certain higher level lanquage source code, is that executable code is carried out with the higher level lanquage compilation of source code, because of the last executable code of carrying out after compiling again, the script source code need be do not explained, therefore the efficient that script is carried out can be improved.
In addition, the manner of execution of above-mentioned script and system, do not need to develop script engine or interpreter, only need set up the grammer corresponding relation between script and certain higher level lanquage, again the script source code is resolved and changed, with respect to exploitation script engine or interpreter, simplicity of design, cost of development is lower; Because having set up the grammer corresponding relation between script and certain higher level lanquage, when Complied executing script source code, be converted into the higher level lanquage source code, can in script, directly call object or function in the existing business library, need not do any encapsulation or packing, greatly save cost of development; Adopt sheet form storage grammer corresponding relation, more convenient searching called; Parsing draws the key word in the script source code, key word is changed more convenient, has improved conversion efficiency.
The above embodiment has only expressed several embodiment of the present invention, and it describes comparatively concrete and detailed, but can not therefore be interpreted as the restriction to claim of the present invention.Should be pointed out that for the person of ordinary skill of the art without departing from the inventive concept of the premise, can also make some distortion and improvement, these all belong to protection scope of the present invention.Therefore, the protection domain of patent of the present invention should be as the criterion with claims.

Claims (10)

1. the manner of execution of a script may further comprise the steps:
Grammer corresponding relation between pre-stored script and the higher level lanquage;
Read the script source code;
According to the grammer corresponding relation between described script and the higher level lanquage the described script source code that reads is converted into corresponding higher level lanquage source code;
Be executable code with described higher level lanquage compilation of source code;
Carry out described executable code.
2. the manner of execution of script according to claim 1 is characterized in that, also comprises step: described script is stored in the corresponding table of grammer with grammer corresponding relation between the higher level lanquage.
3. the manner of execution of script according to claim 1 is characterized in that, also comprises after the described step that reads the script source code: resolve described script source code, obtain the key word in the described script source code;
According to the grammer corresponding relation between described script and the higher level lanquage with the step that the described script source code that reads is converted into corresponding higher level lanquage source code be: according to the grammer corresponding relation between described script and the higher level lanquage key word in the script source code is converted into corresponding higher level lanquage source code.
4. the manner of execution of script according to claim 1 is characterized in that, described higher level lanquage is C/C++ language or Java language.
5. the manner of execution of script according to claim 1, it is characterized in that, when higher level lanquage was the C/C++ language, the step that is executable code with described higher level lanquage compilation of source code was specially: call compilation tool GCC/G++ the C/C++ language is compiled as executable code;
When higher level lanquage was Java language, the step that is executable code with described higher level lanquage compilation of source code was specially: call compilation tool Javac Java language is compiled as executable code.
6. the executive system of a script is characterized in that, comprising:
Memory module is used for the grammer corresponding relation between pre-stored script and the higher level lanquage;
Parsing module is used for reading the script source code;
Modular converter is used for according to the grammer corresponding relation between described script and the higher level lanquage the described script source code that reads being converted into corresponding higher level lanquage source code;
Collector is executable code with described higher level lanquage compilation of source code;
Execution module is used for carrying out described executable code.
7. the executive system of script according to claim 6 is characterized in that, described memory module also is used for described script is stored in the corresponding table of grammer with grammer corresponding relation between the higher level lanquage.
8. the executive system of script according to claim 6 is characterized in that, described parsing module also is used for resolving described script source code, obtains the key word in the described script source code; Described modular converter also is used for according to the grammer corresponding relation between described script and the higher level lanquage key word of script source code being converted into corresponding higher level lanquage source code.
9. the executive system of script according to claim 6 is characterized in that, described higher level lanquage is C/C++ language or Java language.
10. the executive system of script according to claim 9 is characterized in that, it is characterized in that, when higher level lanquage was the C/C++ language, described collector also was used for calling compilation tool GCC/G++ the C/C++ language is compiled as executable code;
When higher level lanquage was Java language, described collector also was used for calling compilation tool Javac Java language is compiled as executable code.
CN2011102762881A 2011-09-16 2011-09-16 Method and system for executing script Pending CN102999370A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN2011102762881A CN102999370A (en) 2011-09-16 2011-09-16 Method and system for executing script

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN2011102762881A CN102999370A (en) 2011-09-16 2011-09-16 Method and system for executing script

Publications (1)

Publication Number Publication Date
CN102999370A true CN102999370A (en) 2013-03-27

Family

ID=47927975

Family Applications (1)

Application Number Title Priority Date Filing Date
CN2011102762881A Pending CN102999370A (en) 2011-09-16 2011-09-16 Method and system for executing script

Country Status (1)

Country Link
CN (1) CN102999370A (en)

Cited By (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103488519A (en) * 2013-09-27 2014-01-01 上海野火网络科技有限公司 Implement method of interactive scripting language interpreter
CN106293677A (en) * 2015-06-08 2017-01-04 阿里巴巴集团控股有限公司 A kind of code conversion method and device
CN106843875A (en) * 2017-01-19 2017-06-13 杭州数梦工场科技有限公司 The method and apparatus of cross-platform transplanting Python programs
CN106970802A (en) * 2017-04-25 2017-07-21 北京航天飞行控制中心 The method and device of integrated programming script in the language-specific of field
CN107015956A (en) * 2016-10-19 2017-08-04 阿里巴巴集团控股有限公司 The method for drafting and device of chart in Web client
CN109352645A (en) * 2018-09-28 2019-02-19 库壳教育科技有限公司 A kind of easy programming method and device applied to robot teaching
CN109542447A (en) * 2017-08-16 2019-03-29 深圳市道通科技股份有限公司 A kind of OTX program file execution method and device
CN109597618A (en) * 2018-10-23 2019-04-09 深圳微迅信息科技有限公司 Program developing method, device, computer equipment and storage medium
CN109726213A (en) * 2018-12-10 2019-05-07 网易无尾熊(杭州)科技有限公司 A kind of program code conversion method, device, medium and calculate equipment
CN110096259A (en) * 2019-03-15 2019-08-06 佛山青藤信息科技有限公司 A kind of Web page surface element localization method and system
CN110134386A (en) * 2019-04-04 2019-08-16 成都娄外科技有限公司 A kind of program editing method and device
CN110870249A (en) * 2017-07-07 2020-03-06 区块链控股有限公司 System and method for compiling high-level language code into scripts executable on a blockchain platform
CN111104154A (en) * 2018-10-25 2020-05-05 长沙博为软件技术股份有限公司 Method for realizing script function extension and customization of big data acquisition system based on data processing service
CN112230934A (en) * 2020-10-27 2021-01-15 北京人大金仓信息技术股份有限公司 Method and device for converting code language

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101980546A (en) * 2010-10-21 2011-02-23 中兴通讯股份有限公司 Intelligent network platform, service execution method and method for analyzing service abnormality
CN101192171B (en) * 2006-11-29 2011-04-20 国际商业机器公司 Method and system for transforming a single language program into multiple language programs

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101192171B (en) * 2006-11-29 2011-04-20 国际商业机器公司 Method and system for transforming a single language program into multiple language programs
CN101980546A (en) * 2010-10-21 2011-02-23 中兴通讯股份有限公司 Intelligent network platform, service execution method and method for analyzing service abnormality

Cited By (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103488519A (en) * 2013-09-27 2014-01-01 上海野火网络科技有限公司 Implement method of interactive scripting language interpreter
CN103488519B (en) * 2013-09-27 2016-05-25 上海野火网络科技有限公司 A kind of implementation method of interactive script language interpreter
CN106293677A (en) * 2015-06-08 2017-01-04 阿里巴巴集团控股有限公司 A kind of code conversion method and device
CN106293677B (en) * 2015-06-08 2019-09-27 阿里巴巴集团控股有限公司 A kind of code conversion method and device
CN107015956A (en) * 2016-10-19 2017-08-04 阿里巴巴集团控股有限公司 The method for drafting and device of chart in Web client
CN107015956B (en) * 2016-10-19 2020-04-14 阿里巴巴集团控股有限公司 Method and device for drawing chart in Web client
CN106843875A (en) * 2017-01-19 2017-06-13 杭州数梦工场科技有限公司 The method and apparatus of cross-platform transplanting Python programs
CN106970802B (en) * 2017-04-25 2024-04-09 北京航天飞行控制中心 Method and device for integrating programming script language in domain-specific language
CN106970802A (en) * 2017-04-25 2017-07-21 北京航天飞行控制中心 The method and device of integrated programming script in the language-specific of field
CN110870249A (en) * 2017-07-07 2020-03-06 区块链控股有限公司 System and method for compiling high-level language code into scripts executable on a blockchain platform
CN109542447A (en) * 2017-08-16 2019-03-29 深圳市道通科技股份有限公司 A kind of OTX program file execution method and device
CN109352645A (en) * 2018-09-28 2019-02-19 库壳教育科技有限公司 A kind of easy programming method and device applied to robot teaching
CN109597618A (en) * 2018-10-23 2019-04-09 深圳微迅信息科技有限公司 Program developing method, device, computer equipment and storage medium
CN111104154A (en) * 2018-10-25 2020-05-05 长沙博为软件技术股份有限公司 Method for realizing script function extension and customization of big data acquisition system based on data processing service
CN109726213B (en) * 2018-12-10 2021-11-19 阿里巴巴(中国)有限公司 Program code conversion method, device, medium and computing equipment
CN109726213A (en) * 2018-12-10 2019-05-07 网易无尾熊(杭州)科技有限公司 A kind of program code conversion method, device, medium and calculate equipment
CN110096259A (en) * 2019-03-15 2019-08-06 佛山青藤信息科技有限公司 A kind of Web page surface element localization method and system
CN110134386A (en) * 2019-04-04 2019-08-16 成都娄外科技有限公司 A kind of program editing method and device
CN112230934A (en) * 2020-10-27 2021-01-15 北京人大金仓信息技术股份有限公司 Method and device for converting code language
CN112230934B (en) * 2020-10-27 2023-08-29 北京人大金仓信息技术股份有限公司 Method and device for converting code language

Similar Documents

Publication Publication Date Title
CN102999370A (en) Method and system for executing script
CN101697125B (en) Method and device for development environment conversion
US20120209895A1 (en) Method and device for dynamically loading relocatable file
CN102929682B (en) The preprocess method of automatic expansion TCL language and device
CN104932905A (en) Automatic code generation method from AADL to C language
US8464232B2 (en) Compiler compiler system with syntax-controlled runtime and binary application programming interfaces
CN103116513B (en) A kind of heterogeneous multi-nucleus processor compiler
CN104536797A (en) Java program precompiling method and precompiler
CN101408849A (en) Method and system for compiling and executing TTCN-3 language
CN104317589A (en) Automatic code generating method and automatic code generating device for loading dynamic link library
US20110252409A1 (en) Methods and systems to implement non-abi conforming features across unseen interfaces
CN106020920A (en) Preprocessing method and system for JCVM interpreter
CN113703779B (en) Cross-platform multi-language compiling method and ultra-light Internet of things virtual machine
CN114706592B (en) Modelica simulation component generation method facing object and process language
CN102710833B (en) Mobile phone test case and automatic generation method thereof
CN101944061A (en) Method and device for debugging codes
CN110457013B (en) Program component configuration device and method
CN102799462B (en) Based on the script engine device of Eclipse platform and the collocation method of Eclipse platform
CN102724591B (en) Set top box page displaying method and set top box device
CN103019801B (en) A kind of compiler being applied to high speed digital I/O waveform engine
CN105867992A (en) Code compiling method and device
CN112558976B (en) Self-adaptive function loading method for just-in-time compiling engine
CN108804105B (en) Program organization unit compiling processing method
Xiao et al. The design and implementation of c-like language interpreter
CN105893103A (en) Compilation method and compiler adopting same

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
RJ01 Rejection of invention patent application after publication

Application publication date: 20130327

RJ01 Rejection of invention patent application after publication