void Sheet::load( const BoundSheet & boundSheet, Stream & stream ) { short code = 0 ; int nSizer = 0 ; stream.seek( boundSheet.BOFPosition(), Stream::FromBeginning ); BOF bof; { Record record( stream ); bof.parse( record ); } while( true ) { if(nSizer > MAX_WORKBOOK_SIZE) return; Record record( stream ); code = record.code() ; switch( code ) { case XL_DIMENSION : //handleDimensions( bof, record ); break; case XL_LABELSST: handleLabelSST( record ); break; case XL_RK: case XL_RK2: handleRK( record ); break; case XL_MULRK: //handleMULRK( record ); break; case XL_NUMBER: //handleNUMBER( record ); break; case XL_FORMULA: //handleFORMULA( record, stream ); break; case XL_EOF: return; default: break; } nSizer += 2 ; } }
void WorksheetSubStreamHandler::handleRecord(Record* record) { if (!record) return; const unsigned type = record->rtti(); if (type == BottomMarginRecord::id) handleBottomMargin(static_cast<BottomMarginRecord*>(record)); else if (type == BoolErrRecord::id) handleBoolErr(static_cast<BoolErrRecord*>(record)); else if (type == BlankRecord::id) handleBlank(static_cast<BlankRecord*>(record)); else if (type == CalcModeRecord::id) handleCalcMode(static_cast<CalcModeRecord*>(record)); else if (type == ColInfoRecord::id) handleColInfo(static_cast<ColInfoRecord*>(record)); else if (type == DataTableRecord::id) handleDataTable(static_cast<DataTableRecord*>(record)); else if (type == FormulaRecord::id) handleFormula(static_cast<FormulaRecord*>(record)); else if (type == FooterRecord::id) handleFooter(static_cast<FooterRecord*>(record)); else if (type == HeaderRecord::id) handleHeader(static_cast<HeaderRecord*>(record)); else if (type == LabelRecord::id) handleLabel(static_cast<LabelRecord*>(record)); else if (type == LabelSSTRecord::id) handleLabelSST(static_cast<LabelSSTRecord*>(record)); else if (type == LeftMarginRecord::id) handleLeftMargin(static_cast<LeftMarginRecord*>(record)); else if (type == MergedCellsRecord::id) handleMergedCells(static_cast<MergedCellsRecord*>(record)); else if (type == MulBlankRecord::id) handleMulBlank(static_cast<MulBlankRecord*>(record)); else if (type == MulRKRecord::id) handleMulRK(static_cast<MulRKRecord*>(record)); else if (type == NumberRecord::id) handleNumber(static_cast<NumberRecord*>(record)); else if (type == RightMarginRecord::id) handleRightMargin(static_cast<RightMarginRecord*>(record)); else if (type == RKRecord::id) handleRK(static_cast<RKRecord*>(record)); else if (type == RowRecord::id) handleRow(static_cast<RowRecord*>(record)); else if (type == RStringRecord::id) handleRString(static_cast<RStringRecord*>(record)); else if (type == SharedFormulaRecord::id) handleSharedFormula(static_cast<SharedFormulaRecord*>(record)); else if (type == StringRecord::id) handleString(static_cast<StringRecord*>(record)); else if (type == TopMarginRecord::id) handleTopMargin(static_cast<TopMarginRecord*>(record)); else if (type == HLinkRecord::id) handleHLink(static_cast<HLinkRecord*>(record)); else if (type == NoteRecord::id) handleNote(static_cast<NoteRecord*>(record)); else if (type == ObjRecord::id) handleObj(static_cast<ObjRecord*>(record)); else if (type == TxORecord::id) handleTxO(static_cast<TxORecord*>(record)); else if (type == BOFRecord::id) handleBOF(static_cast<BOFRecord*>(record)); else if (type == DefaultRowHeightRecord::id) handleDefaultRowHeight(static_cast<DefaultRowHeightRecord*>(record)); else if (type == DefaultColWidthRecord::id) handleDefaultColWidth(static_cast<DefaultColWidthRecord*>(record)); else if (type == SetupRecord::id) handleSetup(static_cast<SetupRecord*>(record)); else if (type == HCenterRecord::id) handleHCenter(static_cast<HCenterRecord*>(record)); else if (type == VCenterRecord::id) handleVCenter(static_cast<VCenterRecord*>(record)); else if (type == ZoomLevelRecord::id) handleZoomLevel(static_cast<ZoomLevelRecord*>(record)); else if (type == 0xA) {} //EofRecord else if (type == DimensionRecord::id) handleDimension(static_cast<DimensionRecord*>(record)); else if (type == MsoDrawingRecord::id) handleMsoDrawing(static_cast<MsoDrawingRecord*>(record)); else if (type == Window2Record::id) handleWindow2(static_cast<Window2Record*>(record)); else if (type == PasswordRecord::id) handlePassword(static_cast<PasswordRecord*>(record)); else if (type == BkHimRecord::id) handleBkHim(static_cast<BkHimRecord*>(record)); else if (type == VerticalPageBreaksRecord::id) handleVerticalPageBreaksRecord(static_cast<VerticalPageBreaksRecord*>(record)); else if (type == HorizontalPageBreaksRecord::id) handleHorizontalPageBreaksRecord(static_cast<HorizontalPageBreaksRecord*>(record)); else if (type == CondFmtRecord::id) handleCondFmtRecord(static_cast<CondFmtRecord*>(record)); else if (type == CFRecord::id) handleCFRecord(static_cast<CFRecord*>(record)); else { //std::cout << "Unhandled worksheet record with type=" << type << " name=" << record->name() << std::endl; } }