1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include "MConnection.hxx"
#include "MDatabaseMetaDataHelper.hxx"
// do we need it?
static ::osl::Mutex m_aMetaMutex;
#include <sal/log.hxx>
#include "MorkParser.hxx"
using namespace connectivity;
using namespace connectivity::mork;
MDatabaseMetaDataHelper::MDatabaseMetaDataHelper()
{
SAL_INFO("connectivity.mork", "=> MDatabaseMetaDataHelper::MDatabaseMetaDataHelper()" );
}
MDatabaseMetaDataHelper::~MDatabaseMetaDataHelper()
{
}
void MDatabaseMetaDataHelper::getTableStrings( OConnection* _pCon,
std::vector< OUString >& _rStrings)
{
SAL_INFO("connectivity.mork", "=> MDatabaseMetaDataHelper::getTableStrings()");
/* add default tables */
_rStrings.push_back("AddressBook");
_rStrings.push_back("CollectedAddressBook");
/* retrieve list table names (not from collected ab) */
std::set<std::string> lists;
MorkParser* pMork = _pCon->getMorkParser("AddressBook");
pMork->retrieveLists(lists);
for (auto const& elem : lists)
{
OUString groupTableName = OStringToOUString(elem.c_str(), RTL_TEXTENCODING_UTF8);
SAL_INFO("connectivity.mork", "add Table " << groupTableName);
_rStrings.push_back(groupTableName);
// remember the list in the mork parser, we'll use it later
pMork->lists_.push_back(groupTableName);
}
std::set<std::string> lists_history;
pMork = _pCon->getMorkParser("CollectedAddressBook");
pMork->retrieveLists(lists_history);
for (auto const& elem : lists_history)
{
OUString groupTableName = OStringToOUString(elem.c_str(), RTL_TEXTENCODING_UTF8);
SAL_INFO("connectivity.mork", "add Table " << groupTableName);
_rStrings.push_back(groupTableName);
// remember the list in the mork parser, we'll use it later
pMork->lists_.push_back(groupTableName);
}
}
void MDatabaseMetaDataHelper::getTables( OConnection* _pCon,
const OUString& tableNamePattern,
ODatabaseMetaDataResultSet::ORows& _rRows)
{
SAL_INFO("connectivity.mork", "=> MDatabaseMetaDataHelper::getTables()");
static ODatabaseMetaDataResultSet::ORows aRows;
SAL_INFO("connectivity.mork", "=> MDatabaseMetaDataHelper::getTables()" );
SAL_INFO("connectivity.mork", "tableNamePattern : " << tableNamePattern);
::osl::MutexGuard aGuard( m_aMetaMutex );
ODatabaseMetaDataResultSet::ORows().swap(aRows); // this makes real clear where memory is freed as well
aRows.clear();
std::vector< OUString > tables;
getTableStrings( _pCon, tables );
for (OUString& aTableName : tables) {
ODatabaseMetaDataResultSet::ORow aRow { nullptr, nullptr, nullptr };
SAL_INFO("connectivity.mork", "TableName: " << aTableName );
// return tables to caller
if (match( tableNamePattern, aTableName, '\0' ))
{
if ( aTableName.isEmpty() ) {
aTableName = "AddressBook";
}
SAL_INFO("connectivity.mork", "TableName: " << aTableName);
aRow.push_back( new ORowSetValueDecorator( aTableName ) ); // Table/View name
if ((aTableName == "AddressBook") || (aTableName == "CollectedAddressBook"))
{
aRow.push_back( new ORowSetValueDecorator( OUString("TABLE") ) ); // Table type
}
else
{
aRow.push_back( new ORowSetValueDecorator( OUString("VIEW") ) ); // View type
}
aRow.push_back( ODatabaseMetaDataResultSet::getEmptyValue() ); // Remarks
aRows.push_back(aRow);
}
}
_rRows = aRows;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|