LibreOffice Module configmgr (master)
1
configmgr
source
xcsparser.hxx
Go to the documentation of this file.
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
* This file is part of the LibreOffice project.
4
*
5
* This Source Code Form is subject to the terms of the Mozilla Public
6
* License, v. 2.0. If a copy of the MPL was not distributed with this
7
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
*
9
* This file incorporates work covered by the following license notice:
10
*
11
* Licensed to the Apache Software Foundation (ASF) under one or more
12
* contributor license agreements. See the NOTICE file distributed
13
* with this work for additional information regarding copyright
14
* ownership. The ASF licenses this file to you under the Apache
15
* License, Version 2.0 (the "License"); you may not use this file
16
* except in compliance with the License. You may obtain a copy of
17
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
18
*/
19
20
#pragma once
21
22
#include <
sal/config.h
>
23
24
#include <set>
25
#include <stack>
26
27
#include <rtl/ref.hxx>
28
#include <rtl/ustring.hxx>
29
#include <utility>
30
#include <
xmlreader/xmlreader.hxx
>
31
32
#include "
node.hxx
"
33
#include "
parser.hxx
"
34
#include "
valueparser.hxx
"
35
36
namespace
xmlreader
{
struct
Span
; }
37
38
namespace
configmgr
{
39
40
class
SetNode;
41
struct
Data
;
42
43
class
XcsParser
:
public
Parser
{
44
public
:
45
XcsParser
(
int
layer,
Data
& data);
46
47
private
:
48
virtual
~XcsParser
()
override
;
49
50
virtual
xmlreader::XmlReader::Text
getTextMode
()
override
;
51
52
virtual
bool
startElement
(
53
xmlreader::XmlReader
& reader,
int
nsId,
xmlreader::Span
const
&
name
,
54
std::set< OUString >
const
* existingDependencies)
override
;
55
56
virtual
void
endElement
(
xmlreader::XmlReader
const
& reader)
override
;
57
58
virtual
void
characters
(
xmlreader::Span
const
&
text
)
override
;
59
60
void
handleComponentSchema
(
xmlreader::XmlReader
& reader);
61
62
void
handleNodeRef
(
xmlreader::XmlReader
& reader);
63
64
void
handleProp
(
xmlreader::XmlReader
& reader);
65
66
void
handlePropValue
(
67
xmlreader::XmlReader
& reader,
rtl::Reference< Node >
const
&
property
);
68
69
void
handleGroup
(
xmlreader::XmlReader
& reader,
bool
isTemplate);
70
71
void
handleSet
(
xmlreader::XmlReader
& reader,
bool
isTemplate);
72
73
void
handleSetItem
(
xmlreader::XmlReader
& reader,
SetNode
*
set
);
74
75
enum
State
{
76
STATE_START
,
STATE_COMPONENT_SCHEMA
,
STATE_TEMPLATES
,
77
STATE_TEMPLATES_DONE
,
STATE_COMPONENT
,
STATE_COMPONENT_DONE
};
78
79
struct
Element
{
80
rtl::Reference< Node >
node
;
81
OUString
name
;
82
83
Element
(
84
rtl::Reference< Node >
theNode,
85
OUString theName):
86
node
(
std
::move(theNode)),
name
(
std
::move(theName)) {}
87
};
88
89
typedef
std::stack< Element >
ElementStack
;
90
91
ValueParser
valueParser_
;
92
Data
&
data_
;
93
OUString
componentName_
;
94
State
state_
;
95
long
ignoring_
;
96
ElementStack
elements_
;
97
};
98
99
}
100
101
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
configmgr::Parser
Definition:
parser.hxx:33
configmgr::SetNode
Definition:
setnode.hxx:34
configmgr::ValueParser
Definition:
valueparser.hxx:43
configmgr::XcsParser
Definition:
xcsparser.hxx:43
configmgr::XcsParser::componentName_
OUString componentName_
Definition:
xcsparser.hxx:93
configmgr::XcsParser::State
State
Definition:
xcsparser.hxx:75
configmgr::XcsParser::STATE_COMPONENT_SCHEMA
@ STATE_COMPONENT_SCHEMA
Definition:
xcsparser.hxx:76
configmgr::XcsParser::STATE_START
@ STATE_START
Definition:
xcsparser.hxx:76
configmgr::XcsParser::STATE_COMPONENT_DONE
@ STATE_COMPONENT_DONE
Definition:
xcsparser.hxx:77
configmgr::XcsParser::STATE_TEMPLATES
@ STATE_TEMPLATES
Definition:
xcsparser.hxx:76
configmgr::XcsParser::STATE_TEMPLATES_DONE
@ STATE_TEMPLATES_DONE
Definition:
xcsparser.hxx:77
configmgr::XcsParser::STATE_COMPONENT
@ STATE_COMPONENT
Definition:
xcsparser.hxx:77
configmgr::XcsParser::state_
State state_
Definition:
xcsparser.hxx:94
configmgr::XcsParser::getTextMode
virtual xmlreader::XmlReader::Text getTextMode() override
Definition:
xcsparser.cxx:117
configmgr::XcsParser::XcsParser
XcsParser(int layer, Data &data)
Definition:
xcsparser.cxx:111
configmgr::XcsParser::ignoring_
long ignoring_
Definition:
xcsparser.hxx:95
configmgr::XcsParser::data_
Data & data_
Definition:
xcsparser.hxx:92
configmgr::XcsParser::handleProp
void handleProp(xmlreader::XmlReader &reader)
Definition:
xcsparser.cxx:415
configmgr::XcsParser::startElement
virtual bool startElement(xmlreader::XmlReader &reader, int nsId, xmlreader::Span const &name, std::set< OUString > const *existingDependencies) override
Definition:
xcsparser.cxx:121
configmgr::XcsParser::valueParser_
ValueParser valueParser_
Definition:
xcsparser.hxx:91
configmgr::XcsParser::handleComponentSchema
void handleComponentSchema(xmlreader::XmlReader &reader)
Definition:
xcsparser.cxx:322
configmgr::XcsParser::handleNodeRef
void handleNodeRef(xmlreader::XmlReader &reader)
Definition:
xcsparser.cxx:369
configmgr::XcsParser::handlePropValue
void handlePropValue(xmlreader::XmlReader &reader, rtl::Reference< Node > const &property)
Definition:
xcsparser.cxx:466
configmgr::XcsParser::handleGroup
void handleGroup(xmlreader::XmlReader &reader, bool isTemplate)
Definition:
xcsparser.cxx:491
configmgr::XcsParser::handleSetItem
void handleSetItem(xmlreader::XmlReader &reader, SetNode *set)
Definition:
xcsparser.cxx:568
configmgr::XcsParser::handleSet
void handleSet(xmlreader::XmlReader &reader, bool isTemplate)
Definition:
xcsparser.cxx:525
configmgr::XcsParser::endElement
virtual void endElement(xmlreader::XmlReader const &reader) override
Definition:
xcsparser.cxx:253
configmgr::XcsParser::characters
virtual void characters(xmlreader::Span const &text) override
Definition:
xcsparser.cxx:318
configmgr::XcsParser::~XcsParser
virtual ~XcsParser() override
Definition:
xcsparser.cxx:115
configmgr::XcsParser::ElementStack
std::stack< Element > ElementStack
Definition:
xcsparser.hxx:89
configmgr::XcsParser::elements_
ElementStack elements_
Definition:
xcsparser.hxx:96
rtl::Reference
xmlreader::XmlReader::Text
Text
name
OUString name
Definition:
components.cxx:85
config.h
HtmlOut::Span
@ Span
text
def text(shape, orig_st)
set
void set(css::uno::UnoInterfaceReference const &value)
configmgr
Definition:
access.cxx:104
property
std
xmlreader
node.hxx
parser.hxx
configmgr::Data
Definition:
data.hxx:41
configmgr::XcsParser::Element
Definition:
xcsparser.hxx:79
configmgr::XcsParser::Element::name
OUString name
Definition:
xcsparser.hxx:81
configmgr::XcsParser::Element::Element
Element(rtl::Reference< Node > theNode, OUString theName)
Definition:
xcsparser.hxx:83
configmgr::XcsParser::Element::node
rtl::Reference< Node > node
Definition:
xcsparser.hxx:80
xmlreader::Span
xmlreader::XmlReader
INetProtocol::Data
@ Data
valueparser.hxx
xmlreader.hxx
Generated on Sun Jul 30 2023 04:37:04 for LibreOffice Module configmgr (master) by
1.9.3