LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
Public Member Functions | Public Attributes | List of all members
lsst.pex.config.callStack.StackFrame Class Reference

Public Member Functions

def __init__ (self, filename, lineno, function, content=None)
 
def content (self)
 
def fromFrame (cls, frame)
 
def __repr__ (self)
 
def format (self, full=False)
 

Public Attributes

 filename
 
 lineno
 
 function
 

Detailed Description

A single element of the stack trace.

This differs slightly from the standard system mechanisms for getting a
stack trace by the fact that it does not look up the source code until it
is absolutely necessary, reducing the I/O.

Parameters
----------
filename : `str`
    Name of file containing the code being executed.
lineno : `int`
    Line number of file being executed.
function : `str`
    Function name being executed.
content : `str`, optional
    The actual content being executed. If not provided, it will be loaded
    from the file.

Notes
-----
This differs slightly from the standard system mechanisms for getting a
stack trace by the fact that it does not look up the source code until it
is absolutely necessary, reducing the I/O.

See also
--------
getStackFrame

Definition at line 75 of file callStack.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.pex.config.callStack.StackFrame.__init__ (   self,
  filename,
  lineno,
  function,
  content = None 
)

Definition at line 108 of file callStack.py.

108  def __init__(self, filename, lineno, function, content=None):
109  loc = filename.rfind(self._STRIP)
110  if loc > 0:
111  filename = filename[loc + len(self._STRIP):]
112  self.filename = filename
113  self.lineno = lineno
114  self.function = function
115  self._content = content
116 

Member Function Documentation

◆ __repr__()

def lsst.pex.config.callStack.StackFrame.__repr__ (   self)

Definition at line 152 of file callStack.py.

152  def __repr__(self):
153  return "%s(%s, %s, %s)" % (self.__class__.__name__, self.filename, self.lineno, self.function)
154 

◆ content()

def lsst.pex.config.callStack.StackFrame.content (   self)
Content being executed (loaded on demand) (`str`).

Definition at line 118 of file callStack.py.

118  def content(self):
119  """Content being executed (loaded on demand) (`str`).
120  """
121  if self._content is None:
122  self._content = linecache.getline(self.filename, self.lineno).strip()
123  return self._content
124 
bool strip
Definition: fits.cc:911

◆ format()

def lsst.pex.config.callStack.StackFrame.format (   self,
  full = False 
)
Format for printing.

Parameters
----------
full : `bool`, optional
    If `True`, output includes the conentent (`StackFrame.content`)
    being executed. Default is `False`.

Returns
-------
result : `str`
    Formatted string.

Definition at line 155 of file callStack.py.

155  def format(self, full=False):
156  """Format for printing.
157 
158  Parameters
159  ----------
160  full : `bool`, optional
161  If `True`, output includes the conentent (`StackFrame.content`)
162  being executed. Default is `False`.
163 
164  Returns
165  -------
166  result : `str`
167  Formatted string.
168  """
169  result = " File %s:%s (%s)" % (self.filename, self.lineno, self.function)
170  if full:
171  result += "\n %s" % (self.content,)
172  return result
173 
174 
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174

◆ fromFrame()

def lsst.pex.config.callStack.StackFrame.fromFrame (   cls,
  frame 
)
Construct from a Frame object.

Parameters
----------
frame : `Frame`
    Frame object to interpret, such as from `inspect.currentframe`.

Returns
-------
stackFrame : `StackFrame`
    A `StackFrame` instance.

Examples
--------
`inspect.currentframe` provides a Frame object. This is a convenience
constructor to interpret that Frame object:

>>> import inspect
>>> stackFrame = StackFrame.fromFrame(inspect.currentframe())

Definition at line 126 of file callStack.py.

126  def fromFrame(cls, frame):
127  """Construct from a Frame object.
128 
129  Parameters
130  ----------
131  frame : `Frame`
132  Frame object to interpret, such as from `inspect.currentframe`.
133 
134  Returns
135  -------
136  stackFrame : `StackFrame`
137  A `StackFrame` instance.
138 
139  Examples
140  --------
141  `inspect.currentframe` provides a Frame object. This is a convenience
142  constructor to interpret that Frame object:
143 
144  >>> import inspect
145  >>> stackFrame = StackFrame.fromFrame(inspect.currentframe())
146  """
147  filename = frame.f_code.co_filename
148  lineno = frame.f_lineno
149  function = frame.f_code.co_name
150  return cls(filename, lineno, function)
151 

Member Data Documentation

◆ filename

lsst.pex.config.callStack.StackFrame.filename

Definition at line 112 of file callStack.py.

◆ function

lsst.pex.config.callStack.StackFrame.function

Definition at line 114 of file callStack.py.

◆ lineno

lsst.pex.config.callStack.StackFrame.lineno

Definition at line 113 of file callStack.py.


The documentation for this class was generated from the following file: