LSSTApplications  18.1.0
LSSTDataManagementBasePackage
Functions
lsst.daf.base.citizen.citizenContinued Namespace Reference

Functions

def setCallbacks (new=None, delete=None, both=False)
 
def mortal (memId0=0, nleakPrintMax=20, first=True, showTypes=None)
 Print leaked memory blocks. More...
 

Function Documentation

◆ mortal()

def lsst.daf.base.citizen.citizenContinued.mortal (   memId0 = 0,
  nleakPrintMax = 20,
  first = True,
  showTypes = None 
)

Print leaked memory blocks.

Parameters
memId0Only consider blocks allocated after this memId
nleakPrintMaxMaximum number of leaks to print; <= 0 means unlimited
firstPrint the first nleakPrintMax blocks; if False print the last blocks.
showTypesOnly print objects matching this regex (if starts with !, print objects that don't match)

If you want finer control than nleakPrintMax/first provide, use Citizen.census() to get the entire list

You can get the next memId to be allocated with mortal("set"), e.g. memId0 = mortal("set")

work work work

mortal(memId0)

Definition at line 59 of file citizenContinued.py.

59 def mortal(memId0=0, nleakPrintMax=20, first=True, showTypes=None):
60  """!Print leaked memory blocks
61 
62  @param memId0 Only consider blocks allocated after this memId
63  @param nleakPrintMax Maximum number of leaks to print; <= 0 means unlimited
64  @param first Print the first nleakPrintMax blocks; if False print the last
65  blocks.
66  @param showTypes Only print objects matching this regex (if starts with !,
67  print objects that don't match)
68 
69  If you want finer control than nleakPrintMax/first provide, use
70  Citizen.census() to get the entire list
71 
72  You can get the next memId to be allocated with mortal("set"), e.g.
73  memId0 = mortal("set")
74  # work work work
75  mortal(memId0)
76  """
77  if memId0 == 'set':
78  return Citizen.getNextMemId()
79 
80  nleak = Citizen.census(0, memId0)
81  if nleak != 0:
82  print("%d Objects leaked" % Citizen.census(0, memId0))
83 
84  census = Citizen.census()
85  census = [census[i].repr() for i in range(len(census))] # using [i] for some swiggy reason
86  if showTypes:
87  if showTypes[0] == '!':
88  invert = True # invert the matching logic
89  showTypes = showTypes[1:]
90  else:
91  invert = False
92 
93  _census, census = census, []
94  for c in _census:
95  memId, addr, dtype = c.split()
96  memId = int(memId[:-1])
97 
98  if (not invert and re.search(showTypes, dtype)) or \
99  (invert and not re.search(showTypes, dtype)):
100  census.append(c)
101 
102  nleak = len(census)
103  print("%d leaked objects match" % nleak)
104 
105  if nleakPrintMax <= 0 or nleak <= nleakPrintMax:
106  for c in census:
107  memId, addr, type = c.split()
108  memId = int(memId[:-1])
109  if memId >= memId0:
110  print(c)
111  else:
112  print("...")
113  for i in range(nleakPrintMax - 1, -1, -1):
114  print(census[i])
115 
def mortal(memId0=0, nleakPrintMax=20, first=True, showTypes=None)
Print leaked memory blocks.

◆ setCallbacks()

def lsst.daf.base.citizen.citizenContinued.setCallbacks (   new = None,
  delete = None,
  both = False 
)
Set the callback IDs for the Citizen; if both is true, set both new and
delete to the same value.

You probably want to chant the following to gdb:
* break defaultNewCallback
* break defaultDeleteCallback

You might want to put this in your ``.gdbinit`` file.

You can retrieve a citizen's signature from python with ``obj.repr()``.

Definition at line 32 of file citizenContinued.py.

32 def setCallbacks(new=None, delete=None, both=False):
33  """Set the callback IDs for the Citizen; if both is true, set both new and
34  delete to the same value.
35 
36  You probably want to chant the following to gdb:
37  * break defaultNewCallback
38  * break defaultDeleteCallback
39 
40  You might want to put this in your ``.gdbinit`` file.
41 
42  You can retrieve a citizen's signature from python with ``obj.repr()``.
43  """
44 
45  if both:
46  if new:
47  if delete and new != delete:
48  raise RuntimeError("You may not specify new, delete, and both")
49  delete = new
50  else:
51  new = delete
52 
53  if new:
54  Citizen.setNewCallbackId(new)
55  if delete:
56  Citizen.setDeleteCallbackId(delete)
57 
58 
def setCallbacks(new=None, delete=None, both=False)