fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / dbaccess / source / core / dataaccess / commandcontainer.cxx
blobee0a871e761beaa7508cdf8d9f7e66e96f64c49f
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 #include "commandcontainer.hxx"
21 #include "commanddefinition.hxx"
23 #include <tools/debug.hxx>
24 #include "dbastrings.hrc"
25 #include <com/sun/star/sdb/TableDefinition.hpp>
26 #include <com/sun/star/sdb/CommandDefinition.hpp>
28 using namespace ::com::sun::star::uno;
29 using namespace ::com::sun::star::lang;
30 using namespace ::com::sun::star::beans;
31 using namespace ::com::sun::star::container;
32 using namespace ::com::sun::star::ucb;
33 using namespace ::osl;
34 using namespace ::comphelper;
35 using namespace ::cppu;
37 namespace dbaccess
40 // OCommandContainer
42 OCommandContainer::OCommandContainer( const Reference< ::com::sun::star::uno::XComponentContext >& _xORB
43 ,const Reference< XInterface >& _xParentContainer
44 ,const TContentPtr& _pImpl
45 ,bool _bTables
47 :ODefinitionContainer(_xORB,_xParentContainer,_pImpl,!_bTables)
48 ,m_bTables(_bTables)
52 OCommandContainer::~OCommandContainer()
56 IMPLEMENT_FORWARD_XINTERFACE2( OCommandContainer,ODefinitionContainer,OCommandContainer_BASE)
57 IMPLEMENT_GETTYPES2(OCommandContainer,ODefinitionContainer,OCommandContainer_BASE);
59 css::uno::Sequence<sal_Int8> OCommandContainer::getImplementationId()
60 throw (css::uno::RuntimeException, std::exception)
62 return css::uno::Sequence<sal_Int8>();
65 Reference< XContent > OCommandContainer::createObject( const OUString& _rName)
67 const ODefinitionContainer_Impl& rDefinitions( getDefinitions() );
68 OSL_ENSURE( rDefinitions.find(_rName) != rDefinitions.end(), "OCommandContainer::createObject: Invalid entry in map!" );
70 const TContentPtr& pElementContent( rDefinitions.find( _rName )->second );
71 if ( m_bTables )
72 return new OComponentDefinition( *this, _rName, m_aContext, pElementContent, m_bTables );
73 else
74 return static_cast< css::sdb::XQueryDefinition * > ( new OCommandDefinition( *this, _rName, m_aContext, pElementContent ) );
77 Reference< XInterface > SAL_CALL OCommandContainer::createInstanceWithArguments(const Sequence< Any >& /*aArguments*/ ) throw (Exception, RuntimeException, std::exception)
79 return createInstance( );
82 Reference< XInterface > SAL_CALL OCommandContainer::createInstance( ) throw (Exception, RuntimeException, std::exception)
84 if(m_bTables)
85 return css::sdb::TableDefinition::createDefault( m_aContext );
86 else
87 return css::sdb::CommandDefinition::create( m_aContext );
90 OUString OCommandContainer::determineContentType() const
92 return OUString( "application/vnd.org.openoffice.DatabaseCommandDefinitionContainer" );
95 } // namespace dbaccess
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */