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

void Impala::Core::Database::RawDataSet::Dump ( int  startDir,
int  endDir,
int  startFile,
int  endFile 
) [inline]

Definition at line 822 of file RawDataSet.h.

References GetDir(), GetDirOfFile(), GetFile(), GetFileId(), GetNrFiles(), GetSection(), GetSectionOfFile(), ILOG_INFO, mHasFiles, NrDirs(), and NrFiles().

00823     {
00824         if (endDir == -1)
00825             endDir = NrDirs();
00826         ILOG_INFO("Dumping dirs from " << startDir << " to " << endDir
00827                   << " (of " << NrDirs() << ")");
00828         for (int i=startDir ; i<endDir ; i++)
00829             ILOG_INFO(GetSection(i) << " " << GetDir(i) << ": nr files = "
00830                       << GetNrFiles(i));
00831         if (!mHasFiles)
00832         {
00833             ILOG_INFO("Does not have files");
00834             return;
00835         }
00836         if (startFile == -1)
00837         {
00838             ILOG_INFO("Skipping files");
00839             return;
00840         }
00841         if (endFile == -1)
00842             endFile = NrFiles();
00843         ILOG_INFO("Dumping files from " << startFile << " to " << endFile
00844                   << " (of " << NrFiles() << ")");
00845         for (int j=startFile ; j<endFile ; j++)
00846         {
00847             ILOG_INFO(GetFileId(j) << " " << GetSectionOfFile(j) << " " <<
00848                       GetDirOfFile(j) << " " << GetFile(j));
00849         }
00850     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:07:58 2010 for ImpalaSrc by  doxygen 1.5.1