00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00014
00015 #include <fstream>
00016
00017 #include "TSystem.h"
00018
00019 #include "DatabaseMaintenance/DbmFileLocater.h"
00020 #include "LeakChecker/Lea.h"
00021 #include "MessageService/MsgService.h"
00022
00023 using namespace std;
00024
00025 ClassImp(DbmFileLocater)
00026
00027
00028
00029
00030
00031 CVSID("$Id: DbmFileLocater.cxx,v 1.3 2003/05/07 07:34:58 west Exp $");
00032
00033
00034
00035
00036
00037
00038
00039 DbmFileLocater::DbmFileLocater()
00040 {
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062 LEA_CTOR
00063
00064 MSG("Dbm", Msg::kVerbose) << "Creating DbmFileLocater" << endl;
00065
00066
00067
00068 fDirectories.push_back(".");
00069
00070
00071 const char* str = gSystem->Getenv("SRT_PRIVATE_CONTEXT");
00072 if ( str ) fDirectories.push_back(str);
00073 str = gSystem->Getenv("SRT_PUBLIC_CONTEXT");
00074 if ( str ) fDirectories.push_back(str);
00075
00076 }
00077
00078
00079
00080 DbmFileLocater::~DbmFileLocater() {
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103 LEA_DTOR
00104
00105 MSG("Dbm", Msg::kVerbose) << "Destroying DbmFileLocater" << endl;
00106
00107 }
00108
00109
00110
00111 string DbmFileLocater::Find(const string& fileName) const {
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135 for (list<string>::const_iterator itr = fDirectories.begin();
00136 itr != fDirectories.end();
00137 ++itr) {
00138 string fName = *itr + "/" + fileName;
00139 ifstream test(fName.c_str());
00140 if ( test.is_open() ) return fName;
00141 }
00142
00143 MSG("Dbm",Msg::kInfo) << "Cannot find file " << fileName << endl;
00144 return "";
00145
00146 }
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178