nss: upgrade to release 3.73
[LibreOffice.git] / dbaccess / source / core / dataaccess / commandcontainer.cxx
blob55087272b992caeb6b5b85fbb16a1e960b7dd296
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 <com/sun/star/sdb/TableDefinition.hpp>
24 #include <com/sun/star/sdb/CommandDefinition.hpp>
26 using namespace ::com::sun::star::uno;
27 using namespace ::com::sun::star::lang;
28 using namespace ::com::sun::star::beans;
29 using namespace ::com::sun::star::container;
30 using namespace ::com::sun::star::ucb;
31 using namespace ::osl;
32 using namespace ::comphelper;
33 using namespace ::cppu;
35 namespace dbaccess
38 // OCommandContainer
40 OCommandContainer::OCommandContainer( const Reference< css::uno::XComponentContext >& _xORB
41 ,const Reference< XInterface >& _xParentContainer
42 ,const TContentPtr& _pImpl
43 ,bool _bTables
45 :ODefinitionContainer(_xORB,_xParentContainer,_pImpl,!_bTables)
46 ,m_bTables(_bTables)
50 OCommandContainer::~OCommandContainer()
54 IMPLEMENT_FORWARD_XINTERFACE2( OCommandContainer,ODefinitionContainer,OCommandContainer_BASE)
55 IMPLEMENT_GETTYPES2(OCommandContainer,ODefinitionContainer,OCommandContainer_BASE);
57 css::uno::Sequence<sal_Int8> OCommandContainer::getImplementationId()
59 return css::uno::Sequence<sal_Int8>();
62 Reference< XContent > OCommandContainer::createObject( const OUString& _rName)
64 const ODefinitionContainer_Impl& rDefinitions( getDefinitions() );
65 OSL_ENSURE( rDefinitions.find(_rName) != rDefinitions.end(), "OCommandContainer::createObject: Invalid entry in map!" );
67 const TContentPtr& pElementContent( rDefinitions.find( _rName )->second );
68 if ( m_bTables )
69 return new OComponentDefinition( *this, _rName, m_aContext, pElementContent, m_bTables );
70 else
71 return static_cast< css::sdb::XQueryDefinition * > ( new OCommandDefinition( *this, _rName, m_aContext, pElementContent ) );
74 Reference< XInterface > SAL_CALL OCommandContainer::createInstanceWithArguments(const Sequence< Any >& /*aArguments*/ )
76 return createInstance( );
79 Reference< XInterface > SAL_CALL OCommandContainer::createInstance( )
81 if(m_bTables)
82 return css::sdb::TableDefinition::createDefault( m_aContext );
83 else
84 return css::sdb::CommandDefinition::create( m_aContext );
87 OUString OCommandContainer::determineContentType() const
89 return "application/vnd.org.openoffice.DatabaseCommandDefinitionContainer";
92 } // namespace dbaccess
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */