office-gobmx/configmgr/source/components.hxx
Stephan Bergmann 7f04bb393f Clean up color scheme migration
...avoiding to have code in configmgr that knows about the details of the data
stored in the configuration.  (See the comments starting at
<https://gerrit.libreoffice.org/c/core/+/139690/9#message-44703a2529c07bf1b0202ed3a232aa661784b159>
"Migrating product name related color schemes between different versions" for
details.)

This reverts the dubious changes of 583ea856f2
"Migrating product name related color schemes between different versions" in
configmgr and offapi.  (Also, this moves the computation of sMigratedProductName
in MigrationImpl::copyConfig, desktop/source/migration/migration.cxx, to a saner
location than in the middle of the "check if the shared
registrymodifications.xcu file exists" block where that
583ea856f2 had placed it.)

Change-Id: I7ab3d57db19065c7c818e697300a2abd9e7f72bc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139963
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-09-15 14:27:31 +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,
std::set< OUString > const & includedPaths,
std::set< 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: */