1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #ifndef INCLUDED_CONNECTIVITY_FILTERMANAGER_HXX
20 #define INCLUDED_CONNECTIVITY_FILTERMANAGER_HXX
22 #include <com/sun/star/beans/XPropertySet.hpp>
23 #include <com/sun/star/sdb/XSQLQueryComposer.hpp>
24 #include <com/sun/star/sdbc/XConnection.hpp>
26 #include <rtl/ustrbuf.hxx>
29 #include <connectivity/dbtoolsdllapi.hxx>
39 /** manages the filter of a database component with filter properties
41 The idea is that the filter which a database component actually really uses is composed of several single
42 filter components (which all are conjunctive).
44 First, there is a component which is visible to the clients of the database component itself - if they ask
45 the database component for the Filter property, they will get this public filter.
47 Second, there is an implicit filter, which is (to be) created from the MasterFields and DetailFields
48 property of the database component, if the latter denote columns.<br/>
49 For instance, if there is a link-pair CustomerID->cid, where |CustomerID| is a column of the master
50 database component, and |cid| is a column of the detail database component (the database component we're responsible for), then there will
51 be an implicit filter "cid = :param_cid_link" (or something like this), which is never visible
52 to the clients of the database component, but nevertheless needs to be propagated to the aggregated RowSet.<br/>
53 Actually, this implicit filter is maintained by the FormParameterManager.
55 Potentially, there could be more filter components (for instance, you could imagine database component
56 controls which act as live filter, which could be implemented with a third component), but
57 at the moment there are only these two.
59 class OOO_DLLPUBLIC_DBTOOLS FilterManager
64 fcPublicFilter
= 0, // the filter which is to be published as "Filter" property of the database component
65 fcLinkFilter
, // the filter part which is implicitly created for a database component when connecting
66 // master and detail database components via column names
68 FC_COMPONENT_COUNT
// boundary delimiter, not to be used from outside
72 ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
>
73 m_xComponentAggregate
;
74 ::std::vector
< OUString
> m_aFilterComponents
;
75 bool m_bApplyPublicFilter
;
79 explicit FilterManager();
82 void initialize(const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
>& _rxComponentAggregate
);
84 /// makes the object forgetting the references to the database component
87 const OUString
& getFilterComponent( FilterComponent _eWhich
) const;
88 void setFilterComponent( FilterComponent _eWhich
, const OUString
& _rComponent
);
90 inline bool isApplyPublicFilter( ) const { return m_bApplyPublicFilter
; }
91 void setApplyPublicFilter( bool _bApply
);
94 /** retrieves a filter which is a conjunction of all single filter components
96 OUString
getComposedFilter( ) const;
98 /** appends one filter component to the statement in our composer
100 static void appendFilterComponent( OUStringBuffer
& io_appendTo
, const OUString
& i_component
);
102 /// checks whether there is only one (or even no) non-empty filter component
103 bool isThereAtMostOneComponent( OUStringBuffer
& o_singleComponent
) const;
105 /// returns the index of the first filter component which should be considered when building the composed filter
106 inline sal_Int32
getFirstApplicableFilterIndex() const
108 return m_bApplyPublicFilter
? fcPublicFilter
: fcPublicFilter
+ 1;
116 #endif // CONNECTIVITY_FORMFILTERMANAGER_HXX
118 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */