Line data Source code
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 <stdlib.h>
21 : #include <string.h>
22 : #include <list>
23 :
24 : #include <boost/noncopyable.hpp>
25 : #include <cppuhelper/queryinterface.hxx>
26 : #include <cppuhelper/weak.hxx>
27 : #include <cppuhelper/implbase3.hxx>
28 : #include <cppuhelper/implementationentry.hxx>
29 : #include <cppuhelper/supportsservice.hxx>
30 :
31 : #include <uno/mapping.hxx>
32 : #include <osl/thread.h>
33 :
34 : #include <rtl/ref.hxx>
35 : #include <rtl/ustring.hxx>
36 : #include <rtl/ustrbuf.hxx>
37 : #include <osl/process.h>
38 :
39 : #include <com/sun/star/lang/XServiceInfo.hpp>
40 : #include <com/sun/star/lang/XInitialization.hpp>
41 : #include <com/sun/star/loader/XImplementationLoader.hpp>
42 : #include <com/sun/star/registry/XImplementationRegistration2.hpp>
43 : #include <com/sun/star/container/XHierarchicalNameAccess.hpp>
44 : #include <com/sun/star/reflection/XServiceTypeDescription.hpp>
45 : #include <com/sun/star/beans/XPropertySet.hpp>
46 : #include <com/sun/star/uno/RuntimeException.hpp>
47 :
48 : #include "mergekeys.hxx"
49 :
50 : #if defined(SAL_W32)
51 : #include <io.h>
52 : #else
53 : #include <unistd.h>
54 : #endif
55 :
56 :
57 : using namespace com::sun::star;
58 : using namespace css::uno;
59 : using namespace css::loader;
60 : using namespace css::beans;
61 : using namespace css::lang;
62 : using namespace css::registry;
63 : using namespace cppu;
64 : using namespace osl;
65 :
66 : namespace {
67 :
68 2 : struct StringPool: private boost::noncopyable
69 : {
70 : OUString slash_UNO_slash_REGISTRY_LINKS;
71 : OUString slash_IMPLEMENTATIONS;
72 : OUString slash_UNO;
73 : OUString slash_UNO_slash_SERVICES;
74 : OUString slash_UNO_slash_SINGLETONS;
75 : OUString slash_SERVICES;
76 : OUString slash_UNO_slash_LOCATION;
77 : OUString slash_UNO_slash_ACTIVATOR;
78 : OUString colon_old;
79 : OUString com_sun_star_registry_SimpleRegistry;
80 : OUString Registry;
81 2 : StringPool()
82 : : slash_UNO_slash_REGISTRY_LINKS( "/UNO/REGISTRY_LINKS")
83 : , slash_IMPLEMENTATIONS( "/IMPLEMENTATIONS" )
84 : , slash_UNO( "/UNO")
85 : , slash_UNO_slash_SERVICES( "/UNO/SERVICES")
86 : , slash_UNO_slash_SINGLETONS( "/UNO/SINGLETONS")
87 : , slash_SERVICES( "/SERVICES/" )
88 : , slash_UNO_slash_LOCATION( "/UNO/LOCATION" )
89 : , slash_UNO_slash_ACTIVATOR( "/UNO/ACTIVATOR" )
90 : , colon_old( ":old")
91 : , com_sun_star_registry_SimpleRegistry("com.sun.star.registry.SimpleRegistry" )
92 2 : , Registry( "Registry" )
93 2 : {}
94 : };
95 :
96 12 : const StringPool &spool()
97 : {
98 : static StringPool *pPool = 0;
99 12 : if( ! pPool )
100 : {
101 2 : MutexGuard guard( Mutex::getGlobalMutex() );
102 2 : if( ! pPool )
103 : {
104 2 : static StringPool pool;
105 2 : pPool = &pool;
106 2 : }
107 : }
108 12 : return *pPool;
109 : }
110 :
111 :
112 : // static deleteAllLinkReferences()
113 :
114 2 : static void deleteAllLinkReferences(const Reference < XSimpleRegistry >& xReg,
115 : const Reference < XRegistryKey >& xSource)
116 : // throw ( InvalidRegistryException, RuntimeException )
117 : {
118 2 : Reference < XRegistryKey > xKey = xSource->openKey(
119 2 : spool().slash_UNO_slash_REGISTRY_LINKS );
120 :
121 2 : if (xKey.is() && (xKey->getValueType() == RegistryValueType_ASCIILIST))
122 : {
123 0 : Sequence<OUString> linkNames = xKey->getAsciiListValue();
124 :
125 0 : if (linkNames.getLength())
126 : {
127 0 : const OUString* pLinkNames = linkNames.getConstArray();
128 :
129 0 : OUString aLinkName;
130 0 : OUString aLinkParent;
131 0 : Reference < XRegistryKey > xLinkParent;
132 0 : const sal_Unicode* pTmpName = NULL;
133 0 : const sal_Unicode* pShortName = NULL;
134 0 : sal_Int32 sEnd = 0;
135 :
136 0 : for (sal_Int32 i = 0; i < linkNames.getLength(); i++)
137 : {
138 0 : aLinkName = pLinkNames[i];
139 :
140 0 : pTmpName = aLinkName.getStr();
141 :
142 0 : if (pTmpName[0] != L'/')
143 0 : continue;
144 :
145 0 : sal_Int32 nIndex = rtl_ustr_indexOfChar( pTmpName, '%' );
146 0 : if ( nIndex == -1 )
147 0 : pShortName = 0;
148 : else
149 0 : pShortName = pTmpName+nIndex;
150 :
151 0 : while (pShortName && pShortName[1] == L'%')
152 : {
153 0 : nIndex = rtl_ustr_indexOfChar( pShortName+2, '%' );
154 0 : if ( nIndex == -1 )
155 0 : pShortName = 0;
156 : else
157 0 : pShortName += nIndex+2;
158 : }
159 :
160 0 : if (pShortName)
161 : {
162 0 : aLinkName = aLinkName.copy(0, pShortName - pTmpName);
163 : }
164 :
165 0 : xReg->getRootKey()->deleteLink(aLinkName);
166 :
167 0 : sEnd = rtl_ustr_lastIndexOfChar( aLinkName.getStr(), '/' );
168 :
169 0 : aLinkParent = aLinkName.copy(0, sEnd);
170 :
171 0 : while(!aLinkParent.isEmpty())
172 : {
173 0 : xLinkParent = xReg->getRootKey()->openKey(aLinkParent);
174 :
175 0 : if (xLinkParent.is() && (xLinkParent->getKeyNames().getLength() == 0))
176 : {
177 0 : aLinkName = aLinkParent;
178 :
179 0 : xReg->getRootKey()->deleteKey(aLinkParent);
180 :
181 0 : sEnd = rtl_ustr_lastIndexOfChar( aLinkName.getStr(), '/' );
182 :
183 0 : aLinkParent = aLinkName.copy(0, sEnd);
184 : } else
185 : {
186 0 : break;
187 : }
188 : }
189 0 : }
190 0 : }
191 2 : }
192 2 : }
193 :
194 :
195 : // static prepareLink
196 :
197 0 : static void prepareLink( const Reference < XSimpleRegistry > & xDest,
198 : const Reference < XRegistryKey > & xSource,
199 : const OUString& link)
200 : // throw ( InvalidRegistryException, RuntimeException )
201 : {
202 0 : OUString linkRefName = xSource->getKeyName();
203 0 : OUString linkName(link);
204 0 : bool isRelativ = false;
205 :
206 0 : const sal_Unicode* pTmpName = link.getStr();
207 : const sal_Unicode* pShortName;
208 0 : sal_Int32 nIndex = rtl_ustr_indexOfChar( pTmpName, '%' );
209 0 : if ( nIndex == -1 )
210 0 : pShortName = 0;
211 : else
212 0 : pShortName = pTmpName+nIndex;
213 :
214 0 : if (pTmpName[0] != L'/')
215 0 : isRelativ = true;
216 :
217 0 : while (pShortName && pShortName[1] == L'%')
218 : {
219 0 : nIndex = rtl_ustr_indexOfChar( pShortName+2, '%' );
220 0 : if ( nIndex == -1 )
221 0 : pShortName = 0;
222 : else
223 0 : pShortName += nIndex+2;
224 : }
225 :
226 0 : if (pShortName)
227 : {
228 0 : linkRefName = linkRefName + link.copy(pShortName - pTmpName + 1);
229 0 : linkName = link.copy(0, pShortName - pTmpName);
230 : }
231 :
232 0 : if (isRelativ)
233 0 : xSource->createLink(linkName, linkRefName);
234 : else
235 0 : xDest->getRootKey()->createLink(linkName, linkRefName);
236 0 : }
237 :
238 :
239 : // static searchImplForLink
240 :
241 0 : static OUString searchImplForLink(
242 : const Reference < XRegistryKey > & xRootKey,
243 : const OUString& linkName,
244 : const OUString& implName )
245 : // throw ( InvalidRegistryException, RuntimeException )
246 : {
247 0 : const StringPool & pool = spool();
248 0 : Reference < XRegistryKey > xKey = xRootKey->openKey( pool.slash_IMPLEMENTATIONS );
249 0 : if (xKey.is())
250 : {
251 0 : Sequence< Reference < XRegistryKey > > subKeys( xKey->openKeys() );
252 0 : const Reference < XRegistryKey > * pSubKeys = subKeys.getConstArray();
253 0 : OUString key_name( pool.slash_UNO + linkName );
254 :
255 0 : for (sal_Int32 i = 0; i < subKeys.getLength(); i++)
256 : {
257 : try
258 : {
259 0 : Reference < XRegistryKey > xImplKey( pSubKeys[i] );
260 0 : if (xImplKey->getKeyType( key_name ) == RegistryKeyType_LINK)
261 : {
262 0 : OUString oldImplName = xImplKey->getKeyName().copy(strlen("/IMPLEMENTATIONS/"));
263 0 : if (implName != oldImplName)
264 : {
265 0 : return oldImplName;
266 0 : }
267 0 : }
268 : }
269 0 : catch(InvalidRegistryException&)
270 : {
271 : }
272 0 : }
273 : }
274 :
275 0 : return OUString();
276 : }
277 :
278 :
279 : // static searchLinkTargetForImpl
280 :
281 0 : static OUString searchLinkTargetForImpl(const Reference < XRegistryKey >& xRootKey,
282 : const OUString& linkName,
283 : const OUString& implName)
284 : // throw ( InvalidRegistryException, RuntimeException )
285 : {
286 0 : OUString ret;
287 :
288 : // try
289 : // {
290 0 : const StringPool & pool = spool();
291 0 : Reference < XRegistryKey > xKey = xRootKey->openKey( pool.slash_IMPLEMENTATIONS );
292 :
293 0 : if (xKey.is())
294 : {
295 0 : Sequence< Reference < XRegistryKey > > subKeys = xKey->openKeys();
296 :
297 0 : const Reference < XRegistryKey >* pSubKeys = subKeys.getConstArray();
298 0 : Reference < XRegistryKey > xImplKey;
299 :
300 0 : for (sal_Int32 i = 0; i < subKeys.getLength(); i++)
301 : {
302 0 : xImplKey = pSubKeys[i];
303 :
304 0 : OUString tmpImplName = xImplKey->getKeyName().copy(strlen("/IMPLEMENTATIONS/"));
305 0 : OUString qualifiedLinkName( pool.slash_UNO );
306 0 : qualifiedLinkName += linkName;
307 0 : if (tmpImplName == implName &&
308 0 : xImplKey->getKeyType( qualifiedLinkName ) == RegistryKeyType_LINK)
309 : {
310 0 : return xImplKey->getLinkTarget( qualifiedLinkName );
311 : }
312 0 : }
313 : }
314 : // }
315 : // catch(InvalidRegistryException&)
316 : // {
317 : // }
318 :
319 0 : return ret;
320 : }
321 :
322 :
323 : // static createUniqueSubEntry
324 :
325 2 : static void createUniqueSubEntry(const Reference < XRegistryKey > & xSuperKey,
326 : const OUString& value)
327 : // throw ( InvalidRegistryException, RuntimeException )
328 : {
329 2 : if (xSuperKey.is())
330 : {
331 : // try
332 : // {
333 2 : if (xSuperKey->getValueType() == RegistryValueType_ASCIILIST)
334 : {
335 0 : sal_Int32 length = 0;
336 0 : bool bReady = false;
337 :
338 0 : Sequence<OUString> implEntries = xSuperKey->getAsciiListValue();
339 0 : length = implEntries.getLength();
340 :
341 0 : for (sal_Int32 i = 0; !bReady && (i < length); i++)
342 : {
343 0 : bReady = (implEntries.getConstArray()[i] == value);
344 : }
345 :
346 0 : if (bReady)
347 : {
348 0 : Sequence<OUString> implEntriesNew(length);
349 0 : implEntriesNew.getArray()[0] = value;
350 :
351 0 : for (sal_Int32 i=0, j=1; i < length; i++)
352 : {
353 0 : if (implEntries.getConstArray()[i] != value)
354 0 : implEntriesNew.getArray()[j++] = implEntries.getConstArray()[i];
355 : }
356 0 : xSuperKey->setAsciiListValue(implEntriesNew);
357 : } else
358 : {
359 0 : Sequence<OUString> implEntriesNew(length+1);
360 0 : implEntriesNew.getArray()[0] = value;
361 :
362 0 : for (sal_Int32 i = 0; i < length; i++)
363 : {
364 0 : implEntriesNew.getArray()[i+1] = implEntries.getConstArray()[i];
365 : }
366 0 : xSuperKey->setAsciiListValue(implEntriesNew);
367 0 : }
368 : } else
369 : {
370 2 : Sequence<OUString> implEntriesNew(1);
371 :
372 2 : implEntriesNew.getArray()[0] = value;
373 :
374 2 : xSuperKey->setAsciiListValue(implEntriesNew);
375 : }
376 : // }
377 : // catch(InvalidRegistryException&)
378 : // {
379 : // }
380 : }
381 2 : }
382 :
383 :
384 : // static deleteSubEntry
385 :
386 0 : static bool deleteSubEntry(const Reference < XRegistryKey >& xSuperKey, const OUString& value)
387 : // throw ( InvalidRegistryException, RuntimeException )
388 : {
389 0 : if (xSuperKey->getValueType() == RegistryValueType_ASCIILIST)
390 : {
391 0 : Sequence<OUString> implEntries = xSuperKey->getAsciiListValue();
392 0 : sal_Int32 length = implEntries.getLength();
393 0 : sal_Int32 equals = 0;
394 0 : bool hasNoImplementations = false;
395 :
396 0 : for (sal_Int32 i = 0; i < length; i++)
397 : {
398 0 : if (implEntries.getConstArray()[i] == value)
399 0 : equals++;
400 : }
401 :
402 0 : if (equals == length)
403 : {
404 0 : hasNoImplementations = true;
405 : } else
406 : {
407 0 : Sequence<OUString> implEntriesNew(length - equals);
408 :
409 0 : sal_Int32 j = 0;
410 0 : for (sal_Int32 i = 0; i < length; i++)
411 : {
412 0 : if (implEntries.getConstArray()[i] != value)
413 : {
414 0 : implEntriesNew.getArray()[j++] = implEntries.getConstArray()[i];
415 : }
416 : }
417 0 : xSuperKey->setAsciiListValue(implEntriesNew);
418 : }
419 :
420 0 : if (hasNoImplementations)
421 : {
422 0 : return true;
423 0 : }
424 : }
425 0 : return false;
426 : }
427 :
428 :
429 : // static prepareUserLink
430 :
431 0 : static void prepareUserLink(const Reference < XSimpleRegistry >& xDest,
432 : const OUString& linkName,
433 : const OUString& linkTarget,
434 : const OUString& implName)
435 : {
436 0 : Reference < XRegistryKey > xRootKey;
437 :
438 0 : xRootKey = xDest->getRootKey();
439 :
440 0 : if (xRootKey->getKeyType(linkName) == RegistryKeyType_LINK)
441 : {
442 0 : OUString oldImplName(searchImplForLink(xRootKey, linkName, implName));
443 :
444 0 : if (!oldImplName.isEmpty())
445 : {
446 0 : createUniqueSubEntry(xDest->getRootKey()->createKey(
447 0 : linkName + spool().colon_old ), oldImplName);
448 0 : }
449 : }
450 :
451 0 : if (xRootKey->isValid())
452 0 : xRootKey->createLink(linkName, linkTarget);
453 0 : }
454 :
455 :
456 : // static deleteUserLink
457 :
458 0 : static void deletePathIfPossible(const Reference < XRegistryKey >& xRootKey,
459 : const OUString& path)
460 : {
461 : try
462 : {
463 0 : Sequence<OUString> keyNames(xRootKey->openKey(path)->getKeyNames());
464 :
465 0 : if (keyNames.getLength() == 0 &&
466 0 : xRootKey->openKey(path)->getValueType() == RegistryValueType_NOT_DEFINED)
467 : {
468 0 : xRootKey->deleteKey(path);
469 :
470 0 : OUString tmpPath(path);
471 0 : OUString newPath = tmpPath.copy(0, tmpPath.lastIndexOf('/'));
472 :
473 0 : if (newPath.getLength() > 1)
474 0 : deletePathIfPossible(xRootKey, newPath);
475 0 : }
476 : }
477 0 : catch(InvalidRegistryException&)
478 : {
479 : }
480 0 : }
481 :
482 :
483 :
484 : // static deleteUserLink
485 :
486 0 : static void deleteUserLink(const Reference < XRegistryKey >& xRootKey,
487 : const OUString& linkName,
488 : const OUString& linkTarget,
489 : const OUString& implName)
490 : // throw ( InvalidRegistryException, RuntimeException )
491 : {
492 0 : bool bClean = false;
493 :
494 0 : if (xRootKey->getKeyType(linkName) == RegistryKeyType_LINK)
495 : {
496 0 : OUString tmpTarget = xRootKey->getLinkTarget(linkName);
497 :
498 0 : if (tmpTarget == linkTarget)
499 : {
500 0 : xRootKey->deleteLink(linkName);
501 0 : }
502 : }
503 :
504 0 : Reference < XRegistryKey > xOldKey = xRootKey->openKey(
505 0 : linkName + spool().colon_old );
506 0 : if (xOldKey.is())
507 : {
508 0 : bool hasNoImplementations = false;
509 :
510 0 : if (xOldKey->getValueType() == RegistryValueType_ASCIILIST)
511 : {
512 0 : Sequence<OUString> implEntries = xOldKey->getAsciiListValue();
513 0 : sal_Int32 length = implEntries.getLength();
514 0 : sal_Int32 equals = 0;
515 :
516 0 : for (sal_Int32 i = 0; i < length; i++)
517 : {
518 0 : if (implEntries.getConstArray()[i] == implName)
519 0 : equals++;
520 : }
521 :
522 0 : if (equals == length)
523 : {
524 0 : hasNoImplementations = true;
525 : } else
526 : {
527 0 : OUString oldImpl;
528 :
529 0 : if (length > equals + 1)
530 : {
531 0 : Sequence<OUString> implEntriesNew(length - equals - 1);
532 :
533 0 : sal_Int32 j = 0;
534 0 : bool first = true;
535 0 : for (sal_Int32 i = 0; i < length; i++)
536 : {
537 0 : if (implEntries.getConstArray()[i] != implName)
538 : {
539 0 : if (first)
540 : {
541 0 : oldImpl = implEntries.getConstArray()[i];
542 0 : first = false;
543 : } else
544 : {
545 0 : implEntriesNew.getArray()[j++] = implEntries.getConstArray()[i];
546 : }
547 : }
548 : }
549 :
550 0 : xOldKey->setAsciiListValue(implEntriesNew);
551 : } else
552 : {
553 0 : oldImpl = implEntries.getConstArray()[0];
554 0 : OUString path(xOldKey->getKeyName());
555 0 : xOldKey->closeKey();
556 0 : xRootKey->deleteKey(path);
557 : }
558 :
559 0 : OUString oldTarget = searchLinkTargetForImpl(xRootKey, linkName, oldImpl);
560 0 : if (!oldTarget.isEmpty())
561 : {
562 0 : xRootKey->createLink(linkName, oldTarget);
563 0 : }
564 : }
565 :
566 0 : if (hasNoImplementations)
567 : {
568 0 : bClean = true;
569 0 : hasNoImplementations = false;
570 0 : OUString path(xOldKey->getKeyName());
571 0 : xOldKey->closeKey();
572 0 : xRootKey->deleteKey(path);
573 0 : }
574 : }
575 : } else
576 : {
577 0 : bClean = true;
578 : }
579 :
580 0 : if (bClean)
581 : {
582 0 : OUString tmpName(linkName);
583 0 : OUString path = tmpName.copy(0, tmpName.lastIndexOf('/'));
584 0 : deletePathIfPossible(xRootKey, path);
585 0 : }
586 0 : }
587 :
588 :
589 : // static prepareUserKeys
590 :
591 0 : static void prepareUserKeys(const Reference < XSimpleRegistry >& xDest,
592 : const Reference < XRegistryKey >& xUnoKey,
593 : const Reference < XRegistryKey >& xKey,
594 : const OUString& implName,
595 : bool bRegister)
596 : {
597 0 : bool hasSubKeys = false;
598 :
599 0 : Sequence<OUString> keyNames = xKey->getKeyNames();
600 :
601 0 : OUString relativKey;
602 0 : if (keyNames.getLength())
603 0 : relativKey = keyNames.getConstArray()[0].copy(xKey->getKeyName().getLength()+1);
604 :
605 0 : if (keyNames.getLength() == 1 &&
606 0 : xKey->getKeyType(relativKey) == RegistryKeyType_LINK)
607 : {
608 0 : hasSubKeys = true;
609 :
610 0 : OUString linkTarget = xKey->getLinkTarget(relativKey);
611 0 : OUString linkName(xKey->getKeyName().copy(xUnoKey->getKeyName().getLength()));
612 :
613 0 : linkName = linkName + "/" + relativKey;
614 :
615 0 : if (bRegister)
616 : {
617 0 : prepareUserLink(xDest, linkName, linkTarget, implName);
618 : } else
619 : {
620 0 : deleteUserLink(xDest->getRootKey(), linkName, linkTarget, implName);
621 0 : }
622 : } else
623 : {
624 0 : Sequence< Reference < XRegistryKey> > subKeys = xKey->openKeys();
625 :
626 0 : if (subKeys.getLength())
627 : {
628 0 : hasSubKeys = true;
629 0 : const Reference < XRegistryKey > * pSubKeys = subKeys.getConstArray();
630 :
631 0 : for (sal_Int32 i = 0; i < subKeys.getLength(); i++)
632 : {
633 0 : prepareUserKeys(xDest, xUnoKey, pSubKeys[i], implName, bRegister);
634 : }
635 0 : }
636 : }
637 :
638 0 : if (! hasSubKeys)
639 : {
640 0 : OUString keyName(xKey->getKeyName().copy(xUnoKey->getKeyName().getLength()));
641 :
642 0 : Reference < XRegistryKey > xRootKey = xDest->getRootKey();
643 0 : if (bRegister)
644 : {
645 0 : createUniqueSubEntry(xRootKey->createKey(keyName), implName);
646 : }
647 : else
648 : {
649 0 : Reference< XRegistryKey > rKey = xRootKey->openKey(keyName);
650 0 : if( rKey.is() )
651 : {
652 0 : deleteSubEntry(rKey, implName);
653 0 : xRootKey->deleteKey(keyName);
654 : }
655 :
656 0 : OUString path = keyName.copy(0, keyName.lastIndexOf('/'));
657 0 : if( !path.isEmpty() )
658 : {
659 0 : deletePathIfPossible(xRootKey, path);
660 0 : }
661 0 : }
662 0 : }
663 0 : }
664 :
665 :
666 : // static deleteAllImplementations
667 :
668 2 : static void deleteAllImplementations( const Reference < XSimpleRegistry >& xReg,
669 : const Reference < XRegistryKey >& xSource,
670 : const OUString& locationUrl,
671 : std::list<OUString> & implNames)
672 : // throw (InvalidRegistryException, RuntimeException)
673 : {
674 2 : Sequence < Reference < XRegistryKey > > subKeys = xSource->openKeys();
675 :
676 2 : if (subKeys.getLength() > 0)
677 : {
678 2 : const Reference < XRegistryKey> * pSubKeys = subKeys.getConstArray();
679 2 : Reference < XRegistryKey > xImplKey;
680 2 : bool hasLocationUrl = false;
681 :
682 2 : const StringPool &pool = spool();
683 4 : for (sal_Int32 i = 0; i < subKeys.getLength(); i++)
684 : {
685 2 : xImplKey = pSubKeys[i];
686 2 : Reference < XRegistryKey > xKey = xImplKey->openKey(
687 2 : pool.slash_UNO_slash_LOCATION );
688 :
689 2 : if (xKey.is() && (xKey->getValueType() == RegistryValueType_ASCII))
690 : {
691 2 : if (xKey->getAsciiValue() == locationUrl)
692 : {
693 2 : hasLocationUrl = true;
694 :
695 2 : OUString implName(xImplKey->getKeyName().getStr() + 1);
696 2 : sal_Int32 firstDot = implName.indexOf('/');
697 :
698 2 : if (firstDot >= 0)
699 2 : implName = implName.copy(firstDot + 1);
700 :
701 2 : implNames.push_back(implName);
702 :
703 2 : deleteAllLinkReferences(xReg, xImplKey);
704 :
705 2 : xKey = xImplKey->openKey( pool.slash_UNO );
706 2 : if (xKey.is())
707 : {
708 2 : Sequence< Reference < XRegistryKey > > subKeys2 = xKey->openKeys();
709 :
710 2 : if (subKeys2.getLength())
711 : {
712 2 : const Reference < XRegistryKey > * pSubKeys2 = subKeys2.getConstArray();
713 :
714 8 : for (sal_Int32 j = 0; j < subKeys2.getLength(); j++)
715 : {
716 42 : if (pSubKeys2[j]->getKeyName() != (xImplKey->getKeyName() + pool.slash_UNO_slash_SERVICES ) &&
717 30 : pSubKeys2[j]->getKeyName() != (xImplKey->getKeyName() + pool.slash_UNO_slash_REGISTRY_LINKS ) &&
718 24 : pSubKeys2[j]->getKeyName() != (xImplKey->getKeyName() + pool.slash_UNO_slash_ACTIVATOR ) &&
719 42 : pSubKeys2[j]->getKeyName() != (xImplKey->getKeyName() + pool.slash_UNO_slash_SINGLETONS ) &&
720 12 : pSubKeys2[j]->getKeyName() != (xImplKey->getKeyName() + pool.slash_UNO_slash_LOCATION) )
721 : {
722 0 : prepareUserKeys(xReg, xKey, pSubKeys2[j], implName, false);
723 : }
724 : }
725 2 : }
726 2 : }
727 : }
728 : }
729 :
730 2 : if (hasLocationUrl)
731 : {
732 2 : hasLocationUrl = false;
733 2 : OUString path(xImplKey->getKeyName());
734 2 : xImplKey->closeKey();
735 2 : xReg->getRootKey()->deleteKey(path);
736 : }
737 2 : }
738 :
739 2 : subKeys = xSource->openKeys();
740 2 : if (subKeys.getLength() == 0)
741 : {
742 2 : OUString path(xSource->getKeyName());
743 2 : xSource->closeKey();
744 2 : xReg->getRootKey()->deleteKey(path);
745 2 : }
746 : } else
747 : {
748 0 : OUString path(xSource->getKeyName());
749 0 : xSource->closeKey();
750 0 : xReg->getRootKey()->deleteKey(path);
751 2 : }
752 2 : }
753 :
754 :
755 0 : static void delete_all_singleton_entries(
756 : Reference < registry::XRegistryKey > const & xSingletons_section,
757 : ::std::list< OUString > const & impl_names )
758 : // throw (InvalidRegistryException, RuntimeException)
759 : {
760 0 : Sequence< Reference< registry::XRegistryKey > > singletons( xSingletons_section->openKeys() );
761 0 : Reference< registry::XRegistryKey > const * subkeys = singletons.getConstArray();
762 0 : for ( sal_Int32 nPos = singletons.getLength(); nPos--; )
763 : {
764 0 : Reference< registry::XRegistryKey > const & xSingleton = subkeys[ nPos ];
765 : Reference< registry::XRegistryKey > xRegisteredImplNames(
766 0 : xSingleton->openKey( "REGISTERED_BY" ) );
767 0 : if (xRegisteredImplNames.is() && xRegisteredImplNames->isValid())
768 : {
769 0 : Sequence< OUString > registered_implnames;
770 : try
771 : {
772 0 : registered_implnames = xRegisteredImplNames->getAsciiListValue();
773 : }
774 0 : catch (registry::InvalidValueException &)
775 : {
776 : }
777 0 : OUString const * p = registered_implnames.getConstArray();
778 0 : sal_Int32 nOrigRegLength = registered_implnames.getLength();
779 0 : sal_Int32 nNewLength = nOrigRegLength;
780 0 : for ( sal_Int32 n = nOrigRegLength; n--; )
781 : {
782 0 : OUString const & registered_implname = p[ n ];
783 :
784 0 : ::std::list< OUString >::const_iterator iPos( impl_names.begin() );
785 0 : ::std::list< OUString >::const_iterator const iEnd( impl_names.end() );
786 0 : for ( ; iPos != iEnd; ++iPos )
787 : {
788 0 : if (iPos->equals( registered_implname ))
789 : {
790 0 : registered_implnames[ n ] = p[ nNewLength -1 ];
791 0 : --nNewLength;
792 : }
793 : }
794 : }
795 :
796 0 : if (nNewLength != nOrigRegLength)
797 : {
798 0 : if (0 == nNewLength)
799 : {
800 : // remove whole entry
801 0 : xRegisteredImplNames->closeKey();
802 0 : xSingleton->deleteKey( "REGISTERED_BY" );
803 : // registry key cannot provide its relative name, only absolute :(
804 0 : OUString abs( xSingleton->getKeyName() );
805 0 : xSingletons_section->deleteKey( abs.copy( abs.lastIndexOf( '/' ) +1 ) );
806 : }
807 : else
808 : {
809 0 : registered_implnames.realloc( nNewLength );
810 0 : xRegisteredImplNames->setAsciiListValue( registered_implnames );
811 : }
812 0 : }
813 : }
814 0 : }
815 0 : }
816 :
817 :
818 : // static deleteAllServiceEntries
819 :
820 0 : static void deleteAllServiceEntries( const Reference < XSimpleRegistry >& xReg,
821 : const Reference < XRegistryKey >& xSource,
822 : const OUString& implName)
823 : // throw ( InvalidRegistryException, RuntimeException )
824 : {
825 0 : Sequence< Reference < XRegistryKey > > subKeys = xSource->openKeys();
826 :
827 0 : if (subKeys.getLength() > 0)
828 : {
829 0 : const Reference < XRegistryKey > * pSubKeys = subKeys.getConstArray();
830 0 : Reference < XRegistryKey > xServiceKey;
831 0 : bool hasNoImplementations = false;
832 :
833 0 : for (sal_Int32 i = 0; i < subKeys.getLength(); i++)
834 : {
835 0 : xServiceKey = pSubKeys[i];
836 :
837 0 : if (xServiceKey->getValueType() == RegistryValueType_ASCIILIST)
838 : {
839 0 : Sequence<OUString> implEntries = xServiceKey->getAsciiListValue();
840 0 : sal_Int32 length = implEntries.getLength();
841 0 : sal_Int32 equals = 0;
842 :
843 0 : for (sal_Int32 j = 0; j < length; j++)
844 : {
845 0 : if (implEntries.getConstArray()[j] == implName)
846 0 : equals++;
847 : }
848 :
849 0 : if (equals == length)
850 : {
851 0 : hasNoImplementations = true;
852 : } else
853 : {
854 0 : if (equals > 0)
855 : {
856 0 : Sequence<OUString> implEntriesNew(length-equals);
857 :
858 0 : sal_Int32 j = 0;
859 0 : for (sal_Int32 k = 0; k < length; k++)
860 : {
861 0 : if (implEntries.getConstArray()[k] != implName)
862 : {
863 0 : implEntriesNew.getArray()[j++] = implEntries.getConstArray()[k];
864 : }
865 : }
866 :
867 0 : xServiceKey->setAsciiListValue(implEntriesNew);
868 : }
869 0 : }
870 : }
871 :
872 0 : if (hasNoImplementations)
873 : {
874 0 : hasNoImplementations = false;
875 0 : OUString path(xServiceKey->getKeyName());
876 0 : xServiceKey->closeKey();
877 0 : xReg->getRootKey()->deleteKey(path);
878 : }
879 : }
880 :
881 0 : subKeys = xSource->openKeys();
882 0 : if (subKeys.getLength() == 0)
883 : {
884 0 : OUString path(xSource->getKeyName());
885 0 : xSource->closeKey();
886 0 : xReg->getRootKey()->deleteKey(path);
887 0 : }
888 : } else
889 : {
890 0 : OUString path(xSource->getKeyName());
891 0 : xSource->closeKey();
892 0 : xReg->getRootKey()->deleteKey(path);
893 0 : }
894 0 : }
895 :
896 :
897 0 : static bool is_supported_service(
898 : OUString const & service_name,
899 : Reference< reflection::XServiceTypeDescription > const & xService_td )
900 : {
901 0 : if (xService_td->getName().equals( service_name ))
902 0 : return true;
903 : Sequence< Reference< reflection::XServiceTypeDescription > > seq(
904 0 : xService_td->getMandatoryServices() );
905 0 : Reference< reflection::XServiceTypeDescription > const * p = seq.getConstArray();
906 0 : for ( sal_Int32 nPos = seq.getLength(); nPos--; )
907 : {
908 0 : if (is_supported_service( service_name, p[ nPos ] ))
909 0 : return true;
910 : }
911 0 : return false;
912 : }
913 :
914 :
915 2 : static void insert_singletons(
916 : Reference< registry::XSimpleRegistry > const & xDest,
917 : Reference< registry::XRegistryKey > const & xImplKey,
918 : Reference< XComponentContext > const & xContext )
919 : // throw( registry::InvalidRegistryException, registry::CannotRegisterImplementationException, RuntimeException )
920 : {
921 : // singletons
922 2 : Reference< registry::XRegistryKey > xKey( xImplKey->openKey( "UNO/SINGLETONS" ) );
923 2 : if (xKey.is() && xKey->isValid())
924 : {
925 0 : OUString implname( xImplKey->getKeyName().copy( sizeof ("/IMPLEMENTATIONS/") -1 ) );
926 : // singleton entries
927 0 : Sequence< Reference< registry::XRegistryKey > > xSingletons_section( xKey->openKeys() );
928 0 : Reference< registry::XRegistryKey > const * p = xSingletons_section.getConstArray();
929 0 : for ( sal_Int32 nPos = xSingletons_section.getLength(); nPos--; )
930 : {
931 0 : Reference< registry::XRegistryKey > const & xSingleton = p[ nPos ];
932 : OUString singleton_name(
933 0 : xSingleton->getKeyName().copy(
934 0 : implname.getLength() + sizeof ("/IMPLEMENTATIONS//UNO/SINGLETONS/") -1 ) );
935 0 : OUString service_name( xSingleton->getStringValue() );
936 :
937 0 : OUString keyname( "/SINGLETONS/" + singleton_name );
938 0 : Reference< registry::XRegistryKey > xKey2( xDest->getRootKey()->openKey( keyname ) );
939 0 : if (xKey2.is() && xKey2->isValid())
940 : {
941 : try
942 : {
943 0 : OUString existing_name( xKey2->getStringValue() );
944 0 : if (! existing_name.equals( service_name ))
945 : {
946 0 : Reference< container::XHierarchicalNameAccess > xTDMgr;
947 : OUString the_tdmgr =
948 0 : "/singletons/com.sun.star.reflection.theTypeDescriptionManager";
949 0 : xContext->getValueByName( the_tdmgr ) >>= xTDMgr;
950 0 : if (! xTDMgr.is())
951 : {
952 0 : throw RuntimeException( "cannot get singleton " + the_tdmgr );
953 : }
954 : try
955 : {
956 0 : Reference< reflection::XServiceTypeDescription > xExistingService_td;
957 0 : xTDMgr->getByHierarchicalName( existing_name ) >>= xExistingService_td;
958 0 : if (! xExistingService_td.is())
959 : {
960 0 : throw RuntimeException( "cannot get service type description: " + existing_name );
961 : }
962 :
963 : // everything's fine if existing service entry supports the one
964 : // to be registered
965 0 : if (! is_supported_service( service_name, xExistingService_td ))
966 : {
967 0 : OUStringBuffer buf( 64 );
968 0 : buf.append( "existing singleton service (" );
969 0 : buf.append( singleton_name );
970 0 : buf.append( '=' );
971 0 : buf.append( existing_name );
972 0 : buf.append( ") does not support given one: " );
973 0 : buf.append( service_name );
974 : throw registry::CannotRegisterImplementationException(
975 0 : buf.makeStringAndClear() );
976 0 : }
977 : }
978 0 : catch (const container::NoSuchElementException & exc)
979 : {
980 : throw RuntimeException(
981 0 : "cannot get service type description: " + exc.Message );
982 0 : }
983 0 : }
984 : }
985 0 : catch (registry::InvalidValueException &)
986 : {
987 : // repair
988 0 : xKey2->setStringValue( service_name );
989 : }
990 : }
991 : else
992 : {
993 : // insert singleton entry
994 0 : xKey2 = xDest->getRootKey()->createKey( keyname );
995 0 : xKey2->setStringValue( service_name );
996 : }
997 :
998 : Reference< registry::XRegistryKey > xRegisteredImplNames(
999 0 : xKey2->openKey( "REGISTERED_BY" ) );
1000 0 : if (!xRegisteredImplNames.is() || !xRegisteredImplNames->isValid())
1001 : {
1002 : // create
1003 0 : xRegisteredImplNames = xKey2->createKey( "REGISTERED_BY" );
1004 : }
1005 :
1006 0 : Sequence< OUString > implnames;
1007 : try
1008 : {
1009 0 : implnames = xRegisteredImplNames->getAsciiListValue();
1010 : }
1011 0 : catch (registry::InvalidValueException &)
1012 : {
1013 : }
1014 : // check implname is already in
1015 0 : sal_Int32 nPos_implnames = implnames.getLength();
1016 0 : OUString const * pImplnames = implnames.getConstArray();
1017 0 : while (nPos_implnames--)
1018 : {
1019 0 : if (implname.equals( pImplnames[ nPos_implnames ] ))
1020 0 : break;
1021 : }
1022 0 : if (nPos_implnames < 0)
1023 : {
1024 : // append and write back
1025 0 : implnames.realloc( implnames.getLength() +1 );
1026 0 : implnames[ implnames.getLength() -1 ] = implname;
1027 0 : xRegisteredImplNames->setAsciiListValue( implnames );
1028 : }
1029 0 : }
1030 2 : }
1031 2 : }
1032 :
1033 :
1034 :
1035 : // static prepareRegistry
1036 :
1037 2 : static void prepareRegistry(
1038 : const Reference < XSimpleRegistry >& xDest,
1039 : const Reference < XRegistryKey >& xSource,
1040 : const OUString& implementationLoaderUrl,
1041 : const OUString& locationUrl,
1042 : Reference< XComponentContext > const & xContext )
1043 : // throw ( InvalidRegistryException, CannotRegisterImplementationException, RuntimeException )
1044 : {
1045 2 : Sequence< Reference < XRegistryKey > > subKeys = xSource->openKeys();
1046 :
1047 2 : if (!subKeys.getLength())
1048 : {
1049 : throw InvalidRegistryException(
1050 0 : "prepareRegistry(): source registry is empty" );
1051 : }
1052 :
1053 2 : const StringPool & pool = spool();
1054 :
1055 2 : const Reference < XRegistryKey >* pSubKeys = subKeys.getConstArray();
1056 4 : Reference < XRegistryKey > xImplKey;
1057 :
1058 4 : for (sal_Int32 i = 0; i < subKeys.getLength(); i++)
1059 : {
1060 2 : xImplKey = pSubKeys[i];
1061 :
1062 2 : Reference < XRegistryKey > xKey = xImplKey->openKey(
1063 2 : pool.slash_UNO_slash_SERVICES );
1064 :
1065 2 : if (xKey.is())
1066 : {
1067 : // update entries in SERVICES section
1068 2 : Sequence< Reference < XRegistryKey > > serviceKeys = xKey->openKeys();
1069 2 : const Reference < XRegistryKey > * pServiceKeys = serviceKeys.getConstArray();
1070 :
1071 4 : OUString implName = OUString(xImplKey->getKeyName().getStr() + 1);
1072 2 : sal_Int32 firstDot = implName.indexOf('/');
1073 :
1074 2 : if (firstDot >= 0)
1075 2 : implName = implName.copy(firstDot + 1);
1076 :
1077 2 : sal_Int32 offset = xKey->getKeyName().getLength() + 1;
1078 :
1079 4 : for (sal_Int32 j = 0; j < serviceKeys.getLength(); j++)
1080 : {
1081 2 : OUString serviceName = pServiceKeys[j]->getKeyName().copy(offset);
1082 :
1083 : createUniqueSubEntry(
1084 4 : xDest->getRootKey()->createKey(
1085 4 : pool.slash_SERVICES + serviceName ),
1086 2 : implName);
1087 2 : }
1088 :
1089 2 : xKey = xImplKey->openKey( pool.slash_UNO );
1090 2 : if (xKey.is())
1091 : {
1092 2 : Sequence< Reference < XRegistryKey > > subKeys2 = xKey->openKeys();
1093 :
1094 2 : if (subKeys2.getLength())
1095 : {
1096 2 : const Reference < XRegistryKey > * pSubKeys2 = subKeys2.getConstArray();
1097 :
1098 4 : for (sal_Int32 j = 0; j < subKeys2.getLength(); j++)
1099 : {
1100 10 : if (pSubKeys2[j]->getKeyName() != (xImplKey->getKeyName() + pool.slash_UNO_slash_SERVICES) &&
1101 10 : pSubKeys2[j]->getKeyName() != (xImplKey->getKeyName() + pool.slash_UNO_slash_REGISTRY_LINKS ) &&
1102 2 : pSubKeys2[j]->getKeyName() != (xImplKey->getKeyName() + pool.slash_UNO_slash_SINGLETONS ))
1103 : {
1104 0 : prepareUserKeys(xDest, xKey, pSubKeys2[j], implName, true);
1105 : }
1106 : }
1107 2 : }
1108 2 : }
1109 : }
1110 :
1111 : // update LOCATION entry
1112 2 : xKey = xImplKey->createKey( pool.slash_UNO_slash_LOCATION );
1113 :
1114 2 : if (xKey.is())
1115 : {
1116 2 : xKey->setAsciiValue(locationUrl);
1117 : }
1118 :
1119 : // update ACTIVATOR entry
1120 2 : xKey = xImplKey->createKey( pool.slash_UNO_slash_ACTIVATOR );
1121 :
1122 2 : if (xKey.is())
1123 : {
1124 2 : xKey->setAsciiValue(implementationLoaderUrl);
1125 : }
1126 :
1127 2 : xKey = xImplKey->openKey( pool.slash_UNO_slash_SERVICES );
1128 :
1129 2 : if (xKey.is() && (xKey->getValueType() == RegistryValueType_ASCIILIST))
1130 : {
1131 : // update link entries in REGISTRY_LINKS section
1132 0 : Sequence<OUString> linkNames = xKey->getAsciiListValue();
1133 :
1134 0 : if (linkNames.getLength())
1135 : {
1136 0 : const OUString* pLinkNames = linkNames.getConstArray();
1137 :
1138 0 : for (sal_Int32 j = 0; j < linkNames.getLength(); j++)
1139 : {
1140 0 : prepareLink(xDest, xImplKey, pLinkNames[j]);
1141 : }
1142 0 : }
1143 : }
1144 :
1145 2 : insert_singletons( xDest, xImplKey, xContext );
1146 4 : }
1147 2 : }
1148 :
1149 :
1150 0 : static void findImplementations( const Reference < XRegistryKey > & xSource,
1151 : std::list <OUString>& implNames)
1152 : {
1153 0 : bool isImplKey = false;
1154 :
1155 : try
1156 : {
1157 0 : Reference < XRegistryKey > xKey = xSource->openKey(
1158 0 : spool().slash_UNO_slash_SERVICES );
1159 :
1160 0 : if (xKey.is() && (xKey->getKeyNames().getLength() > 0))
1161 : {
1162 0 : isImplKey = true;
1163 :
1164 0 : OUString implName = OUString(xSource->getKeyName().getStr() + 1).replace('/', '.').getStr();
1165 0 : sal_Int32 firstDot = implName.indexOf('.');
1166 :
1167 0 : if (firstDot >= 0)
1168 0 : implName = implName.copy(firstDot + 1);
1169 :
1170 0 : implNames.push_back(implName);
1171 0 : }
1172 : }
1173 0 : catch(InvalidRegistryException&)
1174 : {
1175 : }
1176 :
1177 0 : if (isImplKey) return;
1178 :
1179 : try
1180 : {
1181 0 : Sequence< Reference < XRegistryKey > > subKeys = xSource->openKeys();
1182 :
1183 0 : if (subKeys.getLength() > 0)
1184 : {
1185 0 : const Reference < XRegistryKey >* pSubKeys = subKeys.getConstArray();
1186 :
1187 0 : for (sal_Int32 i = 0; i < subKeys.getLength(); i++)
1188 : {
1189 0 : findImplementations(pSubKeys[i], implNames);
1190 : }
1191 :
1192 0 : }
1193 : }
1194 0 : catch(InvalidRegistryException&)
1195 : {
1196 : }
1197 : }
1198 :
1199 :
1200 : class ImplementationRegistration
1201 : : public WeakImplHelper3< XImplementationRegistration2, XServiceInfo, XInitialization >
1202 : {
1203 : public:
1204 : ImplementationRegistration( const Reference < XComponentContext > & rSMgr );
1205 : virtual ~ImplementationRegistration();
1206 :
1207 : // XServiceInfo
1208 : OUString SAL_CALL getImplementationName() throw(RuntimeException, std::exception) SAL_OVERRIDE;
1209 : sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw(RuntimeException, std::exception) SAL_OVERRIDE;
1210 : Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw(RuntimeException, std::exception) SAL_OVERRIDE;
1211 :
1212 : // XImplementationRegistration
1213 : virtual void SAL_CALL registerImplementation(
1214 : const OUString& implementationLoader,
1215 : const OUString& location,
1216 : const Reference < XSimpleRegistry > & xReg)
1217 : throw( CannotRegisterImplementationException, RuntimeException, std::exception ) SAL_OVERRIDE;
1218 :
1219 : virtual sal_Bool SAL_CALL revokeImplementation(
1220 : const OUString& location,
1221 : const Reference < XSimpleRegistry >& xReg)
1222 : throw( RuntimeException, std::exception ) SAL_OVERRIDE;
1223 :
1224 : virtual Sequence< OUString > SAL_CALL getImplementations(
1225 : const OUString& implementationLoader,
1226 : const OUString& location)
1227 : throw( RuntimeException, std::exception ) SAL_OVERRIDE;
1228 : virtual Sequence< OUString > SAL_CALL checkInstantiation(
1229 : const OUString& implementationName)
1230 : throw( RuntimeException, std::exception ) SAL_OVERRIDE;
1231 :
1232 : // XImplementationRegistration2
1233 : virtual void SAL_CALL registerImplementationWithLocation(
1234 : const OUString& implementationLoader,
1235 : const OUString& location,
1236 : const OUString& registeredLocation,
1237 : const Reference < XSimpleRegistry > & xReg)
1238 : throw( CannotRegisterImplementationException, RuntimeException, std::exception ) SAL_OVERRIDE;
1239 :
1240 : // XInitialization
1241 : virtual void SAL_CALL initialize(
1242 : const css::uno::Sequence< css::uno::Any >& aArguments )
1243 : throw( css::uno::Exception, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
1244 :
1245 : private: // helper methods
1246 : void prepareRegister(
1247 : const OUString& implementationLoader,
1248 : const OUString& location,
1249 : const OUString& registeredLocation,
1250 : const Reference < XSimpleRegistry > & xReg);
1251 : // throw( CannotRegisterImplementationException, RuntimeException )
1252 :
1253 : static void doRegister( const Reference < XMultiComponentFactory >& xSMgr,
1254 : const Reference < XComponentContext > &xCtx,
1255 : const Reference < XImplementationLoader >& xAct,
1256 : const Reference < XSimpleRegistry >& xDest,
1257 : const OUString& implementationLoaderUrl,
1258 : const OUString& locationUrl,
1259 : const OUString& registeredLocationUrl);
1260 : /* throw ( InvalidRegistryException,
1261 : MergeConflictException,
1262 : CannotRegisterImplementationException, RuntimeException ) */
1263 :
1264 : static void doRevoke( const Reference < XSimpleRegistry >& xDest,
1265 : const OUString& locationUrl );
1266 : // throw( InvalidRegistryException, RuntimeException )
1267 : Reference< XSimpleRegistry > getRegistryFromServiceManager();
1268 :
1269 : static Reference< XSimpleRegistry > createTemporarySimpleRegistry(
1270 : const Reference< XMultiComponentFactory > &rSMgr,
1271 : const Reference < XComponentContext > & rCtx );
1272 :
1273 : private: // members
1274 : Reference < XMultiComponentFactory > m_xSMgr;
1275 : Reference < XComponentContext > m_xCtx;
1276 : };
1277 :
1278 :
1279 : // ImplementationRegistration()
1280 :
1281 6 : ImplementationRegistration::ImplementationRegistration( const Reference < XComponentContext > & xCtx )
1282 6 : : m_xSMgr( xCtx->getServiceManager() )
1283 12 : , m_xCtx( xCtx )
1284 6 : {}
1285 :
1286 :
1287 : // ~ImplementationRegistration()
1288 :
1289 12 : ImplementationRegistration::~ImplementationRegistration() {}
1290 :
1291 : // XServiceInfo
1292 0 : OUString ImplementationRegistration::getImplementationName() throw(RuntimeException, std::exception)
1293 : {
1294 0 : return OUString("com.sun.star.comp.stoc.ImplementationRegistration");
1295 : }
1296 :
1297 : // XServiceInfo
1298 0 : sal_Bool ImplementationRegistration::supportsService(const OUString& ServiceName) throw(RuntimeException, std::exception)
1299 : {
1300 0 : return cppu::supportsService(this, ServiceName);
1301 : }
1302 :
1303 : // XServiceInfo
1304 0 : Sequence< OUString > ImplementationRegistration::getSupportedServiceNames(void) throw(RuntimeException, std::exception)
1305 : {
1306 0 : Sequence< OUString > seqNames(1);
1307 0 : seqNames[0] = "com.sun.star.registry.ImplementationRegistration";
1308 0 : return seqNames;
1309 : }
1310 :
1311 0 : Reference< XSimpleRegistry > ImplementationRegistration::getRegistryFromServiceManager()
1312 : {
1313 0 : Reference < XPropertySet > xPropSet( m_xSMgr, UNO_QUERY );
1314 0 : Reference < XSimpleRegistry > xRegistry;
1315 :
1316 0 : if( xPropSet.is() ) {
1317 :
1318 : try { // the implementation does not support XIntrospectionAccess !
1319 :
1320 0 : Any aAny = xPropSet->getPropertyValue( spool().Registry );
1321 :
1322 0 : if( aAny.getValueType().getTypeClass() == TypeClass_INTERFACE ) {
1323 0 : aAny >>= xRegistry;
1324 0 : }
1325 : }
1326 0 : catch( UnknownPropertyException & ) {
1327 : // empty reference is error signal !
1328 : }
1329 : }
1330 :
1331 0 : return xRegistry;
1332 : }
1333 :
1334 :
1335 :
1336 : // XInitialization
1337 :
1338 0 : void ImplementationRegistration::initialize(
1339 : const css::uno::Sequence< css::uno::Any >& aArgs )
1340 : throw( css::uno::Exception, css::uno::RuntimeException, std::exception)
1341 : {
1342 :
1343 0 : if( aArgs.getLength() != 4 ) {
1344 0 : OUStringBuffer buf;
1345 0 : buf.append( "ImplementationRegistration::initialize() expects 4 parameters, got " );
1346 0 : buf.append( (sal_Int32) aArgs.getLength() );
1347 : throw IllegalArgumentException( buf.makeStringAndClear(),
1348 : Reference<XInterface > (),
1349 0 : 0 );
1350 : }
1351 :
1352 0 : Reference< XImplementationLoader > rLoader;
1353 0 : OUString loaderServiceName;
1354 0 : OUString locationUrl;
1355 0 : Reference< XSimpleRegistry > rReg;
1356 :
1357 : // 1st argument : An instance of an implementation loader
1358 0 : if( aArgs.getConstArray()[0].getValueType().getTypeClass() == TypeClass_INTERFACE ) {
1359 0 : aArgs.getConstArray()[0] >>= rLoader;
1360 : }
1361 0 : if( !rLoader.is()) {
1362 0 : OUStringBuffer buf;
1363 : buf.append( "ImplementationRegistration::initialize() invalid first parameter,"
1364 0 : "expected " );
1365 0 : buf.append( getCppuType( &rLoader ).getTypeName() );
1366 0 : buf.append( ", got " );
1367 0 : buf.append( aArgs.getConstArray()[0].getValueTypeName() );
1368 : throw IllegalArgumentException( buf.makeStringAndClear(),
1369 : Reference< XInterface > (),
1370 0 : 0 );
1371 : }
1372 :
1373 : // 2nd argument : The service name of the loader. This name is written into the registry
1374 0 : if( aArgs.getConstArray()[1].getValueType().getTypeClass() == TypeClass_STRING ) {
1375 0 : aArgs.getConstArray()[1] >>= loaderServiceName;
1376 : }
1377 0 : if( loaderServiceName.isEmpty() ) {
1378 0 : OUStringBuffer buf;
1379 : buf.append( "ImplementationRegistration::initialize() invalid second parameter,"
1380 0 : "expected string, got " );
1381 0 : buf.append( aArgs.getConstArray()[1].getValueTypeName() );
1382 : throw IllegalArgumentException( buf.makeStringAndClear(),
1383 : Reference< XInterface > (),
1384 0 : 0 );
1385 : }
1386 :
1387 : // 3rd argument : The file name of the dll, that contains the loader
1388 0 : if( aArgs.getConstArray()[2].getValueType().getTypeClass() == TypeClass_STRING ) {
1389 0 : aArgs.getConstArray()[2] >>= locationUrl;
1390 : }
1391 0 : if( locationUrl.isEmpty() ) {
1392 0 : OUStringBuffer buf;
1393 : buf.append( "ImplementationRegistration::initialize() invalid third parameter,"
1394 0 : "expected string, got " );
1395 0 : buf.append( aArgs.getConstArray()[2].getValueTypeName() );
1396 : throw IllegalArgumentException( buf.makeStringAndClear(),
1397 : Reference< XInterface > (),
1398 0 : 0 );
1399 : }
1400 :
1401 : // 4th argument : The registry, the service should be written to
1402 0 : if( aArgs.getConstArray()[3].getValueType().getTypeClass() == TypeClass_INTERFACE ) {
1403 0 : aArgs.getConstArray()[3] >>= rReg;
1404 : }
1405 :
1406 0 : if( !rReg.is() ) {
1407 0 : rReg = getRegistryFromServiceManager();
1408 0 : if( !rReg.is() ) {
1409 0 : OUStringBuffer buf;
1410 : buf.append( "ImplementationRegistration::initialize() invalid fourth parameter,"
1411 0 : "expected " );
1412 0 : buf.append( getCppuType( &rReg ).getTypeName() );
1413 0 : buf.append( ", got " );
1414 0 : buf.append( aArgs.getConstArray()[3].getValueTypeName() );
1415 : throw IllegalArgumentException( buf.makeStringAndClear(),
1416 : Reference< XInterface > (),
1417 0 : 0 );
1418 : }
1419 : }
1420 :
1421 0 : doRegister(m_xSMgr, m_xCtx, rLoader , rReg, loaderServiceName , locationUrl, locationUrl);
1422 0 : }
1423 :
1424 :
1425 :
1426 :
1427 : // virtual function registerImplementationWithLocation of XImplementationRegistration2
1428 :
1429 0 : void ImplementationRegistration::registerImplementationWithLocation(
1430 : const OUString& implementationLoaderUrl,
1431 : const OUString& locationUrl,
1432 : const OUString& registeredLocationUrl,
1433 : const Reference < XSimpleRegistry > & xReg)
1434 : throw( CannotRegisterImplementationException, RuntimeException, std::exception )
1435 : {
1436 : prepareRegister(
1437 0 : implementationLoaderUrl, locationUrl, registeredLocationUrl, xReg);
1438 0 : }
1439 :
1440 : // helper function
1441 2 : void ImplementationRegistration::prepareRegister(
1442 : const OUString& implementationLoaderUrl,
1443 : const OUString& locationUrl,
1444 : const OUString& registeredLocationUrl,
1445 : const Reference < XSimpleRegistry > & xReg)
1446 : // throw( CannotRegisterImplementationException, RuntimeException )
1447 : {
1448 2 : OUString implLoaderUrl(implementationLoaderUrl);
1449 4 : OUString activatorName;
1450 :
1451 2 : if (!implementationLoaderUrl.isEmpty())
1452 : {
1453 2 : OUString tmpActivator(implementationLoaderUrl);
1454 2 : sal_Int32 nIndex = 0;
1455 2 : activatorName = tmpActivator.getToken(0, ':', nIndex );
1456 : } else
1457 : {
1458 : // check locationUrl to find out what kind of loader is needed
1459 : // set iimplLoaderUrl
1460 : }
1461 :
1462 2 : if( m_xSMgr.is() ) {
1463 : try
1464 : {
1465 : Reference < XImplementationLoader > xAct(
1466 2 : m_xSMgr->createInstanceWithContext(activatorName, m_xCtx) , UNO_QUERY );
1467 2 : if (xAct.is())
1468 : {
1469 2 : Reference < XSimpleRegistry > xRegistry;
1470 :
1471 2 : if (xReg.is())
1472 : {
1473 : // registry supplied by user
1474 2 : xRegistry = xReg;
1475 : }
1476 : else
1477 : {
1478 0 : xRegistry = getRegistryFromServiceManager();
1479 : }
1480 :
1481 2 : if ( xRegistry.is())
1482 : {
1483 : doRegister(m_xSMgr, m_xCtx, xAct, xRegistry, implLoaderUrl,
1484 2 : locationUrl, registeredLocationUrl);
1485 2 : }
1486 : }
1487 : else
1488 : {
1489 0 : OUStringBuffer buf( 128 );
1490 0 : buf.appendAscii( "ImplementationRegistration::registerImplementation() - The service " );
1491 0 : buf.append( activatorName );
1492 0 : buf.appendAscii( " cannot be instantiated\n" );
1493 : throw CannotRegisterImplementationException(
1494 0 : buf.makeStringAndClear() );
1495 2 : }
1496 : }
1497 0 : catch( CannotRegisterImplementationException & )
1498 : {
1499 0 : throw;
1500 : }
1501 0 : catch( const InvalidRegistryException & e )
1502 : {
1503 0 : OUStringBuffer buf;
1504 : buf.append( "ImplementationRegistration::registerImplementation() "
1505 0 : "InvalidRegistryException during registration (" );
1506 0 : buf.append( e.Message );
1507 0 : buf.append( ")" );
1508 : throw CannotRegisterImplementationException(
1509 0 : buf.makeStringAndClear() );
1510 : }
1511 0 : catch( const MergeConflictException & e )
1512 : {
1513 0 : OUStringBuffer buf;
1514 : buf.append( "ImplementationRegistration::registerImplementation() "
1515 0 : "MergeConflictException during registration (" );
1516 0 : buf.append( e.Message );
1517 0 : buf.append( ")" );
1518 : throw CannotRegisterImplementationException(
1519 0 : buf.makeStringAndClear() );
1520 : }
1521 : }
1522 : else
1523 : {
1524 : throw CannotRegisterImplementationException(
1525 : "ImplementationRegistration::registerImplementation() "
1526 0 : "no componentcontext available to instantiate loader" );
1527 2 : }
1528 2 : }
1529 :
1530 :
1531 : // virtual function registerImplementation of XImplementationRegistration
1532 :
1533 2 : void ImplementationRegistration::registerImplementation(
1534 : const OUString& implementationLoaderUrl,
1535 : const OUString& locationUrl,
1536 : const Reference < XSimpleRegistry > & xReg)
1537 : throw( CannotRegisterImplementationException, RuntimeException, std::exception )
1538 : {
1539 2 : prepareRegister(implementationLoaderUrl, locationUrl, locationUrl, xReg);
1540 2 : }
1541 :
1542 :
1543 :
1544 : // virtual function revokeImplementation of XImplementationRegistration
1545 :
1546 2 : sal_Bool ImplementationRegistration::revokeImplementation(const OUString& location,
1547 : const Reference < XSimpleRegistry >& xReg)
1548 : throw ( RuntimeException, std::exception )
1549 : {
1550 2 : bool ret = false;
1551 :
1552 2 : Reference < XSimpleRegistry > xRegistry;
1553 :
1554 2 : if (xReg.is()) {
1555 2 : xRegistry = xReg;
1556 : }
1557 : else {
1558 0 : Reference < XPropertySet > xPropSet = Reference< XPropertySet >::query( m_xSMgr );
1559 0 : if( xPropSet.is() ) {
1560 : try {
1561 0 : Any aAny = xPropSet->getPropertyValue( spool().Registry );
1562 :
1563 0 : if( aAny.getValueType().getTypeClass() == TypeClass_INTERFACE )
1564 : {
1565 0 : aAny >>= xRegistry;
1566 0 : }
1567 : }
1568 0 : catch ( UnknownPropertyException & ) {
1569 : }
1570 0 : }
1571 : }
1572 :
1573 2 : if (xRegistry.is())
1574 : {
1575 : try
1576 : {
1577 2 : doRevoke(xRegistry, location);
1578 2 : ret = true;
1579 : }
1580 0 : catch( InvalidRegistryException & )
1581 : {
1582 : // no way to transport the error, as no exception is specified and a runtime
1583 : // exception is not appropriate.
1584 : OSL_FAIL( "InvalidRegistryException during revokeImplementation" );
1585 : }
1586 : }
1587 :
1588 2 : return ret;
1589 : }
1590 :
1591 :
1592 : // virtual function getImplementations of XImplementationRegistration
1593 :
1594 0 : Sequence< OUString > ImplementationRegistration::getImplementations(
1595 : const OUString & implementationLoaderUrl,
1596 : const OUString & locationUrl)
1597 : throw ( RuntimeException, std::exception )
1598 : {
1599 0 : OUString activatorName;
1600 :
1601 0 : if (!implementationLoaderUrl.isEmpty())
1602 : {
1603 0 : OUString tmpActivator(implementationLoaderUrl);
1604 0 : sal_Int32 nIndex = 0;
1605 0 : activatorName = tmpActivator.getToken(0, ':', nIndex );
1606 : } else
1607 : {
1608 : // check locationUrl to find out what kind of loader is needed
1609 : // set implementationLoaderUrl
1610 : }
1611 :
1612 0 : if( m_xSMgr.is() ) {
1613 :
1614 : Reference < XImplementationLoader > xAct(
1615 0 : m_xSMgr->createInstanceWithContext( activatorName, m_xCtx ), UNO_QUERY );
1616 :
1617 0 : if (xAct.is())
1618 : {
1619 :
1620 : Reference < XSimpleRegistry > xReg =
1621 0 : createTemporarySimpleRegistry( m_xSMgr, m_xCtx);
1622 :
1623 0 : if (xReg.is())
1624 : {
1625 : try
1626 : {
1627 0 : xReg->open(OUString() /* in mem */, sal_False, sal_True);
1628 0 : Reference < XRegistryKey > xImpl;
1629 :
1630 : { // only necessary for deleting the temporary variable of rootkey
1631 0 : xImpl = xReg->getRootKey()->createKey( spool().slash_IMPLEMENTATIONS );
1632 : }
1633 0 : if (xAct->writeRegistryInfo(xImpl, implementationLoaderUrl, locationUrl))
1634 : {
1635 0 : std::list <OUString> implNames;
1636 :
1637 0 : findImplementations(xImpl, implNames);
1638 :
1639 0 : if (!implNames.empty())
1640 : {
1641 0 : std::list<OUString>::const_iterator iter = implNames.begin();
1642 :
1643 0 : Sequence<OUString> seqImpl(implNames.size());
1644 0 : OUString *pImplNames = seqImpl.getArray();
1645 :
1646 0 : sal_Int32 index = 0;
1647 0 : while (iter != implNames.end())
1648 : {
1649 0 : pImplNames[index] = *iter;
1650 0 : index++;
1651 0 : ++iter;
1652 : }
1653 :
1654 0 : xImpl->closeKey();
1655 0 : return seqImpl;
1656 0 : }
1657 : }
1658 :
1659 0 : xImpl->closeKey();
1660 : }
1661 0 : catch(MergeConflictException&)
1662 : {
1663 : }
1664 0 : catch(InvalidRegistryException&)
1665 : {
1666 : }
1667 0 : }
1668 0 : }
1669 : }
1670 :
1671 0 : return Sequence<OUString>();
1672 : }
1673 :
1674 :
1675 : // virtual function checkInstantiation of XImplementationRegistration
1676 :
1677 0 : Sequence< OUString > ImplementationRegistration::checkInstantiation(const OUString&)
1678 : throw ( RuntimeException, std::exception )
1679 : {
1680 : OSL_FAIL( "ImplementationRegistration::checkInstantiation not implemented" );
1681 0 : return Sequence<OUString>();
1682 : }
1683 :
1684 :
1685 : // helper function doRegistration
1686 :
1687 :
1688 2 : void ImplementationRegistration::doRevoke(
1689 : const Reference < XSimpleRegistry >& xDest,
1690 : const OUString& locationUrl)
1691 : // throw ( InvalidRegistryException, RuntimeException )
1692 : {
1693 2 : if( xDest.is() )
1694 : {
1695 2 : std::list<OUString> aNames;
1696 :
1697 2 : const StringPool &pool = spool();
1698 4 : Reference < XRegistryKey > xRootKey( xDest->getRootKey() );
1699 :
1700 : Reference < XRegistryKey > xKey =
1701 4 : xRootKey->openKey( pool.slash_IMPLEMENTATIONS );
1702 2 : if (xKey.is() && xKey->isValid())
1703 : {
1704 2 : deleteAllImplementations(xDest, xKey, locationUrl, aNames);
1705 : }
1706 :
1707 2 : xKey = xRootKey->openKey( pool.slash_SERVICES );
1708 2 : if (xKey.is())
1709 : {
1710 0 : std::list<OUString>::const_iterator iter = aNames.begin();
1711 :
1712 0 : while (iter != aNames.end())
1713 : {
1714 0 : deleteAllServiceEntries(xDest, xKey, *iter);
1715 0 : ++iter;
1716 : }
1717 : }
1718 :
1719 2 : xKey = xRootKey->openKey( "/SINGLETONS" );
1720 2 : if (xKey.is() && xKey->isValid())
1721 : {
1722 0 : delete_all_singleton_entries( xKey, aNames );
1723 : }
1724 :
1725 2 : if (xRootKey.is())
1726 2 : xRootKey->closeKey();
1727 2 : if (xKey.is() && xKey->isValid() )
1728 2 : xKey->closeKey();
1729 : }
1730 2 : }
1731 :
1732 2 : void ImplementationRegistration::doRegister(
1733 : const Reference< XMultiComponentFactory > & xSMgr,
1734 : const Reference< XComponentContext > &xCtx,
1735 : const Reference < XImplementationLoader > & xAct,
1736 : const Reference < XSimpleRegistry >& xDest,
1737 : const OUString& implementationLoaderUrl,
1738 : const OUString& locationUrl,
1739 : const OUString& registeredLocationUrl)
1740 : /* throw ( InvalidRegistryException,
1741 : MergeConflictException,
1742 : CannotRegisterImplementationException, RuntimeException ) */
1743 : {
1744 : Reference < XSimpleRegistry > xReg =
1745 2 : createTemporarySimpleRegistry( xSMgr, xCtx );
1746 4 : Reference < XRegistryKey > xSourceKey;
1747 :
1748 2 : if (xAct.is() && xReg.is() && xDest.is())
1749 : {
1750 : try
1751 : {
1752 2 : xReg->open(OUString() /* in mem */, sal_False, sal_True);
1753 :
1754 : { // only necessary for deleting the temporary variable of rootkey
1755 2 : xSourceKey = xReg->getRootKey()->createKey( spool().slash_IMPLEMENTATIONS );
1756 : }
1757 :
1758 : bool bSuccess =
1759 2 : xAct->writeRegistryInfo(xSourceKey, implementationLoaderUrl, locationUrl);
1760 2 : if ( bSuccess )
1761 : {
1762 2 : prepareRegistry(xDest, xSourceKey, implementationLoaderUrl, registeredLocationUrl, xCtx);
1763 :
1764 2 : xSourceKey->closeKey();
1765 :
1766 2 : xSourceKey = xReg->getRootKey();
1767 2 : Reference < XRegistryKey > xDestKey = xDest->getRootKey();
1768 2 : stoc_impreg::mergeKeys( xDestKey, xSourceKey );
1769 2 : xDestKey->closeKey();
1770 2 : xSourceKey->closeKey();
1771 : }
1772 : else
1773 : {
1774 : throw CannotRegisterImplementationException(
1775 0 : "ImplementationRegistration::doRegistration() component registration signaled failure" );
1776 : }
1777 :
1778 : // Cleanup Source registry.
1779 2 : if ( xSourceKey->isValid() )
1780 0 : xSourceKey->closeKey();
1781 : }
1782 0 : catch(CannotRegisterImplementationException&)
1783 : {
1784 0 : if ( xSourceKey->isValid() )
1785 0 : xSourceKey->closeKey();
1786 : // and throw again
1787 0 : throw;
1788 : }
1789 2 : }
1790 2 : }
1791 :
1792 :
1793 :
1794 2 : Reference< XSimpleRegistry > ImplementationRegistration::createTemporarySimpleRegistry(
1795 : const Reference< XMultiComponentFactory > &rSMgr,
1796 : const Reference < XComponentContext > & xCtx)
1797 : {
1798 :
1799 : Reference < XSimpleRegistry > xReg(
1800 2 : rSMgr->createInstanceWithContext(
1801 2 : spool().com_sun_star_registry_SimpleRegistry, xCtx ),
1802 2 : UNO_QUERY);
1803 : OSL_ASSERT( xReg.is() );
1804 2 : return xReg;
1805 : }
1806 :
1807 : }
1808 :
1809 : extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
1810 6 : com_sun_star_comp_stoc_ImplementationRegistration_get_implementation(
1811 : css::uno::XComponentContext *context,
1812 : css::uno::Sequence<css::uno::Any> const &)
1813 : {
1814 6 : return cppu::acquire(new ImplementationRegistration(context));
1815 : }
1816 :
1817 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|