Gaudi Framework, version v24r2

Home   Generated: Wed Dec 4 2013
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Member Functions | Public Attributes | Private Attributes | List of all members
GaudiTest.TempFile Class Reference

Public Member Functions

def __init__
 
def __str__
 
def __del__
 
def __getattr__
 

Public Attributes

 file
 
 name
 

Private Attributes

 _keep
 

Detailed Description

Small class for temporary files.
When instantiated, it creates a temporary directory and the instance
behaves as the string containing the directory name.
When the instance goes out of scope, it removes all the content of
the temporary directory (automatic clean-up).

Definition at line 185 of file GaudiTest.py.

Constructor & Destructor Documentation

def GaudiTest.TempFile.__init__ (   self,
  suffix = '',
  prefix = 'tmp',
  dir = None,
  text = False,
  keep = False 
)

Definition at line 192 of file GaudiTest.py.

193  def __init__(self, suffix='', prefix='tmp', dir=None, text=False, keep = False):
194  self.file = None
195  self.name = None
196  self._keep = keep
197 
198  self._fd, self.name = tempfile.mkstemp(suffix,prefix,dir,text)
199  self.file = os.fdopen(self._fd,"r+")
def GaudiTest.TempFile.__del__ (   self)

Definition at line 203 of file GaudiTest.py.

204  def __del__(self):
205  if self.file:
206  self.file.close()
207  if self.name and not self._keep:
208  os.remove(self.name)

Member Function Documentation

def GaudiTest.TempFile.__getattr__ (   self,
  attr 
)

Definition at line 209 of file GaudiTest.py.

210  def __getattr__(self,attr):
211  return getattr(self.file,attr)
def GaudiTest.TempFile.__str__ (   self)

Definition at line 200 of file GaudiTest.py.

201  def __str__(self):
202  return self.name

Member Data Documentation

GaudiTest.TempFile._keep
private

Definition at line 195 of file GaudiTest.py.

GaudiTest.TempFile.file

Definition at line 193 of file GaudiTest.py.

GaudiTest.TempFile.name

Definition at line 194 of file GaudiTest.py.


The documentation for this class was generated from the following file:
Generated at Wed Dec 4 2013 14:33:23 for Gaudi Framework, version v24r2 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004