bump product version to 7.2.5.1
[LibreOffice.git] / configmgr / source / readwriteaccess.cxx
blob292124ddec25f6981a21f479393e0b91463ee612
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/.
8 */
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"
31 #include "lock.hxx"
32 #include "rootaccess.hxx"
34 namespace configmgr::read_write_access {
36 namespace {
38 class Service:
39 public cppu::WeakImplHelper<
40 css::lang::XServiceInfo, css::lang::XInitialization,
41 css::configuration::XReadWriteAccess >
43 public:
44 explicit Service(
45 css::uno::Reference< css::uno::XComponentContext > const & context):
46 context_(context) {}
48 private:
49 Service(const Service&) = delete;
50 Service& operator=(const Service&) = delete;
52 virtual ~Service() override {}
54 virtual OUString SAL_CALL getImplementationName() override
55 { return "com.sun.star.comp.configuration.ReadWriteAccess"; }
57 virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override
58 { return cppu::supportsService(this, ServiceName); }
60 virtual css::uno::Sequence< OUString > SAL_CALL
61 getSupportedServiceNames() override
62 { return { "com.sun.star.configuration.ReadWriteAccess" }; }
64 virtual void SAL_CALL initialize(
65 css::uno::Sequence< css::uno::Any > const & aArguments) override;
67 virtual css::uno::Any SAL_CALL getByHierarchicalName(
68 OUString const & aName) override
69 { return getRoot()->getByHierarchicalName(aName); }
71 virtual sal_Bool SAL_CALL hasByHierarchicalName(OUString const & aName) override
72 { return getRoot()->hasByHierarchicalName(aName); }
74 virtual void SAL_CALL replaceByHierarchicalName(
75 OUString const & aName, css::uno::Any const & aElement) override
76 { getRoot()->replaceByHierarchicalName(aName, aElement); }
78 virtual void SAL_CALL commitChanges() override
79 { getRoot()->commitChanges(); }
81 virtual sal_Bool SAL_CALL hasPendingChanges() override
82 { return getRoot()->hasPendingChanges(); }
84 virtual css::uno::Sequence< ::css::util::ElementChange > SAL_CALL getPendingChanges() override
85 { return getRoot()->getPendingChanges(); }
87 css::beans::Property SAL_CALL getPropertyByHierarchicalName(
88 OUString const & aHierarchicalName)
89 override
90 { return getRoot()->getPropertyByHierarchicalName(aHierarchicalName); }
92 sal_Bool SAL_CALL hasPropertyByHierarchicalName(
93 OUString const & aHierarchicalName) override
94 { return getRoot()->hasPropertyByHierarchicalName(aHierarchicalName); }
96 rtl::Reference< RootAccess > getRoot();
98 css::uno::Reference< css::uno::XComponentContext > context_;
100 osl::Mutex mutex_;
101 rtl::Reference< RootAccess > root_;
104 void Service::initialize(css::uno::Sequence< css::uno::Any > const & aArguments)
106 OUString locale;
107 if (aArguments.getLength() != 1 || !(aArguments[0] >>= locale)) {
108 throw css::lang::IllegalArgumentException(
109 "not exactly one string argument",
110 static_cast< cppu::OWeakObject * >(this), -1);
112 osl::MutexGuard g1(mutex_);
113 if (root_.is()) {
114 throw css::uno::RuntimeException(
115 "already initialized", static_cast< cppu::OWeakObject * >(this));
117 osl::MutexGuard g2(*lock());
118 Components & components = Components::getSingleton(context_);
119 root_ = new RootAccess(components, "/", locale, true);
120 components.addRootAccess(root_);
123 rtl::Reference< RootAccess > Service::getRoot() {
124 osl::MutexGuard g(mutex_);
125 if (!root_.is()) {
126 throw css::lang::NotInitializedException(
127 "not initialized", static_cast< cppu::OWeakObject * >(this));
129 return root_;
135 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
136 com_sun_star_comp_configuration_ReadWriteAccess_get_implementation(
137 css::uno::XComponentContext* context, css::uno::Sequence<css::uno::Any> const& )
139 return cppu::acquire(new configmgr::read_write_access::Service(context));
143 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */