1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
22 #include <sal/config.h>
27 #include <rtl/ref.hxx>
28 #include <rtl/ustring.hxx>
29 #include <xmlreader/xmlreader.hxx>
33 #include "valueparser.hxx"
35 namespace xmlreader
{ struct Span
; }
42 class XcsParser
: public Parser
{
44 XcsParser(int layer
, Data
& data
);
47 virtual ~XcsParser() override
;
49 virtual xmlreader::XmlReader::Text
getTextMode() override
;
51 virtual bool startElement(
52 xmlreader::XmlReader
& reader
, int nsId
, xmlreader::Span
const & name
,
53 std::set
< OUString
> const * existingDependencies
) override
;
55 virtual void endElement(xmlreader::XmlReader
const & reader
) override
;
57 virtual void characters(xmlreader::Span
const & text
) override
;
59 void handleComponentSchema(xmlreader::XmlReader
& reader
);
61 void handleNodeRef(xmlreader::XmlReader
& reader
);
63 void handleProp(xmlreader::XmlReader
& reader
);
66 xmlreader::XmlReader
& reader
, rtl::Reference
< Node
> const & property
);
68 void handleGroup(xmlreader::XmlReader
& reader
, bool isTemplate
);
70 void handleSet(xmlreader::XmlReader
& reader
, bool isTemplate
);
72 void handleSetItem(xmlreader::XmlReader
& reader
, SetNode
* set
);
75 STATE_START
, STATE_COMPONENT_SCHEMA
, STATE_TEMPLATES
,
76 STATE_TEMPLATES_DONE
, STATE_COMPONENT
, STATE_COMPONENT_DONE
};
79 rtl::Reference
< Node
> node
;
83 rtl::Reference
< Node
> const & theNode
,
84 OUString
const & theName
):
85 node(theNode
), name(theName
) {}
88 typedef std::stack
< Element
> ElementStack
;
90 ValueParser valueParser_
;
92 OUString componentName_
;
95 ElementStack elements_
;
100 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */