LSSTApplications  18.1.0
LSSTDataManagementBasePackage
checksum.py
Go to the documentation of this file.
1 from __future__ import absolute_import, division, print_function
2 
3 from future import standard_library
4 standard_library.install_aliases() # noqa future needs this here
5 
6 import hashlib
7 import zlib
8 import pickle
9 
10 import lsst.afw.image as afwImage
11 
12 __all__ = ["checksum", ]
13 
14 # Image types to support
15 exposureTypes = (afwImage.ExposureF, afwImage.ExposureD,)
16 maskedImageTypes = (afwImage.MaskedImageF, afwImage.MaskedImageD,)
17 decoratedImageTypes = (afwImage.DecoratedImageF, afwImage.DecoratedImageD,)
18 imageTypes = (afwImage.ImageF, afwImage.ImageD, afwImage.ImageI,)
19 
20 PROTOCOL = 2 # Pickling protocol
21 
22 # Functions for creating the checksum
23 sumFunctions = {
24  "CRC32": lambda obj: zlib.crc32(pickle.dumps(obj, PROTOCOL)),
25  "MD5": lambda obj: hashlib.md5(pickle.dumps(obj, PROTOCOL)).hexdigest(),
26 }
27 
28 
29 def checksum(obj, header=None, sumType="MD5"):
30  """!Calculate a checksum of an object
31 
32  We have special handling for images (e.g., breaking a MaskedImage into
33  its various components), but the object may be any picklable type.
34 
35  @param obj Object for which to calculate the checksum
36  @param header FITS header (PropertyList) to update with checksum values, or None
37  @param sumType Type of checksum to calculate
38  @return dict with header keyword,value pairs
39  """
40  assert sumType in sumFunctions, "Unknown sumType: %s" % (sumType,)
41  func = sumFunctions[sumType]
42 
43  results = {}
44 
45  if isinstance(obj, exposureTypes):
46  obj = obj.getMaskedImage()
47  if isinstance(obj, decoratedImageTypes):
48  obj = obj.getImage()
49 
50  if isinstance(obj, maskedImageTypes):
51  results[sumType + "_IMAGE"] = func(obj.getImage())
52  results[sumType + "_MASK"] = func(obj.getMask())
53  results[sumType + "_VARIANCE"] = func(obj.getVariance())
54  elif isinstance(obj, imageTypes):
55  results[sumType + "_IMAGE"] = func(obj)
56  else:
57  results[sumType] = func(obj)
58 
59  if header is not None:
60  for k, v in results.items():
61  header.add(k, v)
62 
63  return results
def checksum(obj, header=None, sumType="MD5")
Calculate a checksum of an object.
Definition: checksum.py:29
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects...