Class Reference for E1039 Core & Analysis Software
PHTFileServer.cxx
Go to the documentation of this file.
1 // $Id: PHTFileServer.cxx,v 1.8 2011/08/11 14:25:49 phnxbld Exp $
2 
4 
12 
13 #include <sstream>
14 #include <stdexcept>
15 #include "PHTFileServer.h"
16 
17 using namespace std;
18 
19 //_________________________________________________
20 PHTFileServer::SafeTFile::TFileMap PHTFileServer::SafeTFile::_map;
21 
22 //_________________________________________________
24 {
25  if( !SafeTFile::file_map().empty() ) close();
26 }
27 
28 //_________________________________________________
29 void PHTFileServer::open( const string& filename, const string& type )
30 {
31 
32  SafeTFile::TFileMap::iterator iter( SafeTFile::file_map().find( filename ) );
33  if( iter != SafeTFile::file_map().end() ) {
34 
35  ostringstream what;
36  what << "PHTFileServer::open - file " << filename << " already opened.";
37  cout <<( what.str() )<<endl;
38 
39  // increment counter; change TDirectory
40  iter->second->counter()++;
41  iter->second->cd();
42 
43  } else {
44 
45  ostringstream what;
46  what << "PHTFileServer::open - opening file " << filename << " (" << type << ")";
47  cout <<( what.str() )<<endl;
48 
49  // create new SafeTFile; insert in map; change TDirectory
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 ) );
53  file->cd();
54 
55  }
56 
57 }
58 
59 //_________________________________________________
60 bool PHTFileServer::flush( const string& filename )
61 {
62 
63  SafeTFile::TFileMap::iterator iter( SafeTFile::file_map().find( filename ) );
64  if( iter != SafeTFile::file_map().end() ) iter->second->Flush();
65  else {
66  ostringstream what;
67  what << "PHTFileServer::flush - file " << filename << " not found";
68  cout <<( what.str() )<<endl;
69  return false;
70  }
71 
72  return true;
73 }
74 
75 //_________________________________________________
76 bool PHTFileServer::cd( const string& filename )
77 {
78 
79  SafeTFile::TFileMap::iterator iter( SafeTFile::file_map().find( filename ) );
80  if( iter != SafeTFile::file_map().end() ) iter->second->cd();
81  else {
82  ostringstream what;
83  what << "PHTFileServer::flush - file " << filename << " not found";
84  cout <<( what.str() )<<endl;
85  return false;
86  }
87 
88  return true;
89 }
90 
91 //_________________________________________________
92 bool PHTFileServer::write( const string& filename )
93 {
94 
95  SafeTFile::TFileMap::iterator iter( SafeTFile::file_map().find( filename ) );
96  if( iter != SafeTFile::file_map().end() )
97  {
98  if( iter->second->counter() > 1 )
99  {
100 
101  iter->second->counter()--;
102  ostringstream what;
103  what << "PHTFileServer::write - file " << filename << " still in use.";
104  cout <<( what.str() )<<endl;
105 
106  } else if( iter->second->counter() == 1 ) {
107 
108  iter->second->Write();
109  iter->second->counter()--;
110  ostringstream what;
111  what << "PHTFileServer::write - writing file " << filename << ".";
112  cout <<( what.str() )<<endl;
113 
114  } else {
115 
116  iter->second->Write();
117  ostringstream what;
118  what << "PHTFileServer::write - warning: too many calls for file " << filename << ".";
119  cout <<( what.str() )<<endl;
120 
121  }
122 
123  } else {
124 
125  ostringstream what;
126  what << "PHTFileServer::write - file " << filename << " not found";
127  cout <<( what.str() )<<endl;
128  return false;
129 
130  }
131 
132  return true;
133 
134 }
135 
136 
137 //__________________________________________
139 {
140 
141  // close
142 // MUTOO::TRACE( "PHTFileServer::close" );
143  for( SafeTFile::TFileMap::iterator iter = SafeTFile::file_map().begin(); iter != SafeTFile::file_map().end(); iter++ )
144  {
145 
146  if( iter->second->IsOpen() )
147  {
148 
149  if( iter->second->counter() )
150  {
151  ostringstream what;
152  what << "PHTFileServer::close - file " << iter->first << " forced write with kWriteDelete.";
153  cout <<( what.str() )<<endl;
154  iter->second->Write("0",TObject::kWriteDelete);
155  }
156 
157  // close TFile
158  ostringstream what;
159  what << "PHTFileServer::close - closing " << iter->first << ".";
160  iter->second->Close();
161  cout <<( what.str() )<<endl;
162 
163  }
164 
165  }
166 
167  // clear file map
168  SafeTFile::file_map().clear();
169 
170 }
171 
172 //__________________________________________________________________________________
173 PHTFileServer::SafeTFile::~SafeTFile( void )
174 {
175 
176  // see if TFile is still open
177  if( IsOpen() )
178  {
179 
180  // check if TFile needs writing first
181  if( _counter )
182  {
183  ostringstream what;
184  what << "PHTFileServer::SafeTFile::~SafeTFile - file " << _filename << " forced write with kWriteDelete.";
185  cout <<( what.str() )<<endl;
186  Write("0",TObject::kWriteDelete);
187  }
188 
189  ostringstream what;
190  what << "PHTFileServer::SafeTFile::~SafeTFile - closing " << _filename << ".";
191  cout <<( what.str() )<<endl;
192  Close();
193  }
194 
195  /*
196  remove this filename from the make to make sure that PHTFileServer
197  does not try to write/close this TFile during the destructor
198  */
199  _map.erase( _filename );
200 
201 }
TFile clean handling.
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.