Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : :
29 : : #include <cppuhelper/factory.hxx>
30 : : #include <osl/diagnose.h>
31 : : #include "shellexec.hxx"
32 : :
33 : : //-----------------------------------------------------------------------
34 : : // namespace directives
35 : : //-----------------------------------------------------------------------
36 : :
37 : : using namespace ::rtl;
38 : : using namespace ::com::sun::star::uno;
39 : : using namespace ::com::sun::star::lang;
40 : : using namespace ::com::sun::star::registry;
41 : : using namespace ::cppu;
42 : : using com::sun::star::system::XSystemShellExecute;
43 : :
44 : : #define SHELLEXEC_SERVICE_NAME "com.sun.star.system.SystemShellExecute"
45 : : #define SHELLEXEC_IMPL_NAME "com.sun.star.comp.system.SystemShellExecute"
46 : :
47 : : //-----------------------------------------------------------------------
48 : :
49 : : namespace
50 : : {
51 : 0 : Reference< XInterface > SAL_CALL createInstance(const Reference< XComponentContext >& xContext)
52 : : {
53 : 0 : return Reference< XInterface >( static_cast< XSystemShellExecute* >( new ShellExec(xContext) ) );
54 : : }
55 : : }
56 : :
57 : : extern "C"
58 : : {
59 : : //----------------------------------------------------------------------
60 : : // component_getFactory
61 : : //----------------------------------------------------------------------
62 : :
63 : 0 : SAL_DLLPUBLIC_EXPORT void* SAL_CALL component_getFactory(
64 : : const sal_Char* pImplName,
65 : : SAL_UNUSED_PARAMETER uno_Interface* /*pSrvManager*/,
66 : : SAL_UNUSED_PARAMETER uno_Interface* /*pRegistryKey*/ )
67 : : {
68 : 0 : Reference< XSingleComponentFactory > xFactory;
69 : :
70 : 0 : if (0 == ::rtl_str_compare( pImplName, SHELLEXEC_IMPL_NAME ))
71 : : {
72 : 0 : OUString serviceName( RTL_CONSTASCII_USTRINGPARAM(SHELLEXEC_SERVICE_NAME) );
73 : :
74 : : xFactory = ::cppu::createSingleComponentFactory(
75 : : createInstance,
76 : : OUString( RTL_CONSTASCII_USTRINGPARAM(SHELLEXEC_IMPL_NAME) ),
77 : 0 : Sequence< OUString >( &serviceName, 1 ) );
78 : :
79 : : }
80 : :
81 : 0 : if (xFactory.is())
82 : 0 : xFactory->acquire();
83 : :
84 : 0 : return xFactory.get();
85 : : }
86 : :
87 : : } // extern "C"
88 : :
89 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|