1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
|
/* -*- 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_FRAMEWORK_SOURCE_INC_ACCELERATORS_PRESETHANDLER_HXX
#define INCLUDED_FRAMEWORK_SOURCE_INC_ACCELERATORS_PRESETHANDLER_HXX
#include <accelerators/storageholder.hxx>
#include <general.h>
#include <stdtypes.h>
#include <com/sun/star/embed/XStorage.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <comphelper/processfactory.hxx>
#include <salhelper/singletonref.hxx>
#include <i18nlangtag/languagetag.hxx>
namespace framework
{
/**
TODO document me
<layer>/global/<resourcetype>/<preset>.xml
<layer>/modules/<moduleid>/<resourcetype>/<preset>.xml
RESOURCETYPE PRESET TARGET
(share) (user)
"accelerator" "default" "current"
"word"
"excel"
"menubar" "default" "menubar"
*/
class PresetHandler
{
public:
static OUString PRESET_DEFAULT();
static OUString TARGET_CURRENT();
static OUString RESOURCETYPE_MENUBAR();
static OUString RESOURCETYPE_TOOLBAR();
static OUString RESOURCETYPE_ACCELERATOR();
static OUString RESOURCETYPE_STATUSBAR();
// types
public:
/** @short this handler can provide different
types of configuration.
@descr Means: a global or a module dependent
or ... configuration.
*/
enum EConfigType
{
E_GLOBAL,
E_MODULES,
E_DOCUMENT
};
private:
/** @short because a concurrent access to the same storage from different implementations
isn't supported, we have to share it with others.
@descr This struct makes it possible to use any shared storage
in combination with a SingletonRef<> template ...
This struct is allegedly shared and must be used within a
synchronized section. But it isn't.
*/
struct TSharedStorages
{
public:
StorageHolder m_lStoragesShare;
StorageHolder m_lStoragesUser;
TSharedStorages()
: m_lStoragesShare()
, m_lStoragesUser ()
{};
virtual ~TSharedStorages() {};
};
// member
private:
/** @short can be used to create on needed uno resources. */
css::uno::Reference< css::uno::XComponentContext > m_xContext;
/** @short knows the type of provided configuration.
@descr e.g. global, modules, ...
*/
EConfigType m_eConfigType;
/** @short specify the type of resource, which configuration sets
must be provided here.
@descr e.g. menubars, toolbars, accelerators
*/
OUString m_sResourceType;
/** @short specify the application module for a module
dependent configuration.
@descr Will be used only, if m_sResourceType is set to
"module". Further it must be a valid module identifier
then ...
*/
OUString m_sModule;
/** @short provides access to the:
a) shared root storages
b) shared "inbetween" storages
of the share and user layer. */
::salhelper::SingletonRef< TSharedStorages > m_aSharedStorages;
/** @short if we run in document mode, we can't use the global root storages!
We have to use a special document storage explicitly. */
StorageHolder m_lDocumentStorages;
/** @short holds the folder storage of the share layer alive,
where the current configuration set exists.
@descr Note: If this preset handler works in document mode
this member is meaned relative to the document root ...
not to the share layer root!
Further is defined, that m_xWorkingStorageUser
is equals to m_xWorkingStorageShare then!
*/
css::uno::Reference< css::embed::XStorage > m_xWorkingStorageShare;
/** @short global language-independent storage
*/
css::uno::Reference< css::embed::XStorage > m_xWorkingStorageNoLang;
/** @short holds the folder storage of the user layer alive,
where the current configuration set exists.
@descr Note: If this preset handler works in document mode
this member is meaned relative to the document root ...
not to the user layer root!
Further is defined, that m_xWorkingStorageUser
is equals to m_xWorkingStorageShare then!
*/
css::uno::Reference< css::embed::XStorage > m_xWorkingStorageUser;
/** @short knows the names of all presets inside the current
working storage of the share layer. */
OUStringList m_lPresets;
/** @short knows the names of all targets inside the current
working storage of the user layer. */
OUStringList m_lTargets;
/** @short its the current office locale and will be used
to handle localized presets.
@descr Default is "x-no-translate" which disable any
localized handling inside this class! */
LanguageTag m_aLanguageTag;
/** @short knows the relative path from the root. */
OUString m_sRelPathShare;
OUString m_sRelPathNoLang;
OUString m_sRelPathUser;
// native interface
public:
/** @short does nothing real.
@descr Because this class should be useable in combination
with ::salhelper::SingletonRef template this ctor
can't have any special parameters!
@param xContext
points to an uno service manager, which is used internally
to create own needed uno resources.
*/
PresetHandler(const css::uno::Reference< css::uno::XComponentContext >& xContext);
/** @short copy ctor */
PresetHandler(const PresetHandler& rCopy);
/** @short closes all open storages ... if user forgot that .-) */
virtual ~PresetHandler();
/** @short free all currently cache(!) storages. */
void forgetCachedStorages();
/** @short return access to the internally used and cached root storage.
@descr These root storages are the base of all further opened
presets and targets. They are provided here only, to support
older implementations, which base on them ...
getOrCreate...() - What does it mean?
Such root storage will be created one times only and
cached then internally till the last instance of such PresetHandler
dies.
@return com::sun::star::embed::XStorage
which represent a root storage.
*/
css::uno::Reference< css::embed::XStorage > getOrCreateRootStorageShare();
css::uno::Reference< css::embed::XStorage > getOrCreateRootStorageUser();
/** @short provides access to the current working storages.
@descr Working storages are the "lowest" storages, where the
preset and target files exists.
@return com::sun::star::embed::XStorage
which the current working storage.
*/
css::uno::Reference< css::embed::XStorage > getWorkingStorageShare();
css::uno::Reference< css::embed::XStorage > getWorkingStorageUser();
/** @short check if there is a parent storage well known for
the specified child storage and return it.
@param xChild
the child storage where a paranet storage should be searched for.
@return com::sun::star::embed::XStorage
A valid storage if a paranet exists. NULL otherwise.
*/
css::uno::Reference< css::embed::XStorage > getParentStorageShare(const css::uno::Reference< css::embed::XStorage >& xChild);
css::uno::Reference< css::embed::XStorage > getParentStorageUser (const css::uno::Reference< css::embed::XStorage >& xChild);
/** @short free all internal structures and let this handler
work on a new type of configuration sets.
@param eConfigType
differ between global or module dependent configuration.
@param sResourceType
differ between menubar/toolbar/accelerator/... configuration.
@param sModule
if sResourceType is set to a module dependent configuration,
it address the current application module.
@param xDocumentRoot
if sResourceType is set to E_DOCUMENT, this value points to the
root storage inside the document, where we can save our
configuration files. Note: Thats not the real root of the document ...
its only a sub storage. But we interpret it as our root storage.
@param rLanguageTag
in case this configuration supports localized entries,
the current locale must be set.
Localzation will be represented as directory structure
of provided presets. Means: you call us with a preset name "default";
and we use e.g. "/en-US/default.xml" internally.
If no localization exists for this preset set, this class
will work in default mode - means "no locale" - automatically.
e.g. "/default.xml"
@throw com::sun::star::uno::RuntimeException(!)
if the specified resource couldn't be located.
*/
void connectToResource( EConfigType eConfigType ,
const OUString& sResourceType ,
const OUString& sModule ,
const css::uno::Reference< css::embed::XStorage >& xDocumentRoot ,
const LanguageTag& rLanguageTag = LanguageTag(LANGUAGE_USER_PRIV_NOTRANSLATE));
/** @short try to copy the specified preset from the share
layer to the user layer and establish it as the
specified target.
@descr Means: copy share/.../<preset>.xml user/.../<target>.xml
Note: The target will be overwritten completely or
created as new by this operation!
@param sPreset
the ALIAS name of an existing preset.
@param sTarget
the ALIAS name of the target.
@throw com::sun::star::container::NoSuchElementException
if the specified preset does not exists.
@throw com::sun::star::io::IOException
if copying failed.
*/
void copyPresetToTarget(const OUString& sPreset,
const OUString& sTarget);
/** @short open the specified preset as stream object
and return it.
@descr Note: Because presets resist inside the share
layer, they will be opened readonly every time.
@param sPreset
the ALIAS name of an existing preset.
@param bNoLangGlobal
access the global language-independent storage instead of the preset storage
@return The opened preset stream ... or NULL if the preset does not exists.
*/
css::uno::Reference< css::io::XStream > openPreset(const OUString& sPreset,
bool bUseNoLangGlobal = false);
/** @short open the specified target as stream object
and return it.
@descr Note: Targets resist inside the user
layer. Normaly they are opened in read/write mode.
But it will be opened readonly automatically if that isn't possible
(may be the file is write protected on the system ...).
@param sTarget
the ALIAS name of the target.
@param bCreateIfMissing
create target file, if it does not still exists.
Note: That does not means reseting of an existing file!
@return The opened target stream ... or NULL if the target does not exists
or couldnt be created as new one.
*/
css::uno::Reference< css::io::XStream > openTarget(const OUString& sTarget ,
bool bCreateIfMissing);
/** @short do anything which is necessary to flush all changes
back to disk.
@descr We have to call commit on all cached sub storages on the
path from the root storage upside down to the working storage
(which are not really used, but required to be holded alive!).
*/
void commitUserChanges();
/** TODO */
void addStorageListener(IStorageListener* pListener);
void removeStorageListener(IStorageListener* pListener);
// helper
private:
/** @short open a config path ignoring errors (catching exceptions).
@descr We catch only normal exceptions here - no runtime exceptions.
@param sPath
the configuration path, which should be opened.
@param eMode
the open mode (READ/READWRITE)
@param bShare
force using of the share layer instead of the user layer.
@return An opened storage in case method was successfully - null otherwise.
*/
css::uno::Reference< css::embed::XStorage > impl_openPathIgnoringErrors(const OUString& sPath ,
sal_Int32 eMode ,
bool bShare);
/** @short try to find the specified locale inside list of possible ones.
@descr The lits of possible locale values was e.g. retrieved from the system
(configuration, directory listing etcpp). The locale normaly represent
the current office locale. This method search for a suitable item by using
different algorithm.
a) exact search
b) search with using fallbacks
@param lLocalizedValues
list of BCP47 language tags / locale codes
@param rLanguageTag
[IN ] the current office locale, which should be searched inside lLocalizedValues.
[OUT] in case fallbacks was allowed, it contains afterwards the fallback locale.
@param bAllowFallbacks
enable/disable using of fallbacks
@return An iterator, which points directly into lLocalizedValue list.
As a negative result the special iterator lLocalizedValues.end() will be returned.
*/
::std::vector< OUString >::const_iterator impl_findMatchingLocalizedValue(const ::std::vector< OUString >& lLocalizedValues,
OUString& rLanguageTag ,
bool bAllowFallbacks );
/** @short open a config path ignoring errors (catching exceptions).
@descr We catch only normal exceptions here - no runtime exceptions.
Further the path itself is tries in different versions (using locale
specific attributes).
e.g. "path/e-US" => "path/en" => "path/de"
@param sPath
the configuration path, which should be opened.
Its further used as out parameter too, so we can return the localized
path to the calli!
@param eMode
the open mode (READ/READWRITE)
@param bShare
force using of the share layer instead of the user layer.
@param rLanguageTag
[IN ] contains the start locale for searching localized sub dirs.
[OUT] contains the locale of a found localized sub dir
@param bAllowFallback
enable/disable fallback handling for locales
@return An opened storage in case method was successfully - null otherwise.
*/
css::uno::Reference< css::embed::XStorage > impl_openLocalizedPathIgnoringErrors(OUString& sPath ,
sal_Int32 eMode ,
bool bShare ,
OUString& rLanguageTag ,
bool bAllowFallback);
/** @short returns the names of all sub storages of specified storage.
@param xFolder
the base storage for this operation.
@return [vector< string >]
a list of folder names.
*/
::std::vector< OUString > impl_getSubFolderNames(const css::uno::Reference< css::embed::XStorage >& xFolder);
};
} // namespace framework
#endif // INCLUDED_FRAMEWORK_SOURCE_INC_ACCELERATORS_PRESETHANDLER_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|