Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
7365ba5c
Unverified
提交
7365ba5c
authored
1月 04, 2018
作者:
Noel Grandin
提交者:
GitHub
1月 04, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #704 from ilm-informatique/javascript
added Javascript support for Triggers' source
上级
079785dc
8f02d1a8
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
79 行增加
和
8 行删除
+79
-8
help.csv
h2/src/docsrc/help/help.csv
+5
-0
TriggerObject.java
h2/src/main/org/h2/schema/TriggerObject.java
+8
-4
SourceCompiler.java
h2/src/main/org/h2/util/SourceCompiler.java
+49
-0
TestTriggersConstraints.java
h2/src/test/org/h2/test/db/TestTriggersConstraints.java
+17
-4
没有找到文件。
h2/src/docsrc/help/help.csv
浏览文件 @
7365ba5c
...
...
@@ -735,6 +735,9 @@ The class must be available in the classpath of the database engine
The sourceCodeString must define a single method with no parameters that returns ""org.h2.api.Trigger"".
See CREATE ALIAS for requirements regarding the compilation.
Alternatively, javax.script.ScriptEngineManager can be used to create an instance of ""org.h2.api.Trigger"".
Currently javascript (included in every JRE) and ruby (with JRuby) are supported.
In that case the source must begin respectively with ""//javascript"" or ""#ruby"".
BEFORE triggers are called after data conversion is made, default values are set,
null and length constraint checks have been made;
...
...
@@ -773,6 +776,8 @@ This command commits an open transaction in this connection.
","
CREATE TRIGGER TRIG_INS BEFORE INSERT ON TEST FOR EACH ROW CALL ""MyTrigger"";
CREATE TRIGGER TRIG_SRC BEFORE INSERT ON TEST AS $$org.h2.api.Trigger create() { return new MyTrigger(""constructorParam""); } $$;
CREATE TRIGGER TRIG_JS BEFORE INSERT ON TEST AS $$//javascript\nreturn new Packages.MyTrigger(""constructorParam""); $$;
CREATE TRIGGER TRIG_RUBY BEFORE INSERT ON TEST AS $$#ruby\nJava::MyPackage::MyTrigger.new(""constructorParam"") $$;
"
"Commands (DDL)","CREATE USER","
CREATE USER [ IF NOT EXISTS ] newUserName
...
...
h2/src/main/org/h2/schema/TriggerObject.java
浏览文件 @
7365ba5c
...
...
@@ -94,11 +94,15 @@ public class TriggerObject extends SchemaObjectBase {
String
fullClassName
=
Constants
.
USER_PACKAGE
+
".trigger."
+
getName
();
compiler
.
setSource
(
fullClassName
,
triggerSource
);
try
{
Method
m
=
compiler
.
getMethod
(
fullClassName
);
if
(
SourceCompiler
.
isJavaxScriptSource
(
triggerSource
))
{
return
(
Trigger
)
compiler
.
getCompiledScript
(
fullClassName
).
eval
();
}
else
{
final
Method
m
=
compiler
.
getMethod
(
fullClassName
);
if
(
m
.
getParameterTypes
().
length
>
0
)
{
throw
new
IllegalStateException
(
"No parameters are allowed for a trigger"
);
}
return
(
Trigger
)
m
.
invoke
(
null
);
}
}
catch
(
DbException
e
)
{
throw
e
;
}
catch
(
Exception
e
)
{
...
...
h2/src/main/org/h2/util/SourceCompiler.java
浏览文件 @
7365ba5c
...
...
@@ -24,6 +24,12 @@ import java.net.URI;
import
java.security.SecureClassLoader
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
import
java.util.Map
;
import
javax.script.Compilable
;
import
javax.script.CompiledScript
;
import
javax.script.ScriptEngineManager
;
import
javax.script.ScriptException
;
import
javax.tools.FileObject
;
import
javax.tools.ForwardingJavaFileManager
;
import
javax.tools.JavaCompiler
;
...
...
@@ -33,6 +39,7 @@ import javax.tools.JavaFileObject.Kind;
import
javax.tools.SimpleJavaFileObject
;
import
javax.tools.StandardJavaFileManager
;
import
javax.tools.ToolProvider
;
import
org.h2.api.ErrorCode
;
import
org.h2.engine.Constants
;
import
org.h2.engine.SysProperties
;
...
...
@@ -65,6 +72,11 @@ public class SourceCompiler {
*/
final
HashMap
<
String
,
Class
<?>>
compiled
=
New
.
hashMap
();
/**
* The class name to compiled scripts map.
*/
final
Map
<
String
,
CompiledScript
>
compiledScripts
=
New
.
hashMap
();
/**
* Whether to use the ToolProvider.getSystemJavaCompiler().
*/
...
...
@@ -168,6 +180,43 @@ public class SourceCompiler {
return
source
.
startsWith
(
"//groovy"
)
||
source
.
startsWith
(
"@groovy"
);
}
private
static
boolean
isJavascriptSource
(
String
source
)
{
return
source
.
startsWith
(
"//javascript"
);
}
private
static
boolean
isRubySource
(
String
source
)
{
return
source
.
startsWith
(
"#ruby"
);
}
/**
* Whether the passed source can be compiled using {@link javax.script.ScriptEngineManager}.
*
* @param source the source to test.
* @return <code>true</code> if {@link #getCompiledScript(String)} can be called.
*/
public
static
boolean
isJavaxScriptSource
(
String
source
)
{
return
isJavascriptSource
(
source
)
||
isRubySource
(
source
);
}
public
CompiledScript
getCompiledScript
(
String
packageAndClassName
)
throws
ScriptException
{
CompiledScript
compiledScript
=
compiledScripts
.
get
(
packageAndClassName
);
if
(
compiledScript
==
null
)
{
String
source
=
sources
.
get
(
packageAndClassName
);
final
String
lang
;
if
(
isJavascriptSource
(
source
))
lang
=
"javascript"
;
else
if
(
isRubySource
(
source
))
lang
=
"ruby"
;
else
throw
new
IllegalStateException
(
"Unknown language for "
+
source
);
final
Compilable
jsEngine
=
(
Compilable
)
new
ScriptEngineManager
().
getEngineByName
(
lang
);
compiledScript
=
jsEngine
.
compile
(
source
);
compiledScripts
.
put
(
packageAndClassName
,
compiledScript
);
}
return
compiledScript
;
}
/**
* Get the first public static method of the given class.
*
...
...
h2/src/test/org/h2/test/db/TestTriggersConstraints.java
浏览文件 @
7365ba5c
...
...
@@ -12,6 +12,7 @@ import java.sql.SQLException;
import
java.sql.Statement
;
import
java.util.Arrays
;
import
java.util.HashSet
;
import
org.h2.api.ErrorCode
;
import
org.h2.api.Trigger
;
import
org.h2.engine.Session
;
...
...
@@ -50,6 +51,7 @@ public class TestTriggersConstraints extends TestBase implements Trigger {
testTriggerBeforeSelect
();
testTriggerAlterTable
();
testTriggerAsSource
();
testTriggerAsJavascript
();
testTriggers
();
testConstraints
();
testCheckConstraintErrorMessage
();
...
...
@@ -471,15 +473,20 @@ public class TestTriggersConstraints extends TestBase implements Trigger {
private
void
testTriggerAlterTable
()
throws
SQLException
{
deleteDb
(
"trigger"
);
testTrigger
(
false
);
testTrigger
(
null
);
}
private
void
testTriggerAsSource
()
throws
SQLException
{
deleteDb
(
"trigger"
);
testTrigger
(
true
);
testTrigger
(
"java"
);
}
private
void
testTriggerAsJavascript
()
throws
SQLException
{
deleteDb
(
"trigger"
);
testTrigger
(
"javascript"
);
}
private
void
testTrigger
(
final
boolean
asSource
)
throws
SQLException
{
private
void
testTrigger
(
final
String
sourceLang
)
throws
SQLException
{
final
String
callSeq
=
"call seq.nextval"
;
Connection
conn
=
getConnection
(
"trigger"
);
Statement
stat
=
conn
.
createStatement
();
...
...
@@ -490,12 +497,18 @@ public class TestTriggersConstraints extends TestBase implements Trigger {
conn
.
setAutoCommit
(
false
);
Trigger
t
=
new
org
.
h2
.
test
.
db
.
TestTriggersConstraints
.
TestTriggerAlterTable
();
t
.
close
();
if
(
asSource
)
{
if
(
"java"
.
equals
(
sourceLang
)
)
{
String
triggerClassName
=
this
.
getClass
().
getName
()
+
"."
+
TestTriggerAlterTable
.
class
.
getSimpleName
();
stat
.
execute
(
"create trigger test_upd before insert on test "
+
"as $$org.h2.api.Trigger create() "
+
"{ return new "
+
triggerClassName
+
"(); } $$"
);
}
else
if
(
"javascript"
.
equals
(
sourceLang
))
{
String
triggerClassName
=
this
.
getClass
().
getName
()
+
"."
+
TestTriggerAlterTable
.
class
.
getSimpleName
();
final
String
body
=
"//javascript\nnew Packages."
+
triggerClassName
+
"();"
;
stat
.
execute
(
"create trigger test_upd before insert on test as $$"
+
body
+
" $$"
);
}
else
{
stat
.
execute
(
"create trigger test_upd before insert on test call \""
+
TestTriggerAlterTable
.
class
.
getName
()
+
"\""
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论