2010-10-27 13:11:31 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2001-05-04 08:14:58 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 11:36:26 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2001-05-04 08:14:58 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2001-05-04 08:14:58 +00:00
|
|
|
*
|
2008-04-11 11:36:26 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-05-04 08:14:58 +00:00
|
|
|
*
|
2008-04-11 11:36:26 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2001-05-04 08:14:58 +00:00
|
|
|
*
|
2008-04-11 11:36:26 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2001-05-04 08:14:58 +00:00
|
|
|
*
|
2008-04-11 11:36:26 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2001-05-04 08:14:58 +00:00
|
|
|
*
|
2008-04-11 11:36:26 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2001-05-04 08:14:58 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include <xmlscript/xmllib_imexp.hxx>
|
|
|
|
|
|
|
|
#include <cppuhelper/implbase1.hxx>
|
|
|
|
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#include <com/sun/star/container/XNameContainer.hpp>
|
|
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
|
|
|
|
|
|
#include <com/sun/star/awt/XControlModel.hpp>
|
|
|
|
#include <com/sun/star/awt/FontDescriptor.hpp>
|
|
|
|
|
2003-09-04 08:19:59 +00:00
|
|
|
#include <com/sun/star/xml/input/XRoot.hpp>
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) )
|
2001-05-04 08:14:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
using namespace ::rtl;
|
|
|
|
using namespace ::std;
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
|
|
|
|
namespace xmlscript
|
|
|
|
{
|
2012-01-26 16:00:09 +01:00
|
|
|
inline sal_Int32 toInt32( OUString const & rStr ) SAL_THROW(())
|
2001-05-04 08:14:58 +00:00
|
|
|
{
|
|
|
|
sal_Int32 nVal;
|
|
|
|
if (rStr.getLength() > 2 && rStr[ 0 ] == '0' && rStr[ 1 ] == 'x')
|
|
|
|
{
|
|
|
|
nVal = rStr.copy( 2 ).toInt32( 16 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nVal = rStr.toInt32();
|
|
|
|
}
|
|
|
|
return nVal;
|
|
|
|
}
|
|
|
|
inline bool getBoolAttr(
|
|
|
|
sal_Bool * pRet, OUString const & rAttrName,
|
2003-09-04 08:19:59 +00:00
|
|
|
Reference< xml::input::XAttributes > const & xAttributes, sal_Int32 uid )
|
2001-05-04 08:14:58 +00:00
|
|
|
{
|
2003-09-04 08:19:59 +00:00
|
|
|
OUString aValue(
|
|
|
|
xAttributes->getValueByUidName( uid, rAttrName ) );
|
2001-05-04 08:14:58 +00:00
|
|
|
if (aValue.getLength())
|
|
|
|
{
|
|
|
|
if (aValue.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("true") ))
|
|
|
|
{
|
|
|
|
*pRet = sal_True;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (aValue.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("false") ))
|
|
|
|
{
|
|
|
|
*pRet = sal_False;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw xml::sax::SAXException(
|
2003-09-04 08:19:59 +00:00
|
|
|
rAttrName +
|
|
|
|
OUString( RTL_CONSTASCII_USTRINGPARAM(
|
|
|
|
": no boolean value (true|false)!") ),
|
2001-05-04 08:14:58 +00:00
|
|
|
Reference< XInterface >(), Any() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2003-09-04 08:19:59 +00:00
|
|
|
|
2001-05-04 08:14:58 +00:00
|
|
|
inline bool getStringAttr(
|
|
|
|
OUString * pRet, OUString const & rAttrName,
|
2003-09-04 08:19:59 +00:00
|
|
|
Reference< xml::input::XAttributes > const & xAttributes, sal_Int32 uid )
|
2001-05-04 08:14:58 +00:00
|
|
|
{
|
2003-09-04 08:19:59 +00:00
|
|
|
*pRet = xAttributes->getValueByUidName( uid, rAttrName );
|
2001-05-04 08:14:58 +00:00
|
|
|
return (pRet->getLength() > 0);
|
|
|
|
}
|
2003-09-04 08:19:59 +00:00
|
|
|
|
2001-05-04 08:14:58 +00:00
|
|
|
inline bool getLongAttr(
|
|
|
|
sal_Int32 * pRet, OUString const & rAttrName,
|
2003-09-04 08:19:59 +00:00
|
|
|
Reference< xml::input::XAttributes > const & xAttributes,
|
|
|
|
sal_Int32 uid )
|
2001-05-04 08:14:58 +00:00
|
|
|
{
|
2003-09-04 08:19:59 +00:00
|
|
|
OUString aValue(
|
|
|
|
xAttributes->getValueByUidName( uid, rAttrName ) );
|
2001-05-04 08:14:58 +00:00
|
|
|
if (aValue.getLength())
|
|
|
|
{
|
|
|
|
*pRet = toInt32( aValue );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
// Library import
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
struct LibraryImport
|
2003-09-04 08:19:59 +00:00
|
|
|
: public ::cppu::WeakImplHelper1< xml::input::XRoot >
|
2001-05-04 08:14:58 +00:00
|
|
|
{
|
|
|
|
friend class LibrariesElement;
|
2001-11-07 17:19:27 +00:00
|
|
|
friend class LibraryElement;
|
2001-05-04 08:14:58 +00:00
|
|
|
|
2001-07-02 11:02:12 +00:00
|
|
|
LibDescriptorArray* mpLibArray;
|
2001-11-07 17:19:27 +00:00
|
|
|
LibDescriptor* mpLibDesc; // Single library mode
|
2001-05-04 08:14:58 +00:00
|
|
|
|
2003-09-04 08:19:59 +00:00
|
|
|
sal_Int32 XMLNS_LIBRARY_UID;
|
|
|
|
sal_Int32 XMLNS_XLINK_UID;
|
|
|
|
|
2001-05-04 08:14:58 +00:00
|
|
|
public:
|
2001-07-02 11:02:12 +00:00
|
|
|
inline LibraryImport( LibDescriptorArray* pLibArray )
|
2012-01-26 16:00:09 +01:00
|
|
|
SAL_THROW(())
|
2001-11-07 17:19:27 +00:00
|
|
|
: mpLibArray( pLibArray )
|
|
|
|
, mpLibDesc( NULL ) {}
|
|
|
|
// Single library mode
|
|
|
|
inline LibraryImport( LibDescriptor* pLibDesc )
|
2012-01-26 16:00:09 +01:00
|
|
|
SAL_THROW(())
|
2001-11-07 17:19:27 +00:00
|
|
|
: mpLibArray( NULL )
|
|
|
|
, mpLibDesc( pLibDesc ) {}
|
2001-05-04 08:14:58 +00:00
|
|
|
virtual ~LibraryImport()
|
2012-01-26 16:00:09 +01:00
|
|
|
SAL_THROW(());
|
2001-05-04 08:14:58 +00:00
|
|
|
|
2003-09-04 08:19:59 +00:00
|
|
|
// XRoot
|
|
|
|
virtual void SAL_CALL startDocument(
|
2004-04-13 15:19:02 +00:00
|
|
|
Reference< xml::input::XNamespaceMapping > const & xNamespaceMapping )
|
2001-05-04 08:14:58 +00:00
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
|
|
|
virtual void SAL_CALL endDocument()
|
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
|
|
|
virtual void SAL_CALL processingInstruction(
|
|
|
|
OUString const & rTarget, OUString const & rData )
|
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
|
|
|
virtual void SAL_CALL setDocumentLocator(
|
|
|
|
Reference< xml::sax::XLocator > const & xLocator )
|
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
2003-09-04 08:19:59 +00:00
|
|
|
virtual Reference< xml::input::XElement > SAL_CALL startRootElement(
|
2001-05-04 08:14:58 +00:00
|
|
|
sal_Int32 nUid, OUString const & rLocalName,
|
2003-09-04 08:19:59 +00:00
|
|
|
Reference< xml::input::XAttributes > const & xAttributes )
|
2001-05-04 08:14:58 +00:00
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
|
|
|
};
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
class LibElementBase
|
2003-09-04 08:19:59 +00:00
|
|
|
: public ::cppu::WeakImplHelper1< xml::input::XElement >
|
2001-05-04 08:14:58 +00:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
LibraryImport * _pImport;
|
|
|
|
LibElementBase * _pParent;
|
|
|
|
|
|
|
|
OUString _aLocalName;
|
2003-09-04 08:19:59 +00:00
|
|
|
Reference< xml::input::XAttributes > _xAttributes;
|
2001-05-04 08:14:58 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
LibElementBase(
|
|
|
|
OUString const & rLocalName,
|
2003-09-04 08:19:59 +00:00
|
|
|
Reference< xml::input::XAttributes > const & xAttributes,
|
2001-05-04 08:14:58 +00:00
|
|
|
LibElementBase * pParent, LibraryImport * pImport )
|
2012-01-26 16:00:09 +01:00
|
|
|
SAL_THROW(());
|
2001-05-04 08:14:58 +00:00
|
|
|
virtual ~LibElementBase()
|
2012-01-26 16:00:09 +01:00
|
|
|
SAL_THROW(());
|
2001-05-04 08:14:58 +00:00
|
|
|
|
2003-09-04 08:19:59 +00:00
|
|
|
// XElement
|
|
|
|
virtual Reference< xml::input::XElement > SAL_CALL getParent()
|
2001-05-04 08:14:58 +00:00
|
|
|
throw (RuntimeException);
|
|
|
|
virtual OUString SAL_CALL getLocalName()
|
|
|
|
throw (RuntimeException);
|
|
|
|
virtual sal_Int32 SAL_CALL getUid()
|
|
|
|
throw (RuntimeException);
|
2003-09-04 08:19:59 +00:00
|
|
|
virtual Reference< xml::input::XAttributes > SAL_CALL getAttributes()
|
2001-05-04 08:14:58 +00:00
|
|
|
throw (RuntimeException);
|
|
|
|
virtual void SAL_CALL ignorableWhitespace(
|
|
|
|
OUString const & rWhitespaces )
|
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
|
|
|
virtual void SAL_CALL characters( OUString const & rChars )
|
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
2003-09-04 08:19:59 +00:00
|
|
|
virtual void SAL_CALL processingInstruction(
|
|
|
|
OUString const & rTarget, OUString const & rData )
|
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
2001-05-04 08:14:58 +00:00
|
|
|
virtual void SAL_CALL endElement()
|
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
2003-09-04 08:19:59 +00:00
|
|
|
virtual Reference< xml::input::XElement > SAL_CALL startChildElement(
|
2001-05-04 08:14:58 +00:00
|
|
|
sal_Int32 nUid, OUString const & rLocalName,
|
2003-09-04 08:19:59 +00:00
|
|
|
Reference< xml::input::XAttributes > const & xAttributes )
|
2001-05-04 08:14:58 +00:00
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
|
|
|
};
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
|
|
|
|
class LibrariesElement : public LibElementBase
|
|
|
|
{
|
|
|
|
friend class LibraryElement;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
vector< LibDescriptor > mLibDescriptors;
|
|
|
|
|
|
|
|
public:
|
2003-09-04 08:19:59 +00:00
|
|
|
virtual Reference< xml::input::XElement > SAL_CALL startChildElement(
|
2001-05-04 08:14:58 +00:00
|
|
|
sal_Int32 nUid, OUString const & rLocalName,
|
2003-09-04 08:19:59 +00:00
|
|
|
Reference< xml::input::XAttributes > const & xAttributes )
|
2001-05-04 08:14:58 +00:00
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
|
|
|
virtual void SAL_CALL endElement()
|
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
|
|
|
|
|
|
|
LibrariesElement(
|
|
|
|
OUString const & rLocalName,
|
2003-09-04 08:19:59 +00:00
|
|
|
Reference< xml::input::XAttributes > const & xAttributes,
|
2001-05-04 08:14:58 +00:00
|
|
|
LibElementBase * pParent, LibraryImport * pImport )
|
2012-01-26 16:00:09 +01:00
|
|
|
SAL_THROW(())
|
2001-05-04 08:14:58 +00:00
|
|
|
: LibElementBase( rLocalName, xAttributes, pParent, pImport )
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
|
|
|
|
class LibraryElement : public LibElementBase
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
vector< OUString > mElements;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2003-09-04 08:19:59 +00:00
|
|
|
virtual Reference< xml::input::XElement > SAL_CALL startChildElement(
|
2001-05-04 08:14:58 +00:00
|
|
|
sal_Int32 nUid, OUString const & rLocalName,
|
2003-09-04 08:19:59 +00:00
|
|
|
Reference< xml::input::XAttributes > const & xAttributes )
|
2001-05-04 08:14:58 +00:00
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
|
|
|
virtual void SAL_CALL endElement()
|
|
|
|
throw (xml::sax::SAXException, RuntimeException);
|
|
|
|
|
|
|
|
LibraryElement(
|
|
|
|
OUString const & rLocalName,
|
2003-09-04 08:19:59 +00:00
|
|
|
Reference< xml::input::XAttributes > const & xAttributes,
|
2001-05-04 08:14:58 +00:00
|
|
|
LibElementBase * pParent, LibraryImport * pImport )
|
2012-01-26 16:00:09 +01:00
|
|
|
SAL_THROW(())
|
2001-05-04 08:14:58 +00:00
|
|
|
: LibElementBase( rLocalName, xAttributes, pParent, pImport )
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2006-06-20 04:13:10 +00:00
|
|
|
}
|
2010-10-27 13:11:31 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|