office-gobmx/configmgr/source/components.hxx
Noel Grandin 3c5d5d8ae3 no need to convert from Sequence to std::set here
we are never actually going to need a set, so just iterate over
the Sequence

Change-Id: I0de6ff9e0661227a69b7fbe6cccc5268f9eba58f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167430
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2024-05-10 10:44:13 +02:00

166 lines
4.9 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#pragma once
#include <sal/config.h>
#include <set>
#include <string_view>
#include <com/sun/star/beans/Optional.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <rtl/ref.hxx>
#include <o3tl/sorted_vector.hxx>
#include "additions.hxx"
#include "data.hxx"
#include "modifications.hxx"
namespace com::sun::star {
namespace beans { class XPropertySet; }
namespace uno {
class Any;
class XComponentContext;
}
}
namespace configmgr {
class Broadcaster;
class Node;
class Partial;
class RootAccess;
class Components {
public:
static Components & getSingleton(
css::uno::Reference< css::uno::XComponentContext > const & context);
static bool allLocales(std::u16string_view locale);
rtl::Reference< Node > resolvePathRepresentation(
OUString const & pathRepresentation,
OUString * canonicRepresentation, std::vector<OUString> * path, int * finalizedLayer)
const;
rtl::Reference< Node > getTemplate( OUString const & fullName) const;
void addRootAccess(rtl::Reference< RootAccess > const & access);
void removeRootAccess(RootAccess * access);
void initGlobalBroadcaster(
Modifications const & modifications,
rtl::Reference< RootAccess > const & exclude,
Broadcaster * broadcaster);
void addModification(std::vector<OUString> const & path);
void writeModifications();
void flushModifications();
// must be called with configmgr::lock unacquired; must be called before
// shutdown if writeModifications has ever been called (probably
// indirectly, via removeExtensionXcuFile)
void insertExtensionXcsFile(bool shared, OUString const & fileUri);
void insertExtensionXcuFile(
bool shared, OUString const & fileUri,
Modifications * modifications);
void removeExtensionXcuFile(
OUString const & fileUri, Modifications * modifications);
void insertModificationXcuFile(
OUString const & fileUri,
css::uno::Sequence< OUString > const & includedPaths,
css::uno::Sequence< OUString > const & excludedPaths,
Modifications * modifications);
css::beans::Optional< css::uno::Any >
getExternalValue(std::u16string_view descriptor);
private:
Components(const Components&) = delete;
Components& operator=(const Components&) = delete;
typedef void FileParser(
OUString const &, int, Data &, Partial const *, Modifications *,
Additions *);
public:
explicit Components(
css::uno::Reference< css::uno::XComponentContext > const & context);
~Components();
private:
void parseFileLeniently(
FileParser * parseFile, OUString const & url, int layer,
Partial const * partial, Modifications * modifications,
Additions * additions);
void parseFiles(
int layer, OUString const & extension, FileParser * parseFile,
OUString const & url, bool recursive);
void parseFileList(
int layer, FileParser * parseFile, std::u16string_view urls,
bool recordAdditions);
void parseXcdFiles(int layer, OUString const & url);
void parseXcsXcuLayer(int layer, OUString const & url);
void parseXcsXcuIniLayer(
int layer, OUString const & url, bool recordAdditions);
void parseResLayer(int layer, std::u16string_view url);
void parseModificationLayer(int layer, OUString const & url);
int getExtensionLayer(bool shared) const;
typedef
config_map<
css::uno::Reference<
css::beans::XPropertySet > >
ExternalServices;
class WriteThread;
enum class ModificationTarget { None, File, Dconf };
css::uno::Reference< css::uno::XComponentContext >
context_;
Data data_;
o3tl::sorted_vector< RootAccess * > roots_;
ExternalServices externalServices_;
rtl::Reference< WriteThread > writeThread_;
int sharedExtensionLayer_;
int userExtensionLayer_;
ModificationTarget modificationTarget_;
OUString modificationFileUrl_;
std::shared_ptr<osl::Mutex> lock_;
};
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */