update credits
[LibreOffice.git] / connectivity / source / inc / ParameterSubstitution.hxx
blob2c37895a090ed6766a0563729e965b05706b5a17
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 .
19 #include <com/sun/star/util/XStringSubstitution.hpp>
20 #include <com/sun/star/lang/XInitialization.hpp>
21 #include <com/sun/star/lang/XServiceInfo.hpp>
22 #include <com/sun/star/uno/XComponentContext.hpp>
23 #include <com/sun/star/sdbc/XConnection.hpp>
24 #include <cppuhelper/implbase3.hxx>
26 namespace connectivity
28 typedef ::cppu::WeakImplHelper3< ::com::sun::star::util::XStringSubstitution
29 ,::com::sun::star::lang::XServiceInfo
30 ,::com::sun::star::lang::XInitialization > ParameterSubstitution_BASE;
31 class ParameterSubstitution : public ParameterSubstitution_BASE
33 ::osl::Mutex m_aMutex;
34 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext;
35 ::com::sun::star::uno::WeakReference< ::com::sun::star::sdbc::XConnection > m_xConnection;
37 ParameterSubstitution( const ParameterSubstitution& );
38 ParameterSubstitution& operator=( const ParameterSubstitution& );
39 public:
41 static OUString getImplementationName_Static( ) throw(::com::sun::star::uno::RuntimeException);
42 static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static( ) throw (::com::sun::star::uno::RuntimeException);
43 static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > create( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & xContext);
44 protected:
45 ParameterSubstitution(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext );
46 virtual ~ParameterSubstitution(){}
48 // XServiceInfo
49 virtual OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException);
50 virtual ::sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
51 virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
52 // XInitialization
53 virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw(::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
55 // XStringSubstitution
56 virtual OUString SAL_CALL substituteVariables( const OUString& aText, ::sal_Bool bSubstRequired ) throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::uno::RuntimeException);
57 virtual OUString SAL_CALL reSubstituteVariables( const OUString& aText ) throw (::com::sun::star::uno::RuntimeException);
58 virtual OUString SAL_CALL getSubstituteVariableValue( const OUString& variable ) throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::uno::RuntimeException);
60 // ==================================
61 } // connectivity
62 // ==================================
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */