经过「前文」对 CocaPods-Core 的分析,咱们大致了解了 Pod
是如何被解析、查询与管理的。有了这些总体概念以后,咱们就能够逐步深刻 pod install
的各个细节。今天咱们就来聊聊 Pod
的依赖校验工具 --- Molinillo。开始前,须要聊聊依赖校验的背景。node
同大多数包管理工具同样 Pod
会将传递依赖的包用扁平化的形式,安装至 workspace 目录 (即:Pods/
)。git
依赖传递:pod A
依赖于 pod B
,而 pod B
依赖 Alamofire
。github
能够看到,经依赖解析原有的依赖树被拍平了,安装在同层目录中。算法
然而在大型项目中,遇到的更多状况可能像下面这样:npm
**依赖冲突:即 pod A
和 pod B
分别依赖不一样版本的 Alamofire
。这就是依赖地狱**的开始。设计模式
依赖地狱:指在操做系统中因为软件之间的依赖性不能被知足而引起的问题。数组
随着项目的迭代,咱们不断引入依赖并最终造成错综复杂的网络。这使得项目的依赖性解析变得异常困难,甚至出现致命错误。ruby
那么,产生的问题有哪些类型 ?微信
即项目存在大量依赖关系,或者依赖自己有其自身依赖(依赖传递),致使依赖层级过深。像微信或淘宝这样的超级应用,其中的单一业务模块均可能存在这些问题,这将使得依赖解析过于复杂,且容易产生依赖冲突和依赖循环。markdown
即项目中的两个依赖包没法共存的状况。可能两个依赖库内部的代码冲突,也可能其底层依赖互相冲突。上面例子中因 Alamofire
版本不一样产生的问题就是依赖冲突。
即依赖性关系造成一个闭合环路。以下图三个 pod 库之间互相依赖产生循环:
要判断依赖关系中是否存在依赖环,则须要通依赖仲裁算法来解决。
对于依赖过多或者多重依赖问题,咱们可经过合理的架构和设计模式来解决。而依赖校验主要解决的问题为:
对于版本冲突可经过修改指定版本为带兼容性的版本范围问题来避免。如上面的问题有两个解决方案:
pod
的 Alamofire
版本约束为 ~> 4.0
来解决。pod
的版本约束,交由项目中的 Podfile
来指定。不过这样会有一个隐患,因为两个 Pod
使用的主版本不一样,可能带来 API 不兼容,致使 pod install
即便成功了,最终也没法编译或运行时报错。
还有一种解决方案,是基于语言特性来进行依赖性隔离。如 npm 的每一个传递依赖包若是冲突均可以有本身的 node_modules
依赖目录,即一个依赖库能够存在多个不一样版本。
循环依赖则须要须要进行数学建模生成 DAG
图,利用拓扑排序的拆点进行处理。经过肯定依赖图是否为 DAG
图,来验证依赖关系的合理性。
一个 DAG 图的示例:
DAG 是图论中常见的一种描述问题的结构,全称**有向无环图 (Directed Acyclic Graph) **。想了解更多,可查看瓜瓜的文章 ---「从拓扑排序到 Carthage 依赖校验算法」。
另外,各类包管理工具的依赖校验算法也各不相同,有如 Dart 和 SwiftPM 所使用的 PubGrub,做者号称其为下一代依赖校验算法,Yarn 的 Selective dependency resolutions,还有咱们今天聊到的 Molinillo。
Molinillo 做为通用的依赖解析工具,它不只应用在 CocoaPods 中,在 Bundler 1.9 版本也采用 Molinillo。另外,值得注意的是 Bundler 在 Ruby 2.6 中被做为了默认的 gem 工具内嵌。能够说 Ruby 相关的依赖工具都经过 Molinillo 完成依赖解析。
Molinillo 算法的核心是基于回溯 (Backtracking) 和 向前检查 (forward checking),整个过程会追踪栈中的两个状态 DependencyState
和 PossibilityState
。
module Molinillo
# 解析状态
ResolutionState = Struct.new(
# [String] 当前需求名称
:name,
# [Array<Object>] 未处理的需求
:requirements,
# [DependencyGraph] 依赖关系图
:activated,
# [Object] 当前需求
:requirement,
# [Object] 知足当前需求的可能性
:possibilities,
# [Integer] 解析深度
:depth,
# [Hash] 未解决的冲突,以需求名为 key
:conflicts,
# [Array<UnwindDetails>] 记录着未处理过的须要用于回溯的信息
:unused_unwind_options
)
class ResolutionState
def self.empty
new(nil, [], DependencyGraph.new, nil, nil, 0, {}, [])
end
end
# 记录一组需求和知足当前需求的可能性
class DependencyState < ResolutionState
# 经过不断 pop 过滤包含的可能性,找出最符合需求的解
def pop_possibility_state
PossibilityState.new(
name,
requirements.dup,
activated,
requirement,
[possibilities.pop],
depth + 1,
conflicts.dup,
unused_unwind_options.dup
).tap do |state|
state.activated.tag(state)
end
end
end
# 仅包含一个知足需求的可能性
class PossibilityState < ResolutionState
end
end
复制代码
光看 state 定义你们可能以为云里雾里。这里颇有必要解释一下:
咱们说的需求 (requirement
) 究竟是指什么呢?你们能够理解为在 Podfile
中声明的 pod。**之因此称为需求,是因为没法判判定义的 dependency 是否合法。**假设它合法,又是否存在符合需求限制版本的解呢 ?便是否存在对应的 PodSpec
咱们不而知。所以,这些未知状态称为统一被可能性 possibility
。
Tips: 了解这个概念很是重要,这也是笔者在几乎写完本文的状况下,才想明白这些变量名的意义。💔
咱们先经过图来了解一下 Molinillo 的核心流程 (先忽略异常流):
能够看到整个流程就是不断的将 requirement 的 possibility 过滤和处理,一层层剥离转换为 DependencyState
,如此循环往复。
Molinillo 的入口为 Resolution::resolve
方法,也是上图对应的实现,逻辑以下:
# lib/molinillo/resolution.rb
def resolve
# 1. 初始化 timer 统计耗时初始位置打点
# 2. 内部会调用 push_initial_state 初始化 DependencyState 压栈
# 3. 初始化 DependencyGraph 实例
start_resolution
while state
break if !state.requirement && state.requirements.empty?
# 输出一个进度占位
indicate_progress
if state.respond_to?(:pop_possibility_state) # DependencyState
# 调试日志入口
# 若是环境变量 MOLINILLO_DEBUG 是非 nil 就输出 log
# 这里的调试日志有助于排查 Pod 组件的依赖问题
debug(depth) { "Creating possibility state for #{requirement} (#{possibilities.count} remaining)" }
state.pop_possibility_state.tap do |s|
if s
states.push(s)
activated.tag(s)
end
end
end
# 处理栈顶 Possibility State
process_topmost_state
end
# 遍历 Dependency Graph
resolve_activated_specs
ensure
end_resolution
end
复制代码
#start_resolution
会初始化 timer 用于统计解析耗时,并调用 #push_initial_state
初始化 DependencyState
入栈,以及 DependencyGraph 初始化。#pop_possibility_state
进行 state 转换并入栈。#process_topmost_state
处理栈顶的 possiblity state,若是当前 state 可被激活,则将该 possiblity 存入 DependencyGraph 对应顶点的 payload 中。不然断定为冲突,须要进行状态回滚。#resolve_activated_specs
,遍历 DependencyGraph 以存储更新需求的可能性,解析结束。固然,依赖处理并不是这么简单,复杂的过滤和回溯逻辑都隐藏在 #process_topmost_state
中。
其实从 ResolutionState
的定义可以看出,为了方便回溯和数据还原,state 是以 Struct 结构定义的。同时在每次 #pop_possibility_state
中,经过 #dup 对 diff 数据进行了复制。
这里用依赖传递的例子来展现解析后状态栈的变化。假设咱们在 Podfile 中声明了 A,B,C
三个依赖,他们的关系为:A -> B -> C
。
target 'Example' do
pod 'C', :path => '../'
pod 'B', :path => '../'
pod 'A', :path => '../’ end 复制代码
在 #resolve_activated_specs
方法设置断点,在解析结束时打印状态栈 @states
(简化处理后)以下:
[
#<struct Molinillo::DependencyState name="C", requirements=[B, A], ...>,
#<struct Molinillo::PossibilityState name="C", requirements=[B, A], ...>
#<struct Molinillo::DependencyState name="B", requirements=[A], ...>
#<struct Molinillo::PossibilityState name="B", requirements=[A], ...>
# 省略了 C、C、A、A...
#<struct Molinillo::DependencyState name="B", requirements=[], ...,
#<struct Molinillo::PossibilityState name="B", requirements=[], ...,
#<struct Molinillo::DependencyState name="", requirements=[], ...,
]
复制代码
能够看到栈内保存的 states 中 DependencyState
与 PossibilityState
是成对出现的。不过最后入栈的 DependencyState
是一个空状态,requirements 也为空,此时没法再 pop state 循环结束。
其实包括 Molinillo 在内的依赖解析工具都会在运行期间对依赖关系进行建模来构建依赖图,毕竟这是咱们表达依赖关系的方式。那么 DependencyGraph (如下简称 dg
) 是如何定义:
module Molinillo
class DependencyGraph
# 有向边
Edge = Struct.new(:origin, :destination, :requirement)
# @return [{String => Vertex}] 用字典保存顶点, key 为顶点名称(即 requirement.name)
attr_reader :vertices
# @return [Log] 操做日志
attr_reader :log
...
end
复制代码
另外 Vertex 定义以下:
module Molinillo
class DependencyGraph
class Vertex
attr_accessor :name
# @return [Object] 顶点的元数据,reqiuremnt 对应的 possiblity
attr_accessor :payload
# @return [Array<Object>] 须要依赖该顶点可能性能的需求
attr_reader :explicit_requirements
# @return [Boolean] 是否为根结点
attr_accessor :root
# @return [Array<Edge>] 出度 {Edge#origin}
attr_accessor :outgoing_edges
# @return [Array<Edge>] 入度 {Edge#destination}
attr_accessor :incoming_edges
# @return [Array<Vertex>] 入度的起点
def predecessors
incoming_edges.map(&:origin)
end
# @return [Array<Vertex>] 出度的终点
def successors
outgoing_edges.map(&:destination)
end
...
end
end
end
复制代码
熟悉图论的同窗都了解,图的保存经常使用的方式是邻接表和邻接矩阵。Molinillo 则经过 map + list,vertext 字典与边集数组来保存。若是仅用边集数组来查询顶点自己效率并不高,好在顶点直接用了字典保存了。Molinillo 经过栈来维护解析状态,不断将解析结果 possibility 存入 dg 的 payload 中,同时记录了各个顶点的依赖关系,即 dg 的出度和入度。
- 在有向图中对于一个顶点来讲,若是一条边的终点是这个顶点,这条边就是这个顶点的入度;
- 在有向图中对于一个顶点来讲,若是一条边的起点是这个顶点,这条边就是这个顶点的出度。
当成功解析的一刻,dg 图也构建完毕。
当解析过程出现冲突时,状态栈要回溯直接 pop 一下就完事了,而 dg 咋办 ? 它可无法 pop。
好在 Molinillo 设计了 Operation Log 机制,经过 Log 记录 dg 执行过的操做。这些操做类型包括:AddEdgeNoCircular、AddVertex、DeleteEdge、DetachVertexNamed、SetPayload、Tag。
Log 结构以下:
# frozen_string_literal: true
module Molinillo
class DependencyGraph
class Log
def initialize
@current_action = @first_action = nil
end
def pop!(graph)
return unless action = @current_action
unless @current_action = action.previous
@first_action = nil
end
action.down(graph)
action
end
# 回撤到指定的操做节点
def rewind_to(graph, tag)
loop do
action = pop!(graph)
raise "No tag #{tag.inspect} found" unless action
break if action.class.action_name == :tag && action.tag == tag
end
end
private
# 插入操做节点
def push_action(graph, action)
action.previous = @current_action
@current_action.next = action if @current_action
@current_action = action
@first_action ||= action
action.up(graph)
end
...
end
end
end
复制代码
标准的链表结构,Log 提供了当前指针 @current_action
和表头指针 @first_action
便于链表的遍历。接着看看 Action:
# frozen_string_literal: true
module Molinillo
class DependencyGraph
class Action
# @return [Symbol] action 名称
def self.action_name
raise 'Abstract'
end
# 对图执行正向操做
def up(graph)
raise 'Abstract'
end
# 撤销对图的操做
def down(graph)
raise 'Abstract'
end
# @return [Action,Nil] 前序节点
attr_accessor :previous
# @return [Action,Nil] 后序节点
attr_accessor :next
end
end
end
复制代码
Action 自己是个抽象类,Log 经过 Action 子类的 #up
、#down
来完成对 dg 的操做和撤销。所提供的 Action 中除了 Tag 特殊一点,其他均是对 dg 的顶点和边的 CURD 操做。这里以 AddVertex
为例:
# frozen_string_literal: true
require_relative 'action'
module Molinillo
class DependencyGraph
# @!visibility private
class AddVertex < Action # :nodoc:
def self.action_name
:add_vertex
end
# 操做添加顶点
def up(graph)
if existing = graph.vertices[name]
@existing_payload = existing.payload
@existing_root = existing.root
end
vertex = existing || Vertex.new(name, payload)
graph.vertices[vertex.name] = vertex
vertex.payload ||= payload
vertex.root ||= root
vertex
end
# 删除顶点
def down(graph)
if defined?(@existing_payload)
vertex = graph.vertices[name]
vertex.payload = @existing_payload
vertex.root = @existing_root
else
graph.vertices.delete(name)
end
end
# @return [String] 顶点名称 (或者说依赖名称)
attr_reader :name
# @return [Object] 顶点元数据
attr_reader :payload
# @return [Boolean] 是否为根
attr_reader :root
...
end
end
end
复制代码
Action 子类均声明为 private 的,经过 Log 提供的对应方法来执行。
def tag(graph, tag)
push_action(graph, Tag.new(tag))
end
def add_vertex(graph, name, payload, root)
push_action(graph, AddVertex.new(name, payload, root))
end
def detach_vertex_named(graph, name)
push_action(graph, DetachVertexNamed.new(name))
end
def add_edge_no_circular(graph, origin, destination, requirement)
push_action(graph, AddEdgeNoCircular.new(origin, destination, requirement))
end
def delete_edge(graph, origin_name, destination_name, requirement)
push_action(graph, DeleteEdge.new(origin_name, destination_name, requirement))
end
def set_payload(graph, name, payload)
push_action(graph, SetPayload.new(name, payload))
end
复制代码
最后 log 声明的这些方法会由 dg 直接调用,如 #addVertext
:
module Molinillo
class DependencyGraph
def add_vertex(name, payload, root = false)
log.add_vertex(self, name, payload, root)
end
...
end
end
复制代码
有了 op log 以后咱们还须要同样重要的东西:哨兵节点。由 Tag 类来承载:
# frozen_string_literal: true
module Molinillo
class DependencyGraph
# @!visibility private
class Tag < Action
def up(graph)
end
def down(graph)
end
attr_reader :tag
def initialize(tag)
@tag = tag
end
end
end
end
复制代码
做为哨兵节点 Tag 的 #up 与 #down 操做老是成对出现的。在 Molinillo 中有两处须要进行状态回溯,分别为可能性校验和冲突状态回撤。
#possibility_satisfies_requirements?
方法用于冲突产生的先后,用于判断该可能性可否同时知足多个需求:
def possibility_satisfies_requirements?(possibility, requirements)
name = name_for(possibility)
activated.tag(:swap)
activated.set_payload(name, possibility) if activated.vertex_named(name)
satisfied = requirements.all? { |r| requirement_satisfied_by?(r, activated, possibility) }
activated.rewind_to(:swap)
satisfied
end
复制代码
为了直观的说明参数,咱们举个例子。Case 1
假设 Podfile
中存在 pod A 和 B,且 A、B 分别依赖了 Alamofire 3.0 和 4.0,那么对应的参数为:
possibility: #<Pod::Specification name="Alamofire" version="4.0.0">
requirements: [
<Pod::Dependency name=Alamofire requirements=~> 3.0 source=nil external_source=nil>, <Pod::Dependency name=Alamofire requirements=~> 4.0 source=nil external_source=nil>
]
复制代码
如今来看方法实现:
activated
就是 Podfile 解析生成的 dg 对象,这里将 symbol :swap
做为标识用于稍后的回撤;#set_payload
将顶点 Alamofire 的 payload 修改成 possibility 版本;#requirement_satisfied_by
以校验 possiblity 在 dg 中存在的可能性;#rewind_to
将顶点的修改回撤至 :swap
前的状态,最后返回检验结果。Tips: 此处的代理是指 CocoaPods,它作为 Molinillo 的 client 实现了不少代理方法,后续会聊到。
做为候选项 possibility 固然不止一个,代理提供的查询方法 #search_for(dependency)
会返回全部符合 requiremnt 名称的依赖。在 CocoaPods 中,就是经过 Pod::Source
查询得到全部版本的 Pod::Specification
,具体能够看上一篇文章:PodSpec 管理策略。
依赖解析过程出现冲突属于正常状况,此时经过回撤也许能够避免部分冲突,找出其它可行解。Molinillo 经过定义 Conflict
来记录当前的冲突的必要信息:
Conflict = Struct.new(
:requirement,
:requirements,
:existing,
:possibility_set,
:locked_requirement,
:requirement_trees,
:activated_by_name,
:underlying_error
)
复制代码
重点关注 underlying_error
,它记录了所拦截的指定类型错误,并用于状态回撤时的一些判断依据 (后面会解释)。这里咱们先看一下定义的错误类型:
# frozen_string_literal: true
module Molinillo
class ResolverError < StandardError; end
# 错误信息:"Unable to find a specification for `#{dependency}`"
class NoSuchDependencyError < ResolverError ... end
# 错误信息:"There is a circular dependency between ..."
class CircularDependencyError < ResolverError ... end
# 当出现版本冲突时抛出
# 错误信息:"Unable to satisfy the following requirements:\n\n ..."
class VersionConflict < ResolverError ... end
end
复制代码
除了主动拦截错误以外,possiblity 不存在时也会主动生成冲突,同时进入状态回撤处理。发生冲突后调用 #create_conflict
和 #unwind_for_conflict
两个方法分别用于生成 Conflict 对象和状态回撤。
def process_topmost_state
if possibility
attempt_to_activate
else
create_conflict
unwind_for_conflict
end
rescue CircularDependencyError => underlying_error
create_conflict(underlying_error)
unwind_for_conflict
end
def attempt_to_activate
debug(depth) { 'Attempting to activate ' + possibility.to_s }
existing_vertex = activated.vertex_named(name)
if existing_vertex.payload
debug(depth) { "Found existing spec (#{existing_vertex.payload})" }
attempt_to_filter_existing_spec(existing_vertex)
else
latest = possibility.latest_version
possibility.possibilities.select! do |possibility|
requirement_satisfied_by?(requirement, activated, possibility)
end
if possibility.latest_version.nil?
# ensure there's a possibility for better error messages
possibility.possibilities << latest if latest
create_conflict
unwind_for_conflict
else
activate_new_spec
end
end
end
def attempt_to_filter_existing_spec(vertex)
filtered_set = filtered_possibility_set(vertex)
if !filtered_set.possibilities.empty?
activated.set_payload(name, filtered_set)
new_requirements = requirements.dup
push_state_for_requirements(new_requirements, false)
else
create_conflict
debug(depth) { "Unsatisfied by existing spec (#{vertex.payload})" }
unwind_for_conflict
end
end
复制代码
能够看到这 3 个方法中处理了 4 处冲突的状况。其中 #process_topmost_state
方法拦截了 CircularDependencyError 并将其记录在 Conflict 的 underlying_error
中,其他的都是由于 possibility 可行解不存在而主动抛出冲突。
咱们简化成下面的状态图:
能够理解 possiblity 状态机,经过不断检查可能性,一旦出错主动生成异常。为何要这么作 ? 由于状态回溯的成本是很高的,一旦发生意味着咱们以前检查工做可能就白费了。这也是 Molinillo 前向查询的充电,经过提前暴露问题,提早回溯。
unwind_for_conflict
了解了冲突时如何产生以后,接下来该 #unwind_for_conflict
登场了:
def unwind_for_conflict
details_for_unwind = build_details_for_unwind
unwind_options = unused_unwind_options
debug(depth) { "Unwinding for conflict: #{requirement} to #{details_for_unwind.state_index / 2}" }
conflicts.tap do |c|
sliced_states = states.slice!((details_for_unwind.state_index + 1)..-1)
raise_error_unless_state(c)
activated.rewind_to(sliced_states.first || :initial_state) if sliced_states
state.conflicts = c
state.unused_unwind_options = unwind_options
filter_possibilities_after_unwind(details_for_unwind)
index = states.size - 1
@parents_of.each { |_, a| a.reject! { |i| i >= index } }
state.unused_unwind_options.reject! { |uw| uw.state_index >= index }
end
end
复制代码
冲突回溯就涉及到前面说过的两个状态须要处理,分别是状态栈 @states
和 dg 内容的回溯。 @state
自己是数组实现的,其元素是各个状态的 state, 要回溯到指定的 state 则要利用 state_index
,它保存在 UnwindDetails
中:
UnwindDetails = Struct.new(
:state_index,
:state_requirement,
:requirement_tree,
:conflicting_requirements,
:requirement_trees,
:requirements_unwound_to_instead
)
class UnwindDetails
include Comparable
...
end
复制代码
这里解释一下 requirement_trees,这里是指以当前需求做为依赖的需求。以上面的 Case 1
为例,当前冲突的 requirement 就是 Alamofire,对应 requirement_trees 就是依赖了 Alamofire 的 Pod A 和 B:
[
[
<Pod::Dependency name=A requirements=nil source=nil external_source=nil>,
<Pod::Dependency name=Alamofire requirements=~> 3.0 ...>
],[
<Pod::Dependency name=B ...>,
<Pod::Dependency name=Alamofire requirements=~> 4.0 ...>
]
]
复制代码
#build_details_for_unwind
主要用于生成 UnwindDetails,大体流程以下:
def build_details_for_unwind
current_conflict = conflicts[name]
binding_requirements = binding_requirements_for_conflict(current_conflict)
unwind_details = unwind_options_for_requirements(binding_requirements)
last_detail_for_current_unwind = unwind_details.sort.last
current_detail = last_detail_for_current_unwind
# filter & update details options
...
current_detail
end
复制代码
#binding_requirements_for_conflict
以查找出存在冲突的需求 binding_requirements。查询是经过代理的 #search_for(dependency)
方法;#unwind_options_for_requirements
遍历查询到的 binding_requirements 获取 requirement 对应的 state 以及该 state 在栈中的 index,用于生成 unwind_details;关于如何获取 state_index 和 unwind_details:
def unwind_options_for_requirements(binding_requirements)
unwind_details = []
trees = []
binding_requirements.reverse_each do |r|
partial_tree = [r]
trees << partial_tree
unwind_details << UnwindDetails.new(-1, nil, partial_tree, binding_requirements, trees, [])
# 1.1 获取 requirement 对应的 state
requirement_state = find_state_for(r)
# 1.2 确认 possibility 存在
if conflict_fixing_possibilities?(requirement_state, binding_requirements)
# 1.3 生成 detail 存入 unwind_details
unwind_details << UnwindDetails.new(
states.index(requirement_state),
r,
partial_tree,
binding_requirements,
trees,
[]
)
end
# 2. 沿着 requirement 依赖树的父节点获取其 state
parent_r = parent_of(r)
next if parent_r.nil?
partial_tree.unshift(parent_r)
requirement_state = find_state_for(parent_r)
# 重复 1.2, 1.3 步骤 ...
# 6. 沿着依赖树,重复上述操做
grandparent_r = parent_of(parent_r)
until grandparent_r.nil?
partial_tree.unshift(grandparent_r)
requirement_state = find_state_for(grandparent_r)
# 重复 1.二、1.3 步骤 ...
parent_r = grandparent_r
grandparent_r = parent_of(parent_r)
end
end
unwind_details
end
复制代码
确认 state_index 后,栈回溯反而比较简单了,直接 #slice!
便可:
sliced_states = states.slice!((details_for_unwind.state_index + 1)..-1)
复制代码
dg 回撤仍是 activated.rewind_to(sliced_states.first || :initial_state) if sliced_states
。回撤结束后,流程从新回到 Resolution Loop。
最后一节简单聊聊 SpecificationProvider。为了更好的接入不一样平台,同时保证 Molinillo 的通用性和灵活性,做者将依赖描述文件查询等逻辑抽象成了代理。
SpecificationProvider 做为单独的 Module 声明了接入端必须实现的 API:
module Molinillo
module SpecificationProvider
def search_for(dependency)
[]
end
def dependencies_for(specification)
[]
end
...
end
end
复制代码
而 Provider 就是在 Molinillo 初始化的时候注入的:
require_relative 'dependency_graph'
module Molinillo
class Resolver
require_relative 'resolution'
attr_reader :specification_provider
attr_reader :resolver_ui
def initialize(specification_provider, resolver_ui)
@specification_provider = specification_provider
@resolver_ui = resolver_ui
end
def resolve(requested, base = DependencyGraph.new)
Resolution.new(specification_provider,
resolver_ui,
requested,
base).
resolve
end
end
end
复制代码
而在 CocoaPods 中的初始化方法则是:
# /lib/CocoaPods/resolver.rb
def resolve
dependencies = @podfile_dependency_cache.target_definition_list.flat_map do |target|
@podfile_dependency_cache.target_definition_dependencies(target).each do |dep|
next unless target.platform
@platforms_by_dependency[dep].push(target.platform)
end
end.uniq
@platforms_by_dependency.each_value(&:uniq!)
@activated = Molinillo::Resolver.new(self, self).resolve(dependencies, locked_dependencies)
resolver_specs_by_target
rescue Molinillo::ResolverError => e
handle_resolver_error(e)
end
复制代码
该方法则处于 pod install 中的 resolve dependencies 阶段:
另外,为了更好的处理产生的异常,同时保证核心逻辑对 provider 的无感知,Molinillo 将代理方法作了一层隔离,而且对异常作了统一拦截:
module Molinillo
module Delegates
module SpecificationProvider
def search_for(dependency)
with_no_such_dependency_error_handling do
specification_provider.search_for(dependency)
end
end
def dependencies_for(specification)
with_no_such_dependency_error_handling do
specification_provider.dependencies_for(specification)
end
end
...
private
def with_no_such_dependency_error_handling
yield
rescue NoSuchDependencyError => error
if state
...
end
raise
end
end
end
end
复制代码
本篇文章从依赖解析的状态维护、状态存储、状态回溯三个维度来解构 Molinillo 的核心逻辑,它们分别对应了 ResolutionState、DependencyGraph、UnwindDetail 这三种数据结构。一开始写这篇内容时,头脑中对于这些概念是未知的,由于一开始就直接看了做者对 Molinillo 的架构阐述更是彻底找不到思绪,好在我有 VSCode !!!最终依据不一样 Case 下的数据呈现,一点点的进行源码调试,大体摸清的 Molinillo 的状态是如何变化转移的。最后一点,英文和数据结构仍是很重要的,possiblity 你理解了吗 ?
这里罗列了五个问题用来考察你是否已经掌握了这篇文章,若是没有建议你加入收藏再次阅读:
#process_topmost_state
处理了几种 conflict 状况 ?