filecoin技术架构分析之十一:filecoin源码分析之内部接口层api包分析

本文作者:杨尉;原创作品,转载请注明出处

[上一篇链接] filecoin技术架构分析之十:filecoin源码分析之支撑包分析(2/2)

[下一篇链接] filecoin技术架构分析之十二:filecoin源码分析之内部接口层plumbing&porcelain接口

目录

  • 11.filecoin源码分析之内部接口层api包分析
    • 11.1 api
    • 11.2 actor
    • 11.3 address
    • 11.4 client
    • 11.5 config
    • 11.6 daemon
    • 11.7 dag
    • 11.8 id
    • 11.11.log
    • 11.10 miner
    • 11.11 mining
    • 11.12 ping
    • 11.13 retrieval_client
    • 11.14 swarm

api包提供内部接口,供协议层、command/REST使用

较大程度依赖node包

分析版本,go-filecoin版本:master 2c87fd59 (2019.3.7)

11.1 api

11.1.1 api的接口定义

如下所示,包含了一系列子接口

type API interface {
    Actor() Actor
    Address() Address
    Client() Client
    Daemon() Daemon
    Dag() Dag
    ID() ID
    Log() Log
    Miner() Miner
    Mining() Mining
    Paych() Paych
    Ping() Ping
    RetrievalClient() RetrievalClient
    Swarm() Swarm
    Version() Version
}

11.1.2 api的接口实现

▼ package
    impl

▶ imports

// nodeAPI来实现其接口定义
▼-nodeAPI : struct
    [fields]
    // 合约
   -actor : *nodeActor
    // 地址
   -address : *nodeAddress
    // 客户端
   -client : *nodeClient
    // daemon
   -daemon : *nodeDaemon
    // dag
   -dag : *nodeDag
    // 节点ID
   -id : *nodeID
    // 日志
   -log : *nodeLog
    // 日志
   -logger : logging.EventLogger
    // 矿工
   -miner : *nodeMiner
    // 挖矿
   -mining : *nodeMining
    // 节点
   -node : *node.Node
    // 支付通道
   -paych : *nodePaych
    // ping
   -ping : *nodePing
    // 检索客户端
   -retrievalClient : *nodeRetrievalClient
    // swarm
   -swarm : *nodeSwarm
    // 版本
   -version : *nodeVersion

    [methods]
    // 如下为实现API接口
   +Actor() : api.Actor
   +Address() : api.Address
   +Client() : api.Client
   +Daemon() : api.Daemon
   +Dag() : api.Dag
   +ID() : api.ID
   +Log() : api.Log
   +Miner() : api.Miner
   +Mining() : api.Mining
   +Paych() : api.Paych
   +Ping() : api.Ping
   +RetrievalClient() : api.RetrievalClient
   +Swarm() : api.Swarm
   +Version() : api.Version

▼ functions
    // 实例化API
    // 1 获取高层API porcelainAPI 指针,miner与paych有用到
    // 2 调用各子系统的实例化函数逐一实例化
   +New(node *node.Node) : api.API

11.2 actor

11.2.1 actor的接口定义

▼ package
    api

▶ imports

▼+ActorView : struct
    [fields]
    // actor类型
   +ActorType : string
    // actor地址
   +Address : string
    // actor余额
   +Balance : *types.AttoFIL
    // actor代码-CID
   +Code : cid.Cid
    // 导出符号集合
   +Exports : ReadableExports
    // 表征actor实例的状态
   +Head : cid.Cid
    // 消息计数器,仅为account actors与外部发生交互的时候计算
   +Nonce : uint64

    // 导出符号集合
 +ReadableExports : map[string]*ReadableFunctionSignature

▼+ReadableFunctionSignature : struct
    [fields]
    // 参数
   +Params : []string
    // 返回
   +Return : []string

▼+Actor : interface
    // 目前接口只有查看功能,返回合约的具体信息
    [methods]
   +Ls(ctx context.Context) : []*ActorView, error

11.2.2 actor的接口实现

▼ package
    impl

▶ imports

// 使用nodeActor来实现Actor接口
▼-nodeActor : struct
    [fields]
   -api : *nodeAPI
    [methods]
    // 调用ls方法实现查询功能
   +Ls(ctx context.Context) : []*api.ActorView, error
    [functions]
    // 实例化nodeActor,由api实现代码中调用
   -newNodeActor(api *nodeAPI) : *nodeActor

▼ functions
    // 获取合约类型
    // 1 account actor
    // 2 存储市场actor
    // 3 支付通道actor
    // 4 矿工actor
    // 4 BootstrapMiner actor
   -getActorType(actType exec.ExecutableActor) : string
    // 查询合约状态
   -ls(ctx context.Context, fcn *node.Node, actorGetter state.GetAllActorsFunc) : []*api.ActorView, error
   -makeActorView(act *actor.Actor, addr string, actType exec.ExecutableActor) : *api.ActorView
   -makeReadable(f *exec.FunctionSignature) : *api.ReadableFunctionSignature
   -presentExports(e exec.Exports) : api.ReadableExports

11.3 address

  • 提供功能
    • 地址显示方法
    • 地址查找方法
    • 创建地址方法
    • 导出地址方法
    • 导入地址方法
▼ package
    api

▶ imports

▼+Address : interface
    [methods]
   +Addrs() : Addrs
   +Export(ctx context.Context, addrs []address.Address) : []*types.KeyInfo, error
   +Import(ctx context.Context, f files.File) : []address.Address, error

▼+Addrs : interface
    [methods]
   +Lookup(ctx context.Context, addr address.Address) : peer.ID, error
   +Ls(ctx context.Context) : []address.Address, error
   +New(ctx context.Context) : address.Address, error

11.4 client

  • 提供如下功能
    • 查询piece数据(DAG格式)
    • 导入数据(相当于ipfs add)
    • 列出所有订单
    • 支付
    • 发起存储交易
    • 查询存储交易
▼+Ask : struct
    [fields]
   +Error : error
   +Expiry : *types.BlockHeight
   +ID : uint64
   +Miner : address.Address
   +Price : *types.AttoFIL

▼+Client : interface
    [methods]
   +Cat(ctx context.Context, c cid.Cid) : uio.DagReader, error
   +ImportData(ctx context.Context, data io.Reader) : ipld.Node, error
   +ListAsks(ctx context.Context) : chan Ask, error
   +Payments(ctx context.Context, dealCid cid.Cid) : []*paymentbroker.PaymentVoucher, error
   +ProposeStorageDeal(ctx context.Context, data cid.Cid, miner address.Address, ask uint64, duration uint64, allowDuplicates bool) : *storage.DealResponse, error
   +QueryStorageDeal(ctx context.Context, prop cid.Cid) : *storage.DealResponse, error

11.5 config

  • 提供功能
    • Get配置
    • Set配置

11.6 daemon

  • 提供功能
    • 启动进程相关
    • 具体的业务启动逻辑会调用到node包
▼ package
    api

▶ imports

▼+DaemonInitConfig : struct
    [fields]
    // 如果配置,定期检查并密封staged扇区
   +AutoSealIntervalSeconds : uint
   +DefaultAddress : address.Address
    // 指定网络
   +DevnetNightly : bool
   +DevnetTest : bool
   +DevnetUser : bool
    // 创世文件
   +GenesisFile : string
   +PeerKeyFile : string
    // repo目录
   +RepoDir : string
    // 指定矿工
   +WithMiner : address.Address

 +DaemonInitOpt : func(*DaemonInitConfig)

▼+Daemon : interface
    [methods]
   +Init(ctx context.Context, opts ...DaemonInitOpt) : error
   +Start(ctx context.Context) : error
   +Stop(ctx context.Context) : error

11.7 dag

  • 提供功能
    • dag查询功能
    • 类似ipfs block get

11.8 id

  • 提供功能
    • ID详细信息
    • 如多地址、协议版本、导出公钥等
▼+IDDetails : struct
    [fields]
   +Addresses : []ma.Multiaddr
   +AgentVersion : string
   +ID : peer.ID
   +ProtocolVersion : string
   +PublicKey : []byte
    [methods]
   +MarshalJSON() : []byte, error
   +UnmarshalJSON(data []byte) : error

▼+ID : interface
    [methods]
   +Details() : *IDDetails, error

▼ functions
   -decode(idd map[string]*json.RawMessage, key string, dest interface{}) : error

11.11.log

  • 提供日志功能
▼+Log : interface
    [methods]
   +Tail(ctx context.Context) : io.Reader

11.10 miner

  • 创建矿工
▼+Miner : interface
    [methods]
   +Create(ctx context.Context, fromAddr address.Address, gasPrice types.AttoFIL, gasLimit types.GasUnits, pledge uint64, pid peer.ID, collateral *types.AttoFIL) : address.Address, error

11.11 mining

  • 挖矿控制
    • 启动
    • 停止
▼+Mining : interface
    [methods]
   +Once(ctx context.Context) : *types.Block, error
   +Start(ctx context.Context) : error
   +Stop(ctx context.Context) : error

11.12 ping

  • 提供ping接口
▼+PingResult : struct
    [fields]
   +Success : bool
   +Text : string
   +Time : time.Duration

▼+Ping : interface
    [methods]
   +Ping(ctx context.Context, pid peer.ID, count uint, delay time.Duration) : chan *PingResult, error

11.13 retrieval_client

  • 提供检索接口
▼+RetrievalClient : interface
    [methods]
   +RetrievePiece(ctx context.Context, pieceCID cid.Cid, minerAddr address.Address) : io.ReadCloser, error

11.14 swarm

  • 提供节点连接功能
    • 显示连接节点
    • 连接节点
    • 查找节点
▼+SwarmConnInfo : struct
    [fields]
   +Addr : string
   +Latency : string
   +Muxer : string
   +Peer : string
   +Streams : []SwarmStreamInfo
    [methods]
   +Len() : int
   +Less(i, j int) : bool
   +Swap(i, j int)

▼+SwarmConnInfos : struct
    [fields]
   +Peers : []SwarmConnInfo
    [methods]
   +Len() : int
   +Less(i, j int) : bool
   +Swap(i, j int)

▼+SwarmConnectResult : struct
    [fields]
   +Peer : string
   +Success : bool

▼+SwarmStreamInfo : struct
    [fields]
   +Protocol : string

▼+Swarm : interface
    [methods]
   +Connect(ctx context.Context, addrs []string) : []SwarmConnectResult, error
   +FindPeer(ctx context.Context, peerID peer.ID) : peerstore.PeerInfo, error
   +Peers(ctx context.Context, verbose, latency, streams bool) : *SwarmConnInfos, error

[上一篇链接] filecoin技术架构分析之十:filecoin源码分析之支撑包分析(2/2)

[下一篇链接] filecoin技术架构分析之十二:filecoin源码分析之内部接口层plumbing&porcelain接口

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容