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
|
#ifndef _TREEVIEW_TVREAD_HXX_
#define _TREEVIEW_TVREAD_HXX_
#ifndef INCLUDED_STL_VECTOR
#include <vector>
#define INCLUDED_STL_VECTOR
#endif
#ifndef _RTL_REF_HXX_
#include <rtl/ref.hxx>
#endif
#ifndef _RTL_USTRING_HXX_
#include <rtl/ustring.hxx>
#endif
#ifndef _UCBHELPER_MACROS_HXX
#include <ucbhelper/macros.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_TYPE_HXX_
#include <com/sun/star/uno/Type.hxx>
#endif
#ifndef _CPPUHELPER_WEAK_HXX_
#include <cppuhelper/weak.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_XINTERFACE_HPP_
#include <com/sun/star/uno/XInterface.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_XTYPEPROVIDER_HPP_
#include <com/sun/star/lang/XTypeProvider.hpp>
#endif
#ifndef _COM_SUN_STAR_CONTAINER_XNAMEACCESS_HPP_
#include <com/sun/star/container/XNameAccess.hpp>
#endif
#ifndef _COM_SUN_STAR_CONTAINER_XHIERARCHICALNAMEACCESS_HPP_
#include <com/sun/star/container/XHierarchicalNameAccess.hpp>
#endif
#ifndef _COM_SUN_STAR_UTIL_XCHANGESNOTIFIER_HPP_
#include <com/sun/star/util/XChangesNotifier.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_XCOMPONENT_HPP_
#include <com/sun/star/lang/XComponent.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#endif
namespace treeview {
class ConfigData
{
public:
#define PRODUCTNAME 0
#define PRODUCTVERSION 1
#define VENDORNAME 2
#define VENDORVERSION 3
#define VENDORSHORT 4
#define MAX_MODULE_COUNT 16
ConfigData();
int m_vAdd[5];
rtl::OUString m_vReplacement[5];
rtl::OUString prodName,prodVersion,vendName,vendVersion,vendShort;
sal_uInt64 filelen[MAX_MODULE_COUNT];
rtl::OUString fileurl[MAX_MODULE_COUNT];
rtl::OUString locale,system;
rtl::OUString appendix;
void SAL_CALL replaceName( rtl::OUString& oustring ) const;
};
class TVDom;
class TVChildTarget;
class TVBase
: public cppu::OWeakObject,
public com::sun::star::lang::XTypeProvider,
public com::sun::star::container::XNameAccess,
public com::sun::star::container::XHierarchicalNameAccess,
public com::sun::star::util::XChangesNotifier,
public com::sun::star::lang::XComponent
{
friend class TVChildTarget;
public:
virtual ~TVBase() { }
// XInterface
virtual com::sun::star::uno::Any SAL_CALL
queryInterface(
const com::sun::star::uno::Type& aType )
throw( com::sun::star::uno::RuntimeException);
virtual void SAL_CALL
acquire(
void )
throw();
virtual void SAL_CALL
release(
void )
throw();
// XTypeProvider
XTYPEPROVIDER_DECL()
// XNameAccess
virtual com::sun::star::uno::Type SAL_CALL
getElementType( )
throw( com::sun::star::uno::RuntimeException )
{
return getCppuVoidType();
}
virtual sal_Bool SAL_CALL hasElements()
throw( com::sun::star::uno::RuntimeException )
{
return true;
}
// XChangesNotifier
virtual void SAL_CALL
addChangesListener(
const com::sun::star::uno::Reference< com::sun::star::util::XChangesListener >& aListener )
throw( com::sun::star::uno::RuntimeException )
{
// read only
}
virtual void SAL_CALL
removeChangesListener(
const com::sun::star::uno::Reference< com::sun::star::util::XChangesListener >& aListener )
throw( com::sun::star::uno::RuntimeException )
{
// read only
}
// XComponent
virtual void SAL_CALL dispose( )
throw( com::sun::star::uno::RuntimeException )
{
}
virtual void SAL_CALL addEventListener(
const com::sun::star::uno::Reference< com::sun::star::lang::XEventListener >& xListener )
throw( com::sun::star::uno::RuntimeException )
{
}
virtual void SAL_CALL
removeEventListener(
const com::sun::star::uno::Reference< com::sun::star::lang::XEventListener >& aListener )
throw( com::sun::star::uno::RuntimeException )
{
}
// Abstract functions
// XNameAccess
virtual com::sun::star::uno::Any SAL_CALL
getByName( const rtl::OUString& aName )
throw( com::sun::star::container::NoSuchElementException,
com::sun::star::lang::WrappedTargetException,
com::sun::star::uno::RuntimeException) = 0;
virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
getElementNames( )
throw( com::sun::star::uno::RuntimeException ) = 0;
virtual sal_Bool SAL_CALL
hasByName( const rtl::OUString& aName )
throw( com::sun::star::uno::RuntimeException ) = 0;
// XHierarchicalNameAccess
virtual com::sun::star::uno::Any SAL_CALL
getByHierarchicalName( const rtl::OUString& aName )
throw( com::sun::star::container::NoSuchElementException,
com::sun::star::uno::RuntimeException ) = 0;
virtual sal_Bool SAL_CALL
hasByHierarchicalName( const rtl::OUString& aName )
throw( com::sun::star::uno::RuntimeException ) = 0;
}; // end class TVBase
class TVRead
: public TVBase
{
friend class TVChildTarget;
public:
TVRead();
TVRead( const ConfigData& configData,TVDom* tvDom = 0 );
~TVRead();
// XNameAccess
virtual com::sun::star::uno::Any SAL_CALL
getByName( const rtl::OUString& aName )
throw( com::sun::star::container::NoSuchElementException,
com::sun::star::lang::WrappedTargetException,
com::sun::star::uno::RuntimeException);
virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
getElementNames( )
throw( com::sun::star::uno::RuntimeException );
virtual sal_Bool SAL_CALL
hasByName( const rtl::OUString& aName )
throw( com::sun::star::uno::RuntimeException );
// XHierarchicalNameAccess
virtual com::sun::star::uno::Any SAL_CALL
getByHierarchicalName( const rtl::OUString& aName )
throw( com::sun::star::container::NoSuchElementException,
com::sun::star::uno::RuntimeException );
virtual sal_Bool SAL_CALL
hasByHierarchicalName( const rtl::OUString& aName )
throw( com::sun::star::uno::RuntimeException );
private:
rtl::OUString Title;
rtl::OUString TargetURL;
rtl::Reference< TVChildTarget > Children;
}; // end class TVRead
class TVChildTarget
: public TVBase
{
public:
TVChildTarget( const ConfigData& configData,TVDom* tvDom );
TVChildTarget( const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& xMSF );
~TVChildTarget();
virtual com::sun::star::uno::Any SAL_CALL
getByName( const rtl::OUString& aName )
throw( com::sun::star::container::NoSuchElementException,
com::sun::star::lang::WrappedTargetException,
com::sun::star::uno::RuntimeException);
virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
getElementNames( )
throw( com::sun::star::uno::RuntimeException );
virtual sal_Bool SAL_CALL
hasByName( const rtl::OUString& aName )
throw( com::sun::star::uno::RuntimeException );
// XHierarchicalNameAccess
virtual com::sun::star::uno::Any SAL_CALL
getByHierarchicalName( const rtl::OUString& aName )
throw( com::sun::star::container::NoSuchElementException,
com::sun::star::uno::RuntimeException );
virtual sal_Bool SAL_CALL
hasByHierarchicalName( const rtl::OUString& aName )
throw( com::sun::star::uno::RuntimeException );
private:
std::vector< rtl::Reference< TVRead > > Elements;
ConfigData init(
const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& xMSF );
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >
getConfiguration(
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xMSgr ) const;
::com::sun::star::uno::Reference< ::com::sun::star::container::XHierarchicalNameAccess >
getHierAccess( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& sProvider,
const char* file ) const;
::rtl::OUString
getKey( const ::com::sun::star::uno::Reference< ::com::sun::star::container::XHierarchicalNameAccess >& xHierAccess,
const char* key ) const;
sal_Bool
getBooleanKey(
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XHierarchicalNameAccess >& xHierAccess,
const char* key) const;
void subst(
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xMSgr,
rtl::OUString& instpath ) const;
}; // end class TVChildTarget
}
#endif
|