Class: CBin::Config::Builder

Inherits:
Object
  • Object
show all
Includes:
Pod
Defined in:
lib/cocoapods-fy-bin/config/config_builder.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Pod

match_version?

Constructor Details

#initializeBuilder

Returns a new instance of Builder.



13
14
15
16
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 13

def initialize
  load_build_config
  # clean
end

Class Method Details

.instanceObject



9
10
11
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 9

def self.instance
  @instance ||= new
end

Instance Method Details

#binary_json_dirObject



130
131
132
133
134
135
136
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 130

def binary_json_dir
  @binary_json_dir ||= begin
                 dir = File.join(root_dir,binary_json_dir_name)
                 Dir.mkdir(dir) unless File.exist?dir
                 Pathname.new(dir)
               end
end

#binary_json_dir_nameObject



126
127
128
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 126

def binary_json_dir_name
  "bin-json"
end

#cleanObject



39
40
41
42
43
44
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 39

def clean
  #清除之前的缓存
  FileUtils.rm_rf(Dir.glob("#{zip_dir}/*")) if File.exist?(zip_dir)
  FileUtils.rm_rf(Dir.glob("#{binary_json_dir}/*")) if File.exist?(binary_json_dir)
  FileUtils.rm_rf(Dir.glob("#{local_psec_dir}/*")) if File.exist?(local_psec_dir)
end

#framework_dsym_name(spec) ⇒ Object



73
74
75
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 73

def framework_dsym_name(spec)
  "#{treated_framework_name(spec)}.framework.dSYM"
end

#framework_file(spec) ⇒ Object



86
87
88
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 86

def framework_file(spec)
  File.join(zip_dir_name, framework_name(spec))
end

#framework_name(spec) ⇒ Object



69
70
71
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 69

def framework_name(spec)
  "#{treated_framework_name(spec)}.framework"
end

#framework_name_version(spec) ⇒ Object



77
78
79
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 77

def framework_name_version(spec)
  "#{treated_framework_name(spec)}.framework_#{spec.version}"
end

#framework_zip_file(spec) ⇒ Object



81
82
83
84
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 81

def framework_zip_file(spec)
  # File.join(zip_dir_name, framework_name_version(spec))
  File.join(zip_dir_name, "file.zip")
end

#gen_dirObject

制作二进制打包 工程目录



52
53
54
55
56
57
58
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 52

def gen_dir
  @gen_dir ||= begin
                 dir = File.join(root_dir,gen_name)
                 Dir.mkdir(dir) unless File.exist?dir
                 Pathname.new(dir)
               end
end

#gen_nameObject

制作二进制打包 工程目录



47
48
49
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 47

def gen_name
  'bin-archive'
end

#ignore_git_listObject

忽略制作二进制组件的 git



219
220
221
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 219

def ignore_git_list
  @ignore_git_list
end

#ignore_http_listObject



223
224
225
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 223

def ignore_http_list
  @ignore_http_list
end

#library_file(spec) ⇒ Object



97
98
99
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 97

def library_file(spec)
  File.join(zip_dir_name, library_name(spec))
end

#library_name(spec) ⇒ Object



90
91
92
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 90

def library_name(spec)
  library_name_version(spec.name, spec.version)
end

#library_name_version(name, version) ⇒ Object



94
95
96
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 94

def library_name_version(name,version)
  "bin_#{name}_#{version}"
end

#load_build_configObject

加载配置项



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 19

def load_build_config
  @white_pod_list = []
  @ignore_git_list = []
  project_root = Pod::Config.instance.project_root
  path = File.join(project_root.to_s, 'BinArchive.json')

  if File.exist?(path)
    config = JSON.parse(File.read(path))
    @white_pod_list = config['archive-white-pod-list']
    UI.warn "====== archive-white-pod-list = #{@white_pod_list}" if @white_pod_list
    @ignore_git_list = config['ignore-git-list']
    UI.warn "====== ignore_git_list = #{@ignore_git_list}" if @ignore_git_list
    @ignore_http_list = config['ignore-http-list']

    @xcode_build_name = config['xcode_build_path']
    @root_dir = config['root_dir'] unless config['root_dir'].nil?
  end

end

#local_psec_dirObject



118
119
120
121
122
123
124
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 118

def local_psec_dir
  @local_psec_dir ||= begin
                         dir = File.join(root_dir,local_spec_dir_name)
                         Dir.mkdir(dir) unless File.exist?dir
                         Pathname.new(dir)
                       end
end

#local_spec_dir_nameObject

本地



114
115
116
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 114

def local_spec_dir_name
  "bin-spec"
end

#root_dirObject

处理编译产物后存储根目录,会存放spec、 json、zip的父目录,默认是工程的同级目录下,“#basename-build-temp”



203
204
205
206
207
208
209
210
211
212
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 203

def root_dir
  @root_dir ||= begin
                   basename = File.basename(Pod::Config.instance.installation_root)
                   parent_dir = File.dirname(Pod::Config.instance.installation_root)
                   root_name = File.join(parent_dir,"#{basename}-build-temp")
                   Dir.mkdir(root_name) unless File.exist?root_name
                   Pathname.new(root_name)
                 end

end

#target_nameObject

编译target名,如 seeyou



141
142
143
144
145
146
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 141

def target_name
  @target_name ||= begin
                     target_name_str =  Pod::Config.instance.podfile.root_target_definitions.first.children.first.to_s
                     target_name_str[5,target_name_str.length]
                   end
end

#treated_framework_name(spec) ⇒ Object

处理后的framework文件名称



61
62
63
64
65
66
67
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 61

def treated_framework_name(spec)
  treated_framework_name = spec.name.sub('-', '_')
  if !spec.module_name.nil?
    treated_framework_name = spec.module_name
  end
  treated_framework_name
end

#white_pod_listObject

制作二进制 白名单



215
216
217
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 215

def white_pod_list
  @white_pod_list
end

#xcode_build_dirObject

完整的xcodebuild 输出路径



170
171
172
173
174
175
176
177
178
179
180
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 170

def xcode_build_dir
  @xcode_build_dir ||= begin
                          temp_xcode_build_name = xcode_build_name
                          if File.exist?(temp_xcode_build_name)
                              Pathname.new(temp_xcode_build_name)
                          else
                              dir = File.join(root_dir,xcode_build_name)
                              Pathname.new(dir)
                          end
                       end
end

#xcode_build_nameObject

编译缓存文件目录,如Xcodebuild的编译缓存目录 如果有配置, 配置完整路径,会使用



150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 150

def xcode_build_name
  @xcode_build_name ||= begin
                            project_root = Pod::Config.instance.project_root
                            path = File.join(project_root.to_s, 'BinArchive.json')

                            if File.exist?(path)
                              config = JSON.parse(File.read(path))
                              @xcode_build_name = config['xcode_build_path']
                            end
                            #默认值,在美柚上使用默认
                            if @xcode_build_name.nil? || Dir.exist?(@xcode_build_name)
                              @xcode_build_name = "xcode-build/Build/Intermediates.noindex/ArchiveIntermediates/#{target_name}/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/"
                            end
                            puts @xcode_build_name
                            @xcode_build_name
                        end
end

#xcode_BuildProductsPath_dirObject

完整的xcodebuild BuildProductsPath输出路径,



182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 182

def xcode_BuildProductsPath_dir
  @xcode_BuildProductsPath_dir ||= begin
                                     temp_xcode_BuildProductsPath_dir = "xcode-build/Build/Intermediates.noindex/ArchiveIntermediates/#{target_name}/BuildProductsPath/"
                                     full_path = File.join(root_dir, temp_xcode_BuildProductsPath_dir)

                                     if (File.exist?(full_path))
                                       Dir.chdir(full_path) do
                                         iphoneos = Dir.glob('*-iphoneos')
                                         if iphoneos.length > 0
                                           full_path = File.join(full_path,iphoneos.first)
                                         else
                                           UI.warn "====== 找不到 *-iphoneos @xcode_BuildProductsPath_dir = #{@xcode_BuildProductsPath_dir}"
                                         end
                                       end
                                     end
                                     Pathname.new(full_path)
                                   end
end

#zip_dirObject



105
106
107
108
109
110
111
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 105

def zip_dir
  @zip_dir ||= begin
                 dir = File.join(root_dir,zip_dir_name)
                 Dir.mkdir(dir) unless File.exist?dir
                 Pathname.new(dir)
               end
end

#zip_dir_nameObject



101
102
103
# File 'lib/cocoapods-fy-bin/config/config_builder.rb', line 101

def zip_dir_name
  "bin-zip"
end