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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
|
/*************************************************************************
*
* $RCSfile: dbexchange.cxx,v $
*
* $Revision: 1.15 $
*
* last change: $Author: oj $ $Date: 2001-07-05 12:46:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the License); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an AS IS basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifndef DBAUI_DBEXCHANGE_HXX
#include "dbexchange.hxx"
#endif
#ifndef _SOT_FORMATS_HXX
#include <sot/formats.hxx>
#endif
#ifndef _SOT_STORAGE_HXX
#include <sot/storage.hxx>
#endif
#ifndef _OSL_DIAGNOSE_H_
#include <osl/diagnose.h>
#endif
#ifndef _COM_SUN_STAR_SDB_COMMANDTYPE_HPP_
#include <com/sun/star/sdb/CommandType.hpp>
#endif
#ifndef DBAUI_TOKENWRITER_HXX
#include "TokenWriter.hxx"
#endif
#ifndef DBACCESS_SHARED_DBUSTRINGS_HRC
#include "dbustrings.hrc"
#endif
#ifndef _COMPHELPER_EXTRACT_HXX_
#include <comphelper/extract.hxx>
#endif
#ifndef _SVX_DATACCESSDESCRIPTOR_HXX_
#include <svx/dataaccessdescriptor.hxx>
#endif
namespace dbaui
{
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::sdb;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::util;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::datatransfer;
using namespace ::svx;
// -----------------------------------------------------------------------------
ODataClipboard::ODataClipboard(
const ::rtl::OUString& _rDatasource,
const sal_Int32 _nCommandType,
const ::rtl::OUString& _rCommand,
const Reference< XConnection >& _rxConnection,
const Reference< XNumberFormatter >& _rxFormatter,
const Reference< XMultiServiceFactory >& _rxORB,
const sal_Int32 _nFormats)
:m_pHtml(NULL)
,m_pRtf(NULL)
,m_nObjectType(CommandType::TABLE)
,m_nFormats(_nFormats)
{
// build the descriptor (the property sequence)
ODataAccessDescriptor aDescriptor;
aDescriptor[daDataSource] <<= _rDatasource;
aDescriptor[daConnection] <<= _rxConnection;
aDescriptor[daCommand] <<= _rCommand;
aDescriptor[daCommandType] <<= _nCommandType;
m_aSeq = aDescriptor.createPropertyValueSequence();
// calculate some stuff which helps us providing the different formats
if (DCF_OBJECT_DESCRIPTOR == (m_nFormats & DCF_OBJECT_DESCRIPTOR))
{
// extract the single values from the sequence
::rtl::OUString sDatasourceName;
::rtl::OUString sObjectName;
sal_Bool bEscapeProcessing = sal_True;
sDatasourceName = _rDatasource;
m_nObjectType = _nCommandType;
sObjectName = _rCommand;
// for compatibility: create a string which can be used for the SOT_FORMATSTR_ID_SBA_DATAEXCHANGE format
sal_Bool bTreatAsStatement = (CommandType::COMMAND == m_nObjectType);
// statements are - in this old and ugly format - described as queries
const sal_Unicode cSeparator = sal_Unicode(11);
const ::rtl::OUString sSeparator(&cSeparator, 1);
const sal_Unicode cTableMark = '1';
const sal_Unicode cQueryMark = '0';
// build the descriptor string
m_sCompatibleObjectDescription += sDatasourceName;
m_sCompatibleObjectDescription += sSeparator;
m_sCompatibleObjectDescription += bTreatAsStatement ? ::rtl::OUString() : sObjectName;
m_sCompatibleObjectDescription += sSeparator;
switch (m_nObjectType)
{
case CommandType::TABLE:
m_sCompatibleObjectDescription += ::rtl::OUString(&cTableMark, 1);
break;
case CommandType::QUERY:
m_sCompatibleObjectDescription += ::rtl::OUString(&cQueryMark, 1);
break;
case CommandType::COMMAND:
m_sCompatibleObjectDescription += ::rtl::OUString(&cQueryMark, 1);
// think of it as a query
break;
}
m_sCompatibleObjectDescription += sSeparator;
m_sCompatibleObjectDescription += bTreatAsStatement ? sObjectName : ::rtl::OUString();
m_sCompatibleObjectDescription += sSeparator;
}
if (DCF_HTML_TABLE == (m_nFormats & DCF_HTML_TABLE))
{
m_pHtml = new OHTMLImportExport(m_aSeq, _rxORB, _rxFormatter);
m_xHtml = m_pHtml;
}
if (DCF_RTF_TABLE == (m_nFormats & DCF_RTF_TABLE))
{
m_pRtf = new ORTFImportExport(m_aSeq, _rxORB, _rxFormatter);
m_xRtf = m_pRtf;
}
}
// -----------------------------------------------------------------------------
ODataClipboard::ODataClipboard(const Reference< XPropertySet >& _rxLivingForm, const Reference< XSQLQueryComposer >& _rxComposer)
:m_pHtml(NULL)
,m_pRtf(NULL)
,m_nObjectType(CommandType::TABLE)
,m_nFormats(DCF_OBJECT_DESCRIPTOR)
{
// collect some properties of the form
::rtl::OUString sDatasourceName;
sal_Int32 nObjectType = CommandType::COMMAND;
::rtl::OUString sObjectName;
try
{
_rxLivingForm->getPropertyValue(PROPERTY_COMMANDTYPE) >>= nObjectType;
_rxLivingForm->getPropertyValue(PROPERTY_COMMAND) >>= sObjectName;
_rxLivingForm->getPropertyValue(PROPERTY_DATASOURCENAME) >>= sDatasourceName;
}
catch(Exception&)
{
OSL_ENSURE(sal_False, "ODataClipboard::ODataClipboard: could not collect essential form attributes !");
m_nFormats = 0;
return;
}
sal_Bool bIsStatement = CommandType::COMMAND == nObjectType;
String sObjectKind = (CommandType::TABLE == nObjectType) ? String('1') : String('0');
// check if the SQL-statement is modified
sal_Bool bHasFilterOrSort(sal_False);
::rtl::OUString sCompleteStatement;
try
{
::rtl::OUString sFilter;
if (::cppu::any2bool(_rxLivingForm->getPropertyValue(PROPERTY_APPLYFILTER)))
_rxLivingForm->getPropertyValue(PROPERTY_FILTER) >>= sFilter;
::rtl::OUString sSort;
_rxLivingForm->getPropertyValue(PROPERTY_ORDER) >>= sSort;
bHasFilterOrSort = (sFilter.getLength()>0) || (sSort.getLength()>0);
_rxLivingForm->getPropertyValue(PROPERTY_ACTIVECOMMAND) >>= sCompleteStatement;
if (_rxComposer.is())
{
_rxComposer->setQuery(sCompleteStatement);
_rxComposer->setFilter(sFilter);
_rxComposer->setOrder(sSort);
sCompleteStatement = _rxComposer->getComposedQuery();
}
}
catch(Exception&)
{
OSL_ENSURE(sal_False, "ODataClipboard::ODataClipboard: could not collect essential form attributes (part two) !");
m_nFormats = 0;
return;
}
// build the object description (as string)
const sal_Unicode cSeparator(11);
const ::rtl::OUString sSeparator(&cSeparator, 1);
m_sCompatibleObjectDescription = sDatasourceName;
m_sCompatibleObjectDescription += sSeparator;
m_sCompatibleObjectDescription += bIsStatement ? ::rtl::OUString() : sObjectName;
m_sCompatibleObjectDescription += sSeparator;
m_sCompatibleObjectDescription += sObjectKind;
m_sCompatibleObjectDescription += sSeparator;
m_sCompatibleObjectDescription +=
(CommandType::QUERY == nObjectType) && !bHasFilterOrSort
? ::rtl::OUString()
: sCompleteStatement;
// compatibility says : always add the statement, but don't if it is a "pure" query
m_sCompatibleObjectDescription += sSeparator;
}
// -----------------------------------------------------------------------------
void ODataClipboard::addRow(sal_Int32 _nRow)
{
OSL_ENSURE(m_nFormats & DCF_OBJECT_DESCRIPTOR, "ODataClipboard::addRow: don't have this (object descriptor) format!");
const sal_Unicode cSeparator(11);
const ::rtl::OUString sSeparator(&cSeparator, 1);
m_sCompatibleObjectDescription += ::rtl::OUString::valueOf((sal_Int32)_nRow);
m_sCompatibleObjectDescription += sSeparator;
}
// -----------------------------------------------------------------------------
sal_Bool ODataClipboard::WriteObject( SotStorageStreamRef& rxOStm, void* pUserObject, sal_uInt32 nUserObjectId, const ::com::sun::star::datatransfer::DataFlavor& rFlavor )
{
if (nUserObjectId == SOT_FORMAT_RTF || nUserObjectId == SOT_FORMATSTR_ID_HTML || nUserObjectId == SOT_FORMATSTR_ID_HTML_SIMPLE)
{
ODatabaseImportExport* pExport = reinterpret_cast<ODatabaseImportExport*>(pUserObject);
if(pExport)
{
pExport->setStream(&rxOStm);
return pExport->Write();
}
}
return sal_False;
}
// -----------------------------------------------------------------------------
void ODataClipboard::AddSupportedFormats()
{
// RTF?
if (DCF_RTF_TABLE == (m_nFormats & DCF_RTF_TABLE))
AddFormat(SOT_FORMAT_RTF);
// HTML?
if (DCF_HTML_TABLE == (m_nFormats & DCF_HTML_TABLE))
{
AddFormat(SOT_FORMATSTR_ID_HTML);
AddFormat(SOT_FORMATSTR_ID_HTML_SIMPLE);
}
// object descriptor?
if (DCF_OBJECT_DESCRIPTOR == (m_nFormats & DCF_OBJECT_DESCRIPTOR))
{
switch (m_nObjectType)
{
case CommandType::TABLE:
AddFormat(SOT_FORMATSTR_ID_DBACCESS_TABLE);
break;
case CommandType::QUERY:
AddFormat(SOT_FORMATSTR_ID_DBACCESS_QUERY);
break;
case CommandType::COMMAND:
AddFormat(SOT_FORMATSTR_ID_DBACCESS_COMMAND);
break;
}
sal_Int32 nDescriptorLen = m_sCompatibleObjectDescription.getLength();
if (nDescriptorLen)
{
if (m_sCompatibleObjectDescription.getStr()[nDescriptorLen] == 11)
m_sCompatibleObjectDescription = m_sCompatibleObjectDescription.copy(0, nDescriptorLen - 1);
if (nDescriptorLen)
AddFormat(SOT_FORMATSTR_ID_SBA_DATAEXCHANGE);
}
}
}
// -----------------------------------------------------------------------------
sal_Bool ODataClipboard::GetData( const DataFlavor& rFlavor )
{
ULONG nFormat = SotExchange::GetFormat(rFlavor);
switch (nFormat)
{
case SOT_FORMAT_RTF:
m_pRtf->initialize();
return SetObject(m_pRtf,SOT_FORMAT_RTF,rFlavor);
case SOT_FORMATSTR_ID_HTML:
m_pHtml->initialize();
return SetObject(m_pHtml,SOT_FORMATSTR_ID_HTML,rFlavor);
case SOT_FORMATSTR_ID_HTML_SIMPLE:
m_pHtml->initialize();
return SetObject(m_pHtml,SOT_FORMATSTR_ID_HTML_SIMPLE,rFlavor);
case SOT_FORMATSTR_ID_DBACCESS_TABLE:
case SOT_FORMATSTR_ID_DBACCESS_QUERY:
case SOT_FORMATSTR_ID_DBACCESS_COMMAND:
return SetAny(makeAny(m_aSeq), rFlavor);
case SOT_FORMATSTR_ID_SBA_DATAEXCHANGE:
return SetString(m_sCompatibleObjectDescription, rFlavor);
}
return sal_False;
}
// -----------------------------------------------------------------------------
void ODataClipboard::ObjectReleased()
{
m_xHtml = m_xRtf = NULL;
m_pHtml = NULL;
m_pRtf = NULL;
m_aSeq.realloc(0);
}
// -----------------------------------------------------------------------------
}
|