android: Update app-specific/MIME type icons
[LibreOffice.git] / sd / source / filter / ppt / pptatom.cxx
blob24d87f04015254ae25e2c4cdd4d5e40b51b250a4
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <tools/stream.hxx>
21 #include "pptatom.hxx"
23 using namespace ppt;
25 Atom::Atom( const DffRecordHeader& rRecordHeader, SvStream& rStream )
26 : mrStream( rStream )
27 , maRecordHeader( rRecordHeader )
28 , mpFirstChild( nullptr )
29 , mpNextAtom( nullptr )
31 if( isContainer() )
33 if( seekToContent() )
35 DffRecordHeader aChildHeader;
37 Atom* pLastAtom = nullptr;
39 // retrieve file size (to allow sanity checks)
40 sal_uInt64 const nStreamSize = mrStream.TellEnd();
42 while( mrStream.good()
43 && ( mrStream.Tell() < nStreamSize )
44 && ( mrStream.Tell() < maRecordHeader.GetRecEndFilePos() ) )
46 if (ReadDffRecordHeader(mrStream, aChildHeader))
48 Atom* pAtom = new Atom( aChildHeader, mrStream );
50 if( pLastAtom )
51 pLastAtom->mpNextAtom = pAtom;
52 if( mpFirstChild == nullptr )
53 mpFirstChild = pAtom;
55 pLastAtom = pAtom;
61 if (!maRecordHeader.SeekToEndOfRecord(mrStream))
62 mrStream.SetError(SVSTREAM_FILEFORMAT_ERROR);
65 Atom::~Atom()
67 Atom* pChild = mpFirstChild;
68 while( pChild )
70 Atom* pNextChild = pChild->mpNextAtom;
71 delete pChild;
72 pChild = pNextChild;
76 /** imports this atom and its child atoms */
77 Atom* Atom::import( const DffRecordHeader& rRootRecordHeader, SvStream& rStCtrl )
79 Atom* pRootAtom = new Atom( rRootRecordHeader, rStCtrl );
81 if( rStCtrl.GetError() == ERRCODE_NONE )
83 return pRootAtom;
85 else
87 delete pRootAtom;
88 return nullptr;
92 /** returns the next child atom after pLast with nRecType or NULL */
93 const Atom* Atom::findNextChildAtom( sal_uInt16 nRecType, const Atom* pLast ) const
95 Atom* pChild = pLast != nullptr ? pLast->mpNextAtom : mpFirstChild;
96 while( pChild && pChild->maRecordHeader.nRecType != nRecType )
98 pChild = pChild->mpNextAtom;
101 return pChild;
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */