Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

Impala::Persistency::FileSystem::FileSystem ( CString  data,
CString  dataServer 
) [inline]

Definition at line 37 of file FileSystem.h.

References Impala::CmdOptions::GetBool(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetString(), Impala::Util::ChannelPool::Instance(), mData, mDataChannel, mDataServer, mDataString, and mOverride.

00038     {
00039         CmdOptions& options = CmdOptions::GetInstance();
00040         mDataString = data;
00041         mData = StringList(mDataString, ';');
00042         mDataServer = dataServer;
00043         mDataChannel = 0;
00044         if (!mDataServer.empty())
00045         {
00046             ILOG_INFO_ONCE("Retrieving channel to server " << mDataServer);
00047             String passFile = options.GetString("passwordFile");
00048             mDataChannel = Util::ChannelPool::Instance().Get(mDataServer,
00049                                                              passFile);
00050         }
00051         mOverride = options.GetBool("override");
00052 #ifdef WIN32
00053         // printf("%d\n", _getmaxstdio()); // normally 512
00054         _setmaxstdio(2048); // set it to the absolute maximum
00055 #endif
00056     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:35:14 2010 for ImpalaSrc by  doxygen 1.5.1