Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
1571a992
提交
1571a992
authored
1月 16, 2011
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
The Backup tool now supports compressing all files in a given directory.
上级
06e29708
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
18 行增加
和
5 行删除
+18
-5
FileLister.java
h2/src/main/org/h2/store/FileLister.java
+2
-1
Backup.java
h2/src/main/org/h2/tools/Backup.java
+16
-4
没有找到文件。
h2/src/main/org/h2/store/FileLister.java
浏览文件 @
1571a992
...
...
@@ -8,6 +8,7 @@ package org.h2.store;
import
java.sql.SQLException
;
import
java.util.ArrayList
;
import
java.util.List
;
import
org.h2.constant.ErrorCode
;
import
org.h2.engine.Constants
;
import
org.h2.message.DbException
;
...
...
@@ -46,7 +47,7 @@ public class FileLister {
* @param message the text to include in the error message
* @throws SQLException if it failed
*/
public
static
void
tryUnlockDatabase
(
Array
List
<
String
>
files
,
String
message
)
throws
SQLException
{
public
static
void
tryUnlockDatabase
(
List
<
String
>
files
,
String
message
)
throws
SQLException
{
for
(
String
fileName
:
files
)
{
if
(
fileName
.
endsWith
(
Constants
.
SUFFIX_LOCK_FILE
))
{
FileLock
lock
=
new
FileLock
(
new
TraceSystem
(
null
),
fileName
,
Constants
.
LOCK_SLEEP
);
...
...
h2/src/main/org/h2/tools/Backup.java
浏览文件 @
1571a992
...
...
@@ -11,13 +11,15 @@ import java.io.IOException;
import
java.io.InputStream
;
import
java.io.OutputStream
;
import
java.sql.SQLException
;
import
java.util.ArrayList
;
import
java.util.Arrays
;
import
java.util.List
;
import
java.util.zip.ZipEntry
;
import
java.util.zip.ZipOutputStream
;
import
org.h2.command.dml.BackupCommand
;
import
org.h2.engine.Constants
;
import
org.h2.message.DbException
;
import
org.h2.store.FileLister
;
import
org.h2.store.fs.FileSystem
;
import
org.h2.util.IOUtils
;
import
org.h2.util.Tool
;
...
...
@@ -91,7 +93,8 @@ public class Backup extends Tool {
*
* @param zipFileName the name of the target backup file (including path)
* @param directory the source directory name
* @param db the source database name (null if there is only one database)
* @param db the source database name (null if there is only one database, and
* and empty string to backup all files in this directory)
* @param quiet don't print progress information
* @throws SQLException
*/
...
...
@@ -104,7 +107,13 @@ public class Backup extends Tool {
}
private
void
process
(
String
zipFileName
,
String
directory
,
String
db
,
boolean
quiet
)
throws
SQLException
{
ArrayList
<
String
>
list
=
FileLister
.
getDatabaseFiles
(
directory
,
db
,
true
);
List
<
String
>
list
;
boolean
allFiles
=
db
!=
null
&&
db
.
length
()
==
0
;
if
(
allFiles
)
{
list
=
Arrays
.
asList
(
FileSystem
.
getInstance
(
directory
).
listFiles
(
directory
));
}
else
{
list
=
FileLister
.
getDatabaseFiles
(
directory
,
db
,
true
);
}
if
(
list
.
size
()
==
0
)
{
if
(!
quiet
)
{
printNoDatabaseFilesFound
(
directory
,
db
);
...
...
@@ -124,7 +133,7 @@ public class Backup extends Tool {
ZipOutputStream
zipOut
=
new
ZipOutputStream
(
fileOut
);
String
base
=
""
;
for
(
String
fileName
:
list
)
{
if
(
fileName
.
endsWith
(
Constants
.
SUFFIX_PAGE_FILE
))
{
if
(
fileName
.
endsWith
(
Constants
.
SUFFIX_PAGE_FILE
)
||
allFiles
)
{
base
=
IOUtils
.
getParent
(
fileName
);
break
;
}
...
...
@@ -134,6 +143,9 @@ public class Backup extends Tool {
if
(!
f
.
startsWith
(
base
))
{
DbException
.
throwInternalError
(
f
+
" does not start with "
+
base
);
}
if
(
f
.
endsWith
(
zipFileName
))
{
continue
;
}
if
(
IOUtils
.
isDirectory
(
fileName
))
{
continue
;
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论