Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / desktop / source / offacc / acceptor.hxx
blob67dd6692866947b7764c5c8f7f843d0428af3ac4
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_DESKTOP_SOURCE_OFFACC_ACCEPTOR_HXX
21 #define INCLUDED_DESKTOP_SOURCE_OFFACC_ACCEPTOR_HXX
23 #include <sal/config.h>
25 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <com/sun/star/uno/Exception.hpp>
28 #include <com/sun/star/uno/Reference.h>
29 #include <com/sun/star/lang/XComponent.hpp>
30 #include <com/sun/star/connection/XAcceptor.hpp>
31 #include <com/sun/star/lang/XInitialization.hpp>
32 #include <com/sun/star/bridge/XInstanceProvider.hpp>
33 #include <com/sun/star/bridge/XBridgeFactory2.hpp>
34 #include <com/sun/star/beans/XPropertySet.hpp>
35 #include <cppuhelper/implbase.hxx>
36 #include <cppuhelper/interfacecontainer.h>
38 #include <com/sun/star/registry/XRegistryKey.hpp>
39 #include <comphelper/weakbag.hxx>
40 #include <osl/mutex.hxx>
41 #include <osl/conditn.hxx>
42 #include <osl/thread.hxx>
44 namespace com { namespace sun { namespace star { namespace uno {
45 class XComponentContext;
46 } } } }
48 namespace desktop {
50 class Acceptor
51 : public ::cppu::WeakImplHelper<css::lang::XServiceInfo, css::lang::XInitialization>
53 private:
54 osl::Mutex m_aMutex;
56 oslThread m_thread;
57 comphelper::WeakBag< css::bridge::XBridge > m_bridges;
59 ::osl::Condition m_cEnable;
61 css::uno::Reference< css::uno::XComponentContext > m_rContext;
62 css::uno::Reference< css::connection::XAcceptor > m_rAcceptor;
63 css::uno::Reference< css::bridge::XBridgeFactory2 > m_rBridgeFactory;
65 OUString m_aAcceptString;
66 OUString m_aConnectString;
67 OUString m_aProtocol;
69 bool m_bInit;
70 bool m_bDying;
72 public:
73 explicit Acceptor( const css::uno::Reference< css::uno::XComponentContext >& rxContext );
74 virtual ~Acceptor() override;
76 void run();
78 // XService info
79 static OUString impl_getImplementationName();
80 virtual OUString SAL_CALL getImplementationName() override;
81 static css::uno::Sequence<OUString> impl_getSupportedServiceNames();
82 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
83 virtual sal_Bool SAL_CALL supportsService( const OUString& aName ) override;
85 // XInitialize
86 virtual void SAL_CALL initialize( const css::uno::Sequence<css::uno::Any>& aArguments ) override;
88 static css::uno::Reference<css::uno::XInterface> impl_getInstance( const css::uno::Reference< css::lang::XMultiServiceFactory >& aFactory );
91 class AccInstanceProvider : public ::cppu::WeakImplHelper<css::bridge::XInstanceProvider>
93 private:
94 css::uno::Reference<css::uno::XComponentContext> m_rContext;
96 public:
97 AccInstanceProvider(const css::uno::Reference< css::uno::XComponentContext >& rxContext);
98 virtual ~AccInstanceProvider() override;
100 // XInstanceProvider
101 virtual css::uno::Reference<css::uno::XInterface> SAL_CALL getInstance (const OUString& aName ) override;
105 } //namespace desktop
107 #endif // INCLUDED_DESKTOP_SOURCE_OFFACC_ACCEPTOR_HXX
109 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */