Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
go-ipfs
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
jihao
go-ipfs
Commits
86b34a2a
提交
86b34a2a
authored
3月 08, 2015
作者:
Henry
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NewRequest() - export OptMap type
上级
bff7f730
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
9 行增加
和
9 行删除
+9
-9
request.go
commands/request.go
+9
-9
没有找到文件。
commands/request.go
浏览文件 @
86b34a2a
...
...
@@ -15,7 +15,7 @@ import (
u
"github.com/jbenet/go-ipfs/util"
)
type
o
ptMap
map
[
string
]
interface
{}
type
O
ptMap
map
[
string
]
interface
{}
type
Context
struct
{
// this Context is temporary. Will be replaced soon, as we get
...
...
@@ -68,9 +68,9 @@ func (c *Context) NodeWithoutConstructing() *core.IpfsNode {
type
Request
interface
{
Path
()
[]
string
Option
(
name
string
)
*
OptionValue
Options
()
o
ptMap
Options
()
O
ptMap
SetOption
(
name
string
,
val
interface
{})
SetOptions
(
opts
map
[
string
]
interface
{}
)
error
SetOptions
(
opts
OptMap
)
error
Arguments
()
[]
string
SetArguments
([]
string
)
Files
()
files
.
File
...
...
@@ -86,7 +86,7 @@ type Request interface {
type
request
struct
{
path
[]
string
options
o
ptMap
options
O
ptMap
arguments
[]
string
files
files
.
File
cmd
*
Command
...
...
@@ -122,8 +122,8 @@ func (r *request) Option(name string) *OptionValue {
}
// Options returns a copy of the option map
func
(
r
*
request
)
Options
()
o
ptMap
{
output
:=
make
(
o
ptMap
)
func
(
r
*
request
)
Options
()
O
ptMap
{
output
:=
make
(
O
ptMap
)
for
k
,
v
:=
range
r
.
options
{
output
[
k
]
=
v
}
...
...
@@ -151,7 +151,7 @@ func (r *request) SetOption(name string, val interface{}) {
}
// SetOptions sets the option values, unsetting any values that were previously set
func
(
r
*
request
)
SetOptions
(
opts
map
[
string
]
interface
{}
)
error
{
func
(
r
*
request
)
SetOptions
(
opts
OptMap
)
error
{
r
.
options
=
opts
return
r
.
ConvertOptions
()
}
...
...
@@ -273,12 +273,12 @@ func NewEmptyRequest() (Request, error) {
// NewRequest returns a request initialized with given arguments
// An non-nil error will be returned if the provided option values are invalid
func
NewRequest
(
path
[]
string
,
opts
o
ptMap
,
args
[]
string
,
file
files
.
File
,
cmd
*
Command
,
optDefs
map
[
string
]
Option
)
(
Request
,
error
)
{
func
NewRequest
(
path
[]
string
,
opts
O
ptMap
,
args
[]
string
,
file
files
.
File
,
cmd
*
Command
,
optDefs
map
[
string
]
Option
)
(
Request
,
error
)
{
if
path
==
nil
{
path
=
make
([]
string
,
0
)
}
if
opts
==
nil
{
opts
=
make
(
map
[
string
]
interface
{}
)
opts
=
make
(
OptMap
)
}
if
args
==
nil
{
args
=
make
([]
string
,
0
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论