Gaudi Framework, version v22r2

Home   Generated: Tue May 10 2011
Public Member Functions | Public Attributes | Private Attributes

GaudiTest::TempFile Class Reference

List of all members.

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 182 of file GaudiTest.py.


Constructor & Destructor Documentation

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

Definition at line 189 of file GaudiTest.py.

00190                                                                                    :
00191         self.file = None
00192         self.name = None
00193         self._keep = keep
00194 
00195         self._fd, self.name = tempfile.mkstemp(suffix,prefix,dir,text)
00196         self.file = os.fdopen(self._fd,"r+")

def GaudiTest::TempFile::__del__ (   self )

Definition at line 200 of file GaudiTest.py.

00201                      :
00202         if self.file:
00203             self.file.close()
00204         if self.name and not self._keep:
00205             os.remove(self.name)


Member Function Documentation

def GaudiTest::TempFile::__getattr__ (   self,
  attr 
)

Definition at line 206 of file GaudiTest.py.

00207                               :
00208         return getattr(self.file,attr)

def GaudiTest::TempFile::__str__ (   self )

Definition at line 197 of file GaudiTest.py.

00198                      :
00199         return self.name


Member Data Documentation

Definition at line 189 of file GaudiTest.py.

Definition at line 189 of file GaudiTest.py.

Definition at line 189 of file GaudiTest.py.


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

Generated at Tue May 10 2011 18:55:37 for Gaudi Framework, version v22r2 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004