Related: tdf#163126 fix failure to restart print job
[LibreOffice.git] / vcl / win / dtrans / DTransHelper.hxx
blobd8ab3349cb429dc6e22635fb83df8aa669f0df9b
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 #pragma once
22 #if !defined WIN32_LEAN_AND_MEAN
23 # define WIN32_LEAN_AND_MEAN
24 #endif
25 #include <windows.h>
26 #include <objidl.h>
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
37 public:
38 // will be thrown in case of failures
39 class CStgTransferException
41 public:
42 HRESULT m_hr;
43 explicit CStgTransferException( HRESULT hr ) : m_hr( hr ) {};
46 public:
47 CStgTransferHelper(
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 );
60 void init(
61 SIZE_T newSize,
62 sal_uInt32 uiFlags = GHND,
63 bool bDelStgOnRelease = false );
65 void init(
66 HGLOBAL hGlob,
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
74 void cleanup( );
76 private:
77 LPSTREAM m_lpStream;
78 bool m_bDelStgOnRelease;
80 private:
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
87 // time
89 class CRawHGlobalPtr
91 public:
93 // ctor
95 explicit CRawHGlobalPtr( HGLOBAL hGlob ) :
96 m_hGlob( hGlob ),
97 m_bIsLocked( false ),
98 m_pGlobMem( nullptr )
102 // ctor
104 explicit CRawHGlobalPtr( const CStgTransferHelper& theHGlobalHelper ) :
105 m_hGlob( theHGlobalHelper.getHGlobal( ) ),
106 m_bIsLocked( false ),
107 m_pGlobMem( nullptr )
111 // dtor
113 ~CRawHGlobalPtr( )
115 if ( m_bIsLocked )
116 GlobalUnlock( m_hGlob );
119 // lock the global memory (initializes a
120 // pointer to this memory)
122 BOOL Lock( )
124 if ( !m_bIsLocked && ( nullptr != m_hGlob ) )
126 m_pGlobMem = GlobalLock( m_hGlob );
127 m_bIsLocked = ( nullptr != m_pGlobMem );
130 return m_bIsLocked;
133 // unlock the global memory (invalidates the
134 // pointer to this memory)
136 BOOL Unlock( )
138 GlobalUnlock( m_hGlob );
139 m_bIsLocked = false;
140 m_pGlobMem = nullptr;
142 return ( NO_ERROR == GetLastError( ) );
145 // locks the global memory and returns a
146 // pointer to this memory
148 LPVOID GetMemPtr( )
150 Lock( );
151 return m_pGlobMem;
154 // size of mem we point to
156 int MemSize( ) const
158 return GlobalSize( m_hGlob );
161 private:
162 HGLOBAL m_hGlob;
163 bool m_bIsLocked;
164 LPVOID m_pGlobMem;
167 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */