cocoapods-packager-pro 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.coveralls.yml +1 -0
- data/.gitignore +3 -0
- data/.rubocop-cocoapods.yml +71 -0
- data/.rubocop.yml +38 -0
- data/.travis.yml +9 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +129 -0
- data/LICENSE +22 -0
- data/README.md +42 -0
- data/Rakefile +12 -0
- data/cocoapods-packager.gemspec +22 -0
- data/lib/cocoapods-packager/builder.rb +339 -0
- data/lib/cocoapods-packager/framework.rb +66 -0
- data/lib/cocoapods-packager/mangle.rb +32 -0
- data/lib/cocoapods-packager/pod_utils.rb +232 -0
- data/lib/cocoapods-packager/spec_builder.rb +63 -0
- data/lib/cocoapods-packager/symbols.rb +42 -0
- data/lib/cocoapods-packager/user_interface/build_failed_report.rb +15 -0
- data/lib/cocoapods_packager.rb +5 -0
- data/lib/cocoapods_plugin.rb +8 -0
- data/lib/pod/command/package.rb +177 -0
- data/scripts/lstconst.sh +9 -0
- data/scripts/lstsym.sh +8 -0
- data/spec/command/error_spec.rb +81 -0
- data/spec/command/package_spec.rb +410 -0
- data/spec/command/subspecs_spec.rb +30 -0
- data/spec/fixtures/Archs.podspec +13 -0
- data/spec/fixtures/Builder.podspec +25 -0
- data/spec/fixtures/CPDColors.podspec +19 -0
- data/spec/fixtures/FH.podspec +18 -0
- data/spec/fixtures/KFData.podspec +73 -0
- data/spec/fixtures/LibraryConsumerDemo/.gitignore +22 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.pbxproj +343 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/xcshareddata/xcschemes/LibraryConsumer.xcscheme +100 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.h +17 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.m +27 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/Info.plist +40 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/main.m +16 -0
- data/spec/fixtures/LibraryConsumerDemo/Podfile +5 -0
- data/spec/fixtures/LibraryDemo.podspec +14 -0
- data/spec/fixtures/LocalSources/LICENSE +0 -0
- data/spec/fixtures/LocalSources/LocalNikeKit.h +4 -0
- data/spec/fixtures/LocalSources/LocalNikeKit.m +9 -0
- data/spec/fixtures/LocalSources/LocalNikeKit.podspec +19 -0
- data/spec/fixtures/NikeKit.podspec +19 -0
- data/spec/fixtures/OpenSans.podspec +18 -0
- data/spec/fixtures/PackagerTest/.gitignore +21 -0
- data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.pbxproj +539 -0
- data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/xcshareddata/xcschemes/PackagerTest.xcscheme +110 -0
- data/spec/fixtures/PackagerTest/PackagerTest.xcworkspace/contents.xcworkspacedata +1 -0
- data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.h +15 -0
- data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.m +49 -0
- data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Info.plist +38 -0
- data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Prefix.pch +16 -0
- data/spec/fixtures/PackagerTest/PackagerTest/en.lproj/InfoPlist.strings +2 -0
- data/spec/fixtures/PackagerTest/PackagerTest/main.m +18 -0
- data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests-Info.plist +22 -0
- data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests.m +34 -0
- data/spec/fixtures/PackagerTest/PackagerTestTests/en.lproj/InfoPlist.strings +2 -0
- data/spec/fixtures/PackagerTest/Podfile +10 -0
- data/spec/fixtures/PackagerTest/Podfile.lock +32 -0
- data/spec/fixtures/Weakly.podspec +13 -0
- data/spec/fixtures/a.podspec +19 -0
- data/spec/fixtures/foo-bar.podspec +19 -0
- data/spec/fixtures/layer-client-messaging-schema.podspec +13 -0
- data/spec/integration/project_spec.rb +70 -0
- data/spec/pod/utils_spec.rb +58 -0
- data/spec/spec_helper.rb +50 -0
- data/spec/specification/builder_spec.rb +43 -0
- data/spec/specification/spec_builder_spec.rb +61 -0
- data/spec/user_interface/build_failed_report_spec.rb +11 -0
- metadata +222 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
module Framework
|
2
|
+
class Tree
|
3
|
+
attr_reader :headers_path
|
4
|
+
attr_reader :module_map_path
|
5
|
+
attr_reader :resources_path
|
6
|
+
attr_reader :root_path
|
7
|
+
attr_reader :versions_path
|
8
|
+
|
9
|
+
def delete_resources
|
10
|
+
Pathname.new(@resources_path).rmtree
|
11
|
+
(Pathname.new(@fwk_path) + Pathname.new('Resources')).delete
|
12
|
+
end
|
13
|
+
|
14
|
+
def initialize(name, platform, embedded)
|
15
|
+
@name = name
|
16
|
+
@platform = platform
|
17
|
+
@embedded = embedded
|
18
|
+
end
|
19
|
+
|
20
|
+
def make
|
21
|
+
make_root
|
22
|
+
make_framework
|
23
|
+
make_headers
|
24
|
+
make_resources
|
25
|
+
make_current_version
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def make_current_version
|
31
|
+
current_version_path = @versions_path + Pathname.new('../Current')
|
32
|
+
`ln -sf A #{current_version_path}`
|
33
|
+
`ln -sf Versions/Current/Headers #{@fwk_path}/`
|
34
|
+
`ln -sf Versions/Current/Resources #{@fwk_path}/`
|
35
|
+
`ln -sf Versions/Current/#{@name} #{@fwk_path}/`
|
36
|
+
end
|
37
|
+
|
38
|
+
def make_framework
|
39
|
+
@fwk_path = @root_path + Pathname.new(@name + '.framework')
|
40
|
+
@fwk_path.mkdir unless @fwk_path.exist?
|
41
|
+
|
42
|
+
@module_map_path = @fwk_path + Pathname.new('Modules')
|
43
|
+
@versions_path = @fwk_path + Pathname.new('Versions/A')
|
44
|
+
end
|
45
|
+
|
46
|
+
def make_headers
|
47
|
+
@headers_path = @versions_path + Pathname.new('Headers')
|
48
|
+
@headers_path.mkpath unless @headers_path.exist?
|
49
|
+
end
|
50
|
+
|
51
|
+
def make_resources
|
52
|
+
@resources_path = @versions_path + Pathname.new('Resources')
|
53
|
+
@resources_path.mkpath unless @resources_path.exist?
|
54
|
+
end
|
55
|
+
|
56
|
+
def make_root
|
57
|
+
@root_path = Pathname.new(@platform)
|
58
|
+
|
59
|
+
if @embedded
|
60
|
+
@root_path += Pathname.new(@name + '.embeddedframework')
|
61
|
+
end
|
62
|
+
|
63
|
+
@root_path.mkpath unless @root_path.exist?
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module Symbols
|
2
|
+
#
|
3
|
+
# performs symbol aliasing
|
4
|
+
#
|
5
|
+
# for each dependency:
|
6
|
+
# - determine symbols for classes and global constants
|
7
|
+
# - alias each symbol to Pod#{pod_name}_#{symbol}
|
8
|
+
# - put defines into `GCC_PREPROCESSOR_DEFINITIONS` for passing to Xcode
|
9
|
+
#
|
10
|
+
def mangle_for_pod_dependencies(pod_name, sandbox_root)
|
11
|
+
pod_libs = Dir.glob("#{sandbox_root}/build/lib*.a").select do |file|
|
12
|
+
file !~ /lib#{pod_name}.a$/
|
13
|
+
end
|
14
|
+
|
15
|
+
dummy_alias = alias_symbol "PodsDummy_#{pod_name}", pod_name
|
16
|
+
all_syms = [dummy_alias]
|
17
|
+
|
18
|
+
pod_libs.each do |pod_lib|
|
19
|
+
syms = Symbols.symbols_from_library(pod_lib)
|
20
|
+
all_syms += syms.map! { |sym| alias_symbol sym, pod_name }
|
21
|
+
end
|
22
|
+
|
23
|
+
"GCC_PREPROCESSOR_DEFINITIONS='$(inherited) #{all_syms.uniq.join(' ')}'"
|
24
|
+
end
|
25
|
+
|
26
|
+
def alias_symbol(sym, pod_name)
|
27
|
+
pod_name = pod_name.tr('-', '_')
|
28
|
+
sym + "=Pod#{pod_name}_" + sym
|
29
|
+
end
|
30
|
+
|
31
|
+
module_function :mangle_for_pod_dependencies, :alias_symbol
|
32
|
+
end
|
@@ -0,0 +1,232 @@
|
|
1
|
+
module Pod
|
2
|
+
class Command
|
3
|
+
class Package < Command
|
4
|
+
private
|
5
|
+
|
6
|
+
def build_static_sandbox(dynamic)
|
7
|
+
static_sandbox_root = if dynamic
|
8
|
+
Pathname.new(config.sandbox_root + '/Static')
|
9
|
+
else
|
10
|
+
Pathname.new(config.sandbox_root)
|
11
|
+
end
|
12
|
+
Sandbox.new(static_sandbox_root)
|
13
|
+
end
|
14
|
+
|
15
|
+
def install_pod(platform_name, sandbox)
|
16
|
+
podfile = podfile_from_spec(
|
17
|
+
@path,
|
18
|
+
@spec.name,
|
19
|
+
platform_name,
|
20
|
+
@spec.deployment_target(platform_name),
|
21
|
+
@subspecs,
|
22
|
+
@spec_sources
|
23
|
+
)
|
24
|
+
|
25
|
+
static_installer = Installer.new(sandbox, podfile)
|
26
|
+
static_installer.install!
|
27
|
+
|
28
|
+
unless static_installer.nil?
|
29
|
+
static_installer.pods_project.targets.each do |target|
|
30
|
+
target.build_configurations.each do |config|
|
31
|
+
config.build_settings['CLANG_MODULES_AUTOLINK'] = 'NO'
|
32
|
+
config.build_settings['GCC_GENERATE_DEBUGGING_SYMBOLS'] = 'NO'
|
33
|
+
end
|
34
|
+
end
|
35
|
+
static_installer.pods_project.save
|
36
|
+
end
|
37
|
+
|
38
|
+
static_installer
|
39
|
+
end
|
40
|
+
|
41
|
+
def podfile_from_spec(path, spec_name, platform_name, deployment_target, subspecs, sources)
|
42
|
+
options = {}
|
43
|
+
if path
|
44
|
+
if @local
|
45
|
+
options[:path] = path
|
46
|
+
else
|
47
|
+
options[:podspec] = path
|
48
|
+
end
|
49
|
+
end
|
50
|
+
options[:subspecs] = subspecs if subspecs
|
51
|
+
Pod::Podfile.new do
|
52
|
+
sources.each { |s| source s }
|
53
|
+
platform(platform_name, deployment_target)
|
54
|
+
pod(spec_name, options)
|
55
|
+
|
56
|
+
install!('cocoapods',
|
57
|
+
:integrate_targets => false,
|
58
|
+
:deterministic_uuids => false)
|
59
|
+
|
60
|
+
target('packager') do
|
61
|
+
inherit! :complete
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
def binary_only?(spec)
|
67
|
+
deps = spec.dependencies.map { |dep| spec_with_name(dep.name) }
|
68
|
+
[spec, *deps].each do |specification|
|
69
|
+
%w(vendored_frameworks vendored_libraries).each do |attrib|
|
70
|
+
if specification.attributes_hash[attrib]
|
71
|
+
return true
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
false
|
77
|
+
end
|
78
|
+
|
79
|
+
def spec_with_name(name)
|
80
|
+
return if name.nil?
|
81
|
+
|
82
|
+
set = Pod::Config.instance.sources_manager.search(Dependency.new(name))
|
83
|
+
return nil if set.nil?
|
84
|
+
|
85
|
+
set.specification.root
|
86
|
+
end
|
87
|
+
|
88
|
+
def spec_with_path(path)
|
89
|
+
return if path.nil? || !Pathname.new(path).exist?
|
90
|
+
|
91
|
+
@path = Pathname.new(path).expand_path
|
92
|
+
|
93
|
+
if @path.directory?
|
94
|
+
help! @path + ': is a directory.'
|
95
|
+
return
|
96
|
+
end
|
97
|
+
|
98
|
+
unless ['.podspec', '.json'].include? @path.extname
|
99
|
+
help! @path + ': is not a podspec.'
|
100
|
+
return
|
101
|
+
end
|
102
|
+
|
103
|
+
Specification.from_file(@path)
|
104
|
+
end
|
105
|
+
|
106
|
+
#----------------------
|
107
|
+
# Dynamic Project Setup
|
108
|
+
#----------------------
|
109
|
+
|
110
|
+
def build_dynamic_sandbox(_static_sandbox, _static_installer)
|
111
|
+
dynamic_sandbox_root = Pathname.new(config.sandbox_root + '/Dynamic')
|
112
|
+
dynamic_sandbox = Sandbox.new(dynamic_sandbox_root)
|
113
|
+
|
114
|
+
dynamic_sandbox
|
115
|
+
end
|
116
|
+
|
117
|
+
def install_dynamic_pod(dynamic_sandbox, static_sandbox, static_installer)
|
118
|
+
# 1 Create a dynamic target for only the spec pod.
|
119
|
+
dynamic_target = build_dynamic_target(dynamic_sandbox, static_installer)
|
120
|
+
|
121
|
+
# 2. Build a new xcodeproj in the dynamic_sandbox with only the spec pod as a target.
|
122
|
+
project = prepare_pods_project(dynamic_sandbox, dynamic_target.name, static_installer)
|
123
|
+
|
124
|
+
# 3. Copy the source directory for the dynamic framework from the static sandbox.
|
125
|
+
copy_dynamic_target(static_sandbox, dynamic_target, dynamic_sandbox)
|
126
|
+
|
127
|
+
# 5. Update the file accecssors.
|
128
|
+
dynamic_target = update_file_accessors(dynamic_target, dynamic_sandbox)
|
129
|
+
|
130
|
+
# 6. Create the file references.
|
131
|
+
install_file_references(dynamic_sandbox, [dynamic_target], project)
|
132
|
+
|
133
|
+
# 7. Install the target.
|
134
|
+
install_library(dynamic_sandbox, dynamic_target)
|
135
|
+
|
136
|
+
# 9. Write the actual Xcodeproject to the dynamic sandbox.
|
137
|
+
write_pod_project(project, dynamic_sandbox)
|
138
|
+
end
|
139
|
+
|
140
|
+
def build_dynamic_target(dynamic_sandbox, static_installer)
|
141
|
+
spec_targets = static_installer.pod_targets.select do |target|
|
142
|
+
target.name == @spec.name
|
143
|
+
end
|
144
|
+
static_target = spec_targets[0]
|
145
|
+
|
146
|
+
dynamic_target = Pod::PodTarget.new(static_target.specs, static_target.target_definitions, dynamic_sandbox)
|
147
|
+
dynamic_target.host_requires_frameworks = true
|
148
|
+
dynamic_target.user_build_configurations = static_target.user_build_configurations
|
149
|
+
dynamic_target
|
150
|
+
end
|
151
|
+
|
152
|
+
def prepare_pods_project(dynamic_sandbox, spec_name, installer)
|
153
|
+
# Create a new pods project
|
154
|
+
pods_project = Pod::Project.new(dynamic_sandbox.project_path)
|
155
|
+
|
156
|
+
# Update build configurations
|
157
|
+
installer.analysis_result.all_user_build_configurations.each do |name, type|
|
158
|
+
pods_project.add_build_configuration(name, type)
|
159
|
+
end
|
160
|
+
|
161
|
+
# Add the pod group for only the dynamic framework
|
162
|
+
local = dynamic_sandbox.local?(spec_name)
|
163
|
+
path = dynamic_sandbox.pod_dir(spec_name)
|
164
|
+
was_absolute = dynamic_sandbox.local_path_was_absolute?(spec_name)
|
165
|
+
pods_project.add_pod_group(spec_name, path, local, was_absolute)
|
166
|
+
|
167
|
+
dynamic_sandbox.project = pods_project
|
168
|
+
pods_project
|
169
|
+
end
|
170
|
+
|
171
|
+
def copy_dynamic_target(static_sandbox, _dynamic_target, dynamic_sandbox)
|
172
|
+
command = "cp -a #{static_sandbox.root}/#{@spec.name} #{dynamic_sandbox.root}"
|
173
|
+
`#{command}`
|
174
|
+
end
|
175
|
+
|
176
|
+
def update_file_accessors(dynamic_target, dynamic_sandbox)
|
177
|
+
pod_root = dynamic_sandbox.pod_dir(dynamic_target.root_spec.name)
|
178
|
+
|
179
|
+
path_list = Sandbox::PathList.new(pod_root)
|
180
|
+
file_accessors = dynamic_target.specs.map do |spec|
|
181
|
+
Sandbox::FileAccessor.new(path_list, spec.consumer(dynamic_target.platform))
|
182
|
+
end
|
183
|
+
|
184
|
+
dynamic_target.file_accessors = file_accessors
|
185
|
+
dynamic_target
|
186
|
+
end
|
187
|
+
|
188
|
+
def install_file_references(dynamic_sandbox, pod_targets, pods_project)
|
189
|
+
installer = Pod::Installer::Xcode::PodsProjectGenerator::FileReferencesInstaller.new(dynamic_sandbox, pod_targets, pods_project)
|
190
|
+
installer.install!
|
191
|
+
end
|
192
|
+
|
193
|
+
def install_library(dynamic_sandbox, dynamic_target)
|
194
|
+
return if dynamic_target.target_definitions.flat_map(&:dependencies).empty?
|
195
|
+
target_installer = Pod::Installer::Xcode::PodsProjectGenerator::PodTargetInstaller.new(dynamic_sandbox, dynamic_target)
|
196
|
+
target_installer.install!
|
197
|
+
|
198
|
+
# Installs System Frameworks
|
199
|
+
dynamic_target.file_accessors.each do |file_accessor|
|
200
|
+
file_accessor.spec_consumer.frameworks.each do |framework|
|
201
|
+
if dynamic_target.should_build?
|
202
|
+
dynamic_target.native_target.add_system_framework(framework)
|
203
|
+
end
|
204
|
+
end
|
205
|
+
|
206
|
+
file_accessor.spec_consumer.libraries.each do |library|
|
207
|
+
if dynamic_target.should_build?
|
208
|
+
dynamic_target.native_target.add_system_library(library)
|
209
|
+
end
|
210
|
+
end
|
211
|
+
end
|
212
|
+
end
|
213
|
+
|
214
|
+
def write_pod_project(dynamic_project, dynamic_sandbox)
|
215
|
+
UI.message "- Writing Xcode project file to #{UI.path dynamic_sandbox.project_path}" do
|
216
|
+
dynamic_project.pods.remove_from_project if dynamic_project.pods.empty?
|
217
|
+
dynamic_project.development_pods.remove_from_project if dynamic_project.development_pods.empty?
|
218
|
+
dynamic_project.sort(:groups_position => :below)
|
219
|
+
dynamic_project.recreate_user_schemes(false)
|
220
|
+
|
221
|
+
# Edit search paths so that we can find our dependency headers
|
222
|
+
dynamic_project.targets.first.build_configuration_list.build_configurations.each do |config|
|
223
|
+
config.build_settings['HEADER_SEARCH_PATHS'] = "$(inherited) #{Dir.pwd}/Pods/Static/Headers/**"
|
224
|
+
config.build_settings['USER_HEADER_SEARCH_PATHS'] = "$(inherited) #{Dir.pwd}/Pods/Static/Headers/**"
|
225
|
+
config.build_settings['OTHER_LDFLAGS'] = '$(inherited) -ObjC'
|
226
|
+
end
|
227
|
+
dynamic_project.save
|
228
|
+
end
|
229
|
+
end
|
230
|
+
end
|
231
|
+
end
|
232
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
module Pod
|
2
|
+
class SpecBuilder
|
3
|
+
def initialize(spec, source, embedded, dynamic)
|
4
|
+
@spec = spec
|
5
|
+
@source = source.nil? ? '{ :path => \'.\' }' : source
|
6
|
+
@embedded = embedded
|
7
|
+
@dynamic = dynamic
|
8
|
+
end
|
9
|
+
|
10
|
+
def framework_path
|
11
|
+
if @embedded
|
12
|
+
@spec.name + '.embeddedframework' + '/' + @spec.name + '.framework'
|
13
|
+
else
|
14
|
+
@spec.name + '.framework'
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def spec_platform(platform)
|
19
|
+
fwk_base = platform.name.to_s + '/' + framework_path
|
20
|
+
spec = <<RB
|
21
|
+
s.#{platform.name}.deployment_target = '#{platform.deployment_target}'
|
22
|
+
s.#{platform.name}.vendored_framework = '#{fwk_base}'
|
23
|
+
RB
|
24
|
+
|
25
|
+
%w(frameworks weak_frameworks libraries requires_arc xcconfig).each do |attribute|
|
26
|
+
attributes_hash = @spec.attributes_hash[platform.name.to_s]
|
27
|
+
next if attributes_hash.nil?
|
28
|
+
value = attributes_hash[attribute]
|
29
|
+
next if value.nil?
|
30
|
+
|
31
|
+
value = "'#{value}'" if value.class == String
|
32
|
+
spec += " s.#{platform.name}.#{attribute} = #{value}\n"
|
33
|
+
end
|
34
|
+
spec
|
35
|
+
end
|
36
|
+
|
37
|
+
def spec_metadata
|
38
|
+
spec = spec_header
|
39
|
+
spec
|
40
|
+
end
|
41
|
+
|
42
|
+
def spec_close
|
43
|
+
"end\n"
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def spec_header
|
49
|
+
spec = "Pod::Spec.new do |s|\n"
|
50
|
+
|
51
|
+
%w(name version summary license authors homepage description social_media_url
|
52
|
+
docset_url documentation_url screenshots frameworks weak_frameworks libraries requires_arc
|
53
|
+
deployment_target xcconfig).each do |attribute|
|
54
|
+
value = @spec.attributes_hash[attribute]
|
55
|
+
next if value.nil?
|
56
|
+
value = value.dump if value.class == String
|
57
|
+
spec += " s.#{attribute} = #{value}\n"
|
58
|
+
end
|
59
|
+
|
60
|
+
spec + " s.source = #{@source}\n\n"
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
module Symbols
|
2
|
+
def symbols_from_library(library)
|
3
|
+
syms = `nm -gU #{library}`.split("\n")
|
4
|
+
result = classes_from_symbols(syms)
|
5
|
+
result += constants_from_symbols(syms)
|
6
|
+
|
7
|
+
result.select do |e|
|
8
|
+
case e
|
9
|
+
when 'llvm.cmdline', 'llvm.embedded.module', '__clang_at_available_requires_core_foundation_framework'
|
10
|
+
false
|
11
|
+
else
|
12
|
+
true
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
module_function :symbols_from_library
|
18
|
+
|
19
|
+
private
|
20
|
+
|
21
|
+
def classes_from_symbols(syms)
|
22
|
+
classes = syms.select { |klass| klass[/OBJC_CLASS_\$_/] }
|
23
|
+
classes = classes.uniq
|
24
|
+
classes.map! { |klass| klass.gsub(/^.*\$_/, '') }
|
25
|
+
end
|
26
|
+
|
27
|
+
def constants_from_symbols(syms)
|
28
|
+
consts = syms.select { |const| const[/ S /] }
|
29
|
+
consts = consts.select { |const| const !~ /OBJC|\.eh/ }
|
30
|
+
consts = consts.uniq
|
31
|
+
consts = consts.map! { |const| const.gsub(/^.* _/, '') }
|
32
|
+
|
33
|
+
other_consts = syms.select { |const| const[/ T /] }
|
34
|
+
other_consts = other_consts.uniq
|
35
|
+
other_consts = other_consts.map! { |const| const.gsub(/^.* _/, '') }
|
36
|
+
|
37
|
+
consts + other_consts
|
38
|
+
end
|
39
|
+
|
40
|
+
module_function :classes_from_symbols
|
41
|
+
module_function :constants_from_symbols
|
42
|
+
end
|