-
Notifications
You must be signed in to change notification settings - Fork 1
/
runPatternCommon.rb
301 lines (292 loc) · 11 KB
/
runPatternCommon.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
require 'timeout'
###############################################################################
# Constant
###############################################################################
OPEN_HEVC_IDX = 1
AVCONV_IDX = 2
HM_IDX = 3
FFMPEG_IDX = 4
###############################################################################
# Global
###############################################################################
#
$appli = []
#
$appli[OPEN_HEVC_IDX] = {}
$appli[OPEN_HEVC_IDX]["option"] = "-n -i"
$appli[OPEN_HEVC_IDX]["output"] = ""
$appli[OPEN_HEVC_IDX]["label"] = "openHEVC"
#
#
$appli[AVCONV_IDX] = {}
$appli[AVCONV_IDX]["option"] = "-decode-checksum 1 -thread_type \"slice\" -i"
$appli[AVCONV_IDX]["output"] = "-f null -"
$appli[AVCONV_IDX]["label"] = "avconv"
#
$appli[HM_IDX] = {}
$appli[HM_IDX]["option"] = "-b"
$appli[HM_IDX]["output"] = ""
$appli[HM_IDX]["label"] = "HM"
#
$appli[FFMPEG_IDX] = {}
$appli[FFMPEG_IDX]["option"] = "-flags unaligned -decode-checksum 1 -thread_type \"slice\" -i"
$appli[FFMPEG_IDX]["output"] = "-vsync drop -f null -"
$appli[FFMPEG_IDX]["label"] = "ffmpeg"
#
###############################################################################
# getopts
###############################################################################
def getopts (argv)
help() if argv.size == 0
$sourcePattern = nil
$exec = nil
$stop = true
$check = true
$yuv = false
$nbThreads = 1
$threadType = 1
$layers = 0
$b10 = false
$idx = 0
for i in (0..argv.size) do
case argv[i]
when "-h" then help();
when "-dir" then $sourcePattern = argv[i+1]
when "-exec" then $exec = argv[i+1]
when "-noStop" then $stop = false
when "-noCheck" then $check = false
when "-yuv" then $yuv = true
when "-p" then $nbThreads = argv[i+1].to_i
when "-f" then $threadType = argv[i+1].to_i
when "-l" then $layers = argv[i+1].to_i
when "-10b" then $b10 = true
when "-idx" then $idx = argv[i+1].to_i
end
end
help() if $sourcePattern == nil or $exec == nil or ($threadType!=1 and $threadType!=2 and $threadType!=4)
$appliIdx = if /hevc/ =~ $exec then OPEN_HEVC_IDX
elsif /TAppDecoder/ =~ $exec then HM_IDX
elsif /ffmpeg/ =~ $exec then FFMPEG_IDX
else AVCONV_IDX end
if $appliIdx == OPEN_HEVC_IDX then
$appli[$appliIdx]["option"] = "-p #{$nbThreads} -f #{$threadType} -l #{$layers} #{$appli[$appliIdx]["option"]}"
if $check == false or $yuv == true then
$appli[$appliIdx]["option"] = "-c #{$appli[$appliIdx]["option"]}"
end
elsif $appliIdx == AVCONV_IDX or $appliIdx == FFMPEG_IDX then
if $threadType == 1 then
$appli[$appliIdx]["option"] = "-flags unaligned -threads #{$nbThreads} -thread_type \"frame\" -i"
elsif $threadType == 2 then
$appli[$appliIdx]["option"] = "-flags unaligned -threads #{$nbThreads} -thread_type \"slice\" -i"
else
$appli[$appliIdx]["option"] = "-flags unaligned -threads #{$nbThreads} -thread_type \"frameslice\" -i"
end
if $check == true and $yuv == false then
$appli[$appliIdx]["option"] = "-decode-checksum 1 #{$appli[$appliIdx]["option"]}"
end
end
end
###############################################################################
# help
###############################################################################
def help ()
puts "==========================================================================="
puts "== runPattern options : =="
puts "== -h : help =="
puts "== -dir : pattern directory path =="
puts "== -exec : exec path =="
puts "== -noStop : not stop when diff is not ok =="
puts "== -noCheck : no check md5 =="
puts "== -yuv : check yuv md5 =="
puts "== -p : nombre of threads for Slice =="
puts "== -f : thread type (1:Frame, 2:Slice, 4:FrameSlice) =="
puts "== -l : layers id to decode =="
puts "== -10b : 10 bits filter =="
puts "== -idx : test only idx source =="
puts "==========================================================================="
exit
end
###############################################################################
# sysIO
###############################################################################
def sysIO (cmd)
begin
sys = nil
Timeout.timeout(120) do
begin
sys = IO.popen(cmd)
ret = sys.readlines
sys.close_read
return ret
ensure
if !sys.closed? then
Process.kill 9, sys.pid # <--- This would solve your problem!
end
end
end
rescue Timeout::Error => ex
if !sys.closed? then
Process.kill 9, sys.pid # <--- This would solve your problem!
end
end
return nil
end
###############################################################################
# getListFile
###############################################################################
def getListFile ()
if File.exists?($sourcePattern) then
pwd = Dir.pwd
Dir.chdir($sourcePattern)
list = Dir.glob("*.bin")
list += Dir.glob("*.bit")
list += Dir.glob("*.265")
list += Dir.glob("*.mp4")
list += Dir.glob("*.hvc")
list += Dir.glob("*.hevc")
list += Dir.glob("*.shvc")
Dir.chdir(pwd)
return list.sort
end
return []
end
###############################################################################
# deleteDir
###############################################################################
def deleteDir (dir)
pwd = Dir.pwd
Dir.chdir(dir)
list = Dir.glob("*")
list.each do |file|
File.delete(file)
end
Dir.chdir(pwd)
Dir.delete(dir)
end
###############################################################################
# printLine
###############################################################################
def printLine(sizeOfLineAll)
for i in 0 ... sizeOfLineAll-1 do print "=" end; puts "="
end
###############################################################################
# getMaxSizeFileName
###############################################################################
def getMaxSizeFileName (listFile)
maxSize = 0
listFile.each do |binFile|
maxSize = binFile.size if binFile.size > maxSize
end
return maxSize
end
###############################################################################
# getFileNameYUV
###############################################################################
def getFileNameYUV (binFile)
return "#{File.basename(binFile, File.extname(binFile))}" if !File.exists?("log")
cmd = "grep frame log"
ret = sysIO(cmd)
return "null" if ret.size == 0
size = ret[ret.size-1].scan(/.*video_size= ([0-9]*x[0-9]*)/)[0][0]
return "#{File.basename(binFile, File.extname(binFile))}_#{size}.yuv"
end
###############################################################################
# save_md5
###############################################################################
def save_md5(md5)
if $appliIdx == AVCONV_IDX or $appliIdx == FFMPEG_IDX then
sysIO("cp log #{$appli[$appliIdx]["label"]}/#{md5}")
else
ret = sysIO("wc -l log")
nbLine = (ret[0].scan(/([0-9]*) */))[0][0].to_i
if $appliIdx == HM_IDX then
sysIO("head -n #{nbLine - 2} log > log_tmp")
sysIO("tail -n #{nbLine - 4} log_tmp > #{$appli[$appliIdx]["label"]}/#{md5}")
File.delete("log_tmp")
elsif $appliIdx == OPEN_HEVC_IDX then
sysIO("head -n #{nbLine - 1} log > #{$appli[$appliIdx]["label"]}/#{md5}")
end
end
end
###############################################################################
# run
###############################################################################
def run (binFile, idxFile, nbFile, maxSize)
File.delete("log") if File.exists?("log")
File.delete("error") if File.exists?("error")
if $check == true and $yuv == true then
if $appliIdx == AVCONV_IDX then
$appli[$appliIdx]["output"] = "-f md5 -"
elsif $appliIdx == FFMPEG_IDX then
$appli[$appliIdx]["output"] = "-vsync drop -f md5 -"
else
$appli[$appliIdx]["output"] = "-o #{getFileNameYUV(binFile)}"
end
end
run = true
nbRun = 0
while (run and nbRun < 3) do
nbRun = nbRun + 1
cmd = "#{$exec} #{$appli[$appliIdx]["option"]} #{$sourcePattern}/#{binFile} #{$appli[$appliIdx]["output"]} > log 2> error"
# puts "#{nbRun} : #{cmd}"
timeStart = Time.now
cmd_ret = sysIO(cmd)
$runTime = Time.now - timeStart
if cmd_ret == nil then
puts "= #{(idxFile).to_s.rjust(nbFile.to_s.size)}/#{nbFile} = #{binFile.ljust(maxSize)} Timeout ="
next
end
if $check == true then
if $yuv == true then
run = check_yuv(binFile, idxFile, nbFile, maxSize)
else
run = check_error(binFile, idxFile, nbFile, maxSize)
end
else
run = check_perfs(binFile, idxFile, nbFile, maxSize)
end
File.delete(getFileNameYUV(binFile)) if File.exist?(getFileNameYUV(binFile))
File.delete("log") if File.exist?("log")
File.delete("error") if File.exist?("error")
end
end
###############################################################################
# main
###############################################################################
def main ()
getopts(ARGV)
if File.exist?($appli[$appliIdx]["label"]) then
deleteDir($appli[$appliIdx]["label"])
end
Dir.mkdir($appli[$appliIdx]["label"])
listFile = getListFile()
nbFile = listFile.length
if nbFile != 0 then
maxSize = getMaxSizeFileName(listFile)
if $check == true and $yuv == true then
if $appliIdx == AVCONV_IDX then
$appli[$appliIdx]["output"] = "-f md5 -"
elsif $appliIdx == FFMPEG_IDX then
$appli[$appliIdx]["output"] = "-vsync drop -f md5 -"
else
$appli[$appliIdx]["output"] = "-o yuv"
end
end
cmd = "#{$exec} #{$appli[$appliIdx]["option"]} binFile #{$appli[$appliIdx]["output"]} > log 2> error"
printLine(cmd.size)
puts cmd
printLine(cmd.size)
listFile.each_with_index do |binFile,idxFile|
if ($idx == 0 or $idx == idxFile+1) then
if ($b10 == false or binFile =~ /.*MAIN10.*/ ) then
run(binFile, idxFile+1, listFile.length, maxSize)
end
elsif ($idx == 0) then
if ($b10 == false or binFile =~ /.*MAIN10.*/ ) then
print "= #{(idxFile+1).to_s.rjust(nbFile.to_s.size)}/#{nbFile} = #{binFile.ljust(maxSize)}"
puts " skip ="
end
end
end
end
end