LSSTApplications  16.0-11-g09ed895+2,16.0-11-g12e47bd,16.0-11-g9bb73b2+6,16.0-12-g5c924a4+6,16.0-14-g9a974b3+1,16.0-15-g1417920+1,16.0-15-gdd5ca33+1,16.0-16-gf0259e2,16.0-17-g31abd91+7,16.0-17-g7d7456e+7,16.0-17-ga3d2e9f+13,16.0-18-ga4d4bcb+1,16.0-18-gd06566c+1,16.0-2-g0febb12+21,16.0-2-g9d5294e+69,16.0-2-ga8830df+6,16.0-20-g21842373+7,16.0-24-g3eae5ec,16.0-28-gfc9ea6c+4,16.0-29-ge8801f9,16.0-3-ge00e371+34,16.0-4-g18f3627+13,16.0-4-g5f3a788+20,16.0-4-ga3eb747+10,16.0-4-gabf74b7+29,16.0-4-gb13d127+6,16.0-49-g42e581f7+6,16.0-5-g27fb78a+7,16.0-5-g6a53317+34,16.0-5-gb3f8a4b+87,16.0-6-g9321be7+4,16.0-6-gcbc7b31+42,16.0-6-gf49912c+29,16.0-7-gd2eeba5+51,16.0-71-ge89f8615e,16.0-8-g21fd5fe+29,16.0-8-g3a9f023+20,16.0-8-g4734f7a+1,16.0-8-g5858431+3,16.0-9-gf5c1f43+8,master-gd73dc1d098+1,w.2019.01
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