/src/libreoffice/connectivity/source/commontools/TKey.cxx
Line | Count | Source |
1 | | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
2 | | /* |
3 | | * This file is part of the LibreOffice project. |
4 | | * |
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/. |
8 | | * |
9 | | * This file incorporates work covered by the following license notice: |
10 | | * |
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 . |
18 | | */ |
19 | | |
20 | | #include <TKey.hxx> |
21 | | #include <TKeyColumns.hxx> |
22 | | #include <com/sun/star/sdbc/XRow.hpp> |
23 | | #include <com/sun/star/sdbc/XResultSet.hpp> |
24 | | #include <TConnection.hxx> |
25 | | #include <connectivity/TTableHelper.hxx> |
26 | | |
27 | | using namespace connectivity; |
28 | | using namespace ::com::sun::star::uno; |
29 | | using namespace ::com::sun::star::sdbc; |
30 | | |
31 | 0 | OTableKeyHelper::OTableKeyHelper(OTableHelper* _pTable) : connectivity::sdbcx::OKey(true) |
32 | 0 | ,m_pTable(_pTable) |
33 | 0 | { |
34 | 0 | construct(); |
35 | 0 | } |
36 | | |
37 | | OTableKeyHelper::OTableKeyHelper( OTableHelper* _pTable |
38 | | ,const OUString& Name |
39 | | ,const std::shared_ptr<sdbcx::KeyProperties>& _rProps |
40 | 0 | ) : connectivity::sdbcx::OKey(Name,_rProps,true) |
41 | 0 | ,m_pTable(_pTable) |
42 | 0 | { |
43 | 0 | construct(); |
44 | 0 | refreshColumns(); |
45 | 0 | } |
46 | | |
47 | | void OTableKeyHelper::refreshColumns() |
48 | 0 | { |
49 | 0 | if ( !m_pTable ) |
50 | 0 | return; |
51 | | |
52 | 0 | std::vector< OUString> aVector; |
53 | 0 | if ( !isNew() ) |
54 | 0 | { |
55 | 0 | aVector = m_aProps->m_aKeyColumnNames; |
56 | 0 | if ( aVector.empty() ) |
57 | 0 | { |
58 | 0 | ::dbtools::OPropertyMap& rPropMap = OMetaConnection::getPropMap(); |
59 | 0 | OUString aSchema,aTable; |
60 | 0 | m_pTable->getPropertyValue(rPropMap.getNameByIndex(PROPERTY_ID_SCHEMANAME)) >>= aSchema; |
61 | 0 | m_pTable->getPropertyValue(rPropMap.getNameByIndex(PROPERTY_ID_NAME)) >>= aTable; |
62 | |
|
63 | 0 | if ( !m_Name.isEmpty() ) // foreign key |
64 | 0 | { |
65 | |
|
66 | 0 | Reference< XResultSet > xResult = m_pTable->getMetaData()->getImportedKeys(m_pTable->getPropertyValue(rPropMap.getNameByIndex(PROPERTY_ID_CATALOGNAME)), |
67 | 0 | aSchema,aTable); |
68 | |
|
69 | 0 | if ( xResult.is() ) |
70 | 0 | { |
71 | 0 | Reference< XRow > xRow(xResult,UNO_QUERY); |
72 | 0 | while( xResult->next() ) |
73 | 0 | { |
74 | 0 | OUString aForeignKeyColumn = xRow->getString(8); |
75 | 0 | if(xRow->getString(12) == m_Name) |
76 | 0 | aVector.push_back(aForeignKeyColumn); |
77 | 0 | } |
78 | 0 | } |
79 | 0 | } |
80 | |
|
81 | 0 | if ( aVector.empty() ) |
82 | 0 | { |
83 | 0 | const Reference< XResultSet > xResult = m_pTable->getMetaData()->getPrimaryKeys(m_pTable->getPropertyValue(rPropMap.getNameByIndex(PROPERTY_ID_CATALOGNAME)), |
84 | 0 | aSchema,aTable); |
85 | |
|
86 | 0 | if ( xResult.is() ) |
87 | 0 | { |
88 | 0 | const Reference< XRow > xRow(xResult,UNO_QUERY); |
89 | 0 | while( xResult->next() ) |
90 | 0 | aVector.push_back(xRow->getString(4)); |
91 | 0 | } // if ( xResult.is() ) |
92 | 0 | } |
93 | 0 | } |
94 | 0 | } |
95 | | |
96 | |
|
97 | 0 | if ( m_pColumns ) |
98 | 0 | m_pColumns->reFill(aVector); |
99 | 0 | else |
100 | 0 | m_pColumns.reset(new OKeyColumnsHelper(this,m_aMutex,aVector)); |
101 | 0 | } |
102 | | |
103 | | |
104 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |