forked from openpreserve/jpylyzer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjpylyzer.py
506 lines (414 loc) · 17.3 KB
/
jpylyzer.py
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
#! /usr/bin/env python
#
#
#
# jpylyzer
#
# Requires: Python 2.7 (older versions won't work) OR Python 3.2 or more recent
# (Python 3.0 and 3.1 won't work either!)
#
# Copyright (C) 2011, 2012 Johan van der Knijff, Koninklijke Bibliotheek -
# National Library of the Netherlands
#
# Contributors:
# Rene van der Ark (refactoring of original code)
# Lars Buitinck
# Adam Retter, The National Archives, UK. <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import os
import time
import imp
import glob
import struct
import argparse
import config
import platform
import codecs
import etpatch as ET
import fnmatch
import xml.etree.ElementTree as ETree
from boxvalidator import BoxValidator
from byteconv import bytesToText
from shared import printWarning
scriptPath, scriptName = os.path.split(sys.argv[0])
__version__= "1.7.0"
ERR_CODE_NO_IMAGES = -7
UTF8_ENCODING = "UTF-8"
PYTHON_VERSION=sys.version
PYTHON_2="2"
PYTHON_3="3"
# Create parser
parser = argparse.ArgumentParser(description="JP2 image validator and properties extractor")
# list of existing files to be analysed
existingFiles = []
def main_is_frozen():
return (hasattr(sys, "frozen") or # new py2exe
hasattr(sys, "importers") # old py2exe
or imp.is_frozen("__main__")) # tools/freeze
def get_main_dir():
if main_is_frozen():
return os.path.dirname(sys.executable)
return os.path.dirname(sys.argv[0])
def readFileBytes(file):
# Read file, return contents as a byte object
# Open file
f = open(file,"rb")
# Put contents of file into a byte object.
fileData=f.read()
f.close()
return(fileData)
def generatePropertiesRemapTable():
# Generates nested dictionary which is used to map 'raw' property values
# (mostly integer values) to corresponding text descriptions
# Master dictionary for mapping of text descriptions to enumerated values
# Key: corresponds to parameter tag name
# Value: sub-dictionary with mappings for all property values
enumerationsMap={}
# Sub-dictionaries for individual properties
# Generic 0 = no, 1=yes mapping (used for various properties)
yesNoMap={}
yesNoMap[0]="no"
yesNoMap[1]="yes"
# Bits per component: sign (Image HeaderBox, Bits Per Component Box, SIZ header
# in codestream)
signMap={}
signMap[0]="unsigned"
signMap[1]="signed"
# Compression type (Image Header Box)
cMap={}
cMap[7]="jpeg2000"
# meth (Colour Specification Box)
methMap={}
methMap[1]="Enumerated"
methMap[2]="Restricted ICC"
methMap[3]="Any ICC" # JPX only
methMap[4]="Vendor Colour" # JPX only
# enumCS (Colour Specification Box)
enumCSMap={}
enumCSMap[16]="sRGB"
enumCSMap[17]="greyscale"
enumCSMap[18]="sYCC"
# Profile Class (ICC)
profileClassMap={}
profileClassMap[b'scnr']="Input Device Profile"
profileClassMap[b'mntr']="Display Device Profile"
profileClassMap[b'prtr']="Output Device Profile"
profileClassMap[b'link']="DeviceLink Profile"
profileClassMap[b'spac']="ColorSpace Conversion Profile"
profileClassMap[b'abst']="Abstract Profile"
profileClassMap[b'nmcl']="Named Colour Profile"
# Primary Platform (ICC)
primaryPlatformMap={}
primaryPlatformMap[b'APPL']="Apple Computer, Inc."
primaryPlatformMap[b'MSFT']="Microsoft Corporation"
primaryPlatformMap[b'SGI']="Silicon Graphics, Inc."
primaryPlatformMap[b'SUNW']="Sun Microsystems, Inc."
# Transparency (ICC)
transparencyMap={}
transparencyMap[0]="Reflective"
transparencyMap[1]="Transparent"
# Glossiness (ICC)
glossinessMap={}
glossinessMap[0]="Glossy"
glossinessMap[1]="Matte"
# Polarity (ICC)
polarityMap={}
polarityMap[0]="Positive"
polarityMap[1]="Negative"
# Colour (ICC)
colourMap={}
colourMap[0]="Colour"
colourMap[1]="Black and white"
# Rendering intent (ICC)
renderingIntentMap={}
renderingIntentMap[0]="Perceptual"
renderingIntentMap[1]="Media-Relative Colorimetric"
renderingIntentMap[2]="Saturation"
renderingIntentMap[3]="ICC-Absolute Colorimetric"
# mTyp (Component Mapping box)
mTypMap={}
mTypMap[0]="direct use"
mTypMap[1]="palette mapping"
# Channel type (Channel Definition Box)
cTypMap={}
cTypMap[0]="colour"
cTypMap[1]="opacity"
cTypMap[2]="premultiplied opacity"
cTypMap[65535]="not specified"
# Channel association (Channel Definition Box)
cAssocMap={}
cAssocMap[0]="all colours"
cAssocMap[65535]="no colours"
# Decoder capabilities, rsiz (Codestream, SIZ)
rsizMap={}
rsizMap[0]="ISO/IEC 15444-1" # Does this correspiond to Profile 2??
rsizMap[1]="Profile 0"
rsizMap[2]="Profile 1"
# Progression order (Codestream, COD)
orderMap={}
orderMap[0]="LRCP"
orderMap[1]="RLCP"
orderMap[2]="RPCL"
orderMap[3]="PCRL"
orderMap[4]="CPRL"
# Transformation type (Codestream, COD)
transformationMap={}
transformationMap[0]="9-7 irreversible"
transformationMap[1]="5-3 reversible"
# Quantization style (Codestream, QCD)
qStyleMap={}
qStyleMap[0]="no quantization"
qStyleMap[1]="scalar derived"
qStyleMap[2]="scalar expounded"
# Registration value (Codestream, COM)
registrationMap={}
registrationMap[0]="binary"
registrationMap[1]="ISO/IEC 8859-15 (Latin)"
# Add sub-dictionaries to master dictionary, using tag name as key
enumerationsMap['unkC']=yesNoMap
enumerationsMap['iPR']=yesNoMap
enumerationsMap['profileClass']=profileClassMap
enumerationsMap['primaryPlatform']=primaryPlatformMap
enumerationsMap['embeddedProfile']=yesNoMap
enumerationsMap['profileCannotBeUsedIndependently']=yesNoMap
enumerationsMap['transparency']=transparencyMap
enumerationsMap['glossiness']=glossinessMap
enumerationsMap['polarity']=polarityMap
enumerationsMap['colour']=colourMap
enumerationsMap['renderingIntent']=renderingIntentMap
enumerationsMap['bSign']=signMap
enumerationsMap['mTyp']=mTypMap
enumerationsMap['precincts']=yesNoMap
enumerationsMap['sop']=yesNoMap
enumerationsMap['eph']=yesNoMap
enumerationsMap['multipleComponentTransformation']=yesNoMap
enumerationsMap['codingBypass']=yesNoMap
enumerationsMap['resetOnBoundaries']=yesNoMap
enumerationsMap['termOnEachPass']=yesNoMap
enumerationsMap['vertCausalContext']=yesNoMap
enumerationsMap['predTermination']=yesNoMap
enumerationsMap['segmentationSymbols']=yesNoMap
enumerationsMap['bPCSign']=signMap
enumerationsMap['ssizSign']=signMap
enumerationsMap['c']=cMap
enumerationsMap['meth']=methMap
enumerationsMap['enumCS']=enumCSMap
enumerationsMap['cTyp']=cTypMap
enumerationsMap['cAssoc']=cAssocMap
enumerationsMap['order']=orderMap
enumerationsMap['transformation']=transformationMap
enumerationsMap['rsiz']=rsizMap
enumerationsMap['qStyle']=qStyleMap
enumerationsMap['rcom']=registrationMap
return(enumerationsMap)
def checkOneFile(file):
# Process one file and return analysis result as text string (which contains
# formatted XML)
fileData = readFileBytes(file)
isValidJP2, tests, characteristics = BoxValidator("JP2", fileData).validate() #validateJP2(fileData)
# Generate property values remap table
remapTable = generatePropertiesRemapTable()
# Create printable version of tests and characteristics tree
tests.makeHumanReadable()
characteristics.makeHumanReadable(remapTable)
# Create output elementtree object
root=ET.Element('jpylyzer')
# Create elements for storing tool and file meta info
toolInfo=ET.Element('toolInfo')
fileInfo=ET.Element('fileInfo')
# File name and path may contain non-ASCII characters, decoding to Latin should
# (hopefully) prevent any Unicode decode errors. Elementtree will then deal with any non-ASCII
# characters by replacing them with numeric entity references
try:
# This works in Python 2.7, but raises error in 3.x (no decode attribute for str type!)
fileName=os.path.basename(file).decode("iso-8859-15","strict")
filePath=os.path.abspath(file).decode("iso-8859-15","strict")
except AttributeError:
# This works in Python 3.x, but goes wrong withh non-ASCII chars in 2.7
fileName=os.path.basename(file)
filePath=os.path.abspath(file)
# Produce some general tool and file meta info
toolInfo.appendChildTagWithText("toolName", scriptName)
toolInfo.appendChildTagWithText("toolVersion", __version__)
fileInfo.appendChildTagWithText("fileName", fileName)
fileInfo.appendChildTagWithText("filePath", filePath)
fileInfo.appendChildTagWithText("fileSizeInBytes", str(os.path.getsize(file)))
fileInfo.appendChildTagWithText("fileLastModified", time.ctime(os.path.getmtime(file)))
# Append to root
root.append(toolInfo)
root.append(fileInfo)
# Add validation outcome
root.appendChildTagWithText("isValidJP2", str(isValidJP2))
# Append test results and characteristics to root
root.append(tests)
root.append(characteristics)
return(root)
def checkNullArgs(args):
# This method checks if the input arguments list and exits program if invalid or no input argument is supplied.
if len(args) == 0:
print("\n")
printWarning("no images found (or supplied) to check!")
print("\n")
parser.print_help()
sys.exit(ERR_CODE_NO_IMAGES)
def getFilesFromDir(dirpath):
for fp in os.listdir(dirpath):
filepath = os.path.join(dirpath, fp)
if os.path.isfile(filepath):
existingFiles.append(filepath)
def getFiles(searchpattern):
results = glob.glob(searchpattern)
for f in results:
if os.path.isfile(f):
existingFiles.append(f)
def getFilesWithPatternFromTree(rootDir, pattern):
# Recurse into directory tree and return list of all files
# NOTE: directory names are disabled here!!
for dirname, dirnames, filenames in os.walk(rootDir):
#Suppress directory names
for subdirname in dirnames:
thisDirectory=os.path.join(dirname, subdirname)
#find files matching the pattern in current path
searchpattern = os.path.join(thisDirectory,pattern)
getFiles(searchpattern)
def getFilesFromTree(rootDir):
# Recurse into directory tree and return list of all files
# NOTE: directory names are disabled here!!
for dirname, dirnames, filenames in os.walk(rootDir):
#Suppress directory names
for subdirname in dirnames:
thisDirectory=os.path.join(dirname, subdirname)
for filename in filenames:
thisFile=os.path.join(dirname, filename)
existingFiles.append(thisFile)
def findFiles(recurse, paths):
WILDCARD = "*"
#process the list of input paths
for root in paths:
#WILDCARD IN PATH OR FILENAME
#In Linux wilcard expansion done by bash so, add file to list
if os.path.isfile(root):
existingFiles.append(root)
#Windows (& Linux with backslash prefix) does not expand wildcard '*'
#Find files in the input path and add to list
elif WILDCARD in root:
#get the absolute path if not given
if not(os.path.isabs(root)):
root = os.path.abspath(root)
#Expand wildcard in the input path. Returns a list of files, folders
filesList = glob.glob(root)
#If the input path is a directory, then glob expands it to full name
if len(filesList) == 1:
#set root to the expanded directory path
root = filesList[0]
#get files from directory
if os.path.isdir(root) and not recurse:
getFilesFromDir(root)
#If the input path returned files list, add files to List
if len(filesList) > 1:
for f in filesList:
if os.path.isfile(f):
existingFiles.append(f)
#input path is a directory and is not recursive
elif os.path.isdir(root) and not recurse:
getFilesFromDir(root)
#RECURSION and WILDCARD IN RECURSION
#Check if recurse in the input path
if recurse:
#get absolute input path if not given
if not(os.path.isabs(root)):
root = os.path.abspath(root)
if WILDCARD in root:
pathAndFilePattern = os.path.split(root)
path = pathAndFilePattern[0]
filePattern = pathAndFilePattern[1]
filenameAndExtension = os.path.splitext(filePattern)
#input path contains wildcard
if WILDCARD in path:
filepath = glob.glob(path)
#if filepath is a folder, get files in current directory
if len(filepath) == 1:
getFilesWithPatternFromTree(filepath[0], filePattern)
#if filepath is a list of files/folder
#get all files in the tree matching the file pattern
if len(filepath) > 1:
for f in filepath:
if os.path.isdir(f):
getFilesWithPatternFromTree(f, filePattern)
#file name or extension contains wildcard
elif WILDCARD in filePattern:
getFilesWithPatternFromTree(path, filePattern)
elif WILDCARD in filenameAndExtension:
filenameAndExtension = os.path.splitext(filePattern)
extension = WILDCARD + filenameAndExtension[1]
getFilesWithPatternFromTree(path, extension)
#get files in the current folder and sub dirs w/o wildcard in path
elif os.path.isdir(root):
getFilesFromTree(root)
def checkFiles(recurse, wrap, paths):
# This method checks the input argument path(s) for existing files and analyses them
#Find existing files in the given input path(s)
findFiles(recurse, paths)
# If there are no valid input files then exit program
checkNullArgs(existingFiles)
# Set encoding of the terminal to UTF-8
if PYTHON_VERSION.startswith(PYTHON_2):
out = codecs.getwriter(UTF8_ENCODING) (sys.stdout)
elif PYTHON_VERSION.startswith(PYTHON_3):
out = codecs.getwriter(UTF8_ENCODING) (sys.stdout.buffer)
# Wrap the xml output in <results> element, if wrapper flag is true
if wrap:
out.write("<?xml version='1.0' encoding='UTF-8'?><results>")
else:
out.write("<?xml version='1.0' encoding='UTF-8'?>")
# Process the input files
for path in existingFiles:
# Analyse file
xmlElement=checkOneFile(path)
#Output the xml
#Python2.x does automatic conversion between byte and string types,
#hence, binary data can be output using sys.stdout
if PYTHON_VERSION.startswith(PYTHON_2):
ETree.ElementTree(xmlElement).write(out, xml_declaration=False)
#Python3.x recognizes bytes and str as different types and encoded
#Unicode is represented as binary data. The underlying sys.stdout.buffer
#is used to write binary data
if PYTHON_VERSION.startswith(PYTHON_3):
output = ETree.tostring(xmlElement,encoding="unicode",method="xml")
out.write(output)
def parseCommandLine():
# Add arguments
parser.add_argument('--verbose', action="store_true", dest="outputVerboseFlag", default=False, help="report test results in verbose format")
parser.add_argument('--recursive', '-r', action="store_true", dest="inputRecursiveFlag", default=False, help="when encountering a folder, every file in every subfolder will be analysed")
parser.add_argument('--wrapper', '-w', action="store_true", dest="inputWrapperFlag", default=False, help="wraps the output of the analysed images(s) under the 'jpylyzer' XML element")
parser.add_argument('jp2In', action="store", type=str, nargs=argparse.REMAINDER, help="input JP2 image(s) or folder(s), prefix wildcard (*) with backslash (\\) in Linux")
parser.add_argument('--version',action='version', version=__version__)
# Parse arguments
args=parser.parse_args()
return(args)
def main():
# Get input from command line
args=parseCommandLine()
jp2In=args.jp2In
# Storing this to 'config.outputVerboseFlag' makes this value available to any module
# that imports 'config.py' (here: 'boxvalidator.py')
config.outputVerboseFlag=args.outputVerboseFlag
# Check files
checkFiles(args.inputRecursiveFlag, args.inputWrapperFlag, jp2In)
# Add the end </results> element, if wrapper flag is true
if args.inputWrapperFlag: print("</results>")
if __name__ == "__main__":
main()