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_SOT_SOURCE_SDSTOR_STGCACHE_HXX
21 : #define INCLUDED_SOT_SOURCE_SDSTOR_STGCACHE_HXX
22 :
23 : #include <osl/endian.h>
24 : #include <rtl/ref.hxx>
25 : #include <tools/solar.h>
26 : #include <tools/stream.hxx>
27 : #include <stgelem.hxx>
28 : #include <boost/noncopyable.hpp>
29 : #include <boost/unordered_map.hpp>
30 : #include <salhelper/simplereferenceobject.hxx>
31 :
32 : class UCBStorageStream;
33 : class StgPage;
34 : class StgDirEntry;
35 : class StorageBase;
36 :
37 : class StgCache
38 : {
39 : typedef boost::unordered_map
40 : <
41 : sal_Int32, rtl::Reference< StgPage >,
42 : boost::hash< sal_Int32 >, std::equal_to< sal_Int32 >
43 : > IndexToStgPage;
44 :
45 : typedef std::vector< rtl::Reference< StgPage > > LRUList;
46 :
47 : sal_uLong nError; // error code
48 : sal_Int32 nPages; // size of data area in pages
49 : sal_uInt16 nRef; // reference count
50 : IndexToStgPage maDirtyPages; // hash of all dirty pages
51 : int nReplaceIdx; // index into maLRUPages to replace next
52 : LRUList maLRUPages; // list of last few non-dirty pages.
53 : short nPageSize; // page size of the file
54 : UCBStorageStream* pStorageStream; // holds reference to UCB storage stream
55 :
56 : void Erase( const rtl::Reference< StgPage >& ); // delete a cache element
57 : rtl::Reference< StgPage > Create( sal_Int32 ); // create a cached page
58 : protected:
59 : SvStream* pStrm; // physical stream
60 : bool bMyStream; // true: delete stream in dtor
61 : bool bFile; // true: file stream
62 : sal_Int32 Page2Pos( sal_Int32 ); // page address --> file position
63 : public:
64 : StgCache();
65 : ~StgCache();
66 13830 : void IncRef() { nRef++; }
67 13830 : sal_uInt16 DecRef() { return --nRef; }
68 : void SetPhysPageSize( short );
69 47527 : sal_Int32 GetPhysPages() { return nPages; }
70 39992 : short GetPhysPageSize() { return nPageSize; }
71 10179 : SvStream* GetStrm() { return pStrm; }
72 : void SetStrm( SvStream*, bool );
73 : void SetStrm( UCBStorageStream* );
74 : bool IsWritable() { return ( pStrm && pStrm->IsWritable() ); }
75 376453 : bool Good() { return nError == SVSTREAM_OK; }
76 : bool Bad() { return nError != SVSTREAM_OK; }
77 2540 : sal_uLong GetError() { return nError; }
78 : void MoveError( StorageBase& );
79 : void SetError( sal_uLong );
80 : void ResetError();
81 : bool Open( const OUString& rName, StreamMode );
82 : void Close();
83 : bool Read( sal_Int32 nPage, void* pBuf, sal_Int32 nPages );
84 : bool Write( sal_Int32 nPage, void* pBuf, sal_Int32 nPages );
85 :
86 : // two routines for accessing FAT pages
87 : // Assume that the data is a FAT page and get/put FAT data.
88 : void SetToPage ( const rtl::Reference< StgPage > xPage, short nOff, sal_Int32 nVal );
89 : inline sal_Int32 GetFromPage ( const rtl::Reference< StgPage > xPage, short nOff );
90 : void SetDirty ( const rtl::Reference< StgPage > &xPage );
91 : bool SetSize( sal_Int32 nPages );
92 : rtl::Reference< StgPage > Find( sal_Int32 ); // find a cached page
93 : rtl::Reference< StgPage > Get( sal_Int32, bool ); // get a cached page
94 : rtl::Reference< StgPage > Copy( sal_Int32, sal_Int32=STG_FREE ); // copy a page
95 : bool Commit(); // flush all pages
96 : void Clear(); // clear the cache
97 : };
98 :
99 : class StgPage : public salhelper::SimpleReferenceObject, private boost::noncopyable
100 : {
101 : const sal_Int32 mnPage; // page index
102 : sal_uInt8* mpData; // nSize bytes
103 : short mnSize; // size of this page
104 : StgPage( short nData, sal_Int32 nPage );
105 : virtual ~StgPage();
106 : public:
107 : static rtl::Reference< StgPage > Create( short nData, sal_Int32 nPage );
108 :
109 13978808 : sal_Int32 GetPage() { return mnPage; }
110 3488218 : void* GetData() { return mpData; }
111 1171526 : short GetSize() { return mnSize; }
112 :
113 : public:
114 : static bool IsPageGreater( const StgPage *pA, const StgPage *pB );
115 : };
116 :
117 963715 : inline sal_Int32 StgCache::GetFromPage ( const rtl::Reference< StgPage > xPage, short nOff )
118 : {
119 963715 : if( ( nOff >= (short) ( xPage->GetSize() / sizeof( sal_Int32 ) ) ) || nOff < 0 )
120 2 : return -1;
121 963713 : sal_Int32 n = ((sal_Int32*) xPage->GetData() )[ nOff ];
122 : #ifdef OSL_BIGENDIAN
123 : return OSL_SWAPDWORD(n);
124 : #else
125 963713 : return n;
126 : #endif
127 : }
128 :
129 : #endif
130 :
131 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|