-
Notifications
You must be signed in to change notification settings - Fork 237
/
coveralls.rb
executable file
·136 lines (104 loc) · 3.64 KB
/
coveralls.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/usr/bin/env ruby
require 'etc'
require 'fileutils'
require 'find'
require 'optparse'
# arraw of source subfolders to exclude
excludedFolders = []
extensionsToProcess = []
coveralls_cmd = "coveralls"
excludeHeaders = false
# create option parser
opts = OptionParser.new
opts.banner = "Usage: coveralls.rb [options]"
opts.on('-e', '--exclude-folder FOLDER', 'Folder to exclude') do |v|
excludedFolders << v
coveralls_cmd.concat(" -e #{v}")
end
opts.on('-h', '--exclude-headers', 'Ignores headers') do |v|
excludeHeaders = true
end
opts.on('-x', '--extension EXT', 'Source file extension to process') do |v|
extensionsToProcess << v
coveralls_cmd.concat(" -x #{v}")
end
opts.on_tail("-?", "--help", "Show this message") do
puts opts
exit
end
# parse the options
begin
opts.parse!(ARGV)
rescue OptionParser::InvalidOption => e
puts e
puts opts
exit(1)
end
# the folders
workingDir = Dir.getwd
derivedDataDir = "#{Etc.getpwuid.dir}/Library/Developer/Xcode/DerivedData/"
outputDir = workingDir + "/gcov"
# create gcov output folder
FileUtils.mkdir outputDir
# pattern to get source file from first line of gcov file
GCOV_SOURCE_PATTERN = Regexp.new(/Source:(.*)/)
# enumerate all gcda files underneath derivedData
Find.find(derivedDataDir) do |gcda_file|
if gcda_file.match(/\.gcda\Z/)
#get just the folder name
gcov_dir = File.dirname(gcda_file)
# cut off absolute working dir to get relative source path
relative_input_path = gcda_file.slice(derivedDataDir.length, gcda_file.length)
puts "\nINPUT: #{relative_input_path}"
#process the file
result = %x( gcov '#{gcda_file}' -o '#{gcov_dir}' )
# filter the resulting output
Dir.glob("*.gcov") do |gcov_file|
firstLine = File.open(gcov_file).readline
match = GCOV_SOURCE_PATTERN.match(firstLine)
if (match)
source_path = match[1]
puts "source: #{source_path} - #{workingDir}"
if (source_path.start_with? workingDir)
# cut off absolute working dir to get relative source path
relative_path = source_path.slice(workingDir.length+1, source_path.length)
extension = File.extname(relative_path)
extension = extension.slice(1, extension.length-1)
puts "#{extension}"
# get the path components
path_comps = relative_path.split(File::SEPARATOR)
shouldProcess = false
exclusionMsg =""
if (excludedFolders.include?(path_comps[0]))
exclusionMsg = "excluded via option"
else
if (excludeHeaders == true && extension == 'h')
exclusionMsg = "excluded header"
else
if (extensionsToProcess.count == 0 || extensionsToProcess.include?(extension))
shouldProcess = true
else
exclusionMsg = "excluded extension"
shouldProcess = false
end
end
end
if (shouldProcess)
puts " - process: #{relative_path}"
FileUtils.mv(gcov_file, outputDir)
else
puts " - ignore: #{relative_path} (#{exclusionMsg})"
FileUtils.rm gcov_file
end
else
puts " - ignore: #{gcov_file} (outside source folder)"
FileUtils.rm gcov_file
end
end
end
end
end
#call the coveralls, exclude some files
system coveralls_cmd
#clean up
FileUtils.rm_rf outputDir