bump product version to 7.2.5.1
[LibreOffice.git] / configmgr / source / xcsparser.hxx
blob36e5a1a0037a3db0fd692ee38ea2d7e9c4531c10
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #pragma once
22 #include <sal/config.h>
24 #include <set>
25 #include <stack>
27 #include <rtl/ref.hxx>
28 #include <rtl/ustring.hxx>
29 #include <xmlreader/xmlreader.hxx>
31 #include "node.hxx"
32 #include "parser.hxx"
33 #include "valueparser.hxx"
35 namespace xmlreader { struct Span; }
37 namespace configmgr {
39 class SetNode;
40 struct Data;
42 class XcsParser: public Parser {
43 public:
44 XcsParser(int layer, Data & data);
46 private:
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);
65 void handlePropValue(
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);
74 enum State {
75 STATE_START, STATE_COMPONENT_SCHEMA, STATE_TEMPLATES,
76 STATE_TEMPLATES_DONE, STATE_COMPONENT, STATE_COMPONENT_DONE };
78 struct Element {
79 rtl::Reference< Node > node;
80 OUString name;
82 Element(
83 rtl::Reference< Node > const & theNode,
84 OUString const & theName):
85 node(theNode), name(theName) {}
88 typedef std::stack< Element > ElementStack;
90 ValueParser valueParser_;
91 Data & data_;
92 OUString componentName_;
93 State state_;
94 long ignoring_;
95 ElementStack elements_;
100 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */