Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
3d361d59
提交
3d361d59
authored
3月 27, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
651cd28d
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
45 行增加
和
17 行删除
+45
-17
FullText.java
h2/src/main/org/h2/fulltext/FullText.java
+7
-0
FullTextLucene.java
h2/src/main/org/h2/fulltext/FullTextLucene.java
+38
-17
没有找到文件。
h2/src/main/org/h2/fulltext/FullText.java
浏览文件 @
3d361d59
...
...
@@ -596,6 +596,13 @@ public class FullText {
}
}
/**
* Add all words in the given text to the hash set.
*
* @param setting the fulltext settings
* @param set the hash set
* @param text the text
*/
static
void
addWords
(
FullTextSettings
setting
,
HashSet
set
,
String
text
)
{
StringTokenizer
tokenizer
=
new
StringTokenizer
(
text
,
" \t\n\r\f+\"*%&/()=?'!,.;:-_#@|^~`{}[]"
);
while
(
tokenizer
.
hasMoreTokens
())
{
...
...
h2/src/main/org/h2/fulltext/FullTextLucene.java
浏览文件 @
3d361d59
...
...
@@ -48,9 +48,13 @@ import org.h2.util.StringUtils;
*/
public
class
FullTextLucene
extends
FullText
{
//## Java 1.4 begin ##
static
final
HashMap
INDEX_MODIFIERS
=
new
HashMap
();
/**
* Whether the text content should be stored in the Lucene index.
*/
static
final
boolean
STORE_DOCUMENT_TEXT_IN_INDEX
=
Boolean
.
getBoolean
(
"h2.storeDocumentTextInIndex"
);
//## Java 1.4 begin ##
private
static
final
HashMap
INDEX_MODIFIERS
=
new
HashMap
();
private
static
final
String
TRIGGER_PREFIX
=
"FTL_"
;
private
static
final
String
SCHEMA
=
"FTL"
;
private
static
final
String
FIELD_DATA
=
"DATA"
;
...
...
@@ -201,6 +205,12 @@ public class FullTextLucene extends FullText {
return
search
(
conn
,
text
,
limit
,
offset
,
true
);
}
/**
* Convert an exception to a fulltext exception.
*
* @param e the original exception
* @return the converted SQL exception
*/
static
SQLException
convertException
(
Exception
e
)
{
SQLException
e2
=
new
SQLException
(
"FULLTEXT"
,
"Error while indexing document"
);
e2
.
initCause
(
e
);
...
...
@@ -221,7 +231,7 @@ public class FullTextLucene extends FullText {
stat
.
execute
(
buff
.
toString
());
}
static
IndexModifier
getIndexModifier
(
Connection
conn
)
throws
SQLException
{
private
static
IndexModifier
getIndexModifier
(
Connection
conn
)
throws
SQLException
{
String
path
=
getIndexPath
(
conn
);
IndexModifier
indexer
;
synchronized
(
INDEX_MODIFIERS
)
{
...
...
@@ -240,6 +250,12 @@ public class FullTextLucene extends FullText {
return
indexer
;
}
/**
* Get the path of the Lucene index for this database.
*
* @param conn the database connection
* @return the path
*/
static
String
getIndexPath
(
Connection
conn
)
throws
SQLException
{
Statement
stat
=
conn
.
createStatement
();
ResultSet
rs
=
stat
.
executeQuery
(
"CALL DATABASE_PATH()"
);
...
...
@@ -272,15 +288,27 @@ public class FullTextLucene extends FullText {
String
path
=
getIndexPath
(
conn
);
IndexModifier
index
=
(
IndexModifier
)
INDEX_MODIFIERS
.
get
(
path
);
if
(
index
!=
null
)
{
INDEX_MODIFIERS
.
remove
(
path
);
removeIndexModifier
(
index
,
path
);
}
FileSystem
.
getInstance
(
path
).
deleteRecursive
(
path
);
}
/**
* Close the index modifier and remove it from the index modifier set.
*
* @param indexModifier the index modifier
* @param indexPath the index path
*/
static
void
removeIndexModifier
(
IndexModifier
indexModifier
,
String
indexPath
)
throws
SQLException
{
synchronized
(
INDEX_MODIFIERS
)
{
try
{
index
.
flush
();
index
.
close
();
}
catch
(
IOException
e
)
{
INDEX_MODIFIERS
.
remove
(
indexPath
);
indexModifier
.
flush
();
indexModifier
.
close
();
}
catch
(
Exception
e
)
{
throw
convertException
(
e
);
}
}
FileSystem
.
getInstance
(
path
).
deleteRecursive
(
path
);
}
private
static
ResultSet
search
(
Connection
conn
,
String
text
,
int
limit
,
int
offset
,
boolean
data
)
throws
SQLException
{
...
...
@@ -445,14 +473,8 @@ public class FullTextLucene extends FullText {
//## Java 1.4 begin ##
public
void
close
()
throws
SQLException
{
if
(
indexModifier
!=
null
)
{
try
{
indexModifier
.
flush
();
indexModifier
.
close
();
INDEX_MODIFIERS
.
remove
(
indexPath
);
removeIndexModifier
(
indexModifier
,
indexPath
);
indexModifier
=
null
;
}
catch
(
Exception
e
)
{
throw
convertException
(
e
);
}
}
}
//## Java 1.4 end ##
...
...
@@ -526,7 +548,6 @@ public class FullTextLucene extends FullText {
String
key
=
buff
.
toString
();
return
key
;
}
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论