#include <fsc_common.h>

Definition at line 359 of file fsc_common.h.
Public Member Functions | |
| string | Dump () |
| string | MismatchDump () |
Static Public Member Functions | |
| static int | Compare (const void *a_st, const void *a_nd) |
| static string | DumpHdr () |
Public Attributes | |
| UInt32_t | blockOffset |
| ivd_RecordIDX_t | fileID |
| fsc_UInt48 | dataSize |
| fsc_UInt48 | migrationID |
| fsc_UInt48 | splitOffset |
| fsc_UInt48 | splitSize |
| UInt16_t | dataType |
| UInt16_t | status |
| log_CLASSID_m | |
| static int fsc_medVolData_t::Compare | ( | const void * | a_st, | |
| const void * | a_nd | |||
| ) | [inline, static] |
Definition at line 371 of file fsc_common.h.
References blockOffset.
Referenced by fsc_MedVolReader::SortData().
00372 { 00373 return reinterpret_cast<const fsc_medVolData_t*>(a_st)->blockOffset 00374 - reinterpret_cast<const fsc_medVolData_t*>(a_nd)->blockOffset; 00375 };

| string fsc_medVolData_t::DumpHdr | ( | ) | [static] |
Definition at line 133 of file fsc_common.cpp.
References str.
Referenced by fsc_MedVolReader::SortData().
00133 { 00134 ostringstream str; 00135 str << " blockOfs" 00136 << " fileID" 00137 << " dataSize" 00138 << " migrationID" 00139 << " splitOffset" 00140 << " splitSize" 00141 << " status" 00142 << " dataType"; 00143 return str.str(); 00144 }

| string fsc_medVolData_t::Dump | ( | ) |
Definition at line 148 of file fsc_common.cpp.
References blockOffset, dataSize, dataType, fileID, migrationID, splitOffset, splitSize, status, and str.
00148 { 00149 ostringstream str; 00150 str << setw(12) << blockOffset 00151 << setw(12) << fileID 00152 << setw(12) << dataSize 00153 << setw(14) << migrationID 00154 << setw(12) << splitOffset 00155 << setw(12) << splitSize 00156 << setw(7) << status 00157 << setw(2) << (int)dataType; 00158 return str.str(); 00159 }
| string fsc_medVolData_t::MismatchDump | ( | ) |
Definition at line 162 of file fsc_common.cpp.
References blockOffset, dataSize, dataType, fileID, migrationID, splitOffset, splitSize, status, and str.
Referenced by fsc_VolumeCheck::Check().
00162 { 00163 ostringstream str; 00164 str << "\n blockOfs " << blockOffset 00165 << "\n fileID " << fileID 00166 << "\n dataSize " << dataSize 00167 << "\n migID " << migrationID 00168 << "\n splitOff " << splitOffset 00169 << "\n splitSize " << splitSize 00170 << "\n status " << status 00171 << "\n dataType " << (int)dataType << endl; 00172 return str.str(); 00173 }

Definition at line 360 of file fsc_common.h.
Referenced by Compare(), fsc_VolumeCheck::DisplayMessage(), Dump(), fsc_VolumeCheck::GetNextOfsSubBlock(), MismatchDump(), fsc_SplitInfoCollector::ProcObjMedPosMgr(), and fsc_RawMedVolCollector::ProcRecMedPosMgr().
Definition at line 361 of file fsc_common.h.
Referenced by fsc_VolumeCheck::Check(), Dump(), MismatchDump(), fsc_RawMedVolPathCollector::ProcFileID(), fsc_RawMedVolCollector::ProcFileID(), fsc_SplitInfoCollector::ProcObjDataL(), and fsc_RawMedVolPathCollector::ProcRecMedPosMgr().
Definition at line 362 of file fsc_common.h.
Referenced by fsc_VolumeCheck::Check(), fsc_VolumeCheck::DisplayMessage(), Dump(), MismatchDump(), fsc_SplitInfoCollector::ProcObjGeneration(), fsc_SplitInfoCollector::ProcObjMedPosMgr(), fsc_RawMedVolCollector::ProcRecGeneration(), and fsc_RawMedVolCollector::ProcRecMedPosMgr().
Definition at line 363 of file fsc_common.h.
Referenced by fsc_VolumeCheck::DisplayMessage(), Dump(), MismatchDump(), fsc_SplitInfoCollector::ProcObjGeneration(), and fsc_RawMedVolCollector::ProcRecGeneration().
Definition at line 364 of file fsc_common.h.
Referenced by fsc_VolumeCheck::Check(), fsc_VolumeCheck::DisplayMessage(), Dump(), MismatchDump(), fsc_SplitInfoCollector::ProcObjGeneration(), fsc_SplitInfoCollector::ProcObjMedPosMgr(), fsc_SplitInfoCollector::ProcObjSplit(), fsc_RawMedVolCollector::ProcRecGeneration(), fsc_RawMedVolCollector::ProcRecMedPosMgr(), and fsc_RawMedVolCollector::ProcRecSplit().
Definition at line 365 of file fsc_common.h.
Referenced by fsc_VolumeCheck::Check(), fsc_VolumeCheck::DisplayMessage(), Dump(), MismatchDump(), fsc_SplitInfoCollector::ProcObjGeneration(), fsc_SplitInfoCollector::ProcObjMedPosMgr(), fsc_SplitInfoCollector::ProcObjSplit(), fsc_RawMedVolCollector::ProcRecGeneration(), fsc_RawMedVolCollector::ProcRecMedPosMgr(), and fsc_RawMedVolCollector::ProcRecSplit().
Definition at line 366 of file fsc_common.h.
Referenced by fsc_VolumeCheck::Check(), fsc_VolumeCheck::DisplayMessage(), Dump(), MismatchDump(), fsc_SplitInfoCollector::ProcObjGeneration(), fsc_SplitInfoCollector::ProcObjMedPosMgr(), fsc_SplitInfoCollector::ProcObjSplit(), fsc_RawMedVolCollector::ProcRecCopy(), fsc_RawMedVolCollector::ProcRecGeneration(), fsc_RawMedVolCollector::ProcRecMedPosMgr(), and fsc_RawMedVolCollector::ProcRecSplit().
Definition at line 367 of file fsc_common.h.
Referenced by fsc_VolumeCheck::Check(), fsc_VolumeCheck::DisplayMessage(), Dump(), MismatchDump(), and fsc_RawMedVolCollector::ProcRecGeneration().
Definition at line 369 of file fsc_common.h.
1.5.6