bump product version to 7.2.5.1
[LibreOffice.git] / connectivity / inc / sdbcx / VKey.hxx
blob1c4e51dc7f32cf5e1be5f10ec5c1f105470af6c7
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 #pragma once
23 #include <comphelper/IdPropArrayHelper.hxx>
24 #include <connectivity/CommonTools.hxx>
25 #include <sdbcx/VTypeDef.hxx>
26 #include <connectivity/sdbcx/IRefreshable.hxx>
27 #include <connectivity/sdbcx/VDescriptor.hxx>
28 #include <connectivity/dbtoolsdllapi.hxx>
29 #include <cppuhelper/implbase1.hxx>
30 #include <cppuhelper/basemutex.hxx>
31 #include <com/sun/star/sdbcx/XDataDescriptorFactory.hpp>
32 #include <memory>
34 namespace connectivity::sdbcx
37 struct OOO_DLLPUBLIC_DBTOOLS KeyProperties
39 ::std::vector< OUString> m_aKeyColumnNames;
40 OUString m_ReferencedTable;
41 sal_Int32 m_Type;
42 sal_Int32 m_UpdateRule;
43 sal_Int32 m_DeleteRule;
44 KeyProperties(const OUString& ReferencedTable,
45 sal_Int32 Type,
46 sal_Int32 UpdateRule,
47 sal_Int32 DeleteRule)
48 :m_ReferencedTable(ReferencedTable),
49 m_Type(Type),
50 m_UpdateRule(UpdateRule),
51 m_DeleteRule(DeleteRule)
53 KeyProperties():m_Type(0),m_UpdateRule(0),m_DeleteRule(0){}
55 typedef ::cppu::ImplHelper1< css::sdbcx::XDataDescriptorFactory > OKey_BASE;
56 class OCollection;
58 class OOO_DLLPUBLIC_DBTOOLS OKey :
59 public cppu::BaseMutex,
60 public ODescriptor_BASE,
61 public IRefreshableColumns,
62 public ::comphelper::OIdPropertyArrayUsageHelper<OKey>,
63 public ODescriptor,
64 public OKey_BASE
66 protected:
67 std::shared_ptr<KeyProperties> m_aProps;
68 // no Reference! see OCollection::acquire
69 std::unique_ptr<OCollection> m_pColumns;
71 using ODescriptor_BASE::rBHelper;
72 // OPropertyArrayUsageHelper
73 virtual ::cppu::IPropertyArrayHelper* createArrayHelper( sal_Int32 _nId) const override;
74 // OPropertySetHelper
75 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() override;
76 public:
77 OKey(bool _bCase);
78 OKey(const OUString& Name,const std::shared_ptr<KeyProperties>& _rProps,bool _bCase);
80 virtual ~OKey( ) override;
82 DECLARE_SERVICE_INFO();
83 //XInterface
84 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
85 virtual void SAL_CALL acquire() noexcept override;
86 virtual void SAL_CALL release() noexcept override;
87 //XTypeProvider
88 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
89 // ODescriptor
90 virtual void construct() override;
92 // ::cppu::OComponentHelper
93 virtual void SAL_CALL disposing() override;
94 // XPropertySet
95 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) override;
96 // XColumnsSupplier
97 virtual css::uno::Reference< css::container::XNameAccess > SAL_CALL getColumns( ) override;
99 // XNamed
100 virtual OUString SAL_CALL getName( ) override;
101 virtual void SAL_CALL setName( const OUString& aName ) override;
102 // XDataDescriptorFactory
103 virtual css::uno::Reference< css::beans::XPropertySet > SAL_CALL createDataDescriptor( ) override;
108 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */