20 PHTFileServer::SafeTFile::TFileMap PHTFileServer::SafeTFile::_map;
25 if( !SafeTFile::file_map().empty() ) close();
32 SafeTFile::TFileMap::iterator iter( SafeTFile::file_map().find( filename ) );
33 if( iter != SafeTFile::file_map().end() ) {
36 what <<
"PHTFileServer::open - file " << filename <<
" already opened.";
37 cout <<( what.str() )<<endl;
40 iter->second->counter()++;
46 what <<
"PHTFileServer::open - opening file " << filename <<
" (" << type <<
")";
47 cout <<( what.str() )<<endl;
50 SafeTFile *file(
new SafeTFile( filename, type ) );
51 if( !file->IsOpen() ) cout <<(
"PHTFileServer::open - error opening TFile" )<<endl;
52 SafeTFile::file_map().insert( make_pair( filename, file ) );
63 SafeTFile::TFileMap::iterator iter( SafeTFile::file_map().find( filename ) );
64 if( iter != SafeTFile::file_map().end() ) iter->second->Flush();
67 what <<
"PHTFileServer::flush - file " << filename <<
" not found";
68 cout <<( what.str() )<<endl;
79 SafeTFile::TFileMap::iterator iter( SafeTFile::file_map().find( filename ) );
80 if( iter != SafeTFile::file_map().end() ) iter->second->cd();
83 what <<
"PHTFileServer::flush - file " << filename <<
" not found";
84 cout <<( what.str() )<<endl;
95 SafeTFile::TFileMap::iterator iter( SafeTFile::file_map().find( filename ) );
96 if( iter != SafeTFile::file_map().end() )
98 if( iter->second->counter() > 1 )
101 iter->second->counter()--;
103 what <<
"PHTFileServer::write - file " << filename <<
" still in use.";
104 cout <<( what.str() )<<endl;
106 }
else if( iter->second->counter() == 1 ) {
108 iter->second->Write();
109 iter->second->counter()--;
111 what <<
"PHTFileServer::write - writing file " << filename <<
".";
112 cout <<( what.str() )<<endl;
116 iter->second->Write();
118 what <<
"PHTFileServer::write - warning: too many calls for file " << filename <<
".";
119 cout <<( what.str() )<<endl;
126 what <<
"PHTFileServer::write - file " << filename <<
" not found";
127 cout <<( what.str() )<<endl;
143 for( SafeTFile::TFileMap::iterator iter = SafeTFile::file_map().begin(); iter != SafeTFile::file_map().end(); iter++ )
146 if( iter->second->IsOpen() )
149 if( iter->second->counter() )
152 what <<
"PHTFileServer::close - file " << iter->first <<
" forced write with kWriteDelete.";
153 cout <<( what.str() )<<endl;
154 iter->second->Write(
"0",TObject::kWriteDelete);
159 what <<
"PHTFileServer::close - closing " << iter->first <<
".";
160 iter->second->Close();
161 cout <<( what.str() )<<endl;
168 SafeTFile::file_map().clear();
173 PHTFileServer::SafeTFile::~SafeTFile(
void )
184 what <<
"PHTFileServer::SafeTFile::~SafeTFile - file " << _filename <<
" forced write with kWriteDelete.";
185 cout <<( what.str() )<<endl;
186 Write(
"0",TObject::kWriteDelete);
190 what <<
"PHTFileServer::SafeTFile::~SafeTFile - closing " << _filename <<
".";
191 cout <<( what.str() )<<endl;
199 _map.erase( _filename );
bool write(const std::string &filename)
if TFile is found in map and counter is 0, close the TFile, decrement counter otherwise
bool flush(const std::string &filename)
flush TFile matching filename
void close(void)
close all TFiles
void open(const std::string &filename, const std::string &type="RECREATE")
open a SafeTFile. If filename is not found in the map, create a new TFile and append to the map; incr...
bool cd(const std::string &filename)
change to directory of TFile matching filename
virtual ~PHTFileServer()
destructor. All non close TFiles are closed, with a warning.