Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
go-ipfs
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
jihao
go-ipfs
Commits
e664fc3a
提交
e664fc3a
authored
2月 15, 2016
作者:
Jeromy
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add command to change keep time for reqlog objects
License: MIT Signed-off-by:
Jeromy
<
jeromyj@gmail.com
>
上级
2600a029
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
39 行增加
和
25 行删除
+39
-25
reqlog.go
commands/reqlog.go
+19
-24
active.go
core/commands/active.go
+20
-1
没有找到文件。
commands/reqlog.go
浏览文件 @
e664fc3a
...
@@ -44,6 +44,7 @@ type ReqLog struct {
...
@@ -44,6 +44,7 @@ type ReqLog struct {
Requests
[]
*
ReqLogEntry
Requests
[]
*
ReqLogEntry
nextID
int
nextID
int
lock
sync
.
Mutex
lock
sync
.
Mutex
keep
time
.
Duration
}
}
func
(
rl
*
ReqLog
)
Add
(
req
Request
)
*
ReqLogEntry
{
func
(
rl
*
ReqLog
)
Add
(
req
Request
)
*
ReqLogEntry
{
...
@@ -69,43 +70,37 @@ func (rl *ReqLog) Add(req Request) *ReqLogEntry {
...
@@ -69,43 +70,37 @@ func (rl *ReqLog) Add(req Request) *ReqLogEntry {
func
(
rl
*
ReqLog
)
ClearInactive
()
{
func
(
rl
*
ReqLog
)
ClearInactive
()
{
rl
.
lock
.
Lock
()
rl
.
lock
.
Lock
()
defer
rl
.
lock
.
Unlock
()
defer
rl
.
lock
.
Unlock
()
i
:=
0
k
:=
rl
.
keep
for
j
:=
0
;
j
<
len
(
rl
.
Requests
);
j
++
{
rl
.
keep
=
0
if
rl
.
Requests
[
j
]
.
Active
{
rl
.
cleanup
()
rl
.
Requests
[
i
]
=
rl
.
Requests
[
j
]
rl
.
keep
=
k
i
++
}
}
rl
.
Requests
=
rl
.
Requests
[
:
i
]
}
}
func
(
rl
*
ReqLog
)
maybeCleanup
()
{
func
(
rl
*
ReqLog
)
maybeCleanup
()
{
// only do it every so often or it might
// only do it every so often or it might
// become a perf issue
// become a perf issue
if
len
(
rl
.
Requests
)
==
0
{
if
len
(
rl
.
Requests
)
%
10
==
0
{
rl
.
cleanup
()
rl
.
cleanup
()
}
}
}
}
func
(
rl
*
ReqLog
)
cleanup
()
{
func
(
rl
*
ReqLog
)
cleanup
()
{
var
i
int
i
:=
0
// drop all logs at are inactive and more than an hour old
now
:=
time
.
Now
()
for
;
i
<
len
(
rl
.
Requests
);
i
++
{
for
j
:=
0
;
j
<
len
(
rl
.
Requests
);
j
++
{
req
:=
rl
.
Requests
[
i
]
rj
:=
rl
.
Requests
[
j
]
if
req
.
Active
||
req
.
EndTime
.
Add
(
time
.
Hour
/
2
)
.
After
(
time
.
Now
())
{
if
rj
.
Active
||
rl
.
Requests
[
j
]
.
EndTime
.
Add
(
rl
.
keep
)
.
After
(
now
)
{
break
rl
.
Requests
[
i
]
=
rl
.
Requests
[
j
]
}
}
if
i
>
0
{
var
j
int
for
i
<
len
(
rl
.
Requests
)
{
rl
.
Requests
[
j
]
=
rl
.
Requests
[
i
]
j
++
i
++
i
++
}
}
rl
.
Requests
=
rl
.
Requests
[
:
len
(
rl
.
Requests
)
-
i
]
}
}
rl
.
Requests
=
rl
.
Requests
[
:
i
]
}
func
(
rl
*
ReqLog
)
SetKeepTime
(
t
time
.
Duration
)
{
rl
.
lock
.
Lock
()
defer
rl
.
lock
.
Unlock
()
rl
.
keep
=
t
}
}
// Report generates a copy of all the entries in the requestlog
// Report generates a copy of all the entries in the requestlog
...
...
core/commands/active.go
浏览文件 @
e664fc3a
...
@@ -25,7 +25,8 @@ Lists running and recently run commands.
...
@@ -25,7 +25,8 @@ Lists running and recently run commands.
cmds
.
BoolOption
(
"v"
,
"verbose"
,
"print more verbose output"
),
cmds
.
BoolOption
(
"v"
,
"verbose"
,
"print more verbose output"
),
},
},
Subcommands
:
map
[
string
]
*
cmds
.
Command
{
Subcommands
:
map
[
string
]
*
cmds
.
Command
{
"clear"
:
clearInactiveCmd
,
"clear"
:
clearInactiveCmd
,
"set-time"
:
setRequestClearCmd
,
},
},
Marshalers
:
map
[
cmds
.
EncodingType
]
cmds
.
Marshaler
{
Marshalers
:
map
[
cmds
.
EncodingType
]
cmds
.
Marshaler
{
cmds
.
Text
:
func
(
res
cmds
.
Response
)
(
io
.
Reader
,
error
)
{
cmds
.
Text
:
func
(
res
cmds
.
Response
)
(
io
.
Reader
,
error
)
{
...
@@ -92,3 +93,21 @@ var clearInactiveCmd = &cmds.Command{
...
@@ -92,3 +93,21 @@ var clearInactiveCmd = &cmds.Command{
req
.
InvocContext
()
.
ReqLog
.
ClearInactive
()
req
.
InvocContext
()
.
ReqLog
.
ClearInactive
()
},
},
}
}
var
setRequestClearCmd
=
&
cmds
.
Command
{
Helptext
:
cmds
.
HelpText
{
Tagline
:
"Set how long to keep inactive requests in the log"
,
},
Arguments
:
[]
cmds
.
Argument
{
cmds
.
StringArg
(
"time"
,
true
,
false
,
"time to keep inactive requests in log"
),
},
Run
:
func
(
req
cmds
.
Request
,
res
cmds
.
Response
)
{
tval
,
err
:=
time
.
ParseDuration
(
req
.
Arguments
()[
0
])
if
err
!=
nil
{
res
.
SetError
(
err
,
cmds
.
ErrNormal
)
return
}
req
.
InvocContext
()
.
ReqLog
.
SetKeepTime
(
tval
)
},
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论