Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include <osl/file.h>
21 : #include <tools/vcompat.hxx>
22 : #include <tools/debug.hxx>
23 : #include <unotools/ucbstreamhelper.hxx>
24 : #include <unotools/tempfile.hxx>
25 : #include <ucbhelper/content.hxx>
26 : #include <vcl/graph.hxx>
27 : #include <vcl/gfxlink.hxx>
28 : #include <vcl/cvtgrf.hxx>
29 : #include <com/sun/star/ucb/CommandAbortedException.hpp>
30 : #include <boost/scoped_ptr.hpp>
31 :
32 47494 : GfxLink::GfxLink() :
33 : meType ( GFX_LINK_TYPE_NONE ),
34 : mpBuf ( NULL ),
35 : mpSwap ( NULL ),
36 : mnBufSize ( 0 ),
37 : mnUserId ( 0UL ),
38 47494 : mpImpData ( new ImpGfxLink )
39 : {
40 47494 : }
41 :
42 12985 : GfxLink::GfxLink( const GfxLink& rGfxLink ) :
43 12985 : mpImpData( new ImpGfxLink )
44 : {
45 12985 : ImplCopy( rGfxLink );
46 12985 : }
47 :
48 2517 : GfxLink::GfxLink( sal_uInt8* pBuf, sal_uInt32 nSize, GfxLinkType nType, bool bOwns ) :
49 2517 : mpImpData( new ImpGfxLink )
50 : {
51 : DBG_ASSERT( (pBuf != NULL && nSize) || (!bOwns && nSize == 0),
52 : "GfxLink::GfxLink(): empty/NULL buffer given" );
53 :
54 2517 : meType = nType;
55 2517 : mnBufSize = nSize;
56 2517 : mpSwap = NULL;
57 2517 : mnUserId = 0UL;
58 :
59 2517 : if( bOwns )
60 2517 : mpBuf = new ImpBuffer( pBuf );
61 0 : else if( nSize )
62 : {
63 0 : mpBuf = new ImpBuffer( nSize );
64 0 : memcpy( mpBuf->mpBuffer, pBuf, nSize );
65 : }
66 : else
67 0 : mpBuf = NULL;
68 2517 : }
69 :
70 62777 : GfxLink::~GfxLink()
71 : {
72 62777 : if( mpBuf && !( --mpBuf->mnRefCount ) )
73 2883 : delete mpBuf;
74 :
75 62777 : if( mpSwap && !( --mpSwap->mnRefCount ) )
76 2465 : delete mpSwap;
77 :
78 62777 : delete mpImpData;
79 62777 : }
80 :
81 24527 : GfxLink& GfxLink::operator=( const GfxLink& rGfxLink )
82 : {
83 24527 : if( &rGfxLink != this )
84 : {
85 24527 : if ( mpBuf && !( --mpBuf->mnRefCount ) )
86 0 : delete mpBuf;
87 :
88 24527 : if( mpSwap && !( --mpSwap->mnRefCount ) )
89 24 : delete mpSwap;
90 :
91 24527 : ImplCopy( rGfxLink );
92 : }
93 :
94 24527 : return *this;
95 : }
96 :
97 0 : bool GfxLink::IsEqual( const GfxLink& rGfxLink ) const
98 : {
99 0 : bool bIsEqual = false;
100 :
101 0 : if ( ( mnBufSize == rGfxLink.mnBufSize ) && ( meType == rGfxLink.meType ) )
102 : {
103 0 : const sal_uInt8* pSource = GetData();
104 0 : const sal_uInt8* pDest = rGfxLink.GetData();
105 0 : sal_uInt32 nSourceSize = GetDataSize();
106 0 : sal_uInt32 nDestSize = rGfxLink.GetDataSize();
107 0 : if ( pSource && pDest && ( nSourceSize == nDestSize ) )
108 : {
109 0 : bIsEqual = memcmp( pSource, pDest, nSourceSize ) == 0;
110 : }
111 0 : else if ( ( pSource == 0 ) && ( pDest == 0 ) )
112 0 : bIsEqual = true;
113 : }
114 0 : return bIsEqual;
115 : }
116 :
117 37512 : void GfxLink::ImplCopy( const GfxLink& rGfxLink )
118 : {
119 37512 : mnBufSize = rGfxLink.mnBufSize;
120 37512 : meType = rGfxLink.meType;
121 37512 : mpBuf = rGfxLink.mpBuf;
122 37512 : mpSwap = rGfxLink.mpSwap;
123 37512 : mnUserId = rGfxLink.mnUserId;
124 37512 : *mpImpData = *rGfxLink.mpImpData;
125 :
126 37512 : if( mpBuf )
127 2541 : mpBuf->mnRefCount++;
128 :
129 37512 : if( mpSwap )
130 12128 : mpSwap->mnRefCount++;
131 37512 : }
132 :
133 :
134 11103 : bool GfxLink::IsNative() const
135 : {
136 11103 : return( meType >= GFX_LINK_FIRST_NATIVE_ID && meType <= GFX_LINK_LAST_NATIVE_ID );
137 : }
138 :
139 :
140 520 : const sal_uInt8* GfxLink::GetData() const
141 : {
142 520 : if( IsSwappedOut() )
143 366 : ( (GfxLink*) this )->SwapIn();
144 :
145 520 : return( mpBuf ? mpBuf->mpBuffer : NULL );
146 : }
147 :
148 :
149 64 : void GfxLink::SetPrefSize( const Size& rPrefSize )
150 : {
151 64 : mpImpData->maPrefSize = rPrefSize;
152 64 : mpImpData->mbPrefSizeValid = true;
153 64 : }
154 :
155 :
156 :
157 64 : void GfxLink::SetPrefMapMode( const MapMode& rPrefMapMode )
158 : {
159 64 : mpImpData->maPrefMapMode = rPrefMapMode;
160 64 : mpImpData->mbPrefMapModeValid = true;
161 64 : }
162 :
163 :
164 24 : bool GfxLink::LoadNative( Graphic& rGraphic )
165 : {
166 24 : bool bRet = false;
167 :
168 24 : if( IsNative() && mnBufSize )
169 : {
170 24 : const sal_uInt8* pData = GetData();
171 :
172 24 : if( pData )
173 : {
174 24 : SvMemoryStream aMemStm;
175 : sal_uLong nCvtType;
176 :
177 24 : aMemStm.SetBuffer( (char*) pData, mnBufSize, false, mnBufSize );
178 :
179 24 : switch( meType )
180 : {
181 0 : case( GFX_LINK_TYPE_NATIVE_GIF ): nCvtType = CVT_GIF; break;
182 :
183 : // #i15508# added BMP type for better exports (reload when swapped - checked, works)
184 0 : case( GFX_LINK_TYPE_NATIVE_BMP ): nCvtType = CVT_BMP; break;
185 :
186 8 : case( GFX_LINK_TYPE_NATIVE_JPG ): nCvtType = CVT_JPG; break;
187 16 : case( GFX_LINK_TYPE_NATIVE_PNG ): nCvtType = CVT_PNG; break;
188 0 : case( GFX_LINK_TYPE_NATIVE_TIF ): nCvtType = CVT_TIF; break;
189 0 : case( GFX_LINK_TYPE_NATIVE_WMF ): nCvtType = CVT_WMF; break;
190 0 : case( GFX_LINK_TYPE_NATIVE_MET ): nCvtType = CVT_MET; break;
191 0 : case( GFX_LINK_TYPE_NATIVE_PCT ): nCvtType = CVT_PCT; break;
192 0 : case( GFX_LINK_TYPE_NATIVE_SVG ): nCvtType = CVT_SVG; break;
193 :
194 0 : default: nCvtType = CVT_UNKNOWN; break;
195 : }
196 :
197 24 : if( nCvtType && ( GraphicConverter::Import( aMemStm, rGraphic, nCvtType ) == ERRCODE_NONE ) )
198 24 : bRet = true;
199 : }
200 : }
201 :
202 24 : return bRet;
203 : }
204 :
205 10957 : void GfxLink::SwapOut()
206 : {
207 10957 : if( !IsSwappedOut() && mpBuf )
208 : {
209 2513 : mpSwap = new ImpSwap( mpBuf->mpBuffer, mnBufSize );
210 :
211 2513 : if( !mpSwap->IsSwapped() )
212 : {
213 18 : delete mpSwap;
214 18 : mpSwap = NULL;
215 : }
216 : else
217 : {
218 2495 : if( !( --mpBuf->mnRefCount ) )
219 0 : delete mpBuf;
220 :
221 2495 : mpBuf = NULL;
222 : }
223 : }
224 10957 : }
225 :
226 366 : void GfxLink::SwapIn()
227 : {
228 366 : if( IsSwappedOut() )
229 : {
230 366 : mpBuf = new ImpBuffer( mpSwap->GetData() );
231 :
232 366 : if( !( --mpSwap->mnRefCount ) )
233 0 : delete mpSwap;
234 :
235 366 : mpSwap = NULL;
236 : }
237 366 : }
238 :
239 42 : bool GfxLink::ExportNative( SvStream& rOStream ) const
240 : {
241 42 : if( GetDataSize() )
242 : {
243 42 : if( IsSwappedOut() )
244 42 : mpSwap->WriteTo( rOStream );
245 0 : else if( GetData() )
246 0 : rOStream.Write( GetData(), GetDataSize() );
247 : }
248 :
249 42 : return ( rOStream.GetError() == ERRCODE_NONE );
250 : }
251 :
252 40 : SvStream& WriteGfxLink( SvStream& rOStream, const GfxLink& rGfxLink )
253 : {
254 40 : VersionCompat* pCompat = new VersionCompat( rOStream, STREAM_WRITE, 2 );
255 :
256 : // Version 1
257 40 : rOStream.WriteUInt16( rGfxLink.GetType() ).WriteUInt32( rGfxLink.GetDataSize() ).WriteUInt32( rGfxLink.GetUserId() );
258 :
259 : // Version 2
260 40 : WritePair( rOStream, rGfxLink.GetPrefSize() );
261 40 : WriteMapMode( rOStream, rGfxLink.GetPrefMapMode() );
262 :
263 40 : delete pCompat;
264 :
265 40 : if( rGfxLink.GetDataSize() )
266 : {
267 40 : if( rGfxLink.IsSwappedOut() )
268 40 : rGfxLink.mpSwap->WriteTo( rOStream );
269 0 : else if( rGfxLink.GetData() )
270 0 : rOStream.Write( rGfxLink.GetData(), rGfxLink.GetDataSize() );
271 : }
272 :
273 40 : return rOStream;
274 : }
275 :
276 24 : SvStream& ReadGfxLink( SvStream& rIStream, GfxLink& rGfxLink)
277 : {
278 24 : Size aSize;
279 24 : MapMode aMapMode;
280 : sal_uInt32 nSize;
281 : sal_uInt32 nUserId;
282 : sal_uInt16 nType;
283 : sal_uInt8* pBuf;
284 24 : bool bMapAndSizeValid( false );
285 24 : VersionCompat* pCompat = new VersionCompat( rIStream, STREAM_READ );
286 :
287 : // Version 1
288 24 : rIStream.ReadUInt16( nType ).ReadUInt32( nSize ).ReadUInt32( nUserId );
289 :
290 24 : if( pCompat->GetVersion() >= 2 )
291 : {
292 24 : ReadPair( rIStream, aSize );
293 24 : ReadMapMode( rIStream, aMapMode );
294 24 : bMapAndSizeValid = true;
295 : }
296 :
297 24 : delete pCompat;
298 :
299 24 : pBuf = new sal_uInt8[ nSize ];
300 24 : rIStream.Read( pBuf, nSize );
301 :
302 24 : rGfxLink = GfxLink( pBuf, nSize, (GfxLinkType) nType, true );
303 24 : rGfxLink.SetUserId( nUserId );
304 :
305 24 : if( bMapAndSizeValid )
306 : {
307 24 : rGfxLink.SetPrefSize( aSize );
308 24 : rGfxLink.SetPrefMapMode( aMapMode );
309 : }
310 :
311 24 : return rIStream;
312 : }
313 :
314 2513 : ImpSwap::ImpSwap( sal_uInt8* pData, sal_uLong nDataSize ) :
315 : mnDataSize( nDataSize ),
316 2513 : mnRefCount( 1UL )
317 : {
318 2513 : if( pData && mnDataSize )
319 : {
320 2495 : ::utl::TempFile aTempFile;
321 :
322 2495 : maURL = aTempFile.GetURL();
323 2495 : if( !maURL.isEmpty() )
324 : {
325 2495 : boost::scoped_ptr<SvStream> pOStm(::utl::UcbStreamHelper::CreateStream( maURL, STREAM_READWRITE | STREAM_SHARE_DENYWRITE ));
326 2495 : if( pOStm )
327 : {
328 2495 : pOStm->Write( pData, mnDataSize );
329 2495 : bool bError = ( ERRCODE_NONE != pOStm->GetError() );
330 2495 : pOStm.reset();
331 :
332 2495 : if( bError )
333 : {
334 0 : osl_removeFile( maURL.pData );
335 0 : maURL = "";
336 : }
337 2495 : }
338 2495 : }
339 : }
340 2513 : }
341 :
342 5014 : ImpSwap::~ImpSwap()
343 : {
344 2507 : if( IsSwapped() )
345 2489 : osl_removeFile( maURL.pData );
346 2507 : }
347 :
348 448 : sal_uInt8* ImpSwap::GetData() const
349 : {
350 : sal_uInt8* pData;
351 :
352 448 : if( IsSwapped() )
353 : {
354 448 : boost::scoped_ptr<SvStream> pIStm(::utl::UcbStreamHelper::CreateStream( maURL, STREAM_READWRITE ));
355 448 : if( pIStm )
356 : {
357 448 : pData = new sal_uInt8[ mnDataSize ];
358 448 : pIStm->Read( pData, mnDataSize );
359 448 : bool bError = ( ERRCODE_NONE != pIStm->GetError() );
360 448 : sal_Size nActReadSize = pIStm->Tell();
361 448 : if (nActReadSize != mnDataSize)
362 : {
363 0 : bError = true;
364 : }
365 448 : pIStm.reset();
366 :
367 448 : if( bError )
368 0 : delete[] pData, pData = NULL;
369 : }
370 : else
371 0 : pData = NULL;
372 : }
373 : else
374 0 : pData = NULL;
375 :
376 448 : return pData;
377 : }
378 :
379 82 : void ImpSwap::WriteTo( SvStream& rOStm ) const
380 : {
381 82 : sal_uInt8* pData = GetData();
382 :
383 82 : if( pData )
384 : {
385 82 : rOStm.Write( pData, mnDataSize );
386 82 : delete[] pData;
387 : }
388 1315 : }
389 :
390 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|