office-gobmx/configmgr/source/components.hxx
Radu Ioan 3e64874e7c rtl:: prefix removal from configmgr
- removed rtl:: prefix
- removed RTL_CONSTASCII_USTRINGPARAM
- corrected some misspells

Change-Id: I88bb0beec718a7fe38c61220aa61401419f23b42
Reviewed-on: https://gerrit.libreoffice.org/1291
Reviewed-by: Luboš Luňák <l.lunak@suse.cz>
Tested-by: Luboš Luňák <l.lunak@suse.cz>
2012-12-11 12:08:38 +00:00

175 lines
5.1 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 .
*/
#ifndef INCLUDED_CONFIGMGR_SOURCE_COMPONENTS_HXX
#define INCLUDED_CONFIGMGR_SOURCE_COMPONENTS_HXX
#include "sal/config.h"
#include <map>
#include <set>
#include "boost/noncopyable.hpp"
#include "boost/shared_ptr.hpp"
#include "com/sun/star/beans/Optional.hpp"
#include "com/sun/star/uno/Reference.hxx"
#include "rtl/ref.hxx"
#include "additions.hxx"
#include "data.hxx"
#include "modifications.hxx"
#include "path.hxx"
namespace com { namespace sun { namespace star {
namespace beans { class XPropertySet; }
namespace uno {
class Any;
class XComponentContext;
}
} } }
namespace configmgr {
class Broadcaster;
class Node;
class Partial;
class RootAccess;
class Components: private boost::noncopyable {
public:
static Components & getSingleton(
com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >
const & context);
static bool allLocales(OUString const & locale);
rtl::Reference< Node > resolvePathRepresentation(
OUString const & pathRepresentation,
OUString * canonicRepresenation, Path * path, int * finalizedLayer)
const;
rtl::Reference< Node > getTemplate(
int layer, 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(Path const & path);
void writeModifications();
bool hasModifications() const;
void flushModifications();
// must be called with configmgr::lock unaquired; 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);
com::sun::star::beans::Optional< com::sun::star::uno::Any >
getExternalValue(OUString const & descriptor);
private:
typedef void FileParser(
OUString const &, int, Data &, Partial const *, Modifications *,
Additions *);
public:
Components(
com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >
const & context);
~Components();
private:
void parseFileLeniently(
FileParser * parseFile, OUString const & url, int layer,
Data & data, 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, OUString const & 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 parseModuleLayer(int layer, OUString const & url);
void parseResLayer(int layer, OUString const & url);
void parseModificationLayer(OUString const & url);
int getExtensionLayer(bool shared);
typedef std::set< RootAccess * > WeakRootSet;
typedef
std::map<
OUString,
com::sun::star::uno::Reference<
com::sun::star::beans::XPropertySet > >
ExternalServices;
class WriteThread;
com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >
context_;
Data data_;
WeakRootSet roots_;
ExternalServices externalServices_;
rtl::Reference< WriteThread > writeThread_;
int sharedExtensionLayer_;
int userExtensionLayer_;
OUString modificationFileUrl_;
boost::shared_ptr<osl::Mutex> lock_;
};
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */