LSSTApplications  17.0+124,17.0+14,17.0+73,18.0.0+37,18.0.0+80,18.0.0-4-g68ffd23+4,18.1.0-1-g0001055+12,18.1.0-1-g03d53ef+5,18.1.0-1-g1349e88+55,18.1.0-1-g2505f39+44,18.1.0-1-g5315e5e+4,18.1.0-1-g5e4b7ea+14,18.1.0-1-g7e8fceb+4,18.1.0-1-g85f8cd4+48,18.1.0-1-g8ff0b9f+4,18.1.0-1-ga2c679d+1,18.1.0-1-gd55f500+35,18.1.0-10-gb58edde+2,18.1.0-11-g0997b02+4,18.1.0-13-gfe4edf0b+12,18.1.0-14-g259bd21+21,18.1.0-19-gdb69f3f+2,18.1.0-2-g5f9922c+24,18.1.0-2-gd3b74e5+11,18.1.0-2-gfbf3545+32,18.1.0-26-g728bddb4+5,18.1.0-27-g6ff7ca9+2,18.1.0-3-g52aa583+25,18.1.0-3-g8ea57af+9,18.1.0-3-gb69f684+42,18.1.0-3-gfcaddf3+6,18.1.0-32-gd8786685a,18.1.0-4-gf3f9b77+6,18.1.0-5-g1dd662b+2,18.1.0-5-g6dbcb01+41,18.1.0-6-gae77429+3,18.1.0-7-g9d75d83+9,18.1.0-7-gae09a6d+30,18.1.0-9-gc381ef5+4,w.2019.45
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...