Update ooo320-m1
[ooovba.git] / ucb / source / ucp / tdoc / tdoc_services.cxx
blob4b507f7a2fb243d44b31c42465a484a9b7b7a81d
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: tdoc_services.cxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_ucb.hxx"
34 #include "com/sun/star/lang/XMultiServiceFactory.hpp"
35 #include "com/sun/star/lang/XSingleServiceFactory.hpp"
36 #include "com/sun/star/registry/XRegistryKey.hpp"
38 #include "tdoc_provider.hxx"
39 #include "tdoc_documentcontentfactory.hxx"
41 using namespace com::sun::star;
42 using namespace tdoc_ucp;
44 //=========================================================================
45 static sal_Bool writeInfo( void * pRegistryKey,
46 const rtl::OUString & rImplementationName,
47 uno::Sequence< rtl::OUString > const & rServiceNames )
49 rtl::OUString aKeyName( rtl::OUString::createFromAscii( "/" ) );
50 aKeyName += rImplementationName;
51 aKeyName += rtl::OUString::createFromAscii( "/UNO/SERVICES" );
53 uno::Reference< registry::XRegistryKey > xKey;
54 try
56 xKey = static_cast< registry::XRegistryKey * >(
57 pRegistryKey )->createKey( aKeyName );
59 catch ( registry::InvalidRegistryException const & )
63 if ( !xKey.is() )
64 return sal_False;
66 sal_Bool bSuccess = sal_True;
68 for ( sal_Int32 n = 0; n < rServiceNames.getLength(); ++n )
70 try
72 xKey->createKey( rServiceNames[ n ] );
74 catch ( registry::InvalidRegistryException const & )
76 bSuccess = sal_False;
77 break;
80 return bSuccess;
83 //=========================================================================
84 extern "C" void SAL_CALL component_getImplementationEnvironment(
85 const sal_Char ** ppEnvTypeName, uno_Environment ** /*ppEnv*/ )
87 *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
90 //=========================================================================
91 extern "C" sal_Bool SAL_CALL component_writeInfo(
92 void * /*pServiceManager*/, void * pRegistryKey )
94 return pRegistryKey &&
96 //////////////////////////////////////////////////////////////////////
97 // Transient Documents Content Provider.
98 //////////////////////////////////////////////////////////////////////
100 writeInfo( pRegistryKey,
101 ContentProvider::getImplementationName_Static(),
102 ContentProvider::getSupportedServiceNames_Static() ) &&
104 //////////////////////////////////////////////////////////////////////
105 // Transient Documents Document Content Factory.
106 //////////////////////////////////////////////////////////////////////
108 writeInfo( pRegistryKey,
109 DocumentContentFactory::getImplementationName_Static(),
110 DocumentContentFactory::getSupportedServiceNames_Static() );
113 //=========================================================================
114 extern "C" void * SAL_CALL component_getFactory(
115 const sal_Char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ )
117 void * pRet = 0;
119 uno::Reference< lang::XMultiServiceFactory > xSMgr(
120 reinterpret_cast< lang::XMultiServiceFactory * >(
121 pServiceManager ) );
122 uno::Reference< lang::XSingleServiceFactory > xFactory;
124 //////////////////////////////////////////////////////////////////////
125 // Transient Documents Content Provider.
126 //////////////////////////////////////////////////////////////////////
128 if ( ContentProvider::getImplementationName_Static().
129 compareToAscii( pImplName ) == 0 )
131 xFactory = ContentProvider::createServiceFactory( xSMgr );
134 //////////////////////////////////////////////////////////////////////
135 // Transient Documents Document Content Factory.
136 //////////////////////////////////////////////////////////////////////
138 else if ( DocumentContentFactory::getImplementationName_Static().
139 compareToAscii( pImplName ) == 0 )
141 xFactory = DocumentContentFactory::createServiceFactory( xSMgr );
144 //////////////////////////////////////////////////////////////////////
146 if ( xFactory.is() )
148 xFactory->acquire();
149 pRet = xFactory.get();
152 return pRet;