Definition at line 136 of file VideoSetsRepository.h. References GetFromFileSystem(), GetFromMonetDB(), Impala::CmdOptions::GetInstance(), Impala::Persistency::Locator::GetProtocol(), ILOG_DEBUG, and ILOG_ERROR. 00137 { 00138 CmdOptions& options = CmdOptions::GetInstance(); 00139 Locator loc("config", options); 00140 ILOG_DEBUG("ctor: loc = " << loc); 00141 String protocol = loc.GetProtocol(); 00142 if ((protocol == "file") || (protocol == "dataServer")) 00143 { 00144 GetFromFileSystem(loc); 00145 } 00146 else if (protocol == "mapi") 00147 { 00148 GetFromMonetDB(loc); 00149 } 00150 else 00151 { 00152 ILOG_ERROR("Get: unknown protocol: " << protocol); 00153 } 00154 }
Here is the call graph for this function:
|