Files
libreoffice/xmloff/source/style/XMLFontAutoStylePool.cxx

378 lines
13 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
re-base on ALv2 code. Includes: Patches contributed by: Armin Le Grand. #118558# Correcting OLE attributes of LO3.4 at load time by loading as OOo3.3, details see task. http://svn.apache.org/viewvc?view=revision&revision=1195906 #118485# - Styles for OLEs are not saved. http://svn.apache.org/viewvc?view=revision&revision=1182166 #118898# Adapted ImpGraphic::ImplGetBitmap to correctly convert metafiles http://svn.apache.org/viewvc?view=revision&revision=1293316 #119337# Solves the wrong get/setPropertyValue calls in SvxShapeText (and thus in SvxOle2Shape) http://svn.apache.org/viewvc?view=revision&revision=1344156 Patches contributed by Mathias Bauer (and others) gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 cws mba34issues01: #i117717#: remove wrong assertion http://svn.apache.org/viewvc?view=revision&revision=1172349 Patch contributed by Herbert Duerr goodbye Registration and License dialogs, don't let the door hit you http://svn.apache.org/viewvc?view=revision&revision=1172613 help gcc 4.6.0 on 32bit ubuntu 11.10" http://svn.apache.org/viewvc?view=revision&revision=1245357 Do not add targets for junit tests when junit is disabled. Patch contributed by Andre Fischer http://svn.apache.org/viewvc?view=revision&revision=1241508 Revert "sb140: #i117082# avoid unncessary static class data members commit 21d97438e2944861e26e4984195f959a0cce1e41. remove obsolete FreeBSD visibility special case. retain consolidated BSD bridge code, remove OS/2 pieces.
2012-11-12 17:21:24 +00:00
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
2000-11-14 09:19:45 +00:00
#include <o3tl/sorted_vector.hxx>
#include <tools/fontenum.hxx>
#include "xmloff/xmlnmspe.hxx"
#include <xmloff/xmltoken.hxx>
#include <xmloff/xmluconv.hxx>
2000-11-14 09:19:45 +00:00
#include "fonthdl.hxx"
#include <xmloff/xmlexp.hxx>
#include <xmloff/XMLFontAutoStylePool.hxx>
#include <vcl/temporaryfonts.hxx>
#include <osl/file.hxx>
2000-11-14 09:19:45 +00:00
#include <com/sun/star/embed/ElementModes.hpp>
#include <com/sun/star/embed/XTransactedObject.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
using ::rtl::OUString;
using ::rtl::OUStringBuffer;
using namespace ::com::sun::star;
2000-11-14 09:19:45 +00:00
using namespace ::com::sun::star::uno;
using namespace ::xmloff::token;
2000-11-14 09:19:45 +00:00
class XMLFontAutoStylePoolEntry_Impl
{
OUString sName;
OUString sFamilyName;
OUString sStyleName;
sal_Int16 nFamily;
sal_Int16 nPitch;
rtl_TextEncoding eEnc;
public:
inline XMLFontAutoStylePoolEntry_Impl(
const ::rtl::OUString& rName,
const ::rtl::OUString& rFamilyName,
const ::rtl::OUString& rStyleName,
sal_Int16 nFamily,
sal_Int16 nPitch,
rtl_TextEncoding eEnc );
inline XMLFontAutoStylePoolEntry_Impl(
const ::rtl::OUString& rFamilyName,
const ::rtl::OUString& rStyleName,
sal_Int16 nFamily,
sal_Int16 nPitch,
rtl_TextEncoding eEnc );
const OUString& GetName() const { return sName; }
const OUString& GetFamilyName() const { return sFamilyName; }
const OUString& GetStyleName() const { return sStyleName; }
sal_Int16 GetFamily() const { return nFamily; }
sal_Int16 GetPitch() const { return nPitch; }
rtl_TextEncoding GetEncoding() const { return eEnc; }
};
inline XMLFontAutoStylePoolEntry_Impl::XMLFontAutoStylePoolEntry_Impl(
const ::rtl::OUString& rName,
const ::rtl::OUString& rFamilyName,
const ::rtl::OUString& rStyleName,
sal_Int16 nFam,
sal_Int16 nP,
rtl_TextEncoding eE ) :
sName( rName ),
sFamilyName( rFamilyName ),
sStyleName( rStyleName ),
nFamily( nFam ),
nPitch( nP ),
eEnc( eE )
{
}
inline XMLFontAutoStylePoolEntry_Impl::XMLFontAutoStylePoolEntry_Impl(
const ::rtl::OUString& rFamilyName,
const ::rtl::OUString& rStyleName,
sal_Int16 nFam,
sal_Int16 nP,
rtl_TextEncoding eE ) :
sFamilyName( rFamilyName ),
sStyleName( rStyleName ),
nFamily( nFam ),
nPitch( nP ),
eEnc( eE )
{
}
struct XMLFontAutoStylePoolEntryCmp_Impl {
bool operator()(
XMLFontAutoStylePoolEntry_Impl* const& r1,
XMLFontAutoStylePoolEntry_Impl* const& r2 ) const
2000-11-14 09:19:45 +00:00
{
sal_Int8 nEnc1(r1->GetEncoding() != RTL_TEXTENCODING_SYMBOL);
sal_Int8 nEnc2(r2->GetEncoding() != RTL_TEXTENCODING_SYMBOL);
if( nEnc1 != nEnc2 )
return nEnc1 < nEnc2;
else if( r1->GetPitch() != r2->GetPitch() )
return r1->GetPitch() < r2->GetPitch();
else if( r1->GetFamily() != r2->GetFamily() )
return r1->GetFamily() < r2->GetFamily();
2000-11-14 09:19:45 +00:00
else
{
sal_Int32 nCmp = r1->GetFamilyName().compareTo( r2->GetFamilyName() );
if( 0 == nCmp )
return r1->GetStyleName().compareTo( r2->GetStyleName() ) < 0;
else
return nCmp < 0;
}
2000-11-14 09:19:45 +00:00
}
};
2000-11-14 09:19:45 +00:00
class XMLFontAutoStylePool_Impl : public o3tl::sorted_vector<XMLFontAutoStylePoolEntry_Impl*, XMLFontAutoStylePoolEntryCmp_Impl>
{
public:
~XMLFontAutoStylePool_Impl() { DeleteAndDestroyAll(); }
};
2000-11-14 09:19:45 +00:00
XMLFontAutoStylePool::XMLFontAutoStylePool( SvXMLExport& rExp, bool _tryToEmbedFonts ) :
2000-11-14 09:19:45 +00:00
rExport( rExp ),
pPool( new XMLFontAutoStylePool_Impl ),
tryToEmbedFonts( _tryToEmbedFonts )
2000-11-14 09:19:45 +00:00
{
}
XMLFontAutoStylePool::~XMLFontAutoStylePool()
{
delete pPool;
}
OUString XMLFontAutoStylePool::Add(
const OUString& rFamilyName,
const OUString& rStyleName,
sal_Int16 nFamily,
sal_Int16 nPitch,
rtl_TextEncoding eEnc )
{
OUString sPoolName;
2000-11-14 09:19:45 +00:00
XMLFontAutoStylePoolEntry_Impl aTmp( rFamilyName, rStyleName, nFamily,
nPitch, eEnc );
XMLFontAutoStylePool_Impl::const_iterator it = pPool->find( &aTmp );
if( it != pPool->end() )
2000-11-14 09:19:45 +00:00
{
sPoolName = (*it)->GetName();
2000-11-14 09:19:45 +00:00
}
else
{
OUString sName;
sal_Int32 nLen = rFamilyName.indexOf( sal_Unicode(';'), 0 );
if( -1 == nLen )
{
sName = rFamilyName;
}
else if( nLen > 0 )
{
sName = rFamilyName.copy( 0, nLen );
sName = sName.trim();
2000-11-14 09:19:45 +00:00
}
if( sName.isEmpty() )
2000-11-14 09:19:45 +00:00
sName = OUString::valueOf( sal_Unicode( 'F' ) );
if( m_aNames.find(sName) != m_aNames.end() )
2000-11-14 09:19:45 +00:00
{
sal_Int32 nCount = 1;
OUString sPrefix( sName );
sName += OUString::valueOf( nCount );
while( m_aNames.find(sName) != m_aNames.end() )
2000-11-14 09:19:45 +00:00
{
sName = sPrefix;
sName += OUString::valueOf( ++nCount );
}
}
XMLFontAutoStylePoolEntry_Impl *pEntry =
new XMLFontAutoStylePoolEntry_Impl( sName, rFamilyName, rStyleName,
nFamily, nPitch, eEnc );
pPool->insert( pEntry );
m_aNames.insert(sName);
2000-11-14 09:19:45 +00:00
}
return sPoolName;
2000-11-14 09:19:45 +00:00
}
::rtl::OUString XMLFontAutoStylePool::Find(
const OUString& rFamilyName,
const OUString& rStyleName,
sal_Int16 nFamily,
sal_Int16 nPitch,
rtl_TextEncoding eEnc ) const
{
OUString sName;
XMLFontAutoStylePoolEntry_Impl aTmp( rFamilyName, rStyleName, nFamily,
nPitch, eEnc );
XMLFontAutoStylePool_Impl::const_iterator it = pPool->find( &aTmp );
if( it != pPool->end() )
2000-11-14 09:19:45 +00:00
{
sName = (*it)->GetName();
2000-11-14 09:19:45 +00:00
}
return sName;
}
void XMLFontAutoStylePool::exportXML()
{
SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_OFFICE,
XML_FONT_FACE_DECLS,
2000-11-14 09:19:45 +00:00
sal_True, sal_True );
Any aAny;
OUString sTmp;
XMLFontFamilyNamePropHdl aFamilyNameHdl;
XMLFontFamilyPropHdl aFamilyHdl;
XMLFontPitchPropHdl aPitchHdl;
XMLFontEncodingPropHdl aEncHdl;
const SvXMLUnitConverter& rUnitConv = GetExport().GetMM100UnitConverter();
std::map< OUString, OUString > fontFilesMap; // our url to document url
sal_uInt32 nCount = pPool->size();
2000-11-14 09:19:45 +00:00
for( sal_uInt32 i=0; i<nCount; i++ )
{
const XMLFontAutoStylePoolEntry_Impl *pEntry = (*pPool)[ i ];
2000-11-14 09:19:45 +00:00
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_NAME, pEntry->GetName() );
2000-11-14 09:19:45 +00:00
aAny <<= pEntry->GetFamilyName();
if( aFamilyNameHdl.exportXML( sTmp, aAny, rUnitConv ) )
GetExport().AddAttribute( XML_NAMESPACE_SVG,
XML_FONT_FAMILY, sTmp );
2000-11-14 09:19:45 +00:00
const OUString& rStyleName = pEntry->GetStyleName();
if( !rStyleName.isEmpty() )
2000-11-14 09:19:45 +00:00
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_FONT_ADORNMENTS,
2000-11-14 09:19:45 +00:00
rStyleName );
aAny <<= (sal_Int16)pEntry->GetFamily();
if( aFamilyHdl.exportXML( sTmp, aAny, rUnitConv ) )
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_FONT_FAMILY_GENERIC, sTmp );
2000-11-14 09:19:45 +00:00
aAny <<= (sal_Int16)pEntry->GetPitch();
if( aPitchHdl.exportXML( sTmp, aAny, rUnitConv ) )
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_FONT_PITCH, sTmp );
2000-11-14 09:19:45 +00:00
aAny <<= (sal_Int16)pEntry->GetEncoding();
if( aEncHdl.exportXML( sTmp, aAny, rUnitConv ) )
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_FONT_CHARSET, sTmp );
2000-11-14 09:19:45 +00:00
SvXMLElementExport aElement( GetExport(), XML_NAMESPACE_STYLE,
XML_FONT_FACE,
2000-11-14 09:19:45 +00:00
sal_True, sal_True );
if( tryToEmbedFonts )
{
std::vector< OUString > fileUrls;
static const char* const styles[] = { "", "b", "i", "bi" };
for( unsigned int j = 0;
j < SAL_N_ELEMENTS( styles );
++j )
{
OUString fileUrl = TemporaryFonts::fileUrlForFont( pEntry->GetFamilyName(), styles[ j ] );
if( !fontFilesMap.count( fileUrl ))
{
OUString docUrl = embedFontFile( fileUrl, styles[ j ] );
if( !docUrl.isEmpty())
fontFilesMap[ fileUrl ] = docUrl;
else
continue; // --> failed (most probably this font is not embedded)
}
fileUrls.push_back( fileUrl );
}
if( !fileUrls.empty())
{
SvXMLElementExport fontFaceSrc( GetExport(), XML_NAMESPACE_SVG,
XML_FONT_FACE_SRC, true, true );
for( std::vector< OUString >::const_iterator it = fileUrls.begin();
it != fileUrls.end();
++it )
{
if( fontFilesMap.count( *it ))
{
GetExport().AddAttribute( XML_NAMESPACE_XLINK, XML_HREF, fontFilesMap[ *it ] );
GetExport().AddAttribute( XML_NAMESPACE_XLINK, XML_TYPE, "simple" );
SvXMLElementExport fontFaceUri( GetExport(), XML_NAMESPACE_SVG,
XML_FONT_FACE_URI, true, true );
}
}
}
}
}
}
OUString XMLFontAutoStylePool::embedFontFile( const OUString& fileUrl, const char* style )
{
try
{
osl::File file( fileUrl );
if( file.open( osl_File_OpenFlag_Read ) != osl::File::E_None )
return OUString();
uno::Reference< embed::XStorage > storage;
storage.set( GetExport().GetTargetStorage()->openStorageElement( OUString( "Fonts" ),
::embed::ElementModes::WRITE ), uno::UNO_QUERY_THROW );
int index = 0;
OUString name;
do
{
name = "font" + OUString::number( ++index ) + OUString::createFromAscii( style ) + ".ttf";
} while( storage->hasByName( name ) );
uno::Reference< io::XOutputStream > outputStream;
outputStream.set( storage->openStreamElement( name, ::embed::ElementModes::WRITE ), UNO_QUERY_THROW );
uno::Reference < beans::XPropertySet > propertySet( outputStream, uno::UNO_QUERY );
assert( propertySet.is());
propertySet->setPropertyValue( "MediaType", uno::makeAny( OUString( "application/x-font-ttf" ))); // TODO
for(;;)
{
char buffer[ 4096 ];
sal_uInt64 readSize;
sal_Bool eof;
if( file.isEndOfFile( &eof ) != osl::File::E_None )
{
SAL_WARN( "xmloff", "Error reading font file " << fileUrl );
outputStream->closeOutput();
return OUString();
}
if( eof )
break;
if( file.read( buffer, 4096, readSize ) != osl::File::E_None )
{
SAL_WARN( "xmloff", "Error reading font file " << fileUrl );
outputStream->closeOutput();
return OUString();
}
if( readSize == 0 )
break;
outputStream->writeBytes( uno::Sequence< sal_Int8 >( reinterpret_cast< const sal_Int8* >( buffer ), readSize ));
}
outputStream->closeOutput();
if( storage.is() )
{
Reference< embed::XTransactedObject > transaction( storage, UNO_QUERY );
if( transaction.is())
{
transaction->commit();
return "Fonts/" + name;
}
}
} catch( const Exception& e )
{
SAL_WARN( "xmloff", "Exception when embedding a font file:" << e.Message );
2000-11-14 09:19:45 +00:00
}
return OUString();
2000-11-14 09:19:45 +00:00
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */