Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / dtrans / source / win32 / dtobj / DTransHelper.hxx
blobe003c2a70629e1aaae8daf279e89b4db85931567
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 #ifndef INCLUDED_DTRANS_SOURCE_WIN32_DTOBJ_DTRANSHELPER_HXX
21 #define INCLUDED_DTRANS_SOURCE_WIN32_DTOBJ_DTRANSHELPER_HXX
23 #if !defined WIN32_LEAN_AND_MEAN
24 # define WIN32_LEAN_AND_MEAN
25 #endif
26 #include <windows.h>
27 #include <objidl.h>
28 #include <WinClip.hxx>
30 #define AUTO_INIT TRUE
32 // a helper class to manage a global memory area, the clients can write
33 // into the global memory area and extract the handle to the global mem
34 // note: not thread-safe
36 class CStgTransferHelper
38 public:
39 // will be thrown in case of failures
40 class CStgTransferException
42 public:
43 HRESULT m_hr;
44 explicit CStgTransferException( HRESULT hr ) : m_hr( hr ) {};
47 public:
48 CStgTransferHelper(
49 bool bAutoInit = false,
50 HGLOBAL hGlob = nullptr,
51 bool bDelStgOnRelease = false );
53 ~CStgTransferHelper( );
55 void write( const void* lpData, ULONG cb, ULONG* cbWritten = nullptr );
56 void read( LPVOID pv, ULONG cb, ULONG* pcbRead = nullptr );
58 HGLOBAL getHGlobal( ) const;
59 void getIStream( LPSTREAM* ppStream );
61 void init(
62 SIZE_T newSize,
63 sal_uInt32 uiFlags = GHND,
64 bool bDelStgOnRelease = false );
66 void init(
67 HGLOBAL hGlob,
68 bool bDelStgOnRelease = false );
70 // returns the size of the managed memory
71 sal_uInt32 memSize( CLIPFORMAT cf = CF_INVALID ) const;
73 // free the global memory and necessary
74 // release the internal stream pointer
75 void cleanup( );
77 private:
78 LPSTREAM m_lpStream;
79 bool m_bDelStgOnRelease;
81 private:
82 CStgTransferHelper( const CStgTransferHelper& );
83 CStgTransferHelper& operator=( const CStgTransferHelper& );
86 // something like an auto-pointer - allows access to the memory belonging
87 // to a HGLOBAL and automatically unlocks a global memory at destruction
88 // time
90 class CRawHGlobalPtr
92 public:
94 // ctor
96 explicit CRawHGlobalPtr( HGLOBAL hGlob ) :
97 m_hGlob( hGlob ),
98 m_bIsLocked( FALSE ),
99 m_pGlobMem( nullptr )
103 // ctor
105 explicit CRawHGlobalPtr( const CStgTransferHelper& theHGlobalHelper ) :
106 m_hGlob( theHGlobalHelper.getHGlobal( ) ),
107 m_bIsLocked( FALSE ),
108 m_pGlobMem( nullptr )
112 // dtor
114 ~CRawHGlobalPtr( )
116 if ( m_bIsLocked )
117 GlobalUnlock( m_hGlob );
120 // lock the global memory (initializes a
121 // pointer to this memory)
123 BOOL Lock( )
125 if ( !m_bIsLocked && ( nullptr != m_hGlob ) )
127 m_pGlobMem = GlobalLock( m_hGlob );
128 m_bIsLocked = ( nullptr != m_pGlobMem );
131 return m_bIsLocked;
134 // unlock the global memory (invalidates the
135 // pointer to this memory)
137 BOOL Unlock( )
139 GlobalUnlock( m_hGlob );
140 m_bIsLocked = FALSE;
141 m_pGlobMem = nullptr;
143 return ( NO_ERROR == GetLastError( ) );
146 // locks the global memory and returns a
147 // pointer to this memory
149 LPVOID GetMemPtr( )
151 Lock( );
152 return m_pGlobMem;
155 // size of mem we point to
157 int MemSize( ) const
159 return GlobalSize( m_hGlob );
162 private:
163 HGLOBAL m_hGlob;
164 BOOL m_bIsLocked;
165 LPVOID m_pGlobMem;
168 #endif
170 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */