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 :
21 : #include <osl/file.h>
22 : #include <tools/vcompat.hxx>
23 : #include <tools/debug.hxx>
24 : #include <unotools/ucbstreamhelper.hxx>
25 : #include <unotools/tempfile.hxx>
26 : #include <ucbhelper/content.hxx>
27 : #include <vcl/graph.hxx>
28 : #include <vcl/gfxlink.hxx>
29 : #include <vcl/cvtgrf.hxx>
30 : #include <com/sun/star/ucb/CommandAbortedException.hpp>
31 :
32 : // -----------
33 : // - GfxLink -
34 : // -----------
35 :
36 3266 : GfxLink::GfxLink() :
37 : meType ( GFX_LINK_TYPE_NONE ),
38 : mpBuf ( NULL ),
39 : mpSwap ( NULL ),
40 : mnBufSize ( 0 ),
41 : mnUserId ( 0UL ),
42 3266 : mpImpData ( new ImpGfxLink )
43 : {
44 3266 : }
45 :
46 : // ------------------------------------------------------------------------
47 :
48 246 : GfxLink::GfxLink( const GfxLink& rGfxLink ) :
49 246 : mpImpData( new ImpGfxLink )
50 : {
51 246 : ImplCopy( rGfxLink );
52 246 : }
53 :
54 : // ------------------------------------------------------------------------
55 :
56 49 : GfxLink::GfxLink( sal_uInt8* pBuf, sal_uInt32 nSize, GfxLinkType nType, sal_Bool bOwns ) :
57 49 : mpImpData( new ImpGfxLink )
58 : {
59 : DBG_ASSERT( (pBuf != NULL && nSize) || (!bOwns && nSize == 0),
60 : "GfxLink::GfxLink(): empty/NULL buffer given" );
61 :
62 49 : meType = nType;
63 49 : mnBufSize = nSize;
64 49 : mpSwap = NULL;
65 49 : mnUserId = 0UL;
66 :
67 49 : if( bOwns )
68 49 : mpBuf = new ImpBuffer( pBuf );
69 0 : else if( nSize )
70 : {
71 0 : mpBuf = new ImpBuffer( nSize );
72 0 : memcpy( mpBuf->mpBuffer, pBuf, nSize );
73 : }
74 : else
75 0 : mpBuf = NULL;
76 49 : }
77 :
78 : // ------------------------------------------------------------------------
79 :
80 3303 : GfxLink::~GfxLink()
81 : {
82 3303 : if( mpBuf && !( --mpBuf->mnRefCount ) )
83 49 : delete mpBuf;
84 :
85 3303 : if( mpSwap && !( --mpSwap->mnRefCount ) )
86 14 : delete mpSwap;
87 :
88 3303 : delete mpImpData;
89 3303 : }
90 :
91 : // ------------------------------------------------------------------------
92 :
93 1652 : GfxLink& GfxLink::operator=( const GfxLink& rGfxLink )
94 : {
95 1652 : if( &rGfxLink != this )
96 : {
97 1652 : if ( mpBuf && !( --mpBuf->mnRefCount ) )
98 0 : delete mpBuf;
99 :
100 1652 : if( mpSwap && !( --mpSwap->mnRefCount ) )
101 3 : delete mpSwap;
102 :
103 1652 : ImplCopy( rGfxLink );
104 : }
105 :
106 1652 : return *this;
107 : }
108 :
109 : // ------------------------------------------------------------------------
110 :
111 0 : sal_Bool GfxLink::IsEqual( const GfxLink& rGfxLink ) const
112 : {
113 0 : sal_Bool bIsEqual = sal_False;
114 :
115 0 : if ( ( mnBufSize == rGfxLink.mnBufSize ) && ( meType == rGfxLink.meType ) )
116 : {
117 0 : const sal_uInt8* pSource = GetData();
118 0 : const sal_uInt8* pDest = rGfxLink.GetData();
119 0 : sal_uInt32 nSourceSize = GetDataSize();
120 0 : sal_uInt32 nDestSize = rGfxLink.GetDataSize();
121 0 : if ( pSource && pDest && ( nSourceSize == nDestSize ) )
122 : {
123 0 : bIsEqual = memcmp( pSource, pDest, nSourceSize ) == 0;
124 : }
125 0 : else if ( ( pSource == 0 ) && ( pDest == 0 ) )
126 0 : bIsEqual = sal_True;
127 : }
128 0 : return bIsEqual;
129 : }
130 :
131 : // ------------------------------------------------------------------------
132 :
133 1898 : void GfxLink::ImplCopy( const GfxLink& rGfxLink )
134 : {
135 1898 : mnBufSize = rGfxLink.mnBufSize;
136 1898 : meType = rGfxLink.meType;
137 1898 : mpBuf = rGfxLink.mpBuf;
138 1898 : mpSwap = rGfxLink.mpSwap;
139 1898 : mnUserId = rGfxLink.mnUserId;
140 1898 : *mpImpData = *rGfxLink.mpImpData;
141 :
142 1898 : if( mpBuf )
143 49 : mpBuf->mnRefCount++;
144 :
145 1898 : if( mpSwap )
146 233 : mpSwap->mnRefCount++;
147 1898 : }
148 :
149 : // ------------------------------------------------------------------------
150 :
151 478 : GfxLinkType GfxLink::GetType() const
152 : {
153 478 : return meType;
154 : }
155 :
156 : // ------------------------------------------------------------------------
157 :
158 223 : sal_Bool GfxLink::IsNative() const
159 : {
160 223 : return( meType >= GFX_LINK_FIRST_NATIVE_ID && meType <= GFX_LINK_LAST_NATIVE_ID );
161 : }
162 :
163 : // ------------------------------------------------------------------------
164 :
165 24 : sal_uInt32 GfxLink::GetDataSize() const
166 : {
167 24 : return mnBufSize;
168 : }
169 :
170 : // ------------------------------------------------------------------------
171 :
172 1 : const sal_uInt8* GfxLink::GetData() const
173 : {
174 1 : if( IsSwappedOut() )
175 0 : ( (GfxLink*) this )->SwapIn();
176 :
177 1 : return( mpBuf ? mpBuf->mpBuffer : NULL );
178 : }
179 :
180 : // ------------------------------------------------------------------------
181 :
182 10 : const Size& GfxLink::GetPrefSize() const
183 : {
184 10 : return mpImpData->maPrefSize;
185 : }
186 :
187 : // ------------------------------------------------------------------------
188 :
189 10 : void GfxLink::SetPrefSize( const Size& rPrefSize )
190 : {
191 10 : mpImpData->maPrefSize = rPrefSize;
192 10 : mpImpData->mbPrefSizeValid = true;
193 10 : }
194 :
195 : // ------------------------------------------------------------------------
196 :
197 0 : bool GfxLink::IsPrefSizeValid()
198 : {
199 0 : return mpImpData->mbPrefSizeValid;
200 : }
201 :
202 : // ------------------------------------------------------------------------
203 :
204 10 : const MapMode& GfxLink::GetPrefMapMode() const
205 : {
206 10 : return mpImpData->maPrefMapMode;
207 : }
208 :
209 : // ------------------------------------------------------------------------
210 :
211 10 : void GfxLink::SetPrefMapMode( const MapMode& rPrefMapMode )
212 : {
213 10 : mpImpData->maPrefMapMode = rPrefMapMode;
214 10 : mpImpData->mbPrefMapModeValid = true;
215 10 : }
216 :
217 : // ------------------------------------------------------------------------
218 :
219 0 : bool GfxLink::IsPrefMapModeValid()
220 : {
221 0 : return mpImpData->mbPrefMapModeValid;
222 : }
223 :
224 : // ------------------------------------------------------------------------
225 :
226 0 : sal_Bool GfxLink::LoadNative( Graphic& rGraphic )
227 : {
228 0 : sal_Bool bRet = sal_False;
229 :
230 0 : if( IsNative() && mnBufSize )
231 : {
232 0 : const sal_uInt8* pData = GetData();
233 :
234 0 : if( pData )
235 : {
236 0 : SvMemoryStream aMemStm;
237 : sal_uLong nCvtType;
238 :
239 0 : aMemStm.SetBuffer( (char*) pData, mnBufSize, sal_False, mnBufSize );
240 :
241 0 : switch( meType )
242 : {
243 0 : case( GFX_LINK_TYPE_NATIVE_GIF ): nCvtType = CVT_GIF; break;
244 0 : case( GFX_LINK_TYPE_NATIVE_JPG ): nCvtType = CVT_JPG; break;
245 0 : case( GFX_LINK_TYPE_NATIVE_PNG ): nCvtType = CVT_PNG; break;
246 0 : case( GFX_LINK_TYPE_NATIVE_TIF ): nCvtType = CVT_TIF; break;
247 0 : case( GFX_LINK_TYPE_NATIVE_WMF ): nCvtType = CVT_WMF; break;
248 0 : case( GFX_LINK_TYPE_NATIVE_MET ): nCvtType = CVT_MET; break;
249 0 : case( GFX_LINK_TYPE_NATIVE_PCT ): nCvtType = CVT_PCT; break;
250 0 : case( GFX_LINK_TYPE_NATIVE_SVG ): nCvtType = CVT_SVG; break;
251 :
252 0 : default: nCvtType = CVT_UNKNOWN; break;
253 : }
254 :
255 0 : if( nCvtType && ( GraphicConverter::Import( aMemStm, rGraphic, nCvtType ) == ERRCODE_NONE ) )
256 0 : bRet = sal_True;
257 : }
258 : }
259 :
260 0 : return bRet;
261 : }
262 :
263 : // ------------------------------------------------------------------------
264 :
265 210 : void GfxLink::SwapOut()
266 : {
267 210 : if( !IsSwappedOut() && mpBuf )
268 : {
269 49 : mpSwap = new ImpSwap( mpBuf->mpBuffer, mnBufSize );
270 :
271 49 : if( !mpSwap->IsSwapped() )
272 : {
273 17 : delete mpSwap;
274 17 : mpSwap = NULL;
275 : }
276 : else
277 : {
278 32 : if( !( --mpBuf->mnRefCount ) )
279 0 : delete mpBuf;
280 :
281 32 : mpBuf = NULL;
282 : }
283 : }
284 210 : }
285 :
286 : // ------------------------------------------------------------------------
287 :
288 0 : void GfxLink::SwapIn()
289 : {
290 0 : if( IsSwappedOut() )
291 : {
292 0 : mpBuf = new ImpBuffer( mpSwap->GetData() );
293 :
294 0 : if( !( --mpSwap->mnRefCount ) )
295 0 : delete mpSwap;
296 :
297 0 : mpSwap = NULL;
298 : }
299 0 : }
300 :
301 : // ------------------------------------------------------------------------
302 :
303 3 : sal_Bool GfxLink::ExportNative( SvStream& rOStream ) const
304 : {
305 3 : if( GetDataSize() )
306 : {
307 3 : if( IsSwappedOut() )
308 3 : mpSwap->WriteTo( rOStream );
309 0 : else if( GetData() )
310 0 : rOStream.Write( GetData(), GetDataSize() );
311 : }
312 :
313 3 : return ( rOStream.GetError() == ERRCODE_NONE );
314 : }
315 :
316 : // ------------------------------------------------------------------------
317 :
318 10 : SvStream& operator<<( SvStream& rOStream, const GfxLink& rGfxLink )
319 : {
320 10 : VersionCompat* pCompat = new VersionCompat( rOStream, STREAM_WRITE, 2 );
321 :
322 : // Version 1
323 10 : rOStream << (sal_uInt16) rGfxLink.GetType() << rGfxLink.GetDataSize() << rGfxLink.GetUserId();
324 :
325 : // Version 2
326 10 : rOStream << rGfxLink.GetPrefSize() << rGfxLink.GetPrefMapMode();
327 :
328 10 : delete pCompat;
329 :
330 10 : if( rGfxLink.GetDataSize() )
331 : {
332 10 : if( rGfxLink.IsSwappedOut() )
333 10 : rGfxLink.mpSwap->WriteTo( rOStream );
334 0 : else if( rGfxLink.GetData() )
335 0 : rOStream.Write( rGfxLink.GetData(), rGfxLink.GetDataSize() );
336 : }
337 :
338 10 : return rOStream;
339 : }
340 :
341 : // ------------------------------------------------------------------------
342 :
343 0 : SvStream& operator>>( SvStream& rIStream, GfxLink& rGfxLink)
344 : {
345 0 : Size aSize;
346 0 : MapMode aMapMode;
347 : sal_uInt32 nSize;
348 : sal_uInt32 nUserId;
349 : sal_uInt16 nType;
350 : sal_uInt8* pBuf;
351 0 : bool bMapAndSizeValid( false );
352 0 : VersionCompat* pCompat = new VersionCompat( rIStream, STREAM_READ );
353 :
354 : // Version 1
355 0 : rIStream >> nType >> nSize >> nUserId;
356 :
357 0 : if( pCompat->GetVersion() >= 2 )
358 : {
359 0 : rIStream >> aSize >> aMapMode;
360 0 : bMapAndSizeValid = true;
361 : }
362 :
363 0 : delete pCompat;
364 :
365 0 : pBuf = new sal_uInt8[ nSize ];
366 0 : rIStream.Read( pBuf, nSize );
367 :
368 0 : rGfxLink = GfxLink( pBuf, nSize, (GfxLinkType) nType, sal_True );
369 0 : rGfxLink.SetUserId( nUserId );
370 :
371 0 : if( bMapAndSizeValid )
372 : {
373 0 : rGfxLink.SetPrefSize( aSize );
374 0 : rGfxLink.SetPrefMapMode( aMapMode );
375 : }
376 :
377 0 : return rIStream;
378 : }
379 :
380 : // -----------
381 : // - ImpSwap -
382 : // -----------
383 :
384 49 : ImpSwap::ImpSwap( sal_uInt8* pData, sal_uLong nDataSize ) :
385 : mnDataSize( nDataSize ),
386 49 : mnRefCount( 1UL )
387 : {
388 49 : if( pData && mnDataSize )
389 : {
390 49 : ::utl::TempFile aTempFile;
391 :
392 49 : maURL = aTempFile.GetURL();
393 49 : if( !maURL.isEmpty() )
394 : {
395 32 : SvStream* pOStm = ::utl::UcbStreamHelper::CreateStream( maURL, STREAM_READWRITE | STREAM_SHARE_DENYWRITE );
396 32 : if( pOStm )
397 : {
398 32 : pOStm->Write( pData, mnDataSize );
399 32 : sal_Bool bError = ( ERRCODE_NONE != pOStm->GetError() );
400 32 : delete pOStm;
401 :
402 32 : if( bError )
403 : {
404 0 : osl_removeFile( maURL.pData );
405 0 : maURL = String();
406 : }
407 : }
408 49 : }
409 : }
410 49 : }
411 :
412 : // ------------------------------------------------------------------------
413 :
414 68 : ImpSwap::~ImpSwap()
415 : {
416 34 : if( IsSwapped() )
417 17 : osl_removeFile( maURL.pData );
418 34 : }
419 :
420 : // ------------------------------------------------------------------------
421 :
422 13 : sal_uInt8* ImpSwap::GetData() const
423 : {
424 : sal_uInt8* pData;
425 :
426 13 : if( IsSwapped() )
427 : {
428 13 : SvStream* pIStm = ::utl::UcbStreamHelper::CreateStream( maURL, STREAM_READWRITE );
429 13 : if( pIStm )
430 : {
431 13 : pData = new sal_uInt8[ mnDataSize ];
432 13 : pIStm->Read( pData, mnDataSize );
433 13 : sal_Bool bError = ( ERRCODE_NONE != pIStm->GetError() );
434 13 : delete pIStm;
435 :
436 13 : if( bError )
437 0 : delete[] pData, pData = NULL;
438 : }
439 : else
440 0 : pData = NULL;
441 : }
442 : else
443 0 : pData = NULL;
444 :
445 13 : return pData;
446 : }
447 :
448 : // ------------------------------------------------------------------------
449 :
450 13 : void ImpSwap::WriteTo( SvStream& rOStm ) const
451 : {
452 13 : sal_uInt8* pData = GetData();
453 :
454 13 : if( pData )
455 : {
456 13 : rOStm.Write( pData, mnDataSize );
457 13 : delete[] pData;
458 : }
459 13 : }
460 :
461 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|