Gaudi Framework, version v25r2

Home   Generated: Wed Jun 4 2014
 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.TempDir Class Reference

Public Member Functions

def __init__
 
def __str__
 
def __del__
 
def __getattr__
 

Public Attributes

 name
 

Private Attributes

 _keep
 
 _origdir
 

Detailed Description

Small class for temporary directories.
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 178 of file GaudiTest.py.

Constructor & Destructor Documentation

def GaudiTest.TempDir.__init__ (   self,
  keep = False,
  chdir = False 
)

Definition at line 185 of file GaudiTest.py.

186  def __init__(self, keep = False, chdir = False):
187  self.name = tempfile.mkdtemp()
188  self._keep = keep
189  self._origdir = None
190  if chdir:
191  self._origdir = os.getcwd()
192  os.chdir(self.name)
def GaudiTest.TempDir.__del__ (   self)

Definition at line 196 of file GaudiTest.py.

197  def __del__(self):
198  if self._origdir:
199  os.chdir(self._origdir)
200  if self.name and not self._keep:
201  shutil.rmtree(self.name)

Member Function Documentation

def GaudiTest.TempDir.__getattr__ (   self,
  attr 
)

Definition at line 202 of file GaudiTest.py.

203  def __getattr__(self,attr):
204  return getattr(self.name,attr)
def GaudiTest.TempDir.__str__ (   self)

Definition at line 193 of file GaudiTest.py.

194  def __str__(self):
195  return self.name

Member Data Documentation

GaudiTest.TempDir._keep
private

Definition at line 187 of file GaudiTest.py.

GaudiTest.TempDir._origdir
private

Definition at line 188 of file GaudiTest.py.

GaudiTest.TempDir.name

Definition at line 186 of file GaudiTest.py.


The documentation for this class was generated from the following file:
Generated at Wed Jun 4 2014 14:49:06 for Gaudi Framework, version v25r2 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004