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 .
22 #if !defined WIN32_LEAN_AND_MEAN
23 # define WIN32_LEAN_AND_MEAN
27 #include "WinClip.hxx"
29 #define AUTO_INIT true
31 // a helper class to manage a global memory area, the clients can write
32 // into the global memory area and extract the handle to the global mem
33 // note: not thread-safe
35 class CStgTransferHelper
38 // will be thrown in case of failures
39 class CStgTransferException
43 explicit CStgTransferException( HRESULT hr
) : m_hr( hr
) {};
48 bool bAutoInit
= false,
49 HGLOBAL hGlob
= nullptr,
50 bool bDelStgOnRelease
= false );
52 ~CStgTransferHelper( );
54 void write( const void* lpData
, ULONG cb
, ULONG
* cbWritten
= nullptr );
55 void read( LPVOID pv
, ULONG cb
, ULONG
* pcbRead
= nullptr );
57 HGLOBAL
getHGlobal( ) const;
58 void getIStream( LPSTREAM
* ppStream
);
62 sal_uInt32 uiFlags
= GHND
,
63 bool bDelStgOnRelease
= false );
67 bool bDelStgOnRelease
= false );
69 // returns the size of the managed memory
70 sal_uInt32
memSize( CLIPFORMAT cf
= CF_INVALID
) const;
72 // free the global memory and necessary
73 // release the internal stream pointer
78 bool m_bDelStgOnRelease
;
81 CStgTransferHelper( const CStgTransferHelper
& );
82 CStgTransferHelper
& operator=( const CStgTransferHelper
& );
85 // something like an auto-pointer - allows access to the memory belonging
86 // to a HGLOBAL and automatically unlocks a global memory at destruction
95 explicit CRawHGlobalPtr( HGLOBAL hGlob
) :
104 explicit CRawHGlobalPtr( const CStgTransferHelper
& theHGlobalHelper
) :
105 m_hGlob( theHGlobalHelper
.getHGlobal( ) ),
106 m_bIsLocked( false ),
107 m_pGlobMem( nullptr )
116 GlobalUnlock( m_hGlob
);
119 // lock the global memory (initializes a
120 // pointer to this memory)
124 if ( !m_bIsLocked
&& ( nullptr != m_hGlob
) )
126 m_pGlobMem
= GlobalLock( m_hGlob
);
127 m_bIsLocked
= ( nullptr != m_pGlobMem
);
133 // unlock the global memory (invalidates the
134 // pointer to this memory)
138 GlobalUnlock( m_hGlob
);
140 m_pGlobMem
= nullptr;
142 return ( NO_ERROR
== GetLastError( ) );
145 // locks the global memory and returns a
146 // pointer to this memory
154 // size of mem we point to
158 return GlobalSize( m_hGlob
);
167 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */