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

void Impala::Application::IDo::RepositoryExec ( CString  cmd,
CString  arguments 
) [inline]

Definition at line 1623 of file mainIDo.cpp.

References CallSystem(), ILOG_INFO, mDryRun, mLocation, mSetName, mUseMpi, and ResolveExports().

Referenced by DoRepositoryExec(), and IndexAnnotatedFeatureSiftExec().

01624     {
01625         String args = ResolveExports(arguments);
01626         String line = "repository " + cmd + " " + mLocation + " " + mSetName
01627             + " " + args;
01628         if (mUseMpi)
01629         {
01630             line =
01631                 "qrsh -now n -l h_rt=168:00:00 -cwd -noshell /bin/bash -l -c \""
01632                 + line + "\"";
01633         }
01634         if (mDryRun)
01635         {
01636             std::cout << line << std::endl;
01637         }
01638         else
01639         {
01640             ILOG_INFO("RepositoryExec: " << line);
01641             CallSystem(line);
01642         }
01643     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:14:24 2011 for ImpalaSrc by  doxygen 1.5.1