Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : :
29 : : #ifndef INCLUDED_DP_CONFIGURATIONBACKENDDB_HXX
30 : : #define INCLUDED_DP_CONFIGURATIONBACKENDDB_HXX
31 : :
32 : : #include "rtl/ustring.hxx"
33 : : #include "rtl/string.hxx"
34 : : #include <list>
35 : : #include "boost/optional.hpp"
36 : : #include "dp_backenddb.hxx"
37 : :
38 : : namespace css = ::com::sun::star;
39 : :
40 : : namespace com { namespace sun { namespace star {
41 : : namespace uno {
42 : : class XComponentContext;
43 : : }
44 : : }}}
45 : :
46 : : namespace dp_registry {
47 : : namespace backend {
48 : : namespace configuration {
49 : :
50 : : /* The XML file stores the extensions which are currently registered.
51 : : They will be removed when they are revoked.
52 : : */
53 [ - + ]: 760 : class ConfigurationBackendDb: public dp_registry::backend::BackendDb
54 : : {
55 : : protected:
56 : : virtual ::rtl::OUString getDbNSName();
57 : :
58 : : virtual ::rtl::OUString getNSPrefix();
59 : :
60 : : virtual ::rtl::OUString getRootElementName();
61 : :
62 : : virtual ::rtl::OUString getKeyElementName();
63 : :
64 : : public:
65 : 3844 : struct Data
66 : : {
67 : : /* the URL to the folder containing the xcu or xcs files which contained
68 : : %origin%
69 : : */
70 : : ::rtl::OUString dataUrl;
71 : : /* the URL of the xcu or xcs file which is written in to the configmgr.ini
72 : : */
73 : : ::rtl::OUString iniEntry;
74 : : };
75 : :
76 : : public:
77 : :
78 : : ConfigurationBackendDb( css::uno::Reference<css::uno::XComponentContext> const & xContext,
79 : : ::rtl::OUString const & url);
80 : :
81 : : void addEntry(::rtl::OUString const & url, Data const & data);
82 : :
83 : : ::boost::optional<Data> getEntry(::rtl::OUString const & url);
84 : : ::std::list< ::rtl::OUString> getAllDataUrls();
85 : : };
86 : :
87 : :
88 : :
89 : : }
90 : : }
91 : : }
92 : : #endif
93 : :
94 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|