1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
10 #include <sal/config.h>
12 #include <com/sun/star/configuration/XReadWriteAccess.hpp>
13 #include <com/sun/star/lang/IllegalArgumentException.hpp>
14 #include <com/sun/star/lang/NotInitializedException.hpp>
15 #include <com/sun/star/lang/XInitialization.hpp>
16 #include <com/sun/star/lang/XServiceInfo.hpp>
17 #include <com/sun/star/uno/Any.hxx>
18 #include <com/sun/star/uno/Reference.hxx>
19 #include <com/sun/star/uno/RuntimeException.hpp>
20 #include <com/sun/star/uno/Sequence.hxx>
21 #include <com/sun/star/uno/XInterface.hpp>
22 #include <cppuhelper/implbase.hxx>
23 #include <cppuhelper/supportsservice.hxx>
24 #include <cppuhelper/weak.hxx>
25 #include <osl/mutex.hxx>
26 #include <rtl/ref.hxx>
27 #include <rtl/ustring.hxx>
28 #include <sal/types.h>
30 #include "components.hxx"
32 #include "readwriteaccess.hxx"
33 #include "rootaccess.hxx"
35 namespace configmgr
{ namespace read_write_access
{
40 public cppu::WeakImplHelper
<
41 css::lang::XServiceInfo
, css::lang::XInitialization
,
42 css::configuration::XReadWriteAccess
>
46 css::uno::Reference
< css::uno::XComponentContext
> const & context
):
50 Service(const Service
&) = delete;
51 Service
& operator=(const Service
&) = delete;
53 virtual ~Service() override
{}
55 virtual OUString SAL_CALL
getImplementationName() override
56 { return read_write_access::getImplementationName(); }
58 virtual sal_Bool SAL_CALL
supportsService(OUString
const & ServiceName
) override
59 { return cppu::supportsService(this, ServiceName
); }
61 virtual css::uno::Sequence
< OUString
> SAL_CALL
62 getSupportedServiceNames() override
63 { return read_write_access::getSupportedServiceNames(); }
65 virtual void SAL_CALL
initialize(
66 css::uno::Sequence
< css::uno::Any
> const & aArguments
) override
;
68 virtual css::uno::Any SAL_CALL
getByHierarchicalName(
69 OUString
const & aName
) override
70 { return getRoot()->getByHierarchicalName(aName
); }
72 virtual sal_Bool SAL_CALL
hasByHierarchicalName(OUString
const & aName
) override
73 { return getRoot()->hasByHierarchicalName(aName
); }
75 virtual void SAL_CALL
replaceByHierarchicalName(
76 OUString
const & aName
, css::uno::Any
const & aElement
) override
77 { getRoot()->replaceByHierarchicalName(aName
, aElement
); }
79 virtual void SAL_CALL
commitChanges() override
80 { getRoot()->commitChanges(); }
82 virtual sal_Bool SAL_CALL
hasPendingChanges() override
83 { return getRoot()->hasPendingChanges(); }
85 virtual css::uno::Sequence
< ::css::util::ElementChange
> SAL_CALL
getPendingChanges() override
86 { return getRoot()->getPendingChanges(); }
88 css::beans::Property SAL_CALL
getPropertyByHierarchicalName(
89 OUString
const & aHierarchicalName
)
91 { return getRoot()->getPropertyByHierarchicalName(aHierarchicalName
); }
93 sal_Bool SAL_CALL
hasPropertyByHierarchicalName(
94 OUString
const & aHierarchicalName
) override
95 { return getRoot()->hasPropertyByHierarchicalName(aHierarchicalName
); }
97 rtl::Reference
< RootAccess
> getRoot();
99 css::uno::Reference
< css::uno::XComponentContext
> context_
;
102 rtl::Reference
< RootAccess
> root_
;
105 void Service::initialize(css::uno::Sequence
< css::uno::Any
> const & aArguments
)
108 if (aArguments
.getLength() != 1 || !(aArguments
[0] >>= locale
)) {
109 throw css::lang::IllegalArgumentException(
110 "not exactly one string argument",
111 static_cast< cppu::OWeakObject
* >(this), -1);
113 osl::MutexGuard
g1(mutex_
);
115 throw css::uno::RuntimeException(
116 "already initialized", static_cast< cppu::OWeakObject
* >(this));
118 osl::MutexGuard
g2(*lock());
119 Components
& components
= Components::getSingleton(context_
);
120 root_
= new RootAccess(components
, "/", locale
, true);
121 components
.addRootAccess(root_
);
124 rtl::Reference
< RootAccess
> Service::getRoot() {
125 osl::MutexGuard
g(mutex_
);
127 throw css::lang::NotInitializedException(
128 "not initialized", static_cast< cppu::OWeakObject
* >(this));
135 css::uno::Reference
< css::uno::XInterface
> create(
136 css::uno::Reference
< css::uno::XComponentContext
> const & context
)
138 return static_cast< cppu::OWeakObject
* >(new Service(context
));
141 OUString
getImplementationName() {
142 return "com.sun.star.comp.configuration.ReadWriteAccess";
145 css::uno::Sequence
< OUString
> getSupportedServiceNames() {
146 return css::uno::Sequence
< OUString
> { "com.sun.star.configuration.ReadWriteAccess" };
151 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */