LCOV - code coverage report
Current view: top level - sd/source/filter/ppt - propread.hxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 10 10 100.0 %
Date: 2015-06-13 12:38:46 Functions: 8 9 88.9 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      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 .
      18             :  */
      19             : 
      20             : #ifndef INCLUDED_SD_SOURCE_FILTER_PPT_PROPREAD_HXX
      21             : #define INCLUDED_SD_SOURCE_FILTER_PPT_PROPREAD_HXX
      22             : 
      23             : #include <map>
      24             : #include <boost/ptr_container/ptr_vector.hpp>
      25             : 
      26             : #include <sal/types.h>
      27             : #include <sot/storage.hxx>
      28             : #include <tools/stream.hxx>
      29             : 
      30             : // SummaryInformation
      31             : #define PID_TITLE               0x02
      32             : #define PID_SUBJECT             0x03
      33             : #define PID_AUTHOR              0x04
      34             : #define PID_KEYWORDS            0x05
      35             : #define PID_COMMENTS            0x06
      36             : #define PID_TEMPLATE            0x07
      37             : #define PID_LASTAUTHOR          0x08
      38             : #define PID_REVNUMBER           0x09
      39             : #define PID_CREATE_DTM          0x0c
      40             : 
      41             : // DocumentSummaryInformation
      42             : #define PID_SLIDECOUNT          0x07
      43             : #define PID_HEADINGPAIR         0x0c
      44             : #define PID_DOCPARTS            0x0d
      45             : 
      46             : #define VT_EMPTY            0
      47             : #define VT_NULL             1
      48             : #define VT_I2               2
      49             : #define VT_I4               3
      50             : #define VT_R4               4
      51             : #define VT_R8               5
      52             : #define VT_CY               6
      53             : #define VT_DATE             7
      54             : #define VT_BSTR             8
      55             : #define VT_UI4              9
      56             : #define VT_ERROR            10
      57             : #define VT_BOOL             11
      58             : #define VT_VARIANT          12
      59             : #define VT_DECIMAL          14
      60             : #define VT_I1               16
      61             : #define VT_UI1              17
      62             : #define VT_UI2              18
      63             : #define VT_I8               20
      64             : #define VT_UI8              21
      65             : #define VT_INT              22
      66             : #define VT_UINT             23
      67             : #define VT_LPSTR            30
      68             : #define VT_LPWSTR           31
      69             : #define VT_FILETIME         64
      70             : #define VT_BLOB             65
      71             : #define VT_STREAM           66
      72             : #define VT_STORAGE          67
      73             : #define VT_STREAMED_OBJECT  68
      74             : #define VT_STORED_OBJECT    69
      75             : #define VT_BLOB_OBJECT      70
      76             : #define VT_CF               71
      77             : #define VT_CLSID            72
      78             : #define VT_VECTOR           0x1000
      79             : #define VT_ARRAY            0x2000
      80             : #define VT_BYREF            0x4000
      81             : #define VT_TYPEMASK         0xFFF
      82             : 
      83             : typedef std::map<OUString,sal_uInt32> Dictionary;
      84             : 
      85             : struct PropEntry
      86             : {
      87             :     sal_uInt32  mnId;
      88             :     sal_uInt32  mnSize;
      89             :     sal_uInt16  mnTextEnc;
      90             :     sal_uInt8*  mpBuf;
      91             : 
      92             :     PropEntry( sal_uInt32 nId, const sal_uInt8* pBuf, sal_uInt32 nBufSize, sal_uInt16 nTextEnc );
      93             :     PropEntry( const PropEntry& rProp );
      94         196 :     ~PropEntry() { delete[] mpBuf; } ;
      95             : 
      96             :     PropEntry& operator=(const PropEntry& rPropEntry);
      97             : };
      98             : 
      99          29 : class PropItem : public SvMemoryStream
     100             : {
     101             :     sal_uInt16      mnTextEnc;
     102             : 
     103             : public:
     104          29 :     PropItem()
     105          29 :         : mnTextEnc(RTL_TEXTENCODING_DONTKNOW)
     106             :     {
     107          29 :     }
     108             :     void            Clear();
     109             : 
     110          32 :     void            SetTextEncoding( sal_uInt16 nTextEnc ){ mnTextEnc = nTextEnc; };
     111             :     bool        Read( OUString& rString, sal_uInt32 nType = VT_EMPTY, bool bDwordAlign = true );
     112             :     PropItem&       operator=( PropItem& rPropItem );
     113             : 
     114             :     using SvStream::Read;
     115             : };
     116             : 
     117          40 : class Section
     118             : {
     119             :         sal_uInt16              mnTextEnc;
     120             :         boost::ptr_vector<PropEntry> maEntries;
     121             : 
     122             :     protected:
     123             : 
     124             :         sal_uInt8                   aFMTID[ 16 ];
     125             : 
     126             :         void                    AddProperty( sal_uInt32 nId, const sal_uInt8* pBuf, sal_uInt32 nBufSize );
     127             : 
     128             :     public:
     129             :                                 Section( const sal_uInt8* pFMTID );
     130             :                                 Section( const Section& rSection );
     131             : 
     132             :         Section&                operator=( const Section& rSection );
     133             :         bool                GetProperty( sal_uInt32 nId, PropItem& rPropItem );
     134             :         bool                GetDictionary( Dictionary& rDict );
     135          32 :         const sal_uInt8*        GetFMTID() const { return aFMTID; };
     136             :         void                    Read( SotStorageStream* pStrm );
     137             : };
     138             : 
     139          12 : class PropRead
     140             : {
     141             :         bool                mbStatus;
     142             :         tools::SvRef<SotStorageStream>      mpSvStream;
     143             : 
     144             :         sal_uInt16              mnByteOrder;
     145             :         sal_uInt16              mnFormat;
     146             :         sal_uInt16              mnVersionLo;
     147             :         sal_uInt16              mnVersionHi;
     148             :         sal_uInt8               mApplicationCLSID[ 16 ];
     149             :         boost::ptr_vector<Section> maSections;
     150             : 
     151             :         void                    AddSection( Section& rSection );
     152             : 
     153             :     public:
     154             :                                 PropRead( SotStorage& rSvStorage, const OUString& rName );
     155             : 
     156             :         PropRead&               operator=( const PropRead& rPropRead );
     157             :         const Section*          GetSection( const sal_uInt8* pFMTID );
     158          12 :         bool                IsValid() const { return mbStatus; };
     159             :         void                    Read();
     160             : };
     161             : 
     162             : #endif
     163             : 
     164             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11