bump product version to 6.3.0.0.beta1
[LibreOffice.git] / include / svx / fmsrcimp.hxx
blob194411ce174db6535d92bf05fcec31d5afc0a3f7
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 #ifndef INCLUDED_SVX_FMSRCIMP_HXX
21 #define INCLUDED_SVX_FMSRCIMP_HXX
23 #include <svx/fmtools.hxx>
24 #include <svx/svxdllapi.h>
26 #include <com/sun/star/beans/XPropertyChangeListener.hpp>
28 #include <cppuhelper/implbase.hxx>
29 #include <osl/mutex.hxx>
30 #include <unotools/charclass.hxx>
31 #include <unotools/collatorwrapper.hxx>
32 #include <tools/link.hxx>
34 #include <deque>
35 #include <memory>
36 #include <vector>
38 namespace com::sun::star::awt { class XCheckBox; }
39 namespace com::sun::star::awt { class XListBox; }
40 namespace com::sun::star::awt { class XTextComponent; }
41 namespace com::sun::star::sdb { class XColumn; }
43 enum class TransliterationFlags;
45 /**
46 * struct FmSearchProgress - the owner of SearchEngine receives this structure for status updates
47 * (at the end of the search)
49 struct FmSearchProgress
51 enum class State { Progress, ProgressCounting, Canceled, Successful, NothingFound, Error };
52 // (move to new record; progress during counting of records; cancelled; record found; nothing found;
53 // any non-processable error)
54 State aSearchState;
56 // current record - always valid (e.g. of interest for continuing search in case of cancellation)
57 sal_uInt32 nCurrentRecord;
58 // Overflow - only valid in case of STATE_PROGRESS
59 bool bOverflow;
61 // the position of the search cursor - valid in case of STATE_SUCCESSFULL, STATE_CANCELED and STATE_NOTHING_FOUND
62 css::uno::Any aBookmark;
63 // the field, in which the text was found - valid in case of STATE_SUCCESSFULL
64 sal_Int32 nFieldIndex;
67 /**
68 * class FmRecordCountListener - utility class for FmSearchEngine, listens at a certain cursor and provides
69 * the differences in RecordCount
71 class SAL_WARN_UNUSED FmRecordCountListener : public cppu::WeakImplHelper< css::beans::XPropertyChangeListener >
73 // attribute
74 Link<sal_Int32,void> m_lnkWhoWantsToKnow;
75 css::uno::Reference< css::beans::XPropertySet > m_xListening;
77 // attribute access
78 public:
79 void SetPropChangeHandler(const Link<sal_Int32,void>& lnk);
81 // methods
82 public:
83 FmRecordCountListener(const css::uno::Reference< css::sdbc::XResultSet >& dbcCursor);
84 // the set has to support the sdb::ResultSet service
85 virtual ~FmRecordCountListener() override;
87 // DECLARE_UNO3_AGG_DEFAULTS(FmPropertyListener, UsrObject)
88 // virtual sal_Bool queryInterface(css::uno::Uik aUik, css::uno::Reference< css::uno::XInterface >& rOut);
90 // css::lang::XEventListener
91 virtual void SAL_CALL disposing(const css::lang::EventObject& Source) override;
93 // css::beans::XPropertyChangeListener
94 virtual void SAL_CALL propertyChange(const css::beans::PropertyChangeEvent& evt) override;
96 void DisConnect();
98 private:
99 void NotifyCurrentCount();
104 * class FmSearchEngine - Impl class for FmSearchDialog
106 namespace svxform {
107 // We have three possible control types we may search in, determined by the supported interfaces : css::awt::XTextComponent,
108 // css::awt::XListBox, css::awt::XCheckBox.
109 // While searching we don't want to do this distinction for every control in every round. So we need some helpers.
110 class SAL_WARN_UNUSED ControlTextWrapper
112 // attributes
113 css::uno::Reference< css::uno::XInterface > m_xControl;
114 // attribute access
115 public:
116 const css::uno::Reference< css::uno::XInterface >& getControl() const{ return m_xControl; }
117 public:
118 ControlTextWrapper(const css::uno::Reference< css::uno::XInterface >& _xControl) { m_xControl = _xControl; }
119 virtual ~ControlTextWrapper() { }
121 virtual OUString getCurrentText() const = 0;
124 class SAL_WARN_UNUSED SimpleTextWrapper : public ControlTextWrapper
126 css::uno::Reference< css::awt::XTextComponent > m_xText;
127 public:
128 SimpleTextWrapper(const css::uno::Reference< css::awt::XTextComponent >& _xText);
129 virtual OUString getCurrentText() const override;
132 class SAL_WARN_UNUSED ListBoxWrapper : public ControlTextWrapper
134 css::uno::Reference< css::awt::XListBox > m_xBox;
135 public:
136 ListBoxWrapper(const css::uno::Reference< css::awt::XListBox >& _xBox);
137 virtual OUString getCurrentText() const override;
140 class SAL_WARN_UNUSED CheckBoxWrapper : public ControlTextWrapper
142 css::uno::Reference< css::awt::XCheckBox > m_xBox;
143 public:
144 CheckBoxWrapper(const css::uno::Reference< css::awt::XCheckBox >& _xBox);
145 virtual OUString getCurrentText() const override;
149 typedef std::vector< css::uno::Reference< css::uno::XInterface> > InterfaceArray;
151 class SAL_WARN_UNUSED SVX_DLLPUBLIC FmSearchEngine final
153 friend class FmSearchThread;
155 enum class SearchResult { Found, NotFound, Error, Cancelled };
156 enum class SearchFor { String, Null, NotNull };
158 CursorWrapper m_xSearchCursor;
159 std::deque<sal_Int32> m_arrFieldMapping;
160 // Since the iterator could have more columns, as managed here (in this field listbox),
161 // a mapping of this css::form keys on the indices of the respective columns is kept in the iterator
163 CharClass const m_aCharacterClassficator;
164 CollatorWrapper m_aStringCompare;
166 // the collection of all interesting fields (or their css::data::XDatabaseVariant interfaces and FormatKeys)
167 struct FieldInfo
169 css::uno::Reference< css::sdb::XColumn > xContents;
172 typedef std::vector<FieldInfo> FieldCollection;
173 FieldCollection m_arrUsedFields;
174 sal_Int32 m_nCurrentFieldIndex; // the last parameter of RebuildUsedFields, it allows checks in FormatField
176 std::vector<std::unique_ptr<svxform::ControlTextWrapper>>
177 m_aControlTexts;
179 CursorWrapper m_xOriginalIterator;
180 CursorWrapper m_xClonedIterator;
182 // Data for the decision in which field a "Found" is accepted
183 css::uno::Any m_aPreviousLocBookmark; // position of the last finding
184 FieldCollection::iterator m_iterPreviousLocField; // field of the last finding
186 // Communication with the thread that does the actual searching
187 OUString m_strSearchExpression; // forward direction
188 SearchFor m_eSearchForType; // ditto
189 SearchResult m_srResult; // backward direction
191 // The link we broadcast the progress and the result to
192 Link<const FmSearchProgress*,void> m_aProgressHandler;
193 bool m_bSearchingCurrently : 1; // is an (asynchronous) search running?
194 bool m_bCancelAsynchRequest : 1; // should be cancelled?
195 ::osl::Mutex m_aCancelAsynchAccess; // access to_bCancelAsynchRequest (technically only
196 // relevant for m_eMode == SM_USETHREAD)
198 // parameters for the search
199 bool m_bFormatter : 1; // use field formatting
200 bool m_bForward : 1; // direction
201 bool m_bWildcard : 1; // wildcard search
202 bool m_bRegular : 1; // regular expression
203 bool m_bLevenshtein : 1; // Levenshtein search
204 bool m_bTransliteration : 1; // Levenshtein search
206 bool m_bLevRelaxed : 1; // parameters for Levenshtein search
207 sal_uInt16 m_nLevOther;
208 sal_uInt16 m_nLevShorter;
209 sal_uInt16 m_nLevLonger;
211 sal_uInt16 m_nPosition; // if not regular or levenshtein, then one of the MATCHING_... values
213 TransliterationFlags m_nTransliterationFlags;
216 // member access
217 private:
218 SVX_DLLPRIVATE bool CancelRequested(); // provides a through m_aCancelAsynchAccess backed interpretation of m_bCancelAsynchRequest
220 public:
221 void SetCaseSensitive(bool bSet);
222 bool GetCaseSensitive() const;
224 void SetFormatterUsing(bool bSet); // this is somewhat more extensive, so no inline ... here
225 bool GetFormatterUsing() const { return m_bFormatter; }
227 void SetDirection(bool bForward) { m_bForward = bForward; }
228 bool GetDirection() const { return m_bForward; }
230 void SetWildcard(bool bSet) { m_bWildcard = bSet; }
231 bool GetWildcard() const { return m_bWildcard; }
233 void SetRegular(bool bSet) { m_bRegular = bSet; }
234 bool GetRegular() const { return m_bRegular; }
236 void SetLevenshtein(bool bSet) { m_bLevenshtein = bSet; }
237 bool GetLevenshtein() const { return m_bLevenshtein; }
239 void SetIgnoreWidthCJK(bool bSet);
240 bool GetIgnoreWidthCJK() const;
242 void SetTransliteration(bool bSet) { m_bTransliteration = bSet; }
243 bool GetTransliteration() const { return m_bTransliteration; }
245 void SetLevRelaxed(bool bSet) { m_bLevRelaxed = bSet; }
246 bool GetLevRelaxed() const { return m_bLevRelaxed; }
247 void SetLevOther(sal_uInt16 nHowMuch) { m_nLevOther = nHowMuch; }
248 sal_uInt16 GetLevOther() const { return m_nLevOther; }
249 void SetLevShorter(sal_uInt16 nHowMuch) { m_nLevShorter = nHowMuch; }
250 sal_uInt16 GetLevShorter() const { return m_nLevShorter; }
251 void SetLevLonger(sal_uInt16 nHowMuch) { m_nLevLonger = nHowMuch; }
252 sal_uInt16 GetLevLonger() const { return m_nLevLonger; }
253 // all Lev. values will only be considered in case of m_bLevenshtein==sal_True
255 void SetTransliterationFlags(TransliterationFlags _nFlags) { m_nTransliterationFlags = _nFlags; }
256 TransliterationFlags
257 GetTransliterationFlags() const { return m_nTransliterationFlags; }
259 void SetPosition(sal_uInt16 nValue) { m_nPosition = nValue; }
260 sal_uInt16 GetPosition() const { return m_nPosition; }
261 // position will be ignored in case of m_bWildCard==sal_True
263 public:
264 /** two constructs, both analogical to FmSearchDialog, therefore look this up for explanations ....
265 xCursor has to implement css::data::DatabaseCursor service each time.
266 If eMode == SM_USETHREAD, a ProgressHandler should be set, because in this case the result forwarding will be done
267 by this handler.
268 If eMode != SM_USETHREAD, SearchNext and StarOver won't return, until the search has finished (independently of its
269 success), only then the result can be requested. If additionally the ProgressHandler is set, it will be called for
270 every record as well as at the end of the search.
272 FmSearchEngine(
273 const css::uno::Reference< css::uno::XComponentContext >& _rxContext,
274 const css::uno::Reference< css::sdbc::XResultSet >& xCursor,
275 const OUString& strVisibleFields,
276 const InterfaceArray& arrFields);
278 /** the link will be called on every record and after the completion of the search, the parameter is a pointer to
279 a FmSearchProgress structure
280 the handler should be in any case thread-safe
282 void SetProgressHandler(Link<const FmSearchProgress*,void> aHdl) { m_aProgressHandler = aHdl; }
284 /// search for the next appearance (for nDirection values check DIRECTION_*-defines)
285 void SearchNext(const OUString& strExpression);
286 /// analogous, search for "NULL" (_bSearchForNull==sal_True) or "not NULL"
287 void SearchNextSpecial(bool _bSearchForNull);
288 /// search for the next appearance, dependent on nDirection from the start or end
289 void StartOver(const OUString& strExpression);
290 /// analogous, search for "NULL" (_bSearchForNull==sal_True) or "not NULL"
291 void StartOverSpecial(bool _bSearchForNull);
292 /// invalidate previous search reference
293 void InvalidatePreviousLoc();
295 /** rebuilds m_arrUsedFields (nFieldIndex==-1 means all fields, otherwise it specifies the field index)
296 if bForce is not set, nothing will happen in case of nFieldIndex == m_nCurrentFieldIndex
297 (calls InvalidatePreviousLoc)
299 void RebuildUsedFields(sal_Int32 nFieldIndex, bool bForce = false);
300 OUString FormatField(sal_Int32 nWhich);
302 /// returns directly; once it was really aborted, ProgressHandler is called with STATE_CANCELED
303 void CancelSearch();
305 /** only valid, if not an (asynchronous) search is running, the next search will then be executed
306 on top of the new iterator with the new parameter
308 void SwitchToContext(const css::uno::Reference< css::sdbc::XResultSet >& xCursor, const OUString& strVisibleFields, const InterfaceArray& arrFields,
309 sal_Int32 nFieldIndex);
311 private:
312 void Init(const OUString& strVisibleFields);
314 void SearchNextImpl();
315 // this Impl method is running in SearchThread
317 // start a thread-search (or call SearchNextImpl directly, depending on the search mode)
318 void ImplStartNextSearch();
320 SVX_DLLPRIVATE void clearControlTexts();
321 SVX_DLLPRIVATE void fillControlTexts(const InterfaceArray& arrFields);
323 // three methods implementing a complete search loop (null/not null, wildcard, SearchText)
324 // (they all have some code in common, but with this solution we have to do a distinction only once per search (before
325 // starting the loop), not in every loop step
326 SVX_DLLPRIVATE SearchResult SearchSpecial(bool _bSearchForNull, sal_Int32& nFieldPos, FieldCollection::iterator& iterFieldLoop,
327 const FieldCollection::iterator& iterBegin, const FieldCollection::iterator& iterEnd);
328 SVX_DLLPRIVATE SearchResult SearchWildcard(const OUString& strExpression, sal_Int32& nFieldPos, FieldCollection::iterator& iterFieldLoop,
329 const FieldCollection::iterator& iterBegin, const FieldCollection::iterator& iterEnd);
330 SVX_DLLPRIVATE SearchResult SearchRegularApprox(const OUString& strExpression, sal_Int32& nFieldPos, FieldCollection::iterator& iterFieldLoop,
331 const FieldCollection::iterator& iterBegin, const FieldCollection::iterator& iterEnd);
333 SVX_DLLPRIVATE void PropagateProgress(bool _bDontPropagateOverflow);
334 // call the ProgressHandler with STATE_PROGRESS and the current position of the search iterator
336 // helpers, that are needed several times
337 SVX_DLLPRIVATE bool MoveCursor();
338 // moves m_xSearchIterator with respect to direction/overflow cursor
339 SVX_DLLPRIVATE bool MoveField(sal_Int32& nPos, FieldCollection::iterator& iter, const FieldCollection::iterator& iterBegin, const FieldCollection::iterator& iterEnd);
340 // moves the iterator with respect to the direction/overflow iterator/overflow cursor
341 SVX_DLLPRIVATE void BuildAndInsertFieldInfo(const css::uno::Reference< css::container::XIndexAccess >& xAllFields, sal_Int32 nField);
343 void OnSearchTerminated();
344 // is used by SearchThread, after the return from this handler the thread removes itself
345 DECL_LINK(OnNewRecordCount, sal_Int32, void);
348 #endif // INCLUDED_SVX_FMSRCIMP_HXX
350 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */