1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #ifndef INCLUDED_STORE_SOURCE_STORLCKB_HXX
21 #define INCLUDED_STORE_SOURCE_STORLCKB_HXX
23 #include <sal/types.h>
25 #include <rtl/string.h>
26 #include <rtl/ref.hxx>
29 #include "storbase.hxx"
34 class OStorePageManager
;
35 struct OStoreDataPageData
;
36 struct OStoreDirectoryPageData
;
38 class OStoreLockBytes
: public store::OStoreObject
45 /** create (two-phase construction).
46 * @param pManager [in]
50 * @return store_E_None upon success
53 OStorePageManager
*pManager
,
54 rtl_String
const *pPath
,
55 rtl_String
const *pName
,
56 storeAccessMode eAccessMode
);
58 /** Read at Offset into Buffer.
60 * @param pBuffer [out]
63 * @return store_E_None upon success
71 /** Write at Offset from Buffer.
76 * @return store_E_None upon success
86 * @return store_E_None upon success
88 storeError
setSize (sal_uInt32 nSize
);
92 virtual bool isKindOf (sal_uInt32 nMagic
) override
;
95 /** Destruction (OReference).
97 virtual ~OStoreLockBytes() override
;
100 /** IStoreHandle TypeId.
102 static const sal_uInt32 m_nTypeId
;
104 /** IStoreHandle query() template specialization.
106 friend OStoreLockBytes
*
107 SAL_CALL query
<> (OStoreObject
*pHandle
, OStoreLockBytes
*);
111 rtl::Reference
<OStorePageManager
> m_xManager
;
113 typedef OStoreDataPageData data
;
114 typedef OStoreDirectoryPageData inode
;
116 typedef PageHolderObject
< inode
> inode_holder_type
;
117 inode_holder_type m_xNode
;
121 OStoreLockBytes (const OStoreLockBytes
&) = delete;
122 OStoreLockBytes
& operator= (const OStoreLockBytes
&) = delete;
125 template<> inline OStoreLockBytes
*
126 SAL_CALL
query (OStoreObject
*pHandle
, SAL_UNUSED_PARAMETER OStoreLockBytes
*)
128 if (pHandle
&& pHandle
->isKindOf (OStoreLockBytes::m_nTypeId
))
130 // Handle is kind of OStoreLockBytes.
131 return static_cast<OStoreLockBytes
*>(pHandle
);
138 #endif // INCLUDED_STORE_SOURCE_STORLCKB_HXX
140 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */