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