Class: CBin::Config::Builder
- Inherits:
- 
      Object
      
        - Object
- CBin::Config::Builder
 
- Includes:
- Pod
- Defined in:
- lib/cocoapods-bb-bin/config/config_builder.rb
Class Method Summary collapse
Instance Method Summary collapse
- #binary_json_dir ⇒ Object
- #binary_json_dir_name ⇒ Object
- #clean ⇒ Object
- #framework_file(spec) ⇒ Object
- #framework_name(spec) ⇒ Object
- #framework_name_version(spec) ⇒ Object
- #framework_zip_file(spec) ⇒ Object
- 
  
    
      #gen_dir  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    制作二进制打包 工程目录. 
- 
  
    
      #gen_name  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    制作二进制打包 工程目录. 
- 
  
    
      #ignore_git_list  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    忽略制作二进制组件的 git. 
- #ignore_http_list ⇒ Object
- 
  
    
      #initialize  ⇒ Builder 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Builder. 
- #library_file(spec) ⇒ Object
- #library_name(spec) ⇒ Object
- #library_name_version(name, version) ⇒ Object
- 
  
    
      #load_build_config  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    加载配置项. 
- #local_psec_dir ⇒ Object
- 
  
    
      #local_spec_dir_name  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    本地. 
- 
  
    
      #root_dir  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    处理编译产物后存储根目录,会存放spec、 json、zip的父目录,默认是工程的同级目录下,“#basename-build-temp”. 
- 
  
    
      #target_name  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    编译target名,如 seeyou. 
- 
  
    
      #white_pod_list  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    制作二进制 白名单. 
- #xcframework_file(spec) ⇒ Object
- #xcframework_name(spec) ⇒ Object
- #xcframework_name_version(spec) ⇒ Object
- #xcframework_zip_file(spec) ⇒ Object
- 
  
    
      #xcode_build_dir  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    完整的xcodebuild 输出路径. 
- 
  
    
      #xcode_build_name  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    编译缓存文件目录,如Xcodebuild的编译缓存目录 如果有配置, 配置完整路径,会使用. 
- 
  
    
      #xcode_BuildProductsPath_dir  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    完整的xcodebuild BuildProductsPath输出路径,. 
- #zip_dir ⇒ Object
- #zip_dir_name ⇒ Object
Methods included from Pod
Constructor Details
#initialize ⇒ Builder
Returns a new instance of Builder.
| 14 15 16 17 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 14 def initialize load_build_config # clean end | 
Class Method Details
.instance ⇒ Object
| 10 11 12 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 10 def self.instance @instance ||= new end | 
Instance Method Details
#binary_json_dir ⇒ Object
| 134 135 136 137 138 139 140 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 134 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_name ⇒ Object
| 130 131 132 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 130 def binary_json_dir_name "bin-json" end | 
#clean ⇒ Object
| 41 42 43 44 45 46 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 41 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_file(spec) ⇒ Object
| 90 91 92 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 90 def framework_file(spec) File.join(zip_dir_name, framework_name(spec)) end | 
#framework_name(spec) ⇒ Object
| 78 79 80 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 78 def framework_name(spec) "#{spec.name}.framework" end | 
#framework_name_version(spec) ⇒ Object
| 82 83 84 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 82 def framework_name_version(spec) "#{spec.name}.framework_#{spec.version}" end | 
#framework_zip_file(spec) ⇒ Object
| 86 87 88 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 86 def framework_zip_file(spec) File.join(zip_dir_name, framework_name_version(spec)) end | 
#gen_dir ⇒ Object
制作二进制打包 工程目录
| 54 55 56 57 58 59 60 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 54 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_name ⇒ Object
制作二进制打包 工程目录
| 49 50 51 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 49 def gen_name 'bin-archive' end | 
#ignore_git_list ⇒ Object
忽略制作二进制组件的 git
| 233 234 235 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 233 def ignore_git_list @ignore_git_list end | 
#ignore_http_list ⇒ Object
| 237 238 239 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 237 def ignore_http_list @ignore_http_list end | 
#library_file(spec) ⇒ Object
| 101 102 103 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 101 def library_file(spec) File.join(zip_dir_name, library_name(spec)) end | 
#library_name(spec) ⇒ Object
| 94 95 96 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 94 def library_name(spec) library_name_version(spec.name, spec.version) end | 
#library_name_version(name, version) ⇒ Object
| 98 99 100 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 98 def library_name_version(name,version) "bin_#{name}_#{version}" end | 
#load_build_config ⇒ Object
加载配置项
| 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 20 def load_build_config @white_pod_list = [] @ignore_git_list = [] @ignore_http_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 "====== 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'] UI.warn "====== ignore_http_list = #{@ignore_http_list}" if @ignore_http_list @xcode_build_name = config['xcode_build_path'] @root_dir = config['root_dir'] unless config['root_dir'].nil? end end | 
#local_psec_dir ⇒ Object
| 122 123 124 125 126 127 128 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 122 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_name ⇒ Object
本地
| 118 119 120 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 118 def local_spec_dir_name "bin-spec" end | 
#root_dir ⇒ Object
处理编译产物后存储根目录,会存放spec、 json、zip的父目录,默认是工程的同级目录下,“#basename-build-temp”
| 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 211 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 root_name = File.join(parent_dir,"/build/#{basename}") # 统一修改build目录 unless File.exist?(root_name) require "fileutils" FileUtils.mkdir_p(root_name) end # FileUtils.mkdir_p(root_name) unless File.exists?(root_name) # require 'fileutils' Pathname.new(root_name) end end | 
#target_name ⇒ Object
编译target名,如 seeyou
| 145 146 147 148 149 150 151 152 153 154 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 145 def target_name podfile_path = Pod::Config.instance.podfile_path unless podfile_path return "" end @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 | 
#white_pod_list ⇒ Object
制作二进制 白名单
| 229 230 231 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 229 def white_pod_list @white_pod_list end | 
#xcframework_file(spec) ⇒ Object
| 74 75 76 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 74 def xcframework_file(spec) File.join(zip_dir_name, xcframework_name(spec)) end | 
#xcframework_name(spec) ⇒ Object
| 62 63 64 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 62 def xcframework_name(spec) "#{spec.name}.xcframework" end | 
#xcframework_name_version(spec) ⇒ Object
| 66 67 68 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 66 def xcframework_name_version(spec) "#{spec.name}.xcframework_#{spec.version}" end | 
#xcframework_zip_file(spec) ⇒ Object
| 70 71 72 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 70 def xcframework_zip_file(spec) File.join(zip_dir_name, xcframework_name_version(spec)) end | 
#xcode_build_dir ⇒ Object
完整的xcodebuild 输出路径
| 178 179 180 181 182 183 184 185 186 187 188 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 178 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_name ⇒ Object
编译缓存文件目录,如Xcodebuild的编译缓存目录如果有配置, 配置完整路径,会使用
| 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 158 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_dir ⇒ Object
完整的xcodebuild BuildProductsPath输出路径,
| 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 190 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_dir ⇒ Object
| 109 110 111 112 113 114 115 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 109 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_name ⇒ Object
| 105 106 107 | # File 'lib/cocoapods-bb-bin/config/config_builder.rb', line 105 def zip_dir_name "bin-zip" end |