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_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
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
39 // will be thrown in case of failures
40 class CStgTransferException
44 explicit CStgTransferException( HRESULT hr
) : m_hr( hr
) {};
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
);
63 sal_uInt32 uiFlags
= GHND
,
64 bool bDelStgOnRelease
= false );
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
79 bool m_bDelStgOnRelease
;
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
96 explicit CRawHGlobalPtr( HGLOBAL hGlob
) :
105 explicit CRawHGlobalPtr( const CStgTransferHelper
& theHGlobalHelper
) :
106 m_hGlob( theHGlobalHelper
.getHGlobal( ) ),
107 m_bIsLocked( FALSE
),
108 m_pGlobMem( nullptr )
117 GlobalUnlock( m_hGlob
);
120 // lock the global memory (initializes a
121 // pointer to this memory)
125 if ( !m_bIsLocked
&& ( nullptr != m_hGlob
) )
127 m_pGlobMem
= GlobalLock( m_hGlob
);
128 m_bIsLocked
= ( nullptr != m_pGlobMem
);
134 // unlock the global memory (invalidates the
135 // pointer to this memory)
139 GlobalUnlock( m_hGlob
);
141 m_pGlobMem
= nullptr;
143 return ( NO_ERROR
== GetLastError( ) );
146 // locks the global memory and returns a
147 // pointer to this memory
155 // size of mem we point to
159 return GlobalSize( m_hGlob
);
170 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */